qsdklsqkdmqskdmlqskd azoepqikdomlqskdjmlqs qpfklqjsfmklqsjdmqlsjdsqd lib/NF_Conversion.php000064400000000075152331132460010535 0ustar00nuke( $sure, $really_sure, $nuke_multisite ); $migrations->migrate(); // Reset our required updates. delete_option( 'ninja_forms_required_updates' ); // Prevent recent 2.9x conversions from running required updates within a week. set_transient( 'ninja_forms_prevent_updates', 'true', WEEK_IN_SECONDS ); echo json_encode( array( 'migrate' => 'true' ) ); wp_die(); } // Ajax call handled just below this 'add_action' call add_action( 'wp_ajax_ninja_forms_ajax_import_form', 'ninja_forms_ajax_import_form' ); function ninja_forms_ajax_import_form(){ if( ! current_user_can( apply_filters( 'ninja_forms_admin_upgrade_import_form_capabilities', 'manage_options' ) ) ) return; if ( ! isset( $_POST[ 'security' ] ) ) return; if ( ! wp_verify_nonce( $_POST[ 'security' ], 'ninja_forms_upgrade_nonce' ) ) return; $import = stripslashes( $_POST[ 'import' ] ); $form_id = ( isset( $_POST[ 'formID' ] ) ) ? absint( $_POST[ 'formID' ] ) : ''; WPN_Helper::delete_nf_cache( $form_id ); // Bust the cache. Ninja_Forms()->form()->import_form( $import, TRUE, $form_id, TRUE ); if( isset( $_POST[ 'flagged' ] ) && $_POST[ 'flagged' ] ){ $form = Ninja_Forms()->form( $form_id )->get(); $form->update_setting( 'lock', TRUE ); $form->save(); } echo json_encode( array( 'export' => WPN_Helper::esc_html($_POST['import']), 'import' => $import ) ); wp_die(); } // Ajax call handled just below this 'add_action' call add_action( 'wp_ajax_ninja_forms_ajax_import_fields', 'ninja_forms_ajax_import_fields' ); function ninja_forms_ajax_import_fields(){ if( ! current_user_can( apply_filters( 'ninja_forms_admin_upgrade_import_fields_capabilities', 'manage_options' ) ) ) return; if ( ! isset( $_POST[ 'security' ] ) ) return; if ( ! wp_verify_nonce( $_POST[ 'security' ], 'ninja_forms_upgrade_nonce' ) ) return; $fields = stripslashes( WPN_Helper::esc_html($_POST[ 'fields' ]) ); // TODO: How to sanitize serialized string? $fields = maybe_unserialize( $fields ); foreach( $fields as $field ) { Ninja_Forms()->form()->import_field( $field, $field[ 'id' ], TRUE ); } echo json_encode( array( 'export' => WPN_Helper::esc_html($_POST['fields']), 'import' => $fields ) ); wp_die(); }lib/NF_Tracking.php000064400000012427152331132460010156 0ustar00can_opt_in() ) { $opt_in_action = htmlspecialchars( $_POST[ self::FLAG ] ); if( self::OPT_IN == $opt_in_action ){ $this->opt_in(); } if( self::OPT_OUT == $opt_in_action ){ $this->opt_out(); } } die( 1 ); } /** * Report that a user has opted-in. * * @param array $data Dispatch event data. */ function report_optin($data = array() ) { // Only send initial opt-in. if( get_option( 'ninja_forms_optin_reported', 0 ) ) return; $data = wp_parse_args( $data, array( 'send_email' => 0, // Do not send email by default. 'user_email' => '' ) ); Ninja_Forms()->dispatcher()->send( 'optin', $data ); Ninja_Forms()->dispatcher()->update_environment_vars(); // Debounce opt-in dispatch. update_option( 'ninja_forms_optin_reported', 1 ); } /** * Check if the current user is allowed to opt in on behalf of a site * * @return bool */ private function can_opt_in() { return current_user_can( apply_filters( 'ninja_forms_admin_opt_in_capabilities', 'manage_options' ) ); } /** * Check if a site is opted in * * @access public * @return bool */ public function is_opted_in() { return (bool) get_option( 'ninja_forms_allow_tracking' ); } /** * Opt In a site for tracking * * @access private * @return null */ public function opt_in() { if( $this->is_opted_in() ) return; /** * Update our tracking options. */ update_option( 'ninja_forms_allow_tracking', true ); update_option( 'ninja_forms_do_not_allow_tracking', false ); /** * Send updated environment variables. */ Ninja_Forms()->dispatcher()->update_environment_vars(); /** * Send our optin event */ $send_email = 0; $user_email = ''; if (isset($_REQUEST['send_email']) && isset($_REQUEST['user_email']) && is_email($_REQUEST['user_email'])) { $send_email = absint($_REQUEST['send_email']); $user_email = sanitize_email($_REQUEST['user_email']); add_option('ninja_forms_optin_email', $user_email, '', 'no'); } $this->report_optin( array( 'send_email' => $send_email, 'user_email' => $user_email ) ); } /** * Check if a site is opted out * * @access public * @return bool */ public function is_opted_out() { return (bool) get_option( 'ninja_forms_do_not_allow_tracking' ); } /** * Opt Out a site from tracking * * @access private * @return null */ private function opt_out() { if( $this->is_opted_out() ) return; $data = array(); $user_email = get_option( 'ninja_forms_optin_email' ); if ($user_email && is_email($user_email)) { $data['user_email'] = sanitize_email($user_email); } Ninja_Forms()->dispatcher()->send( 'optout', $data ); delete_option( 'ninja_forms_optin_email' ); // Disable tracking. update_option( 'ninja_forms_allow_tracking', false ); update_option( 'ninja_forms_do_not_allow_tracking', true ); // Clear dispatch debounce flag. update_option( 'ninja_forms_optin_reported', 0 ); } public function check_setting( $setting ) { if( $this->is_opted_in() && ! $this->is_opted_out() ) { $setting[ 'value' ] = "1"; } else { $setting[ 'value' ] = "0"; } return $setting; } public function update_setting( $value ) { if( "1" == $value ){ // Allow Tracking $this->opt_in(); } else { $this->opt_out(); } return $value; } } // END CLASS NF_Tracking lib/NF_AddonChecker.php000064400000003063152331132460010722 0ustar00 $data ){ if( 'ninja-forms/ninja-forms.php' != $plugin && 0 === strncmp( $plugin, 'ninja-forms-', 12 ) && version_compare( $data[ 'Version' ], '3', '<' ) ){ if( ! is_plugin_active( $plugin ) ) continue; deactivate_plugins($plugin); wp_redirect( admin_url( 'plugins.php?nf-deactivated=' . $plugin ) ); exit; } } } public function deactivation_notice() { if( ! isset( $_GET[ 'nf-deactivated' ] ) ) return; $plugin = sanitize_text_field( $_GET[ 'nf-deactivated' ] ); ?>

', '' ); ?>

' . $plugin . ''); ?>

ajax_check(); add_action( 'init', array( $this, 'version_bypass_check' ) ); add_action( 'admin_init', array( $this, 'listener' ) ); add_filter( 'ninja_forms_admin_notices', array( $this, 'upgrade_complete_notice' ) ); if( defined( 'NF_DEV' ) && NF_DEV ) { add_action('admin_bar_menu', array( $this, 'admin_bar_menu'), 999); } } public function ajax_check() { $nf2to3 = isset( $_POST[ 'nf2to3' ] ); $doing_ajax = ( defined( 'DOING_AJAX' ) && DOING_AJAX ); if( $nf2to3 && ! $doing_ajax ){ wp_die( esc_html__( 'You do not have permission.', 'ninja-forms' ), esc_html__( 'Permission Denied', 'ninja-forms' ) ); } } public function version_bypass_check() { if( ! isset( $_POST[ 'nf2to3' ] ) ) return TRUE; $capability = apply_filters( 'ninja_forms_admin_version_bypass_capabilities', 'manage_options' ); $current_user_can = current_user_can( $capability ); if( $current_user_can ) return TRUE; wp_die( esc_html__( 'You do not have permission.', 'ninja-forms' ), esc_html__( 'Permission Denied', 'ninja-forms' ) ); } public function listener() { if( ! current_user_can( apply_filters( 'ninja_forms_admin_version_switcher_capabilities', 'manage_options' ) ) ) return; if( isset( $_GET[ 'nf-switcher' ] ) ){ $notice = ''; switch( $_GET[ 'nf-switcher' ] ){ case 'upgrade': if ( wp_verify_nonce( $_GET['security'], 'ninja_forms_upgrade_nonce' ) ) { update_option( 'ninja_forms_load_deprecated', FALSE ); update_option( 'ninja_forms_upgrade_complete', true ); do_action( 'ninja_forms_upgrade' ); $notice = '&nf-upgrade=complete'; } break; case 'rollback': if ( wp_verify_nonce( $_GET['security'], 'ninja_forms_settings_nonce' ) ) { update_option( 'ninja_forms_load_deprecated', TRUE ); update_option( 'ninja_forms_upgrade_complete', false ); $this->rollback_activation(); do_action( 'ninja_forms_rollback' ); $notice = '&nf-rollback=complete'; } break; } header( 'Location: ' . admin_url( 'admin.php?page=ninja-forms' . $notice ) ); } } public function admin_bar_menu( $wp_admin_bar ) { $args = array( 'id' => 'nf', 'title' => esc_html__( 'Ninja Forms Dev', 'ninja-forms' ), 'href' => '#', ); $wp_admin_bar->add_node( $args ); $args = array( 'id' => 'nf_switcher', 'href' => admin_url(), 'parent' => 'nf' ); if( ! get_option( 'ninja_forms_load_deprecated' ) ) { $args[ 'title' ] = esc_html__( 'DEBUG: Switch to 2.9.x', 'ninja-forms' ); $args[ 'href' ] .= '?nf-switcher=rollback'; $args[ 'href' ] .= '&security=' . wp_create_nonce( 'ninja_forms_settings_nonce' ); } else { $args[ 'title' ] = esc_html__( 'DEBUG: Switch to 3.0.x', 'ninja-forms' ); $args[ 'href' ] .= '?nf-switcher=upgrade'; $args[ 'href' ] .= '&security=' . wp_create_nonce( 'ninja_forms_upgrade_nonce' ); } $wp_admin_bar->add_node($args); } public function rollback_activation() { global $wpdb; $table_name = $wpdb->prefix . 'nf_objects'; if( $wpdb->get_var( $wpdb->prepare( "SHOW TABLES LIKE %s", $table_name ) ) == $table_name ) return; if ( ! is_multisite() ) { // This is a single-site activation. require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); if( ! defined( 'NINJA_FORMS_FAV_FIELDS_TABLE_NAME' ) ){ define( 'NINJA_FORMS_FAV_FIELDS_TABLE_NAME', $wpdb->prefix . 'ninja_forms_fav_fields' ); } if( ! defined( 'NINJA_FORMS_FIELDS_TABLE_NAME' ) ){ define( 'NINJA_FORMS_FIELDS_TABLE_NAME', $wpdb->prefix . 'ninja_forms_fields' ); } if( ! defined( 'NF_OBJECT_META_TABLE_NAME' ) ){ define( 'NF_OBJECT_META_TABLE_NAME', $wpdb->prefix .'nf_objectmeta' ); } if( ! defined( 'NF_OBJECTS_TABLE_NAME' ) ){ define( 'NF_OBJECTS_TABLE_NAME', $wpdb->prefix .'nf_objects' ); } if( ! defined( 'NF_OBJECT_RELATIONSHIPS_TABLE_NAME' ) ){ define( 'NF_OBJECT_RELATIONSHIPS_TABLE_NAME', $wpdb->prefix .'nf_relationships' ); } if( ! defined( 'NF_PLUGIN_VERSION' ) ){ define( 'NF_PLUGIN_VERSION', Ninja_Forms::VERSION ); } $opt = get_option( 'ninja_forms_settings' ); $sql = "CREATE TABLE IF NOT EXISTS ".NINJA_FORMS_FAV_FIELDS_TABLE_NAME." ( `id` int(11) NOT NULL AUTO_INCREMENT, `row_type` int(11) NOT NULL, `type` varchar(255) CHARACTER SET utf8 NOT NULL, `order` int(11) NOT NULL, `data` longtext CHARACTER SET utf8 NOT NULL, `name` varchar(255) CHARACTER SET utf8 NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8;"; dbDelta($sql); $state_dropdown = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM ".NINJA_FORMS_FAV_FIELDS_TABLE_NAME." WHERE name = %s AND row_type = 0", 'State Dropdown' ), ARRAY_A ); if( !isset($state_dropdown['id']) ){ $sql = 'INSERT INTO `'.NINJA_FORMS_FAV_FIELDS_TABLE_NAME.'` (`id`, `row_type`, `type`, `order`, `data`, `name`) VALUES (2, 0, \'_list\', 0, \'a:10:{s:5:\"label\";s:14:\"State Dropdown\";s:9:\"label_pos\";s:4:\"left\";s:9:\"list_type\";s:8:\"dropdown\";s:10:\"multi_size\";s:1:\"5\";s:15:\"list_show_value\";s:1:\"1\";s:4:\"list\";a:1:{s:7:\"options\";a:51:{i:0;a:3:{s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:8:\"selected\";s:1:\"0\";}i:1;a:3:{s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:8:\"selected\";s:1:\"0\";}i:2;a:3:{s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:8:\"selected\";s:1:\"0\";}i:3;a:3:{s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:8:\"selected\";s:1:\"0\";}i:4;a:3:{s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:8:\"selected\";s:1:\"0\";}i:5;a:3:{s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:8:\"selected\";s:1:\"0\";}i:6;a:3:{s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:8:\"selected\";s:1:\"0\";}i:7;a:3:{s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:8:\"selected\";s:1:\"0\";}i:8;a:3:{s:5:\"label\";s:20:\"District of Columbia\";s:5:\"value\";s:2:\"DC\";s:8:\"selected\";s:1:\"0\";}i:9;a:3:{s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:8:\"selected\";s:1:\"0\";}i:10;a:3:{s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:8:\"selected\";s:1:\"0\";}i:11;a:3:{s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:8:\"selected\";s:1:\"0\";}i:12;a:3:{s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:8:\"selected\";s:1:\"0\";}i:13;a:3:{s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:8:\"selected\";s:1:\"0\";}i:14;a:3:{s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:8:\"selected\";s:1:\"0\";}i:15;a:3:{s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:8:\"selected\";s:1:\"0\";}i:16;a:3:{s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:8:\"selected\";s:1:\"0\";}i:17;a:3:{s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:8:\"selected\";s:1:\"0\";}i:18;a:3:{s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:8:\"selected\";s:1:\"0\";}i:19;a:3:{s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:8:\"selected\";s:1:\"0\";}i:20;a:3:{s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:8:\"selected\";s:1:\"0\";}i:21;a:3:{s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:8:\"selected\";s:1:\"0\";}i:22;a:3:{s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:8:\"selected\";s:1:\"0\";}i:23;a:3:{s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:8:\"selected\";s:1:\"0\";}i:24;a:3:{s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:8:\"selected\";s:1:\"0\";}i:25;a:3:{s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:8:\"selected\";s:1:\"0\";}i:26;a:3:{s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:8:\"selected\";s:1:\"0\";}i:27;a:3:{s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:8:\"selected\";s:1:\"0\";}i:28;a:3:{s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:8:\"selected\";s:1:\"0\";}i:29;a:3:{s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:8:\"selected\";s:1:\"0\";}i:30;a:3:{s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:8:\"selected\";s:1:\"0\";}i:31;a:3:{s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:8:\"selected\";s:1:\"0\";}i:32;a:3:{s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:8:\"selected\";s:1:\"0\";}i:33;a:3:{s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:8:\"selected\";s:1:\"0\";}i:34;a:3:{s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:8:\"selected\";s:1:\"0\";}i:35;a:3:{s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:8:\"selected\";s:1:\"0\";}i:36;a:3:{s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:8:\"selected\";s:1:\"0\";}i:37;a:3:{s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:8:\"selected\";s:1:\"0\";}i:38;a:3:{s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:8:\"selected\";s:1:\"0\";}i:39;a:3:{s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:8:\"selected\";s:1:\"0\";}i:40;a:3:{s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:8:\"selected\";s:1:\"0\";}i:41;a:3:{s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:8:\"selected\";s:1:\"0\";}i:42;a:3:{s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:8:\"selected\";s:1:\"0\";}i:43;a:3:{s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:8:\"selected\";s:1:\"0\";}i:44;a:3:{s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:8:\"selected\";s:1:\"0\";}i:45;a:3:{s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:8:\"selected\";s:1:\"0\";}i:46;a:3:{s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:8:\"selected\";s:1:\"0\";}i:47;a:3:{s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:8:\"selected\";s:1:\"0\";}i:48;a:3:{s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:8:\"selected\";s:1:\"0\";}i:49;a:3:{s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:8:\"selected\";s:1:\"0\";}i:50;a:3:{s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:8:\"selected\";s:1:\"0\";}}}s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";}\', \'State Dropdown\')'; $wpdb->query($sql); } $anti_spam = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM ".NINJA_FORMS_FAV_FIELDS_TABLE_NAME." WHERE name = %s AND row_type = 0", 'Anti-Spam' ), ARRAY_A ); if( !isset($anti_spam['id']) ){ $sql = 'INSERT INTO `'.NINJA_FORMS_FAV_FIELDS_TABLE_NAME.'` (`id`, `row_type`, `type`, `order`, `data`, `name`) VALUES (3, 0, \'_spam\', 0, \'a:6:{s:9:"label_pos";s:4:"left";s:5:"label";s:18:"Anti-Spam Question";s:6:"answer";s:16:"Anti-Spam Answer";s:5:"class";s:0:"";s:9:"show_help";s:1:"0";s:9:"help_text";s:0:"";}\', \'Anti-Spam\')'; $wpdb->query($sql); } $submit = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM ".NINJA_FORMS_FAV_FIELDS_TABLE_NAME." WHERE name = %s AND row_type = 0", 'Submit' ), ARRAY_A ); if( !isset($submit['id']) ){ $sql = 'INSERT INTO `'.NINJA_FORMS_FAV_FIELDS_TABLE_NAME.'` (`id`, `row_type`, `type`, `order`, `data`, `name`) VALUES (4, 0, \'_submit\', 0, \'a:4:{s:5:\"label\";s:6:\"Submit\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";}\', \'Submit\');'; $wpdb->query($sql); } $sql = "CREATE TABLE IF NOT EXISTS ".NINJA_FORMS_FIELDS_TABLE_NAME." ( `id` int(11) NOT NULL AUTO_INCREMENT, `form_id` int(11) NOT NULL, `type` varchar(255) CHARACTER SET utf8 NOT NULL, `order` int(11) NOT NULL, `data` longtext CHARACTER SET utf8 NOT NULL, `fav_id` int(11) DEFAULT NULL, `def_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8 ;"; dbDelta($sql); /** * Add our table structure for version 2.8. */ // Create our object meta table $sql = "CREATE TABLE IF NOT EXISTS ". NF_OBJECT_META_TABLE_NAME . " ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `object_id` bigint(20) NOT NULL, `meta_key` varchar(255) NOT NULL, `meta_value` longtext NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8;"; dbDelta( $sql ); // Create our object table $sql = "CREATE TABLE IF NOT EXISTS " . NF_OBJECTS_TABLE_NAME . " ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8;"; dbDelta( $sql ); // Create our object relationships table $sql = "CREATE TABLE IF NOT EXISTS " . NF_OBJECT_RELATIONSHIPS_TABLE_NAME . " ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `child_id` bigint(20) NOT NULL, `parent_id` bigint(20) NOT NULL, `child_type` varchar(255) NOT NULL, `parent_type` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8;"; dbDelta( $sql ); $title = apply_filters( 'ninja_forms_preview_page_title', 'ninja_forms_preview_page' ); $preview_page = get_page_by_title( $title ); if( !$preview_page ) { // Create preview page object $preview_post = array( 'post_title' => $title, 'post_content' => 'This is a preview of how this form will appear on your website', 'post_status' => 'draft', 'post_type' => 'page' ); // Insert the page into the database $page_id = wp_insert_post( $preview_post ); }else{ $page_id = $preview_page->ID; } $opt['preview_id'] = $page_id; $current_settings = get_option( 'ninja_forms_settings', false ); if ( ! $current_settings ) { update_option( 'nf_convert_notifications_complete', true ); update_option( 'nf_convert_subs_step', 'complete' ); update_option( 'nf_upgrade_notice', 'closed' ); update_option( 'nf_update_email_settings_complete', true ); update_option( 'nf_email_fav_updated', true ); update_option( 'nf_convert_forms_complete', true ); update_option( 'nf_database_migrations', true ); } update_option( "ninja_forms_settings", $opt ); update_option( 'ninja_forms_version', '2.9.56.2' ); } else { // We're network activating. header( 'Location: ' . network_admin_url( 'plugins.php?deactivate=true&nf_action=network_activation_error' ) ); exit; } } public function upgrade_complete_notice( $notices ) { if( get_option( 'ninja_forms_upgrade_complete', false ) ){ // Persistance notice, until dismissed. $notices[ 'upgrade_compelte_notice' ] = array( 'title' => esc_html__( 'How do I look?', 'ninja-forms' ), 'msg' => esc_html__( 'Your forms were upgraded. Take a look around and make sure everything looks right.', 'ninja-forms' ), 'link' => '
  • ' . esc_html__( 'Learn More', 'ninja-forms' ) . '
  • ' . esc_html__( 'Something is wrong...', 'ninja-forms' ) . '
  • ' . esc_html__( 'Looks Good!' ,'ninja-forms' ) . '
  • ', 'int' => 0, 'pages' => array( 'ninja-forms' ) ); } return $notices; } } new NF_VersionSwitcher(); lib/Legacy/subs-cpt.min.js000064400000002111152331132460011371 0ustar00jQuery(document).ready(function(e){var t={init:function(){e("#id-hide").parent().remove();var t=this;e(document).on("click",".hide-column-tog",t.save_hidden_columns)},save_hidden_columns:function(){var t=columns.hidden();e.post(ajaxurl,{form_id:nf_sub.form_id,hidden:t,action:"nf_hide_columns"})},move_row_actions:function(){e("#the-list tr").each(function(t){var n=e(this).find("td:visible").eq(0);if(typeof e(n).html()=="undefined"){n=e(this).find("td:first")}e(this).find("td div.row-actions").detach().appendTo(n)})}};t.init();e(".datepicker").datepicker({dateFormat:nf_sub.date_format});e(document).on("change",".nf-form-jump",function(t){e("#posts-filter").submit()});e(document).on("submit",function(t){e(".spinner").show();if(e('select[name="action"]').val()=="export"||e('select[name="action2"]').val()=="export"){setTimeout(function(){e("input:checkbox").attr("checked",false);e(".spinner").hide();e('select[name="action"]').val("-1");e('select[name="action2"]').val("-1")},2e3)}});e(".screen-options").prepend(e("#nf-subs-screen-options").html());e("#nf-subs-screen-options").remove()})lib/Legacy/step-processing.js000064400000005532152331132460012206 0ustar00jQuery(document).ready(function($) { var progressbar = $( "#progressbar" ), progressLabel = $( ".progress-label" ); progressbar.progressbar({ value: false, change: function() { var value = parseInt( progressbar.progressbar( "value" ) ); if ( value == 90 ) { nfProgressBar.currentLabel = 1; } else if ( value % 10 == 0 ) { nfProgressBar.changeTextLabel(); } var text = nfProgressBar.getTextLabel(); progressLabel.text( text + " " + progressbar.progressbar( "value" ) + "%" ); }, complete: function() { progressLabel.text( "Complete!" ); } }); if ( nfProcessingAction != 'none' ) { var nfProgressBar = { labels: nf_processing.step_labels, currentLabel: 0, getTextLabel: function() { var label = this.labels[ this.currentLabel ]; return label; }, changeTextLabel: function() { var max = Object.keys( this.labels ).length; if ( max == 1 ) { max = 0; } var labelNum = Math.floor( Math.random() * ( max - 2 + 1 ) ) + 1; this.currentLabel = labelNum; } }; var nfProcessing = { setup: function() { // Figure out when we're going to change the size of the bar. this.interval = Math.floor( 100 / parseInt( this.totalSteps ) ); }, process: function() { $.post( ajaxurl, { step: this.step, total_steps: nfProcessing.totalSteps, args: this.args, action: nfProcessingAction }, function( response ) { response = $.parseJSON( response ); nfProcessing.step = response.step; nfProcessing.totalSteps = response.total_steps; nfProcessing.args = response.args; nfProcessing.errors = response.errors; if ( nfProcessing.errors ) { $( "#nf-upgrade-errors").removeClass('hidden'); $.each( nfProcessing.errors, function( index, error ) { $(".nf-upgrade-errors-list").append('
  • ERROR: ' + error + '
  • '); }); } if ( nfProcessing.runSetup == 1 ) { nfProcessing.setup(); nfProcessing.runSetup = 0; } if ( ! response.complete ) { nfProcessing.progress(); nfProcessing.process(); } else { progressbar.progressbar( "value", 100 ); if ( typeof response.redirect != 'undefined' && response.redirect != '' ) { document.location.href = response.redirect; } } }); }, progress: function() { var val = progressbar.progressbar( "value" ) || 0; progressbar.progressbar( "value", val + this.interval ); }, step: 'loading', totalSteps: 0, runSetup: 1, interval: 0, args: nfProcessingArgs, } nfProcessing.process(); } });lib/Legacy/addons-feed.json000064400000103722152331132460011567 0ustar00[{"title":"Conditional Logic","image":"assets\/img\/add-ons\/conditional-logic.png","content":"Build dynamic forms that can change as a user fills out the form. Show and hide fields. Send certain email, don't send others. Redirect to one of many pages. The possibilities are endless!","link":"https:\/\/ninjaforms.com\/extensions\/conditional-logic\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic","plugin":"ninja-forms-conditionals\/conditionals.php","docs":"https:\/\/ninjaforms.com\/docs\/conditional-logic\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic+Docs","version":"3.0.28","categories":[{"name":"Look & Feel","slug":"look-feel"},{"name":"Actions","slug":"actions"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Business","slug":"business"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"Form Function and Design","slug":"form-function-design"}]},{"title":"Multi Step Forms","image":"assets\/img\/add-ons\/multi-step-forms.png","content":"Give submissions a boost on any longer form by making it a multi-page form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!","link":"https:\/\/ninjaforms.com\/extensions\/multi-step-forms\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms","plugin":"ninja-forms-multi-part\/multi-part.php","docs":"https:\/\/ninjaforms.com\/docs\/multi-step-forms\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms+Docs","version":"3.0.26","categories":[{"name":"Look & Feel","slug":"look-feel"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Business","slug":"business"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"Form Function and Design","slug":"form-function-design"}]},{"title":"Front-End Posting","image":"assets\/img\/add-ons\/front-end-posting.png","content":"Let users publish content just by submitting a form! Completely configurable including post type, title, even categories and tags. Set post status, author, and much more!","link":"https:\/\/ninjaforms.com\/extensions\/post-creation\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting","plugin":"ninja-forms-post-creation\/ninja-forms-post-creation.php","docs":"https:\/\/ninjaforms.com\/docs\/post-creation\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting+Docs","version":"3.0.10","categories":[{"name":"Content Management","slug":"content-management"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"User Management","slug":"user-management"}]},{"title":"File Uploads","image":"assets\/img\/add-ons\/file-uploads.png","content":"Upload files to WordPress, Google Drive, Dropbox, or Amazon S3. Upload documents, images, media, and more. Easily control file type and size. Add an upload field to any form!","link":"https:\/\/ninjaforms.com\/extensions\/file-uploads\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads","plugin":"ninja-forms-uploads\/file-uploads.php","docs":"https:\/\/ninjaforms.com\/docs\/file-uploads\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads+Docs","version":"3.3.11","categories":[{"name":"Content Management","slug":"content-management"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Business","slug":"business"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"File Management","slug":"file-management"}]},{"title":"Layout and Styles","image":"assets\/img\/add-ons\/layout-styles.png","content":"Drag and drop fields into columns and rows. Resize fields. Add backgrounds, adjust borders, and more. Design gorgeous forms without being a designer!","link":"https:\/\/ninjaforms.com\/extensions\/layouts-and-styles\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles","plugin":"ninja-forms-style\/ninja-forms-style.php","docs":"https:\/\/ninjaforms.com\/docs\/layouts-and-styles\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles+Docs","version":"3.0.29","categories":[{"name":"Look & Feel","slug":"look-feel"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Business","slug":"business"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"Form Function and Design","slug":"form-function-design"}]},{"title":"Mailchimp","image":"assets\/img\/add-ons\/mailchimp.png","content":"Bring new life to your lists with upgraded Mailchimp signup forms for WordPress! Easy to build and customize with no code required. Link to lists and interest groups!","link":"https:\/\/ninjaforms.com\/extensions\/mailchimp\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp","plugin":"ninja-forms-mail-chimp\/ninja-forms-mail-chimp.php","docs":"https:\/\/ninjaforms.com\/docs\/mailchimp\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp+Docs","version":"3.2.2","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Business","slug":"business"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"Campaign Monitor","image":"assets\/img\/add-ons\/campaign-monitor.png","content":"Make any form a custom crafted WordPress signup form for Campaign Monitor. Connect to any list, link form fields to list fields, and watch your lists grow!","link":"https:\/\/ninjaforms.com\/extensions\/campaign-monitor\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor","plugin":"ninja-forms-campaign-monitor\/ninja-forms-campaign-monitor.php","docs":"https:\/\/ninjaforms.com\/docs\/campaign-monitor\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor+Docs","version":"3.0.5","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Membership","slug":"membership"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"User Analytics","image":"assets\/img\/add-ons\/user-analytics.png","content":"Get better data on where your form traffic is coming from with every submission. Add 12+ analytics fields including UTM values, URL referrer, geo data, and more!","link":"https:\/\/ninjaforms.com\/extensions\/user-analytics\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics","plugin":"ninja-forms-user-analytics\/ninja-forms-user-analytics.php","docs":"https:\/\/ninjaforms.com\/docs\/user-analytics\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics+Docs","version":"3.0.1","categories":[{"name":"Content Management","slug":"content-management"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"},{"name":"User Management","slug":"user-management"}]},{"title":"Constant Contact","image":"assets\/img\/add-ons\/constant-contact.png","content":"Connect WordPress to Constant Contact with forms that you can build and design just the way you want, no tech skills required! Subscribe users to any list or interest group.","link":"https:\/\/ninjaforms.com\/extensions\/constant-contact\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact","plugin":"ninja-forms-constant-contact\/ninja-forms-constant-contact.php","docs":"https:\/\/ninjaforms.com\/docs\/constant-contact\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact+Docs","version":"3.0.6","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Membership","slug":"membership"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"AWeber","image":"assets\/img\/add-ons\/aweber.png","content":"Build your lists faster with easy to design, professional quality WordPress signup forms. No technical skills required. Connect WordPress to AWeber with style!","link":"https:\/\/ninjaforms.com\/extensions\/aweber\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber","plugin":"ninja-forms-aweber\/ninja-forms-aweber.php","docs":"https:\/\/ninjaforms.com\/docs\/aweber\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber+Docs","version":"3.1.1","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"PayPal Express","image":"assets\/img\/add-ons\/paypal-express.png","content":"Set up any form to accept PayPal payments with PayPal Express for WordPress! Base totals on a fixed amount, user entered amount, or a calculated total.","link":"https:\/\/ninjaforms.com\/extensions\/paypal-express\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express","plugin":"ninja-forms-paypal-express\/ninja-forms-paypal-express.php","docs":"https:\/\/ninjaforms.com\/docs\/paypal-express\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express+Docs","version":"3.0.15","categories":[{"name":"Payment Gateways","slug":"payment-gateways"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Business","slug":"business"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"MailPoet","image":"assets\/img\/add-ons\/mailpoet.png","content":"Say hello better! Customize your MailPoet signup forms to draw more subscribers than ever before. Connect WordPress to any MailPoet list in minutes!","link":"https:\/\/ninjaforms.com\/extensions\/mailpoet\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet","plugin":"ninja-forms-mailpoet\/nf-mailpoet.php","docs":"https:\/\/ninjaforms.com\/docs\/mailpoet\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet+Docs","version":"3.0.0","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"Zoho CRM","image":"assets\/img\/add-ons\/zoho-crm.png","content":"Customize your forms to get the most out of your connection between WordPress and Zoho. Link form fields directly to Zoho fields, custom fields included, from almost any module.","link":"https:\/\/ninjaforms.com\/extensions\/zoho-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM","plugin":"ninja-forms-zoho-crm\/ninja-forms-zoho-crm.php","docs":"https:\/\/ninjaforms.com\/docs\/zoho-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM+Docs","version":"3.4","categories":[{"name":"CRM Integrations","slug":"crm-integrations"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"Capsule CRM","image":"assets\/img\/add-ons\/capsule-crm.png","content":"Boost conversions from WordPress to Capsule with forms tailor made to your audience. Link form fields to Capsule fields from a wide range of modules. Custom fields too!","link":"https:\/\/ninjaforms.com\/extensions\/capsule-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM","plugin":"ninja-forms-capsule-crm\/ninja-forms-capsule-crm.php","docs":"https:\/\/ninjaforms.com\/docs\/capsule-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM+Docs","version":"3.4.0","categories":[{"name":"CRM Integrations","slug":"crm-integrations"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"Stripe","image":"assets\/img\/add-ons\/stripe.png","content":"Set up any WordPress form to accept credit card payments or donations through Stripe. Base totals on a fixed amount, user entered amount, or a calculated total!","link":"https:\/\/ninjaforms.com\/extensions\/stripe\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe","plugin":"ninja-forms-stripe\/ninja-forms-stripe.php","docs":"https:\/\/ninjaforms.com\/docs\/stripe\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe+Docs","version":"3.1.3","categories":[{"name":"Payment Gateways","slug":"payment-gateways"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"Insightly CRM","image":"assets\/img\/add-ons\/insightly-crm.png","content":"Your customer's journey begins with your WordPress forms. Send Contacts, Leads, Opportunities, Custom fields and more seamlessly from WordPress to Insightly!","link":"https:\/\/ninjaforms.com\/extensions\/insightly-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM","plugin":"ninja-forms-insightly-crm\/ninja-forms-insightly-crm.php","docs":"https:\/\/ninjaforms.com\/docs\/insightly-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM+Docs","version":"3.2.0","categories":[{"name":"CRM Integrations","slug":"crm-integrations"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"PDF Form Submission","image":"assets\/img\/add-ons\/pdf-form-submission.png","content":"Generate a PDF of any WordPress form submission. Export any submission as a PDF, or attach it to an email and send a copy to whoever needs one!","link":"https:\/\/ninjaforms.com\/extensions\/pdf\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission","plugin":"ninja-forms-pdf-submissions\/nf-pdf-submissions.php","docs":"https:\/\/ninjaforms.com\/docs\/pdf\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission+Docs","version":"3.1.4","categories":[{"name":"Content Management","slug":"content-management"},{"name":"Membership","slug":"membership"},{"name":"Business","slug":"business"},{"name":"Agency","slug":"agency"},{"name":"File Management","slug":"file-management"}]},{"title":"Trello","image":"assets\/img\/add-ons\/trello.png","content":"Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.","link":"https:\/\/ninjaforms.com\/extensions\/trello\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello","plugin":"ninja-forms-trello\/ninja-forms-trello.php","docs":"https:\/\/ninjaforms.com\/docs\/trello\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello+Docs","version":"3.0.3","categories":[{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"},{"name":"Notification and Workflow","slug":"notification-workflow"}]},{"title":"Elavon","image":"assets\/img\/add-ons\/elavon.png","content":"Accept credit card payments from any of your WordPress forms. Pass customer and invoice info from any field securely into Elavon with each payment.","link":"https:\/\/ninjaforms.com\/extensions\/elavon\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon","plugin":"ninja-forms-elavon-payment-gateway\/ninja-forms-elavon-payment-gateway.php","docs":"https:\/\/ninjaforms.com\/docs\/elavon\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon+Docs","version":"3.1.0","categories":[{"name":"Payment Gateways","slug":"payment-gateways"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"Zapier","image":"assets\/img\/add-ons\/zapier.png","content":"Don't see an add-on integration for a service you love? Don't worry! Connect WordPress to more than 1,500 different services through Zapier, no code required!","link":"https:\/\/ninjaforms.com\/extensions\/zapier\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier","plugin":"ninja-forms-zapier\/ninja-forms-zapier.php","docs":"https:\/\/ninjaforms.com\/docs\/zapier\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier+Docs","version":"3.0.8","categories":[{"name":"Membership","slug":"membership"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"File Management","slug":"file-management"},{"name":"Notification and Workflow","slug":"notification-workflow"},{"name":"Custom Integrations","slug":"custom-integrations"}]},{"title":"Salesforce CRM","image":"assets\/img\/add-ons\/salesforce-crm.png","content":"Easily map any form field to any Salesforce Object or Field. A better connection to your customers begins with a better WordPress form builder!","link":"https:\/\/ninjaforms.com\/extensions\/salesforce-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM","plugin":"ninja-forms-salesforce-crm\/ninja-forms-salesforce-crm.php","docs":"https:\/\/ninjaforms.com\/docs\/salesforce-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM+Docs","version":"3.2.0","categories":[{"name":"CRM Integrations","slug":"crm-integrations"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"Slack","image":"assets\/img\/add-ons\/slack.png","content":"Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!","link":"https:\/\/ninjaforms.com\/extensions\/slack\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack","plugin":"ninja-forms-slack\/ninja-forms-slack.php","docs":"https:\/\/ninjaforms.com\/docs\/slack\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack+Docs","version":"3.0.3","categories":[{"name":"Notifications","slug":"notifications"},{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"},{"name":"Notification and Workflow","slug":"notification-workflow"}]},{"title":"CleverReach","image":"assets\/img\/add-ons\/cleverreach.png","content":"Grow the reach of your email marketing with better CleverReach signup forms. Tailor your forms to your audience with this easy to set up integration!","link":"https:\/\/ninjaforms.com\/extensions\/cleverreach\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach","plugin":"ninja-forms-cleverreach\/ninja-forms-cleverreach.php","docs":"https:\/\/ninjaforms.com\/docs\/cleverreach\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach+Docs","version":"3.1.3","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"Webhooks","image":"assets\/img\/add-ons\/webhooks.png","content":"Can't find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!","link":"https:\/\/ninjaforms.com\/extensions\/webhooks\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks","plugin":"ninja-forms-webhooks\/ninja-forms-webhooks.php","docs":"https:\/\/ninjaforms.com\/docs\/webhooks\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks+Docs","version":"3.0.5","categories":[{"name":"Notifications","slug":"notifications"},{"name":"Actions","slug":"actions"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"Custom Integrations","slug":"custom-integrations"}]},{"title":"Excel Export","image":"assets\/img\/add-ons\/excel-export.png","content":"Export any form's submissions as a Microsoft Excel spreadsheet. Choose a date range, the fields you want to include, and export to Excel! ","link":"https:\/\/ninjaforms.com\/extensions\/excel-export\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export","plugin":"ninja-forms-excel-export\/ninja-forms-excel-export.php","docs":"https:\/\/ninjaforms.com\/docs\/excel-export\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export+Docs","version":"3.3.2","categories":[{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"},{"name":"File Management","slug":"file-management"}]},{"title":"Formstack Documents","image":"assets\/img\/add-ons\/webmerge.png","content":"Create specifically formatted templates from an uploaded PDF or Word document, then auto-fill them from any WordPress form submission!","link":"https:\/\/ninjaforms.com\/extensions\/webmerge\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents","plugin":"ninja-forms-webmerge\/ninja-forms-webmerge.php","docs":"https:\/\/ninjaforms.com\/docs\/webmerge\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents+Docs","version":"3.0.3","categories":[{"name":"Content Management","slug":"content-management"},{"name":"Actions","slug":"actions"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Agency","slug":"agency"},{"name":"File Management","slug":"file-management"}]},{"title":"Help Scout","image":"assets\/img\/add-ons\/help-scout.png","content":"Offering great support is hard. Tailor your WordPress forms to match your customers' needs with this Help Scout integration for WordPress.","link":"https:\/\/ninjaforms.com\/extensions\/help-scout\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout","plugin":null,"docs":"https:\/\/ninjaforms.com\/docs\/help-scout\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout+Docs","version":"3.1.3","categories":[{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"},{"name":"User Management","slug":"user-management"}]},{"title":"Emma","image":"assets\/img\/add-ons\/emma.png","content":"Take your email marketing further with handcrafted, easy to build signup forms that connect directly into your Emma account! ","link":"https:\/\/ninjaforms.com\/extensions\/emma\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma","plugin":"ninja-forms-emma\/ninja-forms-emma.php","docs":"https:\/\/ninjaforms.com\/docs\/emma\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma+Docs","version":"3.0.4","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Actions","slug":"actions"},{"name":"Developer","slug":"developer"},{"name":"Membership","slug":"membership"},{"name":"User","slug":"user"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"ClickSend SMS","image":"assets\/img\/add-ons\/clicksend-sms.png","content":"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!","link":"https:\/\/ninjaforms.com\/extensions\/clicksend-sms\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS","plugin":"ninja-forms-clicksend\/ninja-forms-clicksend.php","docs":"https:\/\/ninjaforms.com\/docs\/clicksend-sms\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS+Docs","version":"3.0.1","categories":[{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"},{"name":"Notification and Workflow","slug":"notification-workflow"}]},{"title":"Twilio SMS","image":"assets\/img\/add-ons\/twilio-sms.png","content":"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!","link":"https:\/\/ninjaforms.com\/extensions\/twilio\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS","plugin":"ninja-forms-twilio\/ninja-forms-twilio.php","docs":"https:\/\/ninjaforms.com\/docs\/twilio\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS+Docs","version":"3.0.1","categories":[{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"},{"name":"Notification and Workflow","slug":"notification-workflow"}]},{"title":"Recurly","image":"assets\/img\/add-ons\/recurly.png","content":"Subscription plans a part of your business model? Let your users subscribe from any WordPress form & make management easier with Recurly!","link":"https:\/\/ninjaforms.com\/extensions\/recurly\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly","plugin":"ninja-forms-recurly\/ninja-forms-recurly.php","docs":"https:\/\/ninjaforms.com\/docs\/recurly\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly+Docs","version":"3.0.4","categories":[{"name":"Payment Gateways","slug":"payment-gateways"},{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"User Management","image":"assets\/img\/add-ons\/user-management.png","content":"Allow your users to register, login, and manage their own profiles on your website. Customizable template forms for each, or design your own!","link":"https:\/\/ninjaforms.com\/extensions\/user-management\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management","plugin":"ninja-forms-user-management\/ninja-forms-user-management.php","docs":"https:\/\/ninjaforms.com\/docs\/user-management\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management+Docs","version":"3.0.12","categories":[{"name":"Content Management","slug":"content-management"},{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"User Management","slug":"user-management"}]},{"title":"Save Progress","image":"assets\/img\/add-ons\/save-progress.png","content":"Let your users save their work and reload it all when they have time to return. Don't lose out on valuable submissions for longer forms!","link":"https:\/\/ninjaforms.com\/extensions\/save-progress\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress","plugin":"ninja-forms-save-progress\/ninja-forms-save-progress.php","docs":"https:\/\/ninjaforms.com\/docs\/save-progress\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress+Docs","version":"3.0.25","categories":[{"name":"Content Management","slug":"content-management"},{"name":"Membership","slug":"membership"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"},{"name":"Form Function and Design","slug":"form-function-design"}]},{"title":"EmailOctopus","image":"assets\/img\/add-ons\/emailoctopus.png","content":"Pair WordPress' best drag and drop form builder with your EmailOctopus account for incredibly effective signup forms. Easy, complete integration.","link":"https:\/\/ninjaforms.com\/extensions\/emailoctopus\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus","plugin":"ninja-forms-emailoctopus\/ninja-forms-emailoctopus.php","docs":"https:\/\/ninjaforms.com\/docs\/emailoctopus\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus+Docs","version":"3.0.0","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Business","slug":"business"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"PipelineDeals CRM","image":"assets\/img\/add-ons\/pipelinedeals-crm.png","content":"Complete, effortless integration with PipelineDeals CRM. Increase the flow of leads into your sales pipeline with upgraded lead generation forms!","link":"https:\/\/ninjaforms.com\/extensions\/pipelinedeals-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PipelineDeals+CRM","plugin":"ninja-forms-zoho-crm\/zoho-integration.php","docs":"https:\/\/ninjaforms.com\/docs\/pipelinedeals-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PipelineDeals+CRM+Docs","version":"3.0.1","categories":[{"name":"CRM Integrations","slug":"crm-integrations"},{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"Highrise CRM","image":"assets\/img\/add-ons\/highrise-crm.png","content":"Get more out of the functional simplicity of Highrise CRM with forms that can be designed from the ground up to maximize conversion. ","link":"https:\/\/ninjaforms.com\/extensions\/highrise-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Highrise+CRM","plugin":"ninja-forms-highrise-crm\/ninja-forms-highrise-crm.php","docs":"https:\/\/ninjaforms.com\/docs\/highrise-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Highrise+CRM+Docs","version":"3.0.0","categories":[{"name":"CRM Integrations","slug":"crm-integrations"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"ConvertKit","image":"assets\/img\/add-ons\/convertkit.png","content":"Connect WordPress to your ConvertKit account with completely customizable opt-in forms. Watch your audience & sales grow like never before!","link":"https:\/\/ninjaforms.com\/extensions\/convertkit\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit","plugin":"ninja-forms-convertkit\/ninja-forms-convertkit.php","docs":"https:\/\/ninjaforms.com\/docs\/convertkit\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit+Docs","version":"3.0.2","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Membership","slug":"membership"},{"name":"Personal","slug":"personal"},{"name":"Professional","slug":"professional"},{"name":"Agency","slug":"agency"}]},{"title":"OnePageCRM","image":"assets\/img\/add-ons\/onepage-crm.png","content":"Integrate WordPress with OnePage CRM seamlessly through highly customizable WordPress forms. Make better conversions your<\/em> Next Action!","link":"https:\/\/ninjaforms.com\/extensions\/onepage-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM","plugin":"ninja-forms-onepage-crm\/ninja-forms-onepage-crm.php","docs":"https:\/\/ninjaforms.com\/docs\/onepage-crm\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM+Docs","version":"3.0.0","categories":[{"name":"CRM Integrations","slug":"crm-integrations"},{"name":"Actions","slug":"actions"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]},{"title":"ActiveCampaign","image":"assets\/img\/add-ons\/active-campaign.png","content":"Design custom forms that link perfectly to your ActiveCampaign account for the ultimate in marketing automation. Better leads begin here!","link":"https:\/\/ninjaforms.com\/extensions\/activecampaign\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign","plugin":"ninja-forms-active-campaign\/ninja-forms-active-campaign.php","docs":"https:\/\/ninjaforms.com\/docs\/activecampaign\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign+Docs","version":"3.0.6","categories":[{"name":"Email Marketing","slug":"email-marketing"},{"name":"Membership","slug":"membership"},{"name":"Agency","slug":"agency"}]}]lib/Legacy/jquery-smoothness.css000064400000065435152331132460012764 0ustar00/* * jQuery UI CSS Framework * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. */ /* Layout helpers ----------------------------------*/ .ui-helper-hidden { display: none; } .ui-helper-hidden-accessible { position: absolute; left: -99999999px; } .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .ui-helper-clearfix { display: inline-block; } /* required comment for clearfix to work in Opera \*/ * html .ui-helper-clearfix { height:1%; } .ui-helper-clearfix { display:block; } /* end clearfix */ .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } /* Interaction Cues ----------------------------------*/ .ui-state-disabled { cursor: default !important; } /* Icons ----------------------------------*/ /* states and images */ .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } /* Misc visuals ----------------------------------*/ /* Overlays */ .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* * jQuery UI CSS Framework * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px */ /* Component containers ----------------------------------*/ .ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; } .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } .ui-widget-content a { color: #222222; } .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; } .ui-widget-header a { color: #222222; } /* Interaction states ----------------------------------*/ .ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; outline: none; } .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; outline: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: 1px solid #999999; background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; outline: none; } .ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; outline: none; } .ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; outline: none; } .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; outline: none; text-decoration: none; } /* Interaction Cues ----------------------------------*/ .ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; } .ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #363636; } .ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; } .ui-state-error a, .ui-widget-content .ui-state-error a { color: #cd0a0a; } .ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #cd0a0a; } .ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } .ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; } .ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } /* Icons ----------------------------------*/ /* states and images */ .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); } .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); } .ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); } .ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); } .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); } .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); } .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); } .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png); } /* positioning */ .ui-icon-carat-1-n { background-position: 0 0; } .ui-icon-carat-1-ne { background-position: -16px 0; } .ui-icon-carat-1-e { background-position: -32px 0; } .ui-icon-carat-1-se { background-position: -48px 0; } .ui-icon-carat-1-s { background-position: -64px 0; } .ui-icon-carat-1-sw { background-position: -80px 0; } .ui-icon-carat-1-w { background-position: -96px 0; } .ui-icon-carat-1-nw { background-position: -112px 0; } .ui-icon-carat-2-n-s { background-position: -128px 0; } .ui-icon-carat-2-e-w { background-position: -144px 0; } .ui-icon-triangle-1-n { background-position: 0 -16px; } .ui-icon-triangle-1-ne { background-position: -16px -16px; } .ui-icon-triangle-1-e { background-position: -32px -16px; } .ui-icon-triangle-1-se { background-position: -48px -16px; } .ui-icon-triangle-1-s { background-position: -64px -16px; } .ui-icon-triangle-1-sw { background-position: -80px -16px; } .ui-icon-triangle-1-w { background-position: -96px -16px; } .ui-icon-triangle-1-nw { background-position: -112px -16px; } .ui-icon-triangle-2-n-s { background-position: -128px -16px; } .ui-icon-triangle-2-e-w { background-position: -144px -16px; } .ui-icon-arrow-1-n { background-position: 0 -32px; } .ui-icon-arrow-1-ne { background-position: -16px -32px; } .ui-icon-arrow-1-e { background-position: -32px -32px; } .ui-icon-arrow-1-se { background-position: -48px -32px; } .ui-icon-arrow-1-s { background-position: -64px -32px; } .ui-icon-arrow-1-sw { background-position: -80px -32px; } .ui-icon-arrow-1-w { background-position: -96px -32px; } .ui-icon-arrow-1-nw { background-position: -112px -32px; } .ui-icon-arrow-2-n-s { background-position: -128px -32px; } .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } .ui-icon-arrow-2-e-w { background-position: -160px -32px; } .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } .ui-icon-arrowstop-1-n { background-position: -192px -32px; } .ui-icon-arrowstop-1-e { background-position: -208px -32px; } .ui-icon-arrowstop-1-s { background-position: -224px -32px; } .ui-icon-arrowstop-1-w { background-position: -240px -32px; } .ui-icon-arrowthick-1-n { background-position: 0 -48px; } .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } .ui-icon-arrowthick-1-e { background-position: -32px -48px; } .ui-icon-arrowthick-1-se { background-position: -48px -48px; } .ui-icon-arrowthick-1-s { background-position: -64px -48px; } .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } .ui-icon-arrowthick-1-w { background-position: -96px -48px; } .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } .ui-icon-arrow-4 { background-position: 0 -80px; } .ui-icon-arrow-4-diag { background-position: -16px -80px; } .ui-icon-extlink { background-position: -32px -80px; } .ui-icon-newwin { background-position: -48px -80px; } .ui-icon-refresh { background-position: -64px -80px; } .ui-icon-shuffle { background-position: -80px -80px; } .ui-icon-transfer-e-w { background-position: -96px -80px; } .ui-icon-transferthick-e-w { background-position: -112px -80px; } .ui-icon-folder-collapsed { background-position: 0 -96px; } .ui-icon-folder-open { background-position: -16px -96px; } .ui-icon-document { background-position: -32px -96px; } .ui-icon-document-b { background-position: -48px -96px; } .ui-icon-note { background-position: -64px -96px; } .ui-icon-mail-closed { background-position: -80px -96px; } .ui-icon-mail-open { background-position: -96px -96px; } .ui-icon-suitcase { background-position: -112px -96px; } .ui-icon-comment { background-position: -128px -96px; } .ui-icon-person { background-position: -144px -96px; } .ui-icon-print { background-position: -160px -96px; } .ui-icon-trash { background-position: -176px -96px; } .ui-icon-locked { background-position: -192px -96px; } .ui-icon-unlocked { background-position: -208px -96px; } .ui-icon-bookmark { background-position: -224px -96px; } .ui-icon-tag { background-position: -240px -96px; } .ui-icon-home { background-position: 0 -112px; } .ui-icon-flag { background-position: -16px -112px; } .ui-icon-calendar { background-position: -32px -112px; } .ui-icon-cart { background-position: -48px -112px; } .ui-icon-pencil { background-position: -64px -112px; } .ui-icon-clock { background-position: -80px -112px; } .ui-icon-disk { background-position: -96px -112px; } .ui-icon-calculator { background-position: -112px -112px; } .ui-icon-zoomin { background-position: -128px -112px; } .ui-icon-zoomout { background-position: -144px -112px; } .ui-icon-search { background-position: -160px -112px; } .ui-icon-wrench { background-position: -176px -112px; } .ui-icon-gear { background-position: -192px -112px; } .ui-icon-heart { background-position: -208px -112px; } .ui-icon-star { background-position: -224px -112px; } .ui-icon-link { background-position: -240px -112px; } .ui-icon-cancel { background-position: 0 -128px; } .ui-icon-plus { background-position: -16px -128px; } .ui-icon-plusthick { background-position: -32px -128px; } .ui-icon-minus { background-position: -48px -128px; } .ui-icon-minusthick { background-position: -64px -128px; } .ui-icon-close { background-position: -80px -128px; } .ui-icon-closethick { background-position: -96px -128px; } .ui-icon-key { background-position: -112px -128px; } .ui-icon-lightbulb { background-position: -128px -128px; } .ui-icon-scissors { background-position: -144px -128px; } .ui-icon-clipboard { background-position: -160px -128px; } .ui-icon-copy { background-position: -176px -128px; } .ui-icon-contact { background-position: -192px -128px; } .ui-icon-image { background-position: -208px -128px; } .ui-icon-video { background-position: -224px -128px; } .ui-icon-script { background-position: -240px -128px; } .ui-icon-alert { background-position: 0 -144px; } .ui-icon-info { background-position: -16px -144px; } .ui-icon-notice { background-position: -32px -144px; } .ui-icon-help { background-position: -48px -144px; } .ui-icon-check { background-position: -64px -144px; } .ui-icon-bullet { background-position: -80px -144px; } .ui-icon-radio-off { background-position: -96px -144px; } .ui-icon-radio-on { background-position: -112px -144px; } .ui-icon-pin-w { background-position: -128px -144px; } .ui-icon-pin-s { background-position: -144px -144px; } .ui-icon-play { background-position: 0 -160px; } .ui-icon-pause { background-position: -16px -160px; } .ui-icon-seek-next { background-position: -32px -160px; } .ui-icon-seek-prev { background-position: -48px -160px; } .ui-icon-seek-end { background-position: -64px -160px; } .ui-icon-seek-first { background-position: -80px -160px; } .ui-icon-stop { background-position: -96px -160px; } .ui-icon-eject { background-position: -112px -160px; } .ui-icon-volume-off { background-position: -128px -160px; } .ui-icon-volume-on { background-position: -144px -160px; } .ui-icon-power { background-position: 0 -176px; } .ui-icon-signal-diag { background-position: -16px -176px; } .ui-icon-signal { background-position: -32px -176px; } .ui-icon-battery-0 { background-position: -48px -176px; } .ui-icon-battery-1 { background-position: -64px -176px; } .ui-icon-battery-2 { background-position: -80px -176px; } .ui-icon-battery-3 { background-position: -96px -176px; } .ui-icon-circle-plus { background-position: 0 -192px; } .ui-icon-circle-minus { background-position: -16px -192px; } .ui-icon-circle-close { background-position: -32px -192px; } .ui-icon-circle-triangle-e { background-position: -48px -192px; } .ui-icon-circle-triangle-s { background-position: -64px -192px; } .ui-icon-circle-triangle-w { background-position: -80px -192px; } .ui-icon-circle-triangle-n { background-position: -96px -192px; } .ui-icon-circle-arrow-e { background-position: -112px -192px; } .ui-icon-circle-arrow-s { background-position: -128px -192px; } .ui-icon-circle-arrow-w { background-position: -144px -192px; } .ui-icon-circle-arrow-n { background-position: -160px -192px; } .ui-icon-circle-zoomin { background-position: -176px -192px; } .ui-icon-circle-zoomout { background-position: -192px -192px; } .ui-icon-circle-check { background-position: -208px -192px; } .ui-icon-circlesmall-plus { background-position: 0 -208px; } .ui-icon-circlesmall-minus { background-position: -16px -208px; } .ui-icon-circlesmall-close { background-position: -32px -208px; } .ui-icon-squaresmall-plus { background-position: -48px -208px; } .ui-icon-squaresmall-minus { background-position: -64px -208px; } .ui-icon-squaresmall-close { background-position: -80px -208px; } .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } .ui-icon-grip-solid-vertical { background-position: -32px -224px; } .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } .ui-icon-grip-diagonal-se { background-position: -80px -224px; } /* Misc visuals ----------------------------------*/ /* Corner radius */ .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; } .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; } .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; } .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } .ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; } .ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } .ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; } .ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; } .ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; } /* Overlays */ .ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); } .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; }/* Resizable ----------------------------------*/ .ui-resizable { position: relative;} .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;} .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; } .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; } .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; } .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; } .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Accordion ----------------------------------*/ .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } .ui-accordion .ui-accordion-li-fix { display: inline; } .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; } .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; } .ui-accordion .ui-accordion-content-active { display: block; }/* Dialog ----------------------------------*/ .ui-dialog { position: relative; padding: .2em; width: 300px; } .ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative; } .ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; } .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } .ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } .ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; } .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } .ui-draggable .ui-dialog-titlebar { cursor: move; } /* Slider ----------------------------------*/ .ui-slider { position: relative; text-align: left; } .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; } .ui-slider-horizontal { height: .8em; } .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .ui-slider-horizontal .ui-slider-range-min { left: 0; } .ui-slider-horizontal .ui-slider-range-max { right: 0; } .ui-slider-vertical { width: .8em; height: 100px; } .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } .ui-slider-vertical .ui-slider-range-min { bottom: 0; } .ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs ----------------------------------*/ .ui-tabs { padding: .2em; zoom: 1; } .ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; } .ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; } .ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; } .ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; } .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ .ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; } .ui-tabs .ui-tabs-hide { display: none !important; } /* Datepicker ----------------------------------*/ .ui-datepicker { width: 17em; padding: .2em .2em 0; } .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } .ui-datepicker .ui-datepicker-prev { left:2px; } .ui-datepicker .ui-datepicker-next { right:2px; } .ui-datepicker .ui-datepicker-prev-hover { left:1px; } .ui-datepicker .ui-datepicker-next-hover { right:1px; } .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } .ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; } .ui-datepicker select.ui-datepicker-month-year {width: 100%;} .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year { width: 49%;} .ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; } .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } .ui-datepicker td { border: 0; padding: 1px; } .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } /* with multiple calendars */ .ui-datepicker.ui-datepicker-multi { width:auto; } .ui-datepicker-multi .ui-datepicker-group { float:left; } .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } .ui-datepicker-row-break { clear:both; width:100%; } /* RTL support */ .ui-datepicker-rtl { direction: rtl; } .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } .ui-datepicker-rtl .ui-datepicker-group { float:right; } .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ .ui-datepicker-cover { display: none; /*sorry for IE5*/ display/**/: block; /*sorry for IE5*/ position: absolute; /*must have*/ z-index: -1; /*must have*/ filter: mask(); /*must have*/ top: -4px; /*must have*/ left: -4px; /*must have*/ width: 200px; /*must have*/ height: 200px; /*must have*/ }/* Progressbar ----------------------------------*/ .ui-progressbar { height:1em; text-align: left; } .ui-progressbar-value { height:100%; margin: -1px; font-size: .3em; text-align: right; background-color: #0CF; } lib/Legacy/jquery-ui-fresh.min.css000064400000060776152331132460013071 0ustar00.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}/*\*/* html .ui-helper-clearfix{height:1%}.ui-helper-clearfix{display:block}/**/.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-widget{font-family:sans-serif;font-size:12px}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:sans-serif;font-size:1em}.ui-widget-content{border:1px solid #dfdfdf;background:#fff;color:#333}.ui-widget-header{border:1px solid #dfdfdf;color:#333;font-weight:bold;background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#f9f9f9,#ececec);background-image:-moz-linear-gradient(top,#f9f9f9,#ececec);background-image:-o-linear-gradient(top,#f9f9f9,#ececec);background-image:-webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));background-image:-webkit-linear-gradient(top,#f9f9f9,#ececec);background-image:linear-gradient(top,#f9f9f9,#ececec)}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #dfdfdf;background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#f9f9f9,#ececec);background-image:-moz-linear-gradient(top,#f9f9f9,#ececec);background-image:-o-linear-gradient(top,#f9f9f9,#ececec);background-image:-webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));background-image:-webkit-linear-gradient(top,#f9f9f9,#ececec);background-image:linear-gradient(top,#f9f9f9,#ececec);font-weight:normal;color:#333}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#333;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #ccc;background-color:#ececec;background-image:-ms-linear-gradient(top,#ececec,#f9f9f9);background-image:-moz-linear-gradient(top,#ececec,#f9f9f9);background-image:-o-linear-gradient(top,#ececec,#f9f9f9);background-image:-webkit-gradient(linear,left top,left bottom,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#ececec,#f9f9f9);background-image:linear-gradient(top,#ececec,#f9f9f9);font-weight:normal;color:#000}.ui-state-hover a,.ui-state-hover a:hover{color:#000;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #dfdfdf;background:#fff;font-weight:normal;color:#333}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#333;text-decoration:none}.ui-widget :active{outline:0}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #e6db55;background:#ffffe0;color:#333}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#333}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #c00;background:#ffebe8;color:#c00}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#c00}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#c00}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-icon{width:16px;height:16px;background-image:url(../images/ui-icons_333333_256x240.png)}.ui-widget-content .ui-icon{background-image:url(../images/ui-icons_333333_256x240.png)}.ui-widget-header .ui-icon{background-image:url(../images/ui-icons_999999_256x240.png)}.ui-state-default .ui-icon{background-image:url(../images/ui-icons_333333_256x240.png)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(../images/ui-icons_333333_256x240.png)}.ui-state-active .ui-icon{background-image:url(../images/ui-icons_333333_256x240.png)}.ui-state-highlight .ui-icon{background-image:url(../images/ui-icons_21759b_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(../images/ui-icons_cc0000_256x240.png)}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-off{background-position:-96px -144px}.ui-icon-radio-on{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.ui-widget-overlay{background:#000;opacity:.6;filter:Alpha(Opacity=60)}.ui-widget-shadow{box-shadow:0 0 16px rgba(0,0,0,0.3)}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block}.ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px}.ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;text-decoration:none!important;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-dialog{position:fixed;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0}.ui-tabs .ui-tabs-hide{display:none!important}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month-year{width:100%}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current{float:right}.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker-cover{display:none;display:block;position:absolute;z-index:-1;filter:mask();top:-4px;left:-4px;width:200px;height:200px}.ui-progressbar{height:2em;text-align:left}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-widget-header{background-color:#83b4d8;background-image:linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-o-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-moz-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-webkit-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%);background-image:-ms-linear-gradient(bottom,#72a7cf 0,#90c5ee 100%)}lib/Conversion/Calculations.php000064400000011407152331132460012574 0ustar00 '+', 'subtract' => '-', 'multiply' => '*', 'divide' => '/' ); private $form = array(); private $tax_rate; public function __construct( $form_data ) { $this->form = $form_data; } public function run() { // Extract Calculations from Fields foreach( $this->form[ 'fields' ] as $key => $field ){ if( 'tax' == $field[ 'type' ] ){ $this->set_tax( $field[ 'default_value' ] ); continue; } if( 'calc' != $field[ 'type' ] ) continue; $calculation = array( 'order' => $key, 'name' => $field[ 'key' ], 'eq' => '', 'dec' => $field[ 'calc_places' ] ); switch( $field[ 'calc_method' ] ){ case 'eq': $calculation[ 'eq' ] = $field[ 'calc_eq' ]; break; case 'fields': $calculation[ 'eq' ] = trim( array_reduce( $field[ 'calc' ], array( $this, 'reduce_operations' ), '' ) ); break; case 'auto': $calculation[ 'eq' ] = trim( array_reduce( $this->form[ 'fields' ], array( $this, 'reduce_auto_total' ), '' ) ); break; } // Remove any leading `+`. $calculation[ 'eq' ] = ltrim( $calculation[ 'eq' ], '+' ); // Handle opinionated "Total" calc and tax field. if( 'total' == $field[ 'calc_name' ] && isset( $this->tax_rate ) ){ $calculation[ 'eq' ] = "( {$calculation[ 'eq' ]} ) * {$this->tax_rate}"; } $this->form[ 'settings' ][ 'calculations' ][] = $calculation; } // Replace Field IDs with Merge Tags if( isset( $this->form[ 'settings' ][ 'calculations' ] ) ) { foreach ($this->form['fields'] as $field) { if( ! isset( $field[ 'id' ] ) ) continue; $search = 'field_' . $field['id']; $replace = $this->merge_tag( $field ); foreach ($this->form['settings']['calculations'] as $key => $calculation) { $this->form['settings']['calculations'][ $key ]['eq'] = str_replace($search, $replace, $calculation['eq']); } } } // Convert Calc Fields to HTML Fields for displaying Calculations foreach( $this->form[ 'fields' ] as $key => $field ){ if( 'tax' == $field[ 'type' ] ){ $this->form[ 'fields' ][ $key ][ 'type' ] = 'html'; $this->form[ 'fields' ][ $key ][ 'default' ] = "{$field[ 'label' ]}
    {$field[ 'default_value' ]}"; continue; } if( 'calc' != $field[ 'type' ] ) continue; $this->form[ 'fields' ][ $key ][ 'type' ] = 'html'; if( 'html' == $field[ 'calc_display_type' ] ){ // TODO: HTML Output fields seem to loose the label. $search = '[ninja_forms_calc]'; $replace = $this->merge_tag( $field ); $subject = $field[ 'calc_display_html' ]; $this->form[ 'fields' ][ $key ][ 'default' ] = str_replace( $search, $replace, $subject ); } else { $this->form[ 'fields' ][ $key ][ 'default' ] = '' . $field[ 'label' ] . '
    ' . $this->merge_tag( $field ); } } return $this->form; } private function reduce_operations( $eq, $calc ) { $operation = $calc[ 'op' ]; return ' ' . $eq . $this->operations[ $operation ] . ' field_' . $calc[ 'field' ] . ' '; } private function reduce_auto_total( $eq, $field ) { if( ! isset( $field[ 'calc_auto_include' ] ) || 1 != $field[ 'calc_auto_include' ] ) return $eq; return $eq . '+ {field:' . $field[ 'key' ] . ':calc} '; } private function merge_tag( $field ) { $tag = $field[ 'key' ]; if( 'calc' == $field[ 'type' ] ){ return '{calc:' . $tag . '}'; } else { return '{field:' . $tag . ':calc}'; } } /** * Sets a float formatted tax rate. * @param string|int|float $tax * * @return float|int */ private function set_tax( $tax ) { // ex 15% -> 1.15 return $this->tax_rate = ( floatval( $tax ) + 100 ) / 100; } } add_filter( 'ninja_forms_after_upgrade_settings', 'ninja_forms_conversion_calculations' ); function ninja_forms_conversion_calculations( $form_data ){ $conversion = new NF_Conversion_Calculations( $form_data ); return $conversion->run(); } lib/StepProcessing/step-processing.php000064400000012465152331132460014130 0ustar00action, array( $this, 'processing' ) ); } /** * Process our request. * Call the appropriate loading or step functions. * * @since 2.7.6 * @return void */ public function processing() { // Get our passed arguments. These come from the querysting of the processing page. if ( isset ( $_REQUEST['args'] ) ) { $this->args = WPN_Helper::sanitize_text_field($_REQUEST['args']); if ( isset ( $this->args['redirect'] ) ) { if( wp_validate_redirect( $this->args['redirect'] ) ){ $this->redirect = wp_sanitize_redirect( $this->args['redirect'] ); } } } else { $this->args = array(); } // Get our current step. $this->step = isset ( $_REQUEST['step'] )? esc_html( $_REQUEST['step'] ) : 'loading'; // Get our total steps $this->total_steps = isset ( $_REQUEST['total_steps'] )? esc_html( $_REQUEST['total_steps'] ) : 0; // If our step is loading, then we need to return how many total steps there are along with the next step, which is 1. if ( 'loading' == $this->step ) { $return = $this->loading(); if ( ! isset ( $return['step'] ) ) { $saved_step = get_user_option( 'nf_step_processing_' . $this->action . '_step' ); if ( ! empty ( $saved_step ) ) { $this->step = $saved_step; } else { $this->step = 1; } $return['step'] = $this->step; } if ( ! isset ( $return['complete'] ) ) { $return['complete'] = false; } } else { // We aren't on the loading step, so do our processing. $return = $this->step(); if ( ! isset ( $return['step'] ) ) { $this->step++; $return['step'] = $this->step; } if ( ! isset ( $return['complete'] ) ) { if ( $this->step > $this->total_steps ) { $complete = true; } else { $complete = false; } $return['complete'] = $complete; } $return['total_steps'] = $this->total_steps; } $user_id = get_current_user_id(); if ( $return['complete'] ) { // Delete our step option delete_user_option( $user_id, 'nf_step_processing_' . $this->action . '_step' ); // Set our redirect variable. $return['redirect'] = $this->redirect; // Run our complete function $this->complete(); } else { // Save our current step so that we can resume if necessary update_user_option( $user_id, 'nf_step_processing_' . $this->action . '_step', $this->step ); } if ( isset ( $this->redirect ) && ! empty ( $this->redirect ) ) { $this->args['redirect'] = $this->redirect; } $return['errors'] = ( $this->errors ) ? $this->errors : FALSE; $return['args'] = $this->args; echo json_encode( $return ); die(); } /** * Run our loading process. * This function should be overwritten in child classes. * * @since 2.7.4 * @return array $args */ public function loading() { // This space left intentionally blank. } /** * This function is called for every step. * This function should be overwritten in child classes. * * @since 2.7.4 * @return array $args */ public function step() { // This space left intentionally blank. } /** * This function is called for every step. * This function should be overwritten in child classes. * * @since 2.7.4 * @return array $args */ public function complete() { // This space left intentionally blank. } }lib/StepProcessing/menu.php000064400000010626152331132460011744 0ustar00 $step_labels ) ); } /** * Output our step processing admin page. * * @since 2.7.6 * @return void */ function nf_output_step_processing_page() { $page_title = isset ( $_REQUEST['title'] ) ? urldecode( esc_html ( $_REQUEST['title'] ) ) : esc_html__( 'Ninja Forms - Processing', 'ninja-forms' ); ?>

    characters. * Resolved an error that was causing deprecated function warnings in php error logs. * Forms with calculations should now display properly on sites using a "formal" language setting. * Export should now properly appear as an option in the bulk actions on the submissions page. * Resolved an error that was preventing the add-on manager from installing plugins. *Changes:* * Add-on updates will now enforce php requirements if the current version on the installation is below the minimum for the add-on. = 3.4.23 (12 February 2020) = *Security:* * Patched a delayed XSS vulnerability in our email action. * Hardened the authorization security on our settings page. * Patched a stored XSS vulnerability on our settings page. *Bugs:* * Ninja Forms should now properly honor user profile language settings if they are not the site default. * Opening the form builder should no longer result in a php warning about an invalid argument. * Cleaned up our publish code to avoid a few other php warnings. *Changes:* * Updated our event registration template to be more accessibility compliant. = 3.4.22.1 (4 February 2020) = *Security:* * Hardened the authorization security on several of our form endpoints. * Audited all translation functions to prevent injection attacks. = 3.4.22 (21 November 2019) = *Bugs:* * The unique field restriction should no longer block payment actions from completing. * Corrected an error that was preventing the current list of favorite fields from displaying in any location. * Updated some of our builder styles to account for updates in WordPress 5.3. * Corrected an error that sometimes caused the images in the select image field to not be found. * Disabled an internal error logging function that was sometimes causing bloat in our database tables. *Changes:* * Email actions now support file attachments from the WordPress media library. = 3.4.21 (11 November 2019) = *Bugs:* * Added a missing label to our honeypot field, in case styling errors somehow make it visible. * Removed an errant console message from our admin dashboard. * Resolved an issue that was sometimes resulting in warnings being written to logs on form load. * Modified our Gutenberg block to prevent it from displaying improperly on Bedrock installations. *Changes:* * The select image field has arrived! * Added functionality for resetting the public link on a form. * Forms in the dashboard can now be sorted by shortcode (ID). * Added merge tags for form title, form id, and username (if authenticated). = 3.4.20 (19 September 2019) = *Bugs:* * Resolved an issue that was causing public links to fail on duplicated forms. * The merge tag selector box in the form builder should no longer appear halfway off the page on smaller screen sizes. * Long field keys should no longer cause the merge tag list to cover up the categories in the merge tag selector box. * Resolved an issue that was causing some actions to fail after returning from a redirected payment gateway. * List field options on imported forms should now appear in the correct order in the form builder. = 3.4.19 (16 September 2019) = *Bugs:* * Resolved an error that rarely caused form import to output as successful, when it had actually failed. * The unique field restriction should no longer honor "nothing" as a valid value. * Removed some deprecated dependencies that were throwing notices in the block editor. * Updated list field item import in the form builder to make it less confusing. = 3.4.18 (15 August 2019) = *Bugs:* * SendWP registration should no longer cause an error when the SendWP plugin is already installed. * Resolved an issue that was causing several of our action settings to display improperly in Firefox. * Corrected a problem that was sometimes causing submission of forms with a PayPal action to fail. *Changes:* * Added currency support for the Chinese Yuan. = 3.4.17 (12 August 2019) = *Security:* * Removed an outdated template that was localizing a couple server variables. *Bugs:* * Currency masks should no longer prevent text fields from working properly in calculations. * Cleaned up a few php notices due to older functions. * Corrected the issue that was preventing required updates from completing. (Required updates remain disabled for the time being.) * Number fields with a minimum value will now display that value as a placeholder, not a value. * Switched the first and last name translations in our French translation pack. * Added a missing attribute that was required by screen readers to the fields on our submission editor page. * Resolved an error that was causing multi-select lists to not work properly in calculations. * Submission limits should now be honored for forms that were displayed before the limit was reached. * Dynamic option values should now work for ALL list types. * Resolved an issue that was causing forms to display as code in some page builders. *Changes:* * The Advanced tab in the form builder should now communicate that developer mode is disabled, if that is the case. * Added currency support for the Russian Ruble. = 3.4.16 (19 June 2019) = *Bugs:* * Temporarily disabled required updates in order to investigate a reported issue with them freezing. = 3.4.15 (18 June 2019) = *Bugs:* * Resolved an issue that sometimes caused the form dashboard to not display. = 3.4.14 (18 June 2019) = *Bugs:* * Resolved an issue that sometimes caused required updates to fail due to allowed server memory. * Public form link should now be more reliable without needing to update site permalinks. * Corrected a typo in the shortcode output of the Display Your Form settings. * Dailed back our add-on updater script. It was checking for updates too often. * Resolved an issue that was sometimes causing form submission to hang on processing, even though it had finished submitting data. * Corrected a typo in the help text for auto-adding a submit button. * Dynamic options in lists should now work properly everywhere, not just on form display. * Fixed a couple of broken links on our Get Help page. * The public link setting should no longer appear on the dashboard for forms where it is not enabled. *Changes:* * Updated our Details page in the WordPress repo. * Date fields can no longer be added to calculations. = 3.4.13 (17 May 2019) = *Bugs:* * Restored the display of some action settings that were being improperly hidden in the form builder. (e.g. Stripe metadata and Update Profile custom meta.) * Resolved an issue that sometimes caused submission to freeze when a required field was left empty. * Forms should no longer fail to display when a total field is referenced in a calculation. = 3.4.12 (13 May 2019) = *Bugs:* * Updated our form load process to better account for reported excessive page load times. * Resolved an issue that was causing various add-ons to behave strangely when there were multiple forms on a single page. *Changes:* * "Light" opinionated styles are now enabled by default on new Ninja Forms installations. = 3.4.11 (7 May 2019) = *Bugs:* * Multiple instances of the same form can now be loaded on a page. * Resolved an issue that sometimes prevented favorite fields from being added to a form. * Realistic preview of multiselect fields will now render more accurately in the builder. * Resolved an issue that sometimes caused required updates to miscommunicate completion progress. * Field keys should once more be accessible in submission filters. * Querystring merge tags should no longer display their tags when the querystring is not present. * Builder help texts should no longer contain unrendered HTML elements. *Changes:* * Added currency support for the Malaysian Ringgit. * Added realistic field support for the save button and password field in the form builder. * Some settings have been registered as developer options, which will be disabled by default to avoid settings clutter. * Public links are now available for Ninja Forms! Found next to the publish button, public links provide form access to anyone with the link. Just copy and paste the unique URL and anyone can see and use your form. = 3.4.10 (15 April 2019) = *Bugs:* * Resolved an issue that caused the form builder to crash when editing forms that had a select list with no options. = 3.4.9 (10 April 2019) = *Bugs:* * Resolved an issue that sometimes caused submission dates to show inaccurately in the submissions table. *Changes:* * We've upgraded our form building experience with realistic field representations! = 3.4.8 (4 April 2019) = *Bugs:* * Corrected an issue that sometimes caused forms with large calculations to not display properly. = 3.4.7 (3 April 2019) = *Bugs:* * Resolved an error that was causing form submission to fail on some php versions. = 3.4.6 (2 April 2019) = *Bugs:* * Resolved several issues that sometimes caused notices to be logged on newer versions of php. * Changed the priority of the redirect action so that it should always fire last. * Calculations should now have more consistent results when numbers are input in international formats. *Changes:* * The following field types have been deprecated: Product, Quantity, Shipping, Total. = 3.4.5 (19 March 2019) = *Changes:* * Upgrade to THREE for legacy users will no longer immediately trigger additional required updates. * Introducing SendWP - A dedicated WordPress email solution! = 3.4.4 (13 February 2019) = *Bugs:* * Resolved an issue that was sometimes causing the submission sequence to reset. = 3.4.3 (5 February 2019) = *Bugs:* * Resolved an issue that was causing some form imports to fail. * Submission exports of checkbox fields that have been modified by an admin should now display their proper value in the csv. * Resolved an issue that was rarely causing actions to fire twice. = 3.4.2 (17 January 2019) = *Bugs:* * Resolved an issue that sometimes caused fields to not appear on the form after publish. (Special thanks to Tim de Hoog and Sidekick-IT). = 3.4.1 (15 January 2019) = *Bugs:* * Corrected an error that was causing form duplication to fail. * Sites with WP_DEBUG enabled should no longer display an undefined 'maintenance' column error on form load. = 3.4.0 (14 January 2019) = *Changes:* * Implemented a new import process, which should be more reliable with large form imports. * Upgraded our data structure to reduce loading times for forms and the form builder. = 3.3.21.3 (10 January 2019) = *Security:* * (2.9x) Duplicated previous blind SQL injection patch for our deprecated 2.9x codebase. Many thanks to Plugin Vulnerabilities for reporting that our initial pass missed this. = 3.3.21.2 (7 January 2019) = *Security:* * Patched a blind SQL injection vulnerability in the search filter on our submissions page. Thank you to Samuel Anttila at netsec.expert for practicing responsible disclosure. = 3.3.21.1 (3 January 2019) = *Security:* * Patched a reflected XSS vulnerability in our administrative dashboard. Thank you to Samuel Anttila at netsec.expert for practicing responsible disclosure. = 3.3.21 (2 January 2019) = *Bugs:* * Resolved an issue that caused our Gutenberg Block to not dispaly in the post editor when the Twenty Nineteen theme is active. *Changes:* * Product and quantity field merge tags can no longer be referenced in calculations. = 3.3.20 (6 December 2018) = *Changes:* * Finalized the Gutenberg block. (No longer a Beta feature.) = 3.3.19.1 (29 November 2018) = *Security:* * Patched an open redirect vulnerability using a url parameter in our submission download page. Thank you to Muhammad Talha Khan for practicing responsible disclosure. = 3.3.19 (20 November 2018) = *Bugs:* * Placeholder text should now be visible in number fields that have a minimum value. * Corrected an error that was sometimes causing number fields to clear themselves when Multi-part Forms is active. *Changes:* * The rich text editor in the form builder should now wrap lines while in code view. = 3.3.18 (14 November 2018) = *Security:* * Patched a redirect XSS vulnerability using code injection on our submissions page. Thank you to Muhammad Talha Khan for practicing responsible disclosure. *Bugs:* * Resolved an issue where the WordPress is_search function was being called incorrectly in some cases. * Custom columns should no longer be added to non-Ninja Forms custom post types with meta values containing '_field'. * Resolved an issue that sometimes caused error log entries related to an invalid IP. * The form selector on the submissions page should now be visible on mobile devices. * Resolved an issue that sometimes caused CSV exports to have multiple header rows. = 3.3.17 (16 October 2018) = *Bugs:* * Pressing the tab key while in the delete a form modal should now shift focus to the delete button. * Resolved an issue that could have caused some display issues on the dashboard due to cached scripts. *Changes:* * Updated several of our product images on the apps & integrations tab of the dashboard. * Our in-app marketing feed will now fetch from a remote site for more swift product updates. * [Ninja Shop](https://getninjashop.com/?utm_medium=dashboard_banner&utm_source=ninja-forms&utm_campaign=Awareness) has arrived! = 3.3.16 (17 September 2018) = *Bugs:* * Resolved an issue that was sometimes causing upgrades on multi-site to delete forms from other sites on the installation. * Corrected a bad reference in our Create a Post template documentation. * List field values sent in an email via CSV should no longer display as NULL if their value was 0. * Resolved a couple issues that were causing server warnings. *Changes:* * Removed some outdated objects to improve speed of publish. * Added modal on downgrade to prevent accidental usage. * Password fields have been deprecated in Ninja Forms core. Some of our add-ons will still utilize them. = 3.3.15 (31 August 2018) = *Bugs:* * Fixed an issue causing errors when forms containing checkboxes had csv files attached to Email Actions = 3.3.14.1 (28 August 2018) = *Security:* * Corrected patch for CSV injection vulnerability to include a previously overlooked input. = 3.3.14 (27 August 2018) = *Security:* * Patched an XSS vulnerability that allowed javascript injection into the form import function. Many thanks to Adam Roberts for practicing responsible disclosure. * Patched a CSV injection vulnerability that allowed user values to run some scripts when opening exported CSV files with Excel. *Bugs:* * The selector in the add a form modal should now scroll properly instead of being cut off by the bottom of the browser when it contains a large number of forms. * Resolved an issue that sometimes caused the character limit option for paragraph fields to count words instead. = 3.3.13 (8 August 2018) = *Changes:* * Added the abililty to have no default value for Country and State fields. * Added the Indian Rupee to the list of available currencies * Removed unnecessary comments from the main field template *Bugs:* * User Meta Tags will no longer print out the tag when users are not logged in = 3.3.12 (31 July 2018) = *Bugs:* * Resolved an issue that sometimes caused form titles to not display in dropdown menus. = 3.3.11 (23 July 2018) = *Changes:* * Updated save methods for form settings to reduce potential encoding errors. = 3.3.10 (16 July 2018) = *Bugs:* * (Beta) The Ninja Forms Gutenberg block should now work properly on the newest version of Gutenberg. * Min and max values for number fields should once more accept decimal values. * Resolved an issue that was sometimes causing a description text block to be output, even if it contained no text. * Radio lists should now properly display the default value when using our opinionated styles. = 3.3.9 (6 July 2018) = *Security:* * Patched a vulnerability that could allow certain Export Personal Data requests to retrieve unrelated submission data. *Bugs:* * Fixed a broken image link in the Edit User Profile template. * Resolved an issue that was very rarely causing the conversion process to run again after upgrade, removing all forms but the default Contact Me. = 3.3.8 (2 July 2018) = *Bugs:* * The styling of the Ninja Forms settings page has been corrected. * Forms can once again be previewed before they have been published. * Resolved an issue that was sometimes causing submission expiration to not register properly on publish. * The submission expiration setting will no longer accept a negative number as valid input. *Changes:* * Ninja Forms has migrated to GitLab! All repository links should now be updated. * Added an expired submissions cleanup button to our settings page to supplement cleanup on sites with a large number of submissions. = 3.3.7 (21 June 2018) = *Bugs:* * Submissions removed by the expired submissions feature should now be moved to the trash instead of completely removed. = 3.3.6 (20 June 2018) = *Bugs:* * Resolved an issue that sometimes caused the form builder to crash when deleting a field. = 3.3.5 (18 June 2018) = *Bugs:* * Made some performance updates to several of our popup modals. * The agency remove marketing hook should now properly hide the new services tab. *Changes:* * Fields now display admin labels (if they exist) instead of labels in the store submission action settings. * Added a tooltip to the value section of list fields, giving details about allowed characters. * List field merge tags can now be configured to show labels instead of values by appending ":label" to the merge tag. * The store submissions action can now be configured to remove submissions that exceed a defined timeframe. * Added a confirm modal to field deletion to prevent accidental removal of data. = 3.3.4 (11 June 2018) = *Bugs:* * Resolved an issue that was preventing placeholder text from appearing in paragraph text fields. *Chnages:* * Unlocked the services tab. * (Beta) Ninja Forms Add-on Manager is now available. * Ninja Mail - Transactional Email is now available. = 3.3.3 (5 June 2018) = *Bugs:* * Resolved an issue that sometimes caused our opt-in modal to become undismissable. = 3.3.2 (4 June 2018) = *Bugs:* * Fields that do not actually save data should no longer appear in the include/exclude fields list for the store submission action. * Improved performance of our Add Form modal in the post editor. * Resolved an issue that sometimes caused the Submissions page to display as a white screen. *Changes:* * (GDPR) Fields excluded by the store submission action will now show their values as (redacted) in the edit submission screen, rather than displaying nothing. * (GDPR) The delete data request action now includes a setting to specify anonimization of Ninja Forms data, rather than full deletion. * (GDPR) Fields now have a setting to specify if they are personally identifiable data. * Registered a cleanup process to take care of some outdated and unnecessary data we have been storing in various data records. * Added several ARIA attributes to the fields that were missing them. * The Delete All Data button now cleans up several additional options that we'd recently added. * The list of actions in the form builder has been updated, and non-enabled actions now include a short blurb describing their usage. = 3.3.1 (22 May 2018) = *Bugs:* * Removed a fatal error caused by having a WordPress version below 4.9.6. * Export personal data requests created by anonymous uers through Ninja Forms should no longer error out in the admin. * Updated a setting in our submissions to prevent them from being shown in archives created by WordPress. = 3.3.0 (22 May 2018) = *Bugs:* * Resolved a bug that was sometimes causing clicks to not register in the admin. *Changes:* * Individual fields can now be excluded from the store submission action. * (GDPR) The delete data request action can now be added to a form, allowing your users to request deletion of their Ninja Forms submissions. * (GDPR) The export data request action can now be added to a form, allowing your users to request a record of their Ninja Forms submissions. * (GDPR) Added templates for data removal and data export requests. * (GDPR) Added a suggested privacy policy content block for the use of Ninja Forms. * (GDPR) We've updated our Ninja Forms opt-in/opt-out behavior for anonymous usage statistics. * (Developers) We've added a layout of our database structure to our public repository. = 3.2.27 (11 May 2018) = *Bugs:* * Date fields should no longer fail validation if their format is set to the default setting. = 3.2.26 (10 May 2018) = *Bugs:* * Resolved an issue that was sometimes causing date fields to always fail validation. = 3.2.25 (8 May 2018) = *Bugs:* * Date fields should now properly recognize date format for validation purposes. * Resolved an issue that sometimes caused collect payment actions to fail. * Removed the random error text that sometimes appeared on form export. * Resolved an issue that sometimes caused the contents of plain text emails to not display properly in the form builder. = 3.2.24 (30 April 2018) = *Bugs:* * Hidden fields should no longer be hidden in the form builder. = 3.2.23 (26 April 2018) = *Bugs:* * Resolved an issue that was causing an error in the console while using Safari. * Fixed a bug that sometimes caused fields to not display properly when their labels contained non-ASCII characters. * Resolved an issue that caused an error message to appear in the dashboard on older PHP versions. *Changes:* * New form templates are here! = 3.2.22 (23 April 2018) = *Bugs:* * List field values will no longer disallow spaces as valid input. * Options can now be properly added to duplicated list fields. * Resolved an issue that caused the save table settings in the form builder to display no text in Firefox. * Fixed a spacing issue for field labels set to be hidden in our opinionated styles. *Changes:* * List fields will now output labels instead of values in the {fields_table} and {all_fields_table} merge tags. = 3.2.21 (6 April 2018) = *Bugs:* * Resolved an issue with the automatic update process. = 3.2.20 (6 April 2018) = *Bugs:* * Resolved a bug that was sometimes causing form submission to fail. = 3.2.19 (5 April 2018) = *Bugs:* * Resolved an issue that was causing the save progress table settings to not display properly in the form builder. * Resolved a long-standing bug that rarely caused form submissions to fail. *Changes:* * Added Akismet Anti-Spam integration. * Updated form deletion process to warn admins that all submissions for that form will also be deleted. * Users below PHP version 5.6 will now be seeing a notice, informing them of the outdated version. = 3.2.18 (27 March 2018) = *Bugs:* * Resolved an issue that was preventing merge tags from being properly input into some settings. = 3.2.17 (26 March 2018) = *Bugs:* * Form data should now be properly deleted when rolling back to 2.9x and then re-upgrading. * Resolved an issue that was causing the first publish after upgrade to fail. * Forms set to clear but not hide after submission should now properly show reCaptcha fields after the clear. * Resolved an issue that sometimes caused long forms to not publish properly. * Removed a rogue plus sign that was causing php warnings in the post editor. * Resolved an issue that was sometimes causing calculation values to display as 0 in submissions. *Changes:* * Trashed submissions are now visible, allowing them to be deleted permanently before the typical expiration period for trashed posts. * Added a "Move to Trash" button to the edit submission screen. * Removed some legacy code in our merge tag system that was contributing to increased admin page load times. * The "Remove ALL Ninja Forms data upon uninstall" checkbox has been replaced with a button, which allows us to run a more efficient cleanup process. * Email fields should now do a better job of catching invalid values before submission. * Form autocomplete is here! * (Beta) Added filtering to the form selector in the Gutenberg block. * List values now have a more strict filter to prevent errors caused by special characters. = 3.2.16 (27 February 2018) = *Bugs:* * Fixed a bug that was sometimes causing no actions to fire upon form submission. * Resolved an issue that was causing hidden fields to be visible if they contained a calculated value. = 3.2.15 (26 February 2018) = *Security:* * Patched a potential parameter tampering vulnerability. *Bugs:* * Fixed an issue that was sometimes causing decimal place values to not be honored in calculations after submission. * Parts should now properly validate individually if the option is enabled in the Multi-part Forms add-on settings. * User meta merge tags should no longer display at all for logged out users. * Resolved an issue that was causing the star rating field's label setting to be uneditable. *Changes:* * (Beta) Updated the Gutenberg block to output the selected form within the editor for display purposes. * Added a form filter to submissions and exports, allowing for more rapid selection of the intended form. = 3.2.14 (20 February 2018) = *Security:* * Patched a potential XSS vulnerability. Many thanks to Kasper Karlsson at Omegapoint for practicing responsible disclosure. *Bugs:* * Resolved an issue that was sometimes causing code snippets to appear on form display. * Newly created date fields should now no longer contain a timestamp in their default display setting. * Star rating fields should now be properly caught by required field validation. * Default values of star rating fields should no longer be considered "valid" for required field validation. * Single checkbox fields can now be edited in the submission edit screen again. * Resolved an issue that sometimes caused single checkbox fields to not display a value in exports. * Field and calculation merge tags can now be used in the same HTML field. * Images can once again be used in help text values. = 3.2.13 (14 February 2018) = *Bugs:* * Resolved an issue that caused recently published forms to not display in Internet Explorer. = 3.2.12 (13 February 2018) = *Bugs:* * Localized several strings for translation that had previously been missed. * Radio and checkbox lists will now properly save updates made on the edit submission page. * Resolved an issue that sometimes caused excessive page load times in the WordPress admin. *Changes:* * (Beta) Added a Gutenberg block to replace the shortcode when Gutenberg is active. = 3.2.11 (26 January 2018) = *Bugs:* * Resolved an error that sometimes caused PHP warnings on certain admin pages. * Help text should now display properly again. *Changes:* * Updated translation packs for Spanish (Spain and Mexico), courtesy of Jesus Garcia. = 3.2.10 (23 January 2018) = *Bugs:* * Fixed an issue that sometimes caused forms to not display after publish. * Calculations with a decimal setting of 0 should now properly round to 0 decimal places instead of the default 2. * Fixed a bug that was causing some settings boxes to contain seemingly random snippets of code. = 3.2.9 (17 January 2018) = *Bugs:* * Resolved an issue that sometimes caused certain Categories to not appear in the terms list field. * Fixed a visual bug where drop downs in CRM actions were seemingly being reset to the default option on page refresh. = 3.2.8 (4 January 2018) = *Bugs:* * Resolved an issue that sometimes caused Forms to not load in the Dashboard. *Changes:* * Made some minor tweaks to improve the loading and processing efficiency of certain admin pages. = 3.2.7 (3 January 2018) = *Bugs:* * Submissions of duplicated forms should now properly increment their sequence number. * The merge tag selector box should now detect the lower edge of the window and shift upwards accordingly. * Resolved an issue that was causing input masks on required fields to throw an error on focus. * Fields with currency input masks should now properly save data upon submission. * Resolved several lingering PHP errors and warnings. * Checkbox list and radio list fields with wrapped values should now display properly. * Wrapped labels for single checkbox fields should now display properly. * Resolved an issue that was causing strictly numeric custom input masks with more than 12 characters to display improperly. *Changes:* * Added custom checked and unchecked value settings to checkbox fields. * The calendar in the date field is now translatable. = 3.2.6 (13 December 2017) = *Bugs:* * Fixed an issue that was breaking form display when multi-select fields had no pre-selected values. = 3.2.5 (13 December 2017) = *Bugs:* * Submission searching should now work in WordPress version 4.8.3 and above. * Fixed an issue that sometimes caused forms not to publish after deleting a field. * Fixed a bug that was causing User Management to sometimes not properly set default user meta values. * Fixed a compatibility issue with the add a form widget in PHP 7.2. * Fixed an issue that caused Ninja Forms to crash on activation with a PHP version missing the Parser Functions package. * Fixed a bug that sometimes caused too many database calls on pages where multiple JavaScript errors were present. * Fixed a bug that sometimes caused a Request Entity Too Large error on form publish. * Fixed an issue that caused the Add Form button to sometimes display improperly on smaller screens. *Changes:* * Added an option to ignore UTF-8 encoding on export/import, which can correct forms importing with no field data. * Updated the format of submission dates to match that of the WordPress install. * Updated the custom field template file path so that it should now properly pull from child themes when active. = 3.2.4 (7 November 2017) = *Bugs:* * Multi-select fields can now be updated in the submission edit page. * Modified number fields to better handle rounding numbers with decimals. *Changes:* * Added the GNU license file. = 3.2.3 (19 October 2017) = *Bugs:* * Fixed a bug that caused some 2.9.x to 3.0 conversion to fail. = 3.2.2 (12 October 2017) = *Bugs:* * Required field validation should now work properly with the Layout and Styles add-on. * The email action now removes extra comma separators from email settings like(To, BCC, CC, reply-to, and from address'). * The date range on the submissions table will now show the correct submissions for the selected dates. * Fixed a bug that was causing form imports with extra characters at the beginning to break. * Forms that fail to load on the front-end will now remove the loading animation from the page. * Calculations will display correctly on the front end in HTML fields if the Save Progress add-on is active on sites. * The decimal setting in calculations will no longer break if non-numeric values are input into them. * Unique fields will no longer try to validate deleted submissions. * Country fields should now be sorted alphabetically in non-English languages. * Calculations decimal setting now defaults to 2 decimal places if the setting is left empty. * Fixed "This is not a required field" to read "This IS a required field" in Spanish locales. * Added translatable text for the (of) in the input limit text. *Changes:* * Created a merge tag for custom user meta. This will allow users to do things like pre-populate fields with custom user meta. * Added placeholder for date field. * We now have currency support for South African Rand(ZAR). * Added support for setting number of rows shown on a multi-select list on the front end. * Created a confirm field. This will allow users to map another field on their form to it and will validate the input on the front end with the field it is mapped to. * Added a new merge tag for submission time. This will display the time the form was submitted. * Added WordPress filter to disable all Ninja Forms in app sales banners. * The merge tag selector can now be used in the body of HTML fields. = 3.2.1 (14 September 2017) = *Bugs:* * Fixed a bug that caused opt-ins to show incorrectly. * Multiple Google reCaptchas on the same page should function properly. * Fixed the layout of description text for checkbox lists. * New lines in rich text areas should convert properly from version 2.9.x. * Merge Tag insertion should maintain the proper cursor position in all cases. * Form duplication should happen much more quickly. * Unknown field types will be removed upon upgrade to prevent forms from breaking in 3.0. * Fixed several issues with converting merge tags from version 2.9.x to 3.0. *Changes:* * A portion of users will begin to see upgrade notices for Ninja Forms 3.0. The number of users who see this notice will increase in future releases. * "Currency" has been added to the list of input mask options. * Basic error logging has been added to Ninja Forms; the "Get Help" page will now show the most recently recorded errors. * Added a setting for changing stat opt-in tracking. * License activation errors will now show more detail. = 3.2 (14 September 2017) = *Bugs:* * Multiple Google reCaptchas on the same page should function properly. * Fixed the layout of description text for checkbox lists. * New lines in rich text areas should convert properly from version 2.9.x. * Merge Tag insertion should maintain the proper cursor position in all cases. * Form duplication should happen much more quickly. * Unknown field types will be removed upon upgrade to prevent forms from breaking in 3.0. * Fixed several issues with converting merge tags from version 2.9.x to 3.0. *Changes:* * "Currency" has been added to the list of input mask options. * Basic error logging has been added to Ninja Forms; the "Get Help" page will now show the most recently recorded errors. * Added a setting for changing stat opt-in tracking. * License activation errors will now show more detail. = 3.1.9 (04 August 2017) = *Bugs:* * Fixed a bug that caused form submissions to fail with an NF_ESO_PARSER error. * The nf_sub_seq_num shortcode should now be properly converted when upgrading from 2.9.x to 3.0. * bcc and cc fields in email actions should convert properly when upgrading from 2.9.x to 3.0. * Clicking on icons and buttons in the builder should be much more consistent. * Scrolling in the drawer should work properly when viewing the form builder on a mobile device. * Fixed a bug that prevented the drawer from opening when editing a duplicated list field. = 3.1.8 (01 August 2017) = *Features:* * You can now limit form submissions based upon unique fields. *Changes:* * Simplified the collect payment action by making it easier to set a paymen total. * Form titles should appear in form export filenames. * Added a filter to submissions table view labels. * Removed the wrapper class for the ReCaptcha field. * WordPress date settings are now the default for datepicker fields. * Condensed admin notices into an easier to dismiss format. * Links to media files entered into the RTE for actions should now use the title of that media item. * Added a confirm dialog to the rollback button. * Term merge tags should use the term label now, rather than the ID. * Added a minimum WordPress version check to the Get Help->System Status page. *Bugs:* * Fixed a bug that could cause the dashboard to fail to display. * Updated form templates for consistency. * Email action errors should only show to admin users who are logged-in. * Translation of submission labels and text should work properly. * Password fields should not save in the database. * Empty h3 tags are no longer output when a form title is empty. * Merge tags should work more consistently in all contexts. * The delete animation on the dashboard should be clearer. * Fixed conflicts with other plugins using our EOS math library. * Created On dates for imported and duplicated forms should reflect the current date. * Fixed a bug with calculations that could cause a NaN error in JavaScript. * Merge tags should work properly when previewing a form with unpublished changes. = 3.1.7 (01 August 2017) = *Features:* * You can now limit form submissions based upon unique fields. *Changes:* * Simplified the collect payment action by making it easier to set a paymen total. * Form titles should appear in form export filenames. * Added a filter to submissions table view labels. * Removed the wrapper class for the ReCaptcha field. * WordPress date settings are now the default for datepicker fields. * Condensed admin notices into an easier to dismiss format. * Links to media files entered into the RTE for actions should now use the title of that media item. * Added a confirm dialog to the rollback button. * Term merge tags should use the term label now, rather than the ID. * Added a minimum WordPress version check to the Get Help->System Status page. *Bugs:* * Updated form templates for consistency. * Email action errors should only show to admin users who are logged-in. * Translation of submission labels and text should work properly. * Password fields should not save in the database. * Empty h3 tags are no longer output when a form title is empty. * Merge tags should work more consistently in all contexts. * The delete animation on the dashboard should be clearer. * Fixed conflicts with other plugins using our EOS math library. * Created On dates for imported and duplicated forms should reflect the current date. * Fixed a bug with calculations that could cause a NaN error in JavaScript. * Merge tags should work properly when previewing a form with unpublished changes. = 3.1.6 (26 June 2017) = *Bugs:* * Fixed a bug that could cause Recurly and Stripe add-ons to fail. * Fixed a bug with bad form titles that could cause the form dashboard to crash. * Calculations with whitespaces should be better handled on the front-end. * Checkbox label positioning should be correct in all setups. * Form deletion confirmation modal should now be styled correctly. = 3.1.5 (21 June 2017) = *Bugs:* * Empty Calculation rounding settings should now default to 2. * Using post meta merge tags should now work with other post merge tags. * Star Rating fields now have admin key settings. * Form cache should now be properly removed when a field is deleted. * The "New Form" button should now show when creating a new post or page. * HTML fields should now show properly in merge tags. * Fixed a bug with the LogLevel class. * Querystring merge tags should now be empty rather than showing {querystring:foo} when no querystring is present. * Date Created should now be more accurate in all contexts. * Fixed a bug that could cause forms to fail to render on the front-end when themes passed content through wpautop. = 3.1.4 (06 June 2017) = *Bugs:* * Fixed a possible memory leak that could cause the builder to crash if the settings drawer was opened multiple times. = 3.1.3 (31 May 2017) = *Bugs:* * Users should be able to re-submit forms that fail initial anti-spam checks. * Fixed some bugs related to calculations and submission. *Changes:* * Added sortable icons to the forms dashboard. = 3.1.2 (16 May 2017) = *Bugs:* * Fixed several possible PHP notices. * Fixed a possible conflict with the bbPress plugin. * Editing submissions with Checkbox List fields should work properly. * Product fields with costs over 1000 should now work properly. * Fixed a bug that caused duplicate submissions if a form wasn't hidden after submission. *Changes:* * Forms should be sorted by title in the dashboard and the submissions page. = 3.1.1 (02 May 2017) = *Bugs:* * Fixed bugs in the new Merge Tag UI that prevented it from being opened properly via clicks. = 3.1 (02 May 2017) = *Changes:* * Added a dashboard view for forms, removing the "All Forms" and "Add New" submenus. * All new Merge Tag UI for inserting Merge Tags into forms and actions. * Refactored calculations, as well as adding an option to set calculation rounding. * Updated the WordPress.org readme file. * Opening the "new form" page should automatically open the drawer to add new fields. *Bugs:* * Fixed several bugs with calculations and locales that use non-American thousands and decimal separators. * Products with a price over 999 should now render and calculate properly. * Editing a submission and using a single quote should not break the submission editor. * Fixed several PHP notices. * After successful submission, the page should only scroll to the success message if it is not fully visible. * Inline email validation should work properly for longer email domains, i.e. @liverpool.ac.uk = 3.0.34.1 (25 April 2017) = *Security:* * Fixed a possible security export related to WP Sessions. Please update as soon as possible. = 3.0.34 (18 April 2017) = *Bugs:* * Fixed a bug that could cause emails to fail with a 500 internal server error. = 3.0.33 (11 April 2017) = *Changes:* * Added an admin warning notice if Contact Form 7 is installed. * Users who upgrade to version 3.0 will now see an admin notice instructing them to check their converted forms. * Added the TLS version, if installed, to the get help page. * Fixed a bug that could cause a PHP fatal error with older, insecure versions of PHP. *Bugs:* * Fixed a bug that caused field labels to be output multiple times in submission exports. * Removed several PHP Warnings related to publishing longer forms. * Updated inline email check so that it should work on longer domains, i.e. co.uk. * Editing submissions with single checkboxes should now save properly. * Fields should be properly sorted in CSV files attached to emails. * Sequential IDs for submissions on converted or imported forms should not reset. = 3.0.32 (11 April 2017) = *Changes:* * Added an admin warning notice if Contact Form 7 is installed. * Users who upgrade to version 3.0 will now see an admin notice instructing them to check their converted forms. * Added the TLS version, if installed, to the get help page. *Bugs:* * Fixed a bug that caused field labels to be output multiple times in submission exports. * Removed several PHP Warnings related to publishing longer forms. * Updated inline email check so that it should work on longer domains, i.e. co.uk. * Editing submissions with single checkboxes should now save properly. * Fields should be properly sorted in CSV files attached to emails. * Sequential IDs for submissions on converted or imported forms should not reset. = 3.0.31 (07 March 2017) = *Bugs:* * Confirmed password fields should work properly. * Fixed a bug with List Fields that caused the Import button to overlap the Add New button. * Closed a possible security vulnerability by escaping HTML in the builder. * CSV files should now be deleted from the server after they are emailed when attached to an email action. *Changes:* * Added a filter so that add-ons and custom code can add forms to the templates section of the New Form builder. = 3.0.30 (28 February 2017) = *Bugs:* * Publishing a form should now populate the backup database properly in all environments. * Editing submissions that have selects or other lists should now work properly. *Changes:* * Added Trello to the available actions list. * Added a JS exception catcher to help debug when forms don't display because of JS errors. = 3.0.29 (21 February 2017) = *Bugs:* * Fixed a bug that could cause previewed forms from submitting properly. = 3.0.28 (21 February 2017) = *Bugs:* * Fixed a JS notice caused by the use of jQuery.attr() instead of jQuery.prop(). * Modified the approach to form publishing to improve performance for larger forms and prevent bugs when saving. * Google reCaptcha should now work properly when a field has an error. *Changes:* * Added a jQuery event: "nfFormReady" to the document that can be used to fire JS code when a form has loaded. * Using jQuery.val() should now properly work for Ninja Forms fields. * Updated the update check URL for add-ons. * Added a filter for form settings upon form display localization. = 3.0.27 (2 February 2017) = *Bugs:* * Field data should populate properly in all submission exports. = 3.0.26 (30 January 2017) = *Bugs:* * Field data should populate properly in submission exports. * Email errors upon form submission should be clearer. * Fixed a compatibility bug with other plugins that use the WP List Table. = 3.0.26 (30 January 2017) = *Bugs:* * Field data should populate properly in submission exports. * Email errors upon form submission should be clearer. * Fixed a compatibility bug with other plugins that use the WP List Table. = 3.0.25 (26 January 2017) = *Changes:* * Increasing the performance of submissions and form builder loading. * Improved compatibility with popular caching plugins. *Bugs:* * Field tags should now properly populate in calculation merge tags. * Submission exports should now always order properly. * Fixed a bug with submissions exporting non-Ninja Forms data. * Importing forms with non-UTF8 characters should now import properly. * Fixed a bug with converting forms from 2.9.x to 3.0. = 3.0.24 (15 January 2017) = *Bugs:* * Fixed a bug with Google reCaptcha and the deprecated, 2.9.x codebase. = 3.0.23 (12 January 2017) = *Bugs:* * Fixed a bug with form duplication. = 3.0.22 (11 January 2017) = *Bugs:* * Fixed a bug that caused installations to crash on older, insecure versions of PHP. = 3.0.21 (11 January 2017) = *Changes:* * Added an import for list options. * Refactored form submissions so that they are more responsive for longer forms with more submissions. * Moved the 'reply_to' setting to the primary section in email actions. * Added error handling for invalid "TO" email addresses. *Bugs:* * Fixed a bug with calculations that caused brackets to appear in calculation fields. * On/off settings should now save properly in all situations. * Dragging a field should now properly scroll the screen. = 3.0.20 (21 December 2016) = *Changes:* * Added a prompt before deleting forms on the all-forms table. * Added the ability to use: {field:name} <{field:email}> to get Name - Address formatting in email actions CC, BCC, Reply-To Field. * Updated the third-party EDD library. * Removed references to the modernizer library from the builder. * Added Twilio and Videomail to the list of available actions. *Bugs:* * Fixed a bug that caused fields to be out of order when exporting or editing submissions. * Product fields should now respect locale-specific number formating. * Fixed a bug with restarting form submit. This caused issues with PayPal Express and other add-ons. * When adding new list options, the 'value' should auto-populate from 'label' setting. * The tab order for list options should now work properly. = 3.0.19 (07 December 2016) = *Bugs:* * Product, Shipping, and Total fields should now work in all locales. * Fixed a major bug preventing forms with date fields from showing in some instances. = 3.0.18 (06 December 2016) = *Bugs:* * Fixed a bug with 3.0.17 and the deprecated code base. = 3.0.17 (06 December 2016) = *Bugs:* * When using the RTE setting on the textarea field, the media button should show on all themes. * The Modernizr library should only be loaded if you are using the RTE on the front-end. * System date merge tag should respect the date format plugin setting. * Exported submissions should always have correct order. * Fixed a bug with list fields that caused the wrong one to be selected if calc values are used. * HTML entered into field and list option labels should be rendered properly. * Fixed a bug that caused the date picker to fail on the front-end. * Filtering field values before display should now work properly in all instances. * Help text should always render properly on the front-end. * Fixed a bug with rendering the ReCaptcha field in the 2.9.x codebase. * Error messages should work properly when displaying multiple forms on the same page. *Changes:* * The browser should scroll to the success message after a form is submitted. * Added a label to the ReCaptcha field. * Added decimal date seperators (MM.DD.YYYY, YYYY.MM.DD, etc.) to the date field setting. * Sending initial data to api.ninjaforms.com for users who have opted in. * Added the $sub_id data to the ninja_forms_custom_columns filter. * Field selectors in the builder should always show the "nicename" of the field rather than the programmatic name. = 3.0.16 (21 November 2016) = *Bugs:* * Fixed a bug with export values and the Country Field to show full labels as opposed to abbreviations. * Fixed a bug with duplicate field keys when duplicating a field. * Fixed a bug with merge tags not being replaced in actions. * Fixed a bug with unknown field types. * Fixed a bug with capabilities and granting access to forms and submissions. * Fixed a bug with restricting decimal steps in the number fields ( i.e. set increments by .01 ). * Fixed a bug with reCaptcha validation not halting the form submission. * Fixed a bug with displaying help text on the form display. * Fixed a bug with enqueueing the media library scripts for the rich text editor. * Fixed a bug with the submitting button text disappearing when a form was cleared after submission. * Fixed a bug with converting email actions with multiple emails addresses in a single setting. * Fixed a bug with prefixing the postmeta database table with custom prefixes. * Fixed a bug with reCaptcha not showing due to a script loading race condition. *Changes:* * Added an additional parameter for calculations to force 2 decimal rounding. * Added a year range setting for the date field's datepicker. * Added a filter to email action settings before the email is sent. = 3.0.15 (09 November 2016) = *Bugs:* * Fixed a bug with custom field processing not updating field data properly. *Changes:* * Added better support for extensions interacting with field duplication in the builder. = 3.0.14 (03 November 2016) = *Bugs:* * Fixed a bug with input masks that prevented custom masks from working properly. *Changes:* * Added per-form label settings under Advanced. * Re-instated the changes and bug-fixes in version 3.0.12 (See below) = 3.0.13 (01 November 2016) = *Bugs:* * Emergency release to deal with some bugs in version 3.0.12. = 3.0.12 (01 November 2016) = *Bugs:* * Fixed a bug with 0 (zero) values failing required validation. * Fixed a bug with Star Rating field values displaying in reverse order. * Fixed a bug with Success Message showing on all forms on a page. * Fixed a bug with the Modernizr library adding extra CSS classes to the page. * Fixed a bug with converting the Country Field from v2.9.x to v3.x. * Fixed a bug with repeating submission sequence numbers. *Changes:* * Added empty ninja_forms_get_form_by_id() function to avoid fatal errors. * Performance enhancements for form display and submission processing for long forms. * Added a field ID specific field class for styling. = 3.0.11 (18 October 2016) = *Bugs:* * Fixed a bug with overly strict error catching that might stall form submission. *Changes:* * Updated field validation to not check required settings on unknown field types. * Added a process to remove empty fields without field keys. = 3.0.10 (18 October 2016) = *Bugs:* * Fixed a bug with non-visible fields generating empty HTML on display. * Fixed a bug with dashicons not showing for non-logged in users. * Fixed a bug with converting fields with 'inside' labels. * Fixed a bug with showing custom columns in submissions per-form. * Fixed a bug with field IDs not properly being updated on form publish. * Fixed a bug with the country field not displaying the country list in the form. * Fixed a bug with formatting of textareas and merge tags. * Fixed a bug with displaying calculation values for checkboxes and merge tags. * Fixed a bug with duplicate fields breaking the builder and form display. * Fixed a bug with consistency and form cache data for the builder and form display. *Changes:* * Added a hook in the JavaScript for the Pikaday datepicker. * Removed the Submission Post Type from the Admin Bar display. * Excluded the Submission Post Type from public query. * Added better error reporting for 500 Internal Server Errors for troubleshooting. * Added a cleanup routine for duplicate fields in forms. = 3.0.9 (12 October 2016) = *Bugs:* * Fixed a bug with loading the form builder from cache. = 3.0.8 (11 October 2016) = *Changes:* * Fixed a typo in the Submission Date Filter. * Added a filter (ninja_forms_display_fields) for removing fields form display. * Added a check for misconfigured shortcodes that break output. *Bugs:* * Fixed a bug with exporting list fields in submissions. * Fixed a bug with outputting extra text on the submission submenu. * Fixed a bug with importing checkbox lists and default values. * Fixed a bug with imported forms that contain HTML in fields. * Fixed a bug with date field formatting. * Fixed a bug with the builder drawer not scrolling to the top when opened. * Fixed a bug with using hidden fields in calculations. * Fixed a bug with refreshing newsletter lists in form actions. * Fixed a bug with field calculation values in merge tags. = 3.0.7 (06 October 2016) = *Changes:* * Added background processing for publishing long forms to avoid timeout errors. = 3.0.6 (27 September 2016) = *Changes:* * Added the $post variable to the submission info metabox. * Suppressed HTML fields from submission data. * Suppressed HTML fields from all fields merge tags * Added description text to the Rollback Setting (Advanced). * Disabled the "Edit" page link when previewing a form. * Added a plugin wide currency setting in place of the static currency symbol setting. *Bugs:* * Fixed a bug with validating email addresses (ie properly evaluate "+"s). * Fixed a bug with browser compatibility. * Fixed a bug with displaying column content on other post types. * Fixed a bug with updating form submission error messages. * Fixed a bug with creating empty settings on activation. * Fixed a bug with column class collisions in CSS. * Fixed a bug with field help text not displaying on the form. = 3.0.5 (13 September 2016) = *Bugs:* * Fixed a bug with checking for a disabled PHP functions that might cause a fatal error. = 3.0.4 (13 September 2016) = *Bugs:* * Fixed a bug with aggressive CDN caching. = 3.0.3 (13 September 2016) = *Bugs:* * Added isInteger polyfill for IE11. * Added deprecated functions to prevent PHP errors. * Required fields message should now not show when the form is hidden. * Field-specific scripts should only load when that field is present. * Updating translatable text. * Radio lists should no longer select an option by default. * Conversions should be more stable. * Text to HTML field conversion should now happen correctly. * Fixed a conflict with Visual Composer. = 3.0.2 (7 September 2016) = *Bugs:* * Fixed a bug that caused PHP notices to be displayed. = 3.0.1 (7 September 2016) = *Changes:* * Add a deprecated notice for ninja_forms_get_all_forms function. *Bugs:* * Fixed a bug with templates. * Fixed a bug with required field markings. = 3.0 (6 September 2016) = *Changes:* * Release of Ninja Forms THREE services/remote-installer-skin.php000064400000001075152331132460013333 0ustar00errors = $errors; } public function get_errors(){ return $this->errors; } public function feedback( $string ){ // This section intentionally left blank } public function before(){ // This section intentionally left blank. } public function after(){ // This section intentionally left blank. } } services/bootstrap.php000064400000021116152331132460011116 0ustar00setup(); add_action( 'wp_ajax_nf_services', function(){ $services = apply_filters( 'ninja_forms_services', [ 'ninja-forms-addon-manager' => [ 'name' => esc_html__( 'Add-on Manager (Beta)', 'ninja-mail' ), 'slug' => 'ninja-forms-addon-manager', 'installPath' => 'ninja-forms-addon-manager/ninja-forms-addon-manager.php', 'description' => 'Install any purchased Ninja Forms add-ons with a single click. No need to download a file or copy/paste a license key! * Won\'t work on a local dev environment.', 'enabled' => null, 'learnMore' => '

    Here at Ninja Forms, we love add-ons. Add-ons let us create awesome products that serve very specific users with integrations, workflows, and power features, while keeping those options away from users that don’t need them. It also lets our users pay for what they need, rather than a bloated, one-size-fits-all solution.

    Despite all the great things about add-ons, there’s a glaring downside: installing 40+ add-ons and setting up licensing for all of those add-ons is a pain. We’re trying to change all of that with the Ninja Forms Add-on Manager, and we want your help putting it through its paces!

    The Add-on Manager makes installing Ninja Forms Add-ons a snap. Once you connect your site to my.ninjaforms.com using the Setup button, you can install add-ons and setup their licenses with a single click!

    How it works:

    1. Connect to my.ninjaforms.com using the Try the Add-on Manager Beta button.
    2. Click the “Install Plugins” button.
    3. Click “Install” for the plugins you want to install.
    4. Make awesome stuff using Ninja Forms!

    The add-on manager is free to use for anyone that has a Ninja Forms add-on purchase. At the moment, it’s in a Beta state as we work out some bugs. We’d love your feedback. Please, try it out today!


    ', ], 'sendwp' => [ 'name' => esc_html__( 'SendWP - Transactional Email', 'ninja-forms' ), 'slug' => 'sendwp', 'installPath' => 'sendwp/sendwp.php', 'description' => 'SendWP makes getting emails delivered as simple as a few clicks. So you can relax, knowing those important emails are being delivered on time.', 'enabled' => null, 'learnMore' => '

    Getting WordPress email into an inbox just got a lot easier

    SendWP makes getting emails delivered as simple as a few clicks. So you can relax, knowing those important emails are being delivered on time.

    ', ] ] ); wp_die( json_encode( [ 'data' => array_values( $services ) ] ) ); }); add_action( 'admin_enqueue_scripts', function() { wp_localize_script( 'nf-dashboard', 'nfPromotions', array() ); }); add_action( 'wp_ajax_nf_services_install', function() { // register_shutdown_function(function(){ // if( ! error_get_last() ) return; // echo '
    ';
      //   print_r( error_get_last() );
      //   echo '
    '; // }); if ( ! current_user_can('install_plugins') ) die( json_encode( [ 'error' => esc_html__( 'Sorry, you are not allowed to install plugins on this site.', 'ninja-forms' ) ] ) ); if ( ! isset($_REQUEST['security']) || empty($_REQUEST['security']) || ! wp_verify_nonce($_REQUEST['security'], 'ninja_forms_dashboard_nonce') ) die( json_encode( [ 'error' => esc_html__( 'Invalid nonce.', 'ninja-forms' ) ] ) ); $plugin = \WPN_Helper::sanitize_text_field($_REQUEST['plugin']); $install_path = \WPN_Helper::sanitize_text_field($_REQUEST['install_path']); // If we aren't remotely installing the add-on manager or SendWP, die. if ( 'sendwp' !== $plugin && 'ninja-forms-addon-manager' !== $plugin ) die( json_encode( [ 'error' => esc_html__( 'Sorry, you are not allowed to install plugins on this site.', 'ninja-forms' ) ] ) ); include_once( ABSPATH . 'wp-admin/includes/plugin-install.php' ); //for plugins_api.. $api = plugins_api( 'plugin_information', array( 'slug' => $plugin, 'fields' => array( 'short_description' => false, 'sections' => false, 'requires' => false, 'rating' => false, 'ratings' => false, 'downloaded' => false, 'last_updated' => false, 'added' => false, 'tags' => false, 'compatibility' => false, 'homepage' => false, 'donate_link' => false, ), ) ); if ( is_wp_error( $api ) ) { die( json_encode( [ 'error' => $api->get_error_message() ] ) ); } $plugins = get_plugins(); if( ! isset( $plugins[ $install_path ] ) ){ if ( ! class_exists( 'Plugin_Upgrader' ) ) { include_once ABSPATH . 'wp-admin/includes/file.php'; include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; } include_once plugin_dir_path( __FILE__ ) . 'remote-installer-skin.php'; ob_start(); $upgrader = new \Plugin_Upgrader( new Remote_Installer_Skin() ); $install = $upgrader->install( $api->download_link ); ob_clean(); if( ! $install ){ die( json_encode( [ 'error' => $upgrader->skin->get_errors() ] ) ); } } if( ! is_plugin_active($plugin) ){ ob_start(); $activated = activate_plugin( $install_path ); ob_clean(); if( is_wp_error( $activated ) ){ die( json_encode( [ 'error' => $activated->get_error_message() ] ) ); } } $response = apply_filters( 'nf_services_installed_' . $plugin, '1' ); echo json_encode( $response ); die( '1' ); }); /** * Override the Ninja Mail download link until published in the repository. */ /* add_filter( 'plugins_api_result', function( $response, $action, $args ){ if( 'plugin_information' !== $action ) return $response; if( 'ninja-mail' !== $args->slug ) return $response; $response = new \stdClass(); $response->download_link = 'http://my.ninjaforms.com/wp-content/uploads/ninja-mail-792d39446223d14b8464e214773e7786627855d8.zip'; return $response; }, 10, 3 ); */ /** * Override the Add-on Manager download link until published in the repository. */ /* add_filter( 'plugins_api_result', function( $response, $action, $args ){ if( 'plugin_information' !== $action ) return $response; if( 'ninja-forms-addon-manager' !== $args->slug ) return $response; $response = new \stdClass(); $response->download_link = 'http://my.ninjaforms.com/wp-content/uploads/ninja-forms-addon-manager-4b6a3f724b27d6d9f7d4e89ebe12dad215ec1b20.zip'; return $response; }, 10, 3 ); add_filter( 'http_request_args', function( $args, $url ){ if( defined( 'WP_DEBUG' ) && WP_DEBUG ) { $args['sslverify'] = false; // Local development $args['reject_unsafe_urls'] = false; } return $args; }, 10, 2 ); */ add_action( 'wp_ajax_nf_update_cache_mode', function() { $use_cache = false; $response = array(); check_ajax_referer( 'ninja_forms_dashboard_nonce', 'security' ); if( ! current_user_can('manage_options') ) { $response[ 'errors' ] = array( "Current user doesn't have permission." ); echo json_encode( $response ); die(); } if(!isset( $_POST[ 'cache_mode' ] ) ) { $response[ 'errors' ] = array( 'No cache mode value given' ); echo json_encode( $response ); die(); } $use_cache = ( intval($_POST[ 'cache_mode' ]) === 1 ) ? true : false; update_option( 'ninja_forms_cache_mode', $use_cache ); $response['message'] = 'Cache mode successfully saved'; echo json_encode($response); die(); }); services/README.md000064400000007015152331132460007651 0ustar00# Ninja Forms Services Requires PHP v5.6+. ## Definition of Terms - Client: The WordPress installation where the Ninja Forms plugin is installed. - Server: The site providing service functionality, ie [My.NinjaForms.com](https://my.ninjaforms.com). ## Registering Service Integrations - Filter: `ninja_forms_services` Note: This filter is implemented during an AJAX request, which is used to "live update" the current state of a service from the Ninja Forms Dashboard. The below properties can be set dynamically to correspond to the current "state" of the service. Example ```php add_filter( 'ninja_forms_services', function( $services ){ $services[ 'my-service' ] => [ 'name' => esc_html__( 'My Service', 'textdomain' ), 'slug' => 'my-service', // Duplicate of the array key. 'description' => esc_html__( 'This is my service.', 'textdomain' ), 'enabled' => true, 'installPath' => 'my-plugin/my-plugin.php', ]; return $services; }); ``` Properties: - `name` string (required) The translatable, human-readable name of the service. - `slug` string (required) The programatic reference for the registered service. - `description` string (required) The short description to display on the services tab. - `enabled` bool|null (required) Pass `null` to disable the toggle. - `installPath` string (required) The expected plugin install path (inside of `/wp-content/plugins`). - `learnMore` string (required) The content of the "Learn More" modal. Additional properties for installed service plugins: - `serviceLink` array (required) Properties for the external link to manage the service. - `text` string The content of the service link. - `href` string The URL of the service link. - `classes` string Add additional classes to the link, ie 'nf-button primary'. - `target` string Specify the anchor target. - `connect_url` string Override the OAuth connection URL. - `successMessage` string The content of the modal after the service is setup. - The success message can be triggered by passing the `?success` query string in the OAuth redirect with the `slug` of the service. ## OAuth Connection to My.NinjaForms.com Ninja Forms services are provided via a secure OAuth connection to My.NinjaForms.com. The `client` generates a local secret key which is passed to the `server` when connecting a service. The `server` accepts the passed secret key, registers an new OAuth Client, and returns the OAuth Client ID. Communication between the `server` and the `client` requires a `hash` of the combined OAuth Client ID and OAuth Client Secret. Registered services have access to OAuth connection data via the `\NinjaForms\OAuth` class. - `::is_connected()` - `::get_client_id()` - `::get_client_secret()` - `::connect_url()` ### Customizing the OAuth Connect Flow The OAuth flow can be customized the a specific service (for an optimization experience) by passing a `connect_url` (See above). ## Remote Plugin Installation Service integrations are provided as additional plugins, which are installed remotely from the WordPress.org plugin directory. This remote plugin installation uses a custom [Plugin_Installer_Skin](https://developer.wordpress.org/reference/classes/plugin_installer_skin/) in order to suppress any output feedback text - since this process happens asynchronously. See [services/remote-installer-skin.php](/services/remote-installer-skin.php). ## Local Development When developing with a local copy the Ninja Forms Server, specify the `NF_SERVER_URL`. Example: ```php define('NF_SERVER_URL', 'https://my.ninjaforms.test'); ``` services/oauth.php000064400000010125152331132460010217 0ustar00base_url = trailingslashit( $base_url ); } protected function __construct() { $this->client_id = get_option( 'ninja_forms_oauth_client_id' ); $this->client_secret = get_option( 'ninja_forms_oauth_client_secret' ); if( ! $this->client_secret ){ $this->client_secret = self::generate_secret(); update_option( 'ninja_forms_oauth_client_secret', $this->client_secret ); } } public function setup() { add_action( 'wp_ajax_nf_oauth', function(){ // Does the current user have admin privileges if (!current_user_can(apply_filters('ninja_forms_admin_all_forms_capabilities', 'manage_options'))) { return; } wp_die( json_encode( [ 'data' => [ 'connected' => ( $this->client_id ), 'connect_url' => self::connect_url(), ] ] ) ); }); // These Ajax calls handled in 'connect' and 'disconnect', respectively add_action( 'wp_ajax_nf_oauth_connect', [ $this, 'connect' ] ); add_action( 'wp_ajax_nf_oauth_disconnect', [ $this, 'disconnect' ] ); } public static function is_connected() { return ( self::getInstance()->client_id ); } public static function get_client_id() { return self::getInstance()->client_id; } public static function get_client_secret() { return self::getInstance()->client_secret; } public static function connect_url( $endpoint = 'connect' ) { $client_redirect = add_query_arg( [ 'action' => 'nf_oauth_connect', 'nonce' => wp_create_nonce( 'nf-oauth-connect' ) ], admin_url( 'admin-ajax.php' ) ); return add_query_arg([ 'client_secret' => self::get_client_secret(), 'client_redirect' => urlencode( $client_redirect ), 'client_site_url' => urlencode( site_url() ), ], self::getInstance()->base_url . $endpoint ); } public function connect() { // Does the current user have admin privileges if (!current_user_can('manage_options')) { return; } if( ! wp_verify_nonce( $_REQUEST['nonce'], 'nf-oauth-connect' ) ) return; if( ! isset( $_GET[ 'client_id' ] ) ) return; $client_id = sanitize_text_field( $_GET[ 'client_id' ] ); update_option( 'ninja_forms_oauth_client_id', $client_id ); if( isset( $_GET[ 'redirect' ] ) ){ $redirect = sanitize_text_field( $_GET[ 'redirect' ] ); $redirect = add_query_arg( 'client_id', $client_id, $redirect ); wp_redirect( $redirect ); exit; } wp_safe_redirect( admin_url( 'admin.php?page=ninja-forms#services' ) ); exit; } public function disconnect() { // Does the current user have admin privileges if (!current_user_can('manage_options')) { return; } if( ! wp_verify_nonce( $_REQUEST['nonce'], 'nf-oauth-disconnect' ) ) return; do_action( 'ninja_forms_oauth_disconnect' ); $url = trailingslashit( $this->base_url ) . 'disconnect'; $args = [ 'blocking' => false, 'method' => 'DELETE', 'body' => [ 'client_id' => get_option( 'ninja_forms_oauth_client_id' ), 'client_secret' => get_option( 'ninja_forms_oauth_client_secret' ) ] ]; $response = wp_remote_request( $url, $args ); delete_option( 'ninja_forms_oauth_client_id' ); delete_option( 'ninja_forms_oauth_client_secret' ); wp_die( 1 ); } public static function generate_secret( $length = 40 ) { if( 0 >= $length ) $length = 40; // Min key length. if( 255 <= $length ) $length = 255; // Max key length. $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $random_string = ''; for ( $i = 0; $i < $length; $i ++ ) { $random_string .= $characters[ rand( 0, strlen( $characters ) - 1 ) ]; } return $random_string; } } assets/img/nf-logo-vert.png000064400000014275152331132460011660 0ustar00PNG  IHDRdtEXtSoftwareAdobe ImageReadyqe<$iTXtXML:com.adobe.xmp G/IDATx] xT'{&$$$(%Fv( mA6ezZ)Z[\HmbeR#bV%Td,!dd,s/9 d2gfLyއpocl`(#`0,`@ a0X  `0 a0X  `0C ?aB0s0>qZmf&C9TzNSeENLv#I06FX/Ji :*6 ;96 ` $0q p ?0zA-xX <@u #Qd6vEMV NJw M2 8G-=m<Ej'V 9X|,Lr1=>Mn", * :+c<p/U`.L^ʟ[X fZס(C+~SaV( fL&Q F< #p=Z#VHY vY q$SP"K_1]xeF=TKqƓ 2q1md}Z iwO i`/aN~|LY ԰lV=KqL Ŀ@_y9YQ]q7dQ?\Iqz(t/\ t6p>Jϐ հ 8XA]M Aˡ cB=?Eh ̪-R:Z@7cMr{+}Kx>oL`- ␰*;p`G i2[R)aYtJ`@ ٛn'+MOx=഑-dq}tMqC[G) dM@X2rF@ D[bA D8KҜ/ :m* D#RG'@<L.ɊDž Bڌ=‚A 4 ng\F[C}ڴpu>|8R\vɓرK7o+*ɣﰋ[ 2VHZE7 툈+NesMٳg"0f -   Pp ^Άᢵ؂Ӽ%R)))E0ՖQ'S8qرcǙ[v+tq0 WقƂTv>h}~ O=2gΜPpE:ƍsٳ݌Fco߳:r k5G}ǏOZSW*vyyy6mزeK'&E/!BWfEzhyBp1ZJh,ƴ.C^z,롃< Ej`%`{ 6dtkjjj\deqѢ8eʔg{,j:ԇV* qS^IzDqXti… 8|cǎMYreXDxxj* E+AQA:/0~')"3f_P-x0.//Gm(ݭg>0I[Zl_ő )&O4{֬j 9 ю%-[fLHHg)":/ eO.QYY)RRRD~~2ywϫw4b̙)EEEuйxUj,ӯIf̘1aaan?wyGjjQWW'ڽ]4WǍEԈg~sāp!Zcǎ {e{wKCvvv995Nƙ c>X"@Qo?;~\fM{k*!cccEիb ߹uQA['/DxxxvlX={M6 wScǦ{'@Nx ۭstUfFDD#֯{=zTݻW(#|ifq9= XAh5f@N j_>#F Ѩ~iT .ŋZ9a6 ר܏={lHOK v^ h^zkfԸۓNR>uhxHtOnBl!Zn^/DĚSuq\#w,/]f&!="pO#&S-/_JBx͞9P=nrSNRڧ4 *W@77Sj|3g{09O<6_%V1?`R) ;r= T_0 tseLͲ>Wl3e|\<4+UHi }*]f&Am'@H>Ikg$qYOo]IHk.nfYh>EЗEoes75Xǘ"3]kwWxAA]K,(oeLPms/<|Hdp\Q7XR Fz5g>nވA~3=*틁ݲ,%wƎyJ,Yߗqh Cɚ^Sq|Du P,mtCCH _}gߺ|o t, u5ZpӓE /,,DaFz(2BwWSof^c{;*]ܐ!'5;`} 5KHtKG+spPrC(:;e+P؁Xpqs@ &ޟɟk+BfFkU2.1^x2zyN'EdY!$"' ✩ yF9d.oMn.r@X:ū|Xg؞SLͫ>7W(r=;t`g@nQ36c:PG $ty^RK-K"xLYٛ4>5H;~GWN]m:\4~-C@Qf*R 9JZݟ 3G; &nZFQfʎ0@1pRT4`w:8V9`5剜8K:pU Z7$AQ'7'+:#Z8Xo 7 U9m \t,Wdcy\CB/e%S=PtX^e qr_1J=\0ʀ=Ne%;R+GS6@e VE:0KM,7fp,ׁ,udz1'R50S:=}{FᘏBCpF=( xf5P@>5*6;D 1TO"1%E\g $w)PQ"Īygjc68Z~A*ppPFlt^m~?-bGObOx\& -0bEw-'ϲ8X 7#U<3-rt= 7b|rt=;   `0,`@ a0X `@ a0X  `0,`@  _:+B4|IENDB`assets/img/pbar-ani.gif000064400000006131152331132460011003 0ustar00GIF89a! NETSCAPE2.0! ,@˽ &,Mx X}("Yz,*{hKqs4lK%5uS_֤Qj^QxF[oVs\GqDKgH8()H yIW7iYwJjr{JjZɚۉz;,[|l+ ܌]Lml-}=Z ,mI _./*On?ޏ}ʸw 5]! ,@hbxHUnE8֧)1⛜۳un3$s)qFSXkXV;Xy~er&Žsp}Wo>w %XGe'HȨGp9ɩj8(Gz*: *+Yi맻ʻ;K\zJ{bڌLZ8 |b[[-~]>N}N..i\?Ͽ _@eGB;! ,@bxUUm_S]8֧) 1⛜۳unt% @UKSk\C5gf>uϗE4w(XHf؈ 訆9)ɦ9*iJz Wz*9jYYK;J[<,|Kl,윋Z } \MM|-.>m ._N o^~ޏ=8`<! ,@bxHVUm_]8VzSˆq7ß/AdL8+G&g`z[bDwgqUkxzyF8wH(8u)Ii8ih Rx ZJ:* ;+jۋ,Z+T+JLZl\ =-}MM{Kl˼LΎ.>>Ny~\|l_n3W0^! ,@oˊ VeE%~a2H ʩm|ӹ)tޯ3CG8O:Zd[ۦ0ˌ_sY݆ko=;窴weHw(XgWxG7BFyɩh؉GZ)*iيY {jJ;z+ڛ1(\Hj| ܬ 0,lzk˼ M],N>m ޭ~]ߒn ?OV>r38!=! ,@ˊ Ve9m(aHf's7g9*?rdKnSfU5Ĥ*}ZXP[s:+gxWW'WG8(؈(TI 8F) ijZZ8zzh{ZKz˻K:l+;|,ܩY;M] j m" Nح }}>Nn?_w %XGe'HȨGp9ɩj8(Gz*: *+Yi맻ʻ;K\zJ{bڌLZ8 |b[[-~]>N}N..i\?Ͽ _@eGB;! ,@"xUUm_S]8֧) 1⛜۳unt% @UKSk\C5gf>uϗE4w(XHf؈ 訆9)ɦ9*iJz Wz*9jYYK;J[<,|Kl,윋Z } \MM|-.>m ._N o^~ޏ=8`<! ,@"x4HVUm_]8VzSˆq7ß/AdL8+G&g`z[bDwgqUkxzyF8wH(8u)Ii8ih Rx ZJ:* ;+jۋ,Z+T+JLZl\ =-}MM{Kl˼LΎ.>>Ny~\|l_n3W0^! ,@oˊVeE%~a2H ʩm|ӹ)tޯ3CG8O:Zd[ۦ0ˌ_sY݆ko=;窴weHw(XgWxG7BFyɩh؉GZ)*iيY {jJ;z+ڛ1(\Hj| ܬ 0,lzk˼ M],N>m ޭ~]ߒn ?OV>r38!=! ,@ˊVe9m(aHf's7g9*?rdKnSfU5Ĥ*}ZXP[s:+gxWW'WG8(؈(TI 8F) ijZZ8zzh{ZKz˻K:l+;|,ܩY;M] j m" Nح }}>Nn?_ e'IDATxkLWǟ-P( rQef):d1KXev 4` qİ%>`:ɆL]T2p K\ m?a/oܞ䗦o9}?9yNUvۖ[D` g3`)=A/Ϸ䮳GN dB hpt_o  l>'sId Ab?o 'mFwRSBt wP/x*8t#Pi[.JTQ3Ν+09O&p Am 6RK a\Hڹnھ .}ם 8X*; >_ 6}}'"Q>u: ,2ghcp{Ĩ[7_쭀 C& < /[率SwSR"5-oc}ׂ]))|?X=3f3zv3($h7*,MIem22BaDZ A@Q\[TR] 7::JCCC);; `0PTTb}dz{{mW[[m֦6jJ]}%d qN7룸8*޾w$2cǎѹsE/Nn(<P"uq) {ѸLeee\6'7ndXKKKg.__bոhr9$8) ݉700 ҇552GQVQa鱳S^\V:."))` bM IDATx] PT,, *U^Q$h}QSfmj:j3N:mӱ՚jj)":h ,lnDv{fw{w99Jn"@-r9sY LH^LJbI2Ŝe23n֒▐ PBs#ciO20ڙM[W5̻:tFU 3YȜ&i#>39yVDY09)hf`E81ͼt vj|BNc}F\]&\TL⻲~ѝd<#\ sEC~-A"6[*w,AceT?_d? Qlׄ"b|[|f1y?*`~OWbnV:ӺfSDC~,5_?0 >qF/(|,ә_fЙzDKayIďJc%7VU`6/1W9SÄ0 ˸GQ) .sׄ$,8 ";[*/E%_L{D2Jo(0׋,?O̟3+2p_څ LRE|x}0c!^%wGd[BjZ@L-V/72Er#ǜ1W+|WExP]jo0_7DégaaPO-f$Dq`s; k(6g"y/"]` P6N0*?9X K~D_}|CIʆ|/Er6I\F'ċLIS0cP%2cZϒg%">* 1BWkR"HH>>Czx dFQz`Ȩ"}6HIZU> ;`r Fjy;ĨIq>yVJ۵*d#$FOW,]%[Bp-J .XD܇"i4 UHȳ/;@(%@Bӂy5wup}J["uPKX,abRDSTxH߫gLEM[,JW0Pn::\,$Li(EVB V=F`gg'utt<8N0/פ ƔLx` ax Hn 5I>UQV *TOX4oF!*fр(11Q>(66f:6߿Onhh;Ckk+w)cL ĈՀ Q78/\=M\n+eNb,Yd)))4zh̤#G->,2ޚ⣦Κڎ +Wldq]bQ;aF ;.8.@/C{D"OvL&LǏ'R* oذa4hPֶ\nݢt%WyytE0 b`<&@":Jk΄5mRNeC,$̈́]|Uxm#j PB(ARˇekMH|-h&Y@tjvvlf͚EqV+1Å ܹsn3z*Yy ۵,@_c@l8{! uOSJr2 ͮȑ#⒒j#ǍF$HA"vᒄ~d0k,3!!hnAlym69gϞ *++.?{6d0"R22#sC|Eʖ`[>KӧM e2e它KJJMMMƸ8 $ FHJt/@566R"gV/Y&O,{>1%" @L)gFD&LK'o`g;v{Q. .4(% 7sLZz5314 wڅ.Y F áY|8oR1_CC,wug^reTQQQ  ^#i]ݻ4W׮#FD睶Z,-3.XsW@ֻҏ T| ǚ5k(5556͸ yyy슕HH;TUɁX@smҪU;iRDi`Ȑ!EjǍ! a.@4n)Shg*U*11}@.I+.OሏEE4pn3&zaEttTXX( IH]2כ ޽{8~޷?:yR;N̛\5Ny\Ǎy"=-Mg|ρKsU\W|HolDǎB|sRZ|9LcB(oH555*?6l N,|R~~!9c?LB`__)wnTCbfYbb limFGDC~6oBsfXg͛7S|tFc}UD_7o{|]**S"׳cu`2 > 8]Xۏr:}EK dSc2 'Nk׮|!IInXhӳn2K +z.Vյ'Of{d/=\A~ -z_7Q v͛K{;wșZ@llm5Z\{:tdmf Iʂogw>?=,@X =NC „Nl}8cKZ~uwɳ?9G7U>IENDB`assets/img/no-image-available-icon-6.jpg000064400000041324152331132460014033 0ustar00PNG  IHDR>% IDATxisy7tcQ"%Ȟq\YI7yJxVDW[w = _Pq 9>V a{xX@!  e)CH @R2@!  e)CH @R2@!  e)CH @R2@!  e)CH @R2@!  e)CH @R2@!  e)CH @R2@!  e)CH @R2@q=  u:EQ^855e۶Q6yr2% eBp8`0p8 wqk0("uݱ8 $) ~_)"9#qddY,ZO `V@xá0TSRjZv PFCQ) éeYd2RP/Kٶ-R<6jIX~_a*cuݤEэPp3Vn+ CymmmX,GW+~7=a#xLnh:>>V\V6]P\ChEQLN:3oO񚿗Veɶm9#s}ǑmIeԬyv9!P@V߿UO9qjS5 q{*uh4rr]W+$e2l6Tm۾PBA{{{ߙuTRYO`^@Ƅ3z[#d35{=anY+ROeYIX+r9yL&l6+uh}.^gY/iA2fA dWm^8B{Hu][p=[J2X,&S2U0 6Af\݄aB~?7[/Sf]8 L&#q\וmc7&ed2}qm{0 F^vSbYX3l6L*LȜL@S1ZVl&vRMJ.K g6ll\.~?J F`^@ >zG[z%dZ4Wy4Ek6TL]+fOsD@ [SkN2w;˲]B!7:A;1}5^0af*{fִQzHv;٩9iӒzfִQfIr]7mXkA^7(R$!+`Bٙz:N2Qhw3!{;t3 S*fLazZfUVtj%c~ߕJ%q `v͕XFvd䤞z wf 3AϬM5Y* ٩\. X va^jV%40.Xt]n\2Ѷma fM*8Օu||LCX>˲亮^|{HE}Z.//i_\\l&Gu xt:G`0PP$99Bggg Z|vvvp?3XV+zu]]\\t>1*L8VVSVSZ]pkZt:zy?Szzƺ :::Ѻ<|TE6SMir]W`q8o];I @U:+RV^{ض`8 8SRy3$lVA(c}ɹӘ%`J\ u8L1ku]r9}d+h橠i<}Lh嶳M˲8d`qf s|HҊ 0%ugFt:5:@`J8NNaZ )Ǚi=iJj0pt`)yro;X 0%ueDZ>L6+s@=k60\;z(R"6ҼS@a>)I=86Rz,k0Eqxm[m+ɬ{X  lۖ p]kg=dӘZzjZe±eYI4(+ɨ\.]M,Qk) EO%qvfu]g;L&\.S^@`T*)ca8á:NR {Li&jΎXNGNGQ)U 0S ѝjnUTVn><?WPt:s5^KZ-ORE+kc3 TVJc\/~`"S&Hm2ƥlZl>(REVZI  */"觟~ٙ\˗/iBf`*ʶ홚;{(nWfSo߾UX0ɉ|ߗeYZ8੣0؜t1 3չ(RZDZժZi@C*6^Onw쨴M7j׫{,K{Hlx$Ǒy3n8oԹN1mjfzj$`f9Z\INu-hv]~ZP 05 檾.2E^ժW&Q݈xReOoQ p u皢4krܲ55eYVr:ۧf>O N,u]A0Wv3 AZ;;;T*I%)0}trrj ;'\.>mOq0 ENh#\O-a̮uN,KBAϞ={r?8DZ^~pHR,d}լT٬ѿ˿~Ǐ<fY}z*ʃ,ߢ`~`A4TO?K.֖NOO쾋Ţ *ƄE>Fc)}5'PRƒj >@`Af qٶ=Sߵ^(V8ٸJ`RGhkkK/^X}=>n3'R,k#{@X- $ATvIpֻJ% w>|~ 8*dZNunFV״R,\4]םyMYF]|a[ͦ0\Ju]ٶLnmm)󼅿:=TE'Xl6~z>(RVPXWTT*맟~RZ8h۶* A<5C[},I&+DQN|>Q-δS\֖Zz(Rߟ8ElFf2䴑r\.L&3 *h]}E@ 3,} pcj5D岆á`^p8d2fR.Ӌ/~6:->@:=w``M\;z0TгgV0,KiooO͛? i oQ ҅W7$TWi}E@ =/g]z3Ti oQ ҃,GĶXp8ofp=>O %2͍\l7H8[}ksΞ۶\kzޓ$=%۷ourruA |BMl De)uoOjS-*cu]\<%rGbQZm۶mWmoQ ^FT("noQ  De)o3=>O t%m[\nNaOߢ<~@`L5qٶ=So0 S}5kAZ->GȲ,L& fZ3vSM܄i(T`<ϓ3`TNGz]rGo޼$L#Z>?V}>3ٶ2cA@`Q&viUדڎKcE'x+J>~8mtt~~CIMկtppb1o9<.:pGu4N~sZ?(~/~!۶W$\  )oC`^W^O*p8T:>>ٙyJ+I[XyAɉ*$Q)"={7o`{}GV)l6l|mz.UՒHzR<d2d2m]ɉN}^c]\\wcèVr]W|^^"hŧMùZ }*J/H?++`v>zwyyZ6á8ٙH? BbQVKnwCY}t~~>s@M@`ZߢfH?PoQ DV(ϧ4mE'>p7 Biߢh6}@`|_0<}5O`.܃YfܭK6ݢ}5'0ͪX,Ǐs +亮yp*}o3'y*JjxYe[TSף3Lm#+溮 m?W0|>$C"L?d?jQVT@`Ǒ6`9L&h|@`lۖm}_LQKI}Cr]Q@Fu^< fUV=[qnK!y޺q+@zPHzƭA}ø>>@]>>w5\.0 eYẇ#I:<<Ǐ?{(&X%۶ 8^0l3B@ Yp$I^OQ{Fmr@Y%6f N\d۶<@Zd۶|ߘ5t"Ȳ,e2kUx@mX,*ɬ{(#ȲeY 2S0 X@\.aR^2Ӿ5VT5}_BaXH)  6 ubT5``kyֆ u] `-k`YVr,\Ex-mh9f!kv8j0Er9B a(vJE|^Jemcy `ae2uݵ>_}ևQXT_0)â ` X Fl#Q.#X#qx(@`L x0\q5sG˲u@`lV&! X3T*^DZ>ǹz3hY0AkBk2G0 ffޞ|O?4H8Alr,˲0dW/0qdT(y޺l< !r8yd)PX,wX>g}&۶ Ĵ(zٺlW.[pGl/~A%rR\^pGju85uttK{Hd2z>8E>4a̹rYQX,$H3˲d۶Jbr@`Åa~SP_fd2g9C`T gyFVKgggjZvmyny`N@`Ùcݞ={bn~^t0Rò,9RU*d1 syAplǏ?./kJEc_3UY~=өZM'''7o,xjğ$kZFz:??˗/k(RPպizfCF^(RUVSPbiZcSiwww& luuur/TTfZe6,ᡶU˪0DQ`oߎ ۶*Jr$ruuVLGQ>h/8m[o۷o68JJri{{{^cnjzApc1 d9w>w׍8*˷Vcn'n\ɚZ$*&Z ϛ7o\8 v#}7 ,t2돟={6m&q\n?sЄ%q ͅф?s[LMWT˙6t28^`l@eY|Ma"Yv`.ʃ@}k.X,C]]~zL&sl^ fסٹ{uc]q5Butt }WN NÇ:;;Z*ꫯ uŋ* PYUZO?41oS!J6d2yU*qw%$...B7VM4kA4Z6 PXd6yn\ׯ%:ΣtS];::Rz^ oM>]\\(hu]W\No޼QC~0،< v[*}:0\Ӳh40iY\U>W6UI,< =dY A|>/lಙ LV`0XhL!Tw5F(cj݁: V {7ֱ;7BA s濷G׻7[8}*uSy͙e\vI4Xn1&y{ömh_x0! É}jR_\\59}_[[[ɆӪLݷS/c]^^MoyR`\)?.aNzjooOry`*`Li3o۟U3ʄ SHz(6o=6n*G3PF~)fYmmmT*%?jX`0`ֈApcióJ0 @<4vܳgƦzsrrrc\ͦhlmm%/j{waӱh.гO叕ev~abiF[b8S;I7_61Ng5iQRILz]QM3 sz}`ja]ަZ&SBn6DIz^v??? wp]W;;;R\uuu dv=AhwwQqrbQPV+tZ׵(ir`sm#}=y#NΞfai8j~v1aW^U.NOO?!9ma8&εtRb7oL\ߤrQUkGV6~ߏU?ֻ̺w~ /nnjFW^MSMB!y>dyיe6'HҧizVT3J^xqk%iQ;;;RgϞmi:>>޸5M4}MI ,1GǭJZՇGs "*H*0B!it:7&HwއLkjx3I$AĴm{b*l>mȦZ-J}eMu]e]^^NU 4;~GM4OntClQ%;gh6A5͉Oslbmj1XjФ;Jҝ 6Cn^͙ùn4ji_tRjN^ݩm*4#ٽ`%???WRYqr0u4Anooqxכwѹ>d_x<0WV1L 7ѣZփkŋ8 Nxϟ+iNMS1G2yn;v6&.~_Fcl{(XlUx6ÖE:6z)y]߈5O\e%orԧ|mj$`~͝GIS>VVW^ܭ`LɻNBD;sli;i5 բv]jwwWj5z=]]]\ׄq_v>fϞ=Kjg2$$E 3EZeYLx0?uMvuvv6~amp>m1&S. afHggg7vYVj47^s뷽&m{Η [}!"drZ֍0U(nUb_0r~I6.ѵVfL\6r d2 T}-JJ`mLl6cӚm'+6d}p8LZL>s9GlhITs)Gxq_uxg3٦eBcߗK{.ή7%66`L&g}6qm_sSNjcSeV)L"ۘ*ՓA/L qT(T.oz޽{wLǪw=֡j%'8,ږfܤh*cz~aCY>kNNNl$$Y$R{yyOBBcYɺ'kޅh4n)Ww^Mw%oz0`*J3زIG؅aˤS-P1k1}NOO?f8N?~Qv{u_VeYGQLOfcLDŽ~4]gvaNRݽfqM4ЬcZvE8cj5]\\{c6z`6TΒѮ@< 9_ۤw`zս7? fmImvTL&sIseڟl 惘YJiu7?w:dYnt1LX &_K^طdѫWPbDReYcw%}F|R/_TVo]voF|L]xf-{]觑ffW_\6L4 ;Jfm۷o±/>Y[8"&EXvvv4 *ҧjxwЫ;Mnmm8Jݻwz64M5ͩNIƇ_WSoJݕycDNOOe۶vvv 9>www}^Frc玏u||\U|>rݤ,FryƏ뛁&i7B# ?y]gu8uм~fyp&VƏI'\?.7-Sə̛RF:PMCT,gz3}F?W._~5uzz:x.S>O{̚;t׬Gmmm}eY}wiy>ۨ B۝޴6Te5 ;vIQ^׋/&.M@c*ElZ76\ _sJE `5M}a4 >őiԼlBA3Uن:??Oz9 ;MbUc_t:&0rZ3̩ ;;;*rӟ4#Sj۪:99JtzzQ4 \.'upp?YI(j7vJNmrq <~_N3\;5wkEcFU*);>~8:UkcKJ_n& XU?PLTEךcsIv/A4Eywہ 6G*8d0@?[j.? 4Ek+BQQ\g8@Lu|4L[7Ra(,;Szl{9EQ4F.=dmvr 6HnIjx1=biqb@iu2ANU^Yclt;IW[h#8EꔙA`nOV`V5Wd:Vg5N_^sx*?O)9-<#6E.<"3B0FX(7)8'7.>,<0A0@1A3D/?+;)92C(71B6F#4D*9-= 5F-=(6+:.?3C(8+:2C*:2B)82B1B(8-<+; 5G,</>2D 4F-<3E,=.>+<)71A)71@3C,=0B(6့1C1C)9*;bho):*;2D3D!5G0A):[,<(90Bckt+/?q|9^k8[gM}QwOl(60R]*74APn0KVi'66DdIDATx |[6l1X$v"IF4/ C)ZZH[Ra.t: &Lf$Kow˻,R:۷o};~TzsB)PHږdY{?9soe6w]tE_>s\̚}/jF-) mOchHD";wnmѷPBCPn( vwcn=i3~Oӟ'3dڛo>US\l3سgs[}x>/lԕ󪿬[WeOWWK7=_ilii[ivs L{-O'qw:vpG7;Wz{yuo/V}ڝBf2.L&v{}G@G1b9b(gѬ26wwWx|lU ].;Ϝ5 h4EX~ubBL_@vY.줲5G& t}Qf_} lAÒbXbn0 6CZh d/. . i 0<=kÌ $>|fEU+0Tn*h0bxnqxGe @OMBu.W{Eo'CHIdq`#t6t€Co؎^SXSzBCCPVa"ܝn֥B;,f$D%08野7l$^9?r|>s֒ME_-bѢT9"2#k &vr  Z$V"ؑ>t*2 Y? dD'"$!8A"vZ`@^g # ^ab9`lBzkjdPhpM;!ȉ.4yYq;?8a`6v_Y6 Kmmb/]OKSL9Dj<snrB~s֗:SѪh51 ~_!$&! >,G2afh!ax%v>|[1Bh yclDxy+FlAB6xZGR^,c =""-pj_ w$B B(\8D#  _5wú @֐[6D4f"SpDGPX9BGLM)D-#d$t!}lF}(F`U#e}xa}ZYz#F,3Idž8/bcf YT|^>Čp4ap OH1$ID}Lҽ<3@j@j$U~|KLAZFڵ-SE=|-=$x`nog5b8 d:@zH$]lo8!>kH9L:!XCԑ@#JeϊfP^r?1p6nbidZ G !G;g[Zv#\2"=;\qd{e$<"W+_f~Y2u`S@CPGGZEBG3 #lAE7(/]d?@ tt'X$E.Q X U_cȳfE&e}T}X uRN;;da+?ق ,,VΆ1G7ĩ)3NL2y8w``I%@T,Nd@vKf|DʳB˳jѡGsdY\u$] @0rf&TFH@B*M9?rPh@.V!1B؋(^^S,K A#>_9ٴ&尙lH| E߄]nC< aCΩ)8AC^U'dS%Y\pMH,Z[[VDj80t#CbǪ|bI6D,<ծ2/=ZRig# =*-Ϻ5% W=lZnoC{;tE>qJwKY"V2FGlH`ϊ"B,h!@VE$$꡵G<ʚf2!LB ]DA--s 90ޏ>C~s0ƪtp7@4$31`5!U |j֨ +BwnL8o' *P/\2"lO=#S)>9'>*,J]~g߬G02dDgrB5&ġb<}GjHTܨ:~TY97JK $ q,Wb/v`y<Ri4!y"L^4<1 ȻCD]-HǏ>nyt}~ 7n՟a"\td9B*X#$CBBȮs&Hc)7@l6:.vX%m M7"%ps<oRiM&</nV]:Y#%.+HWCĺui /V\+_!w`BWDnK0A?N#pg$lY').IJ#(BgO[5؆0 s>l1ua/r5C,!xXG֒dW$S|%@.Sp?M_߿okϿs?}w>k׮UvڻjU{wڶwWWIONr6l}F)6ax*$5 Ȇ,&>L*WH[nsPJ0S-\m齽b9Y{B?yIW#m(>RKzM L_YIHD\֝$ͻ5,0" 5b@P.dB$QTE u0 ʹK{N(p@_ #M e@bZ!ֱ`7`FbX K(V $gVkA'sk?훾3u\wȂ%eڙEvtB$iRBX!Y!+LY[8 *Y4`~C2eq/]/ \D,7k&FUI);dPaeA$7"ޗ?d4*8((b±]I#dÂH„ $2} Napë4!2-Z7+  †vtD︛KP쀗!+YRtE.b!!|\ngFK﷚ >6e$\[nW}6}ɧ YUߎ][&+a`w]!G9Nf$pb&UE22̍p$ BeDz2ժzUB\ġ9D4NQ5ۉ/*{NE>F[<$Jb",a@5JE0IYRYP_$ªKhB,ܪE۶M[?u _صYu~Q*yMOҒֈH@rH:s:"-d#Sh2%i"Ri ͌BC -H sY*n|rzGUs.mx>@`GN`2 0/Bh:|f@4 KԤQG"aD:'(]r\5>.1An:@P&0q}( L?Y+Rf`U}7S):"ܖpIEb : Q^OJ ?|.d}7Co m{^M_?;{W9@գ)O#ZĊ%#Bd$#h+ L6ni㚉 QTSX)Uk!rÈ<~,ODGq!HĝD5FPN=\V$2sd& &|2زk%邊{SdҙLָϔJj̴tp$AzB`m @l BUnsڢx Ht<JS]Ҕ`HwA9d!m7wֽ{OuN69,YQ (z;Tz =qAV$!nʧKեRjxXW>U+XzO7 qN΢ubigɊ_R>Io[pd}Ci_ [0-lC^]) jlC҂gw `M K[jMNh\5N/xl?(NyE*KȫKpȯG044d FK%,d \S@:ؽ ڢbShIqdn=á|t=yW~M} 'QyoW+tb\}AnٶϿw^v?ܻuU~ O{ H":fbTM!/{+|eҡDQ lM(^k-.)]JVU}7b@2%;`hqR- tŠL\'4|pbM FHt QT/"[ W8 \PvG 2 *!ɹNf K.Xu9Kk/%d: 9z#V!V|6,g~aѾ<(S%Di"~Q 4&QX6w1@, Ti}&\\=/.Xӛ˃ܴm۹?>_8VZu?]q2*q&(D*5QDf%a/KUrlx.hc{`Tf(g[QWULۈ(]JdUr%"pb;4?E.$J.*.㲱t O<٧Bd0:& t^ȩߢE*J)(aq3/z>$>V<82ZpP o߇J8&RLK̬}\+CQ@FZjHq+(:MJJ \Kɂ HG fsǵXseߚp7 _ ?Yz߶޿}[UUu?e?.W3Rt3XQϒDAC XӅ~w'98KkmC횺!6r`@P*'0#b؀JucMӜ2O-$ܬ;q@ji+]R{S#y/$JO 0Fdp7?{(p92jb-&g $q%ağA$(9@ʤ+L-q5n 3!ԙF4v5]cx$)>RٟGTqFtP:.m_W[ݵw+㞛rC[b\^:.ք,ɒ\C;&;fr3!=PPhhť~T\Aa7h.6ջt~6~y[Lfc"E*bBT_=diOi!cqHH?<'gBn#BA;Y(\y ,IZPPl˭(UlkJu"rz Z Epz t@WDٜɫН xZ}fFt1CHj۶,o̯? 3pBNxNvgvg p|j /[_L QX ;[@jmcE_S"MSo HO |I $ ^4z1WQ3Y]?) PWX)ːE{}UD*_y!% m\¶99': .?RpV' @%a+󄥘 ?rtUS7Z !c!t?$)>Yww @W6J6B,ڪEg]2& o2Pi\ҁ}}eȩ窄yKZ  #>Y`p x^-kKj]RZ;HoqIi29YU^MQq}>/uyt KYo|   V:_N!T@Hy\ph^d#'t?gAe=F:GK{<-q/H,XZ[:}]0?Bw0{U9Өih.mYm\{7?wΥ߸7u$L\Z [T*!Ģ,  !e3Y` b]* _i,d#:B _Z:XX}逳'둜Jג%Ϻ҇K\@,ڋӟkն{ETGBsUcV?VVT߷0¼.DE4 >XgF"dH-Y-dki$<=!Rm"7M$8Ȍl(ݯ, dɂXbodĀ H:δ]TZ뜬bOe%$=$ Z7van[-& -ڭmbyV0ٯ@jpro@IAIqz =!m`{{+z+륥 +J:w)Q9ccسXJ!W"B{??S:jXh aե͒+y @L{ k{u@~Dvޫ c9!8@ޢ/Z̪citcbp^t8ً/)†ҥ#t!@`& A΃l,3@dPN<^WGFr?-OK5, $a:S](}\a_uE 6Ka ҲTo߾eieA),}O3I8O?A,wEKlAn^wXҝmmlA! ##Fwtʖd   Y5H6Z@&bAZi3-Ȟל={ݯ2B] 1O#?uyBs9<7p'|HphynD/\-&ȊtFV.. 5C6k[kk۲Da H !+ȟ k'AAN9&3^p|ܙ?‚xA}OYvEUQ-ܵHËf< 5$2/ {x]''' l@@w& X%vNOH5mA ?!u%Xl9ߴsJ7J8j ?f'VbM+P$B ȅ3y rᅒ9@5J?8h9ZnOSW{~_;fITNLH/ |,G7H L/N-ǏGy A2+r?bGu G:Dk X+ e \)(MNrZb<=dc&E>⧺G kE~: +?L.ߪ du&'o 2GB+ot

    ܃L0!Ts|5-'Inqc0qipװXb 3B%JsDgr2Q4sy?Ɍʤ;3\K$NݺKP"L鯸X{xR&]KRH3*ܮמ dҟudKW*KW^Hvbyѵx8э%0/u{4LbUtϷnzןyk:ݫ5 sgxN!f_&'+hj %W+Jݻx@ǤjqLoɂ(YA* X䦹Y)8 .mǁ iBRn1iz%L x9@]X:kDdޤ56D#Cz]b%dA͕j@!¢оǓ \P۠IU i:q\NffpcLmvP13A{GԹׂF#Y͠Q̚q)@K]gO'[ 7~}壟ܵ_el2B 'ŜbYZX&tq83LJw(X@"M!le ݨuD0."j{Z8mɂ$yd>aٌf }庅gSi (A@yRZ aQ+HO<}}2"M'x:Og3Sh!tr]CF~4j)]Bo o-!1a"H,pK)uGMPòLE5H^-/Cshk0.G~bY ]޻3[ A26§߹bP%eS44x /,lS~L@o`F^֌p`QZ{AVeF>ep h~N/$3)?aa_O>t:qCVr)$(%BQvBt @.ZdiL\%\8B{40tXO.$sBDh~a& Cezqdfcj !dA8%A:5*e1{<D_cN],w?y.|]bsH}R}mSS|u$ y1:<ۡ d1 1Rm e{nn@ԲdŸ+g%;Y @cE}/Rm.T?b9imW2tvk*}XHzd˖w| if< &(E\p 8XK5͚"fI%WH \3A3 BIDT3: r&&,E%pKϷP V_}r_}^Йf&pXD{Bȉ%k]Zi$ r$|ҲFB{*L}L3 Bhd(h@oѯP "QzU)BXǓAL&E1knhr^ ^y,+iaCiD|C[?*c@}\^04T4NCšd 7EDdLAF2*#;!bu3Lcc4FEhۍ1ڸHaQT,b@1!J+^qsrvu4|ﶛͯ|t>^'}>`Є^: k’%;b񼄱ŦF6tba#X[*{soDf Caq!Sj:νEo4w%'@@JtNCO$"xLQhg)]%CphFp"|F-@tIU]i.af>˦[X  ZIZۤߒ39Vi&4݌U=:24\ER2DH׻[. Yܵ>'v}Ij/My׾ ;heiEȇAAo6zz@ƱIVD8Bȏ&SufĄ 春cN3CYŠ0 쵟B,OLBur̞Vo\] }E 'q) W\g%'J8e&2PJ>6gWS\W`Ad!ťF]{eNGĽC(IC1ۂBRB*ZG2Qo {{W=ਊ]ΊTH-m>ym[yYa .y70R."@xIQKfy-Jhtv'PE|'&@)pjADK9C ׁ9 a\LqH|-Ez#u ħEN'62%Zށ W}y|c7ONj DA4F2H_Wh#Ѷ`mrD(XĊ wHڔHxuOJb\fF>n;yXm_8Vxtܭu@|sf3OXySq)e_1 Dct| ɏ\ GGrbH/ޭڲ)a,5WEAb8C?~>; 4b~ "qA.:$Mj@N"8=$q'0nz:DHgA ;hN\Ė^"['S ل8L:N KAT`1@x4 (T0pԇ<C n!`K^Ҝ6>:,ZD$=;n%*KM|P;15*z=eLLj9>~7\v퓯{s<<֓qeQړ8z5Sr)P4Ƹ?ݍdQ2!r"?{ECMcYt2Kff8q<["ՄKM#Y`q4`@ W 2Xw|: b'1D _i)'*It0Q^ Mtm0imp[GgS͢d4׎xd0G #m̚aPX:۪L~ kg}Z(OԉXET!!¹:F

    c:3D:˒B5^=%eQk2#Ur#y ==Bb7ŝ&ͯ^QC Y瞳akk\]R7>yo5yDzkL hAt0x^vDcH-cF"&m84/t؆ xP9@fCTŗT+7Ǵ(խI֗.yiݟxZĸlglv:Oӫ4\Ͻ, $FrIה;>ꯈx,H_i^+fC|O]En^\#orQXz,H7q},? |;AIrx z ƃA @mu=]66>l|<g+uD |/Eg\^I/X]֮oa(M2M-?LX͝9eOTO(mVqEDL=yd #XwFG OǢEEݳ0PCu"DH>=h& N`s'BM -w2>l]"!隶ЖHwuz\.s t*{S-M~vv}S2Xz?e[Ȟ@WНI3~9UM-WziDW}n&KLߦۜW/BETO Y}ދ^A3>GQtOtoPWp~+};v7 lPC0 Qot?{noS`$DSm `|es1@ɝM nT랋%1߰xy]JWf\۴Lv]Y A +нl}\n՞S?"'l6n٤[XKGB|F]kb??/y-;[(O_KGy©G7H|G  Qh7Hg2'DGdܔ_IP*{O(`B"d- r^= 9Yu_^=`u=pfllm0n}s04@h+U5.݆ S F}n?] YWMқc& ?mJN;mLNUSm-ыZ9c @*LяWj3̌6?|-@Wb]a0У uOe+@Z^ `#m\tbFZ|6 d|NzC3b\fdזn՞S&L,m|C!K~̆A"ߏSs j dHd ;qѯ G}5V$'u/Q Q``u5y+"!nyPw'c:nݹ)JVv:d.,tN<܄g6@n.Nxrn#:~C}AA1S7FU3dd !F! wꚪ֑'4V?HGxk@6X$zXt`kU!Uyiu_go? ++H"hw'hYo^~W89XKsNOMz\~rmO7o:.t޻s0!]eLE1:=c "="U$; q=/@L. .Kbe@ i=AWw j-F:)Nb9+.:{Vy˦J LO~c-k@ M|fz8_JE\B;o~8 x/Mdk z=DX:^cXm;t6"b@ Bi蛍n9bsD񹕴WMm $meaK)j e'0o8QryDB(4bi\{N Q=w+^?r/ \}pI7-z˶[l (WJS<(NTJtf&}n9 H .VEfkŢZ~Hf[T=H:yo+[s. 6U /R]yۧ˟*/*r~Ѐ \]hFg!Fʂєr H!o#h6fBLAL(􂑨؏6y!VMƪ+.}DmѡbsNJ'Xtk:qj# +;&tu IyqU:ݖd?>8% b 8CSCS^^AO,^r^+_ »I$]hX.+տPAAjݝb$hjB ߩŞnjAyo ~+¼ϙKr 4LYVWLZWfA6a>c\姳yf9hO¼h ]~/oW#ʂm?b!盶ǾeUٵk"<>u扢%kF'\#u!t LVz ZY"s2‚@!)I=ئ5ZIDpJzNY4P2v 7.!-#\rt!חdp;;y[DZ J%Όd}ShM;$̠AL4\G=fgrQG2I)?6^P C":~ȠpU9!_RoLUPQEby.%WPWNt}pۃxW*mn(_ip(Z[Y`ԊPVچr#CP11q=PXGsXR "1YxF^Tm;!HgA>I8u>P헟ӯ)Z`]^J6x%2+ l1%n-R|7`BZ]oaHHGǒn>9\F[N+^DepUC)QҔ;Uk;\?=UQ8 1ƝJ.v~uHUԄJ+խ5ײG+VULL)B#3,sRtb[8-Ÿ́6,|ֳ7y/osD/hk.H9KA_ɏ|#E=jm+ougx}dž)RDVz5P::8`SIJG~6) d% TC:J{{d4DKxD- :S'y} q2ftTzZ;kVUCrڥّ+(|U(z?*d@ 1W07jt 銸V„Pu "TYyShJu `"}<%NQk}Jd%[9/+ϼV V[%28HX5Z&&Qf"}DgQcj(B! t.$bcV67{pd&7ċ5$߯*^ѫ=ϪDԔUK3X8Cd)Dd|^iZzCA54^rrA1 `>CdBYpN)s1%GZ]aŒEqB5<ϳQ\$=jj:*-1-sD(]mJΖOi aRՋ^QXVss2k}L7)NrLA҈0)noMU c))IӝV28F@8mh"]S9ZC sHPȅ*" <7r"* t##U4G1U*%t} Va i1y:ЁwQpXr4;d2[-"OEbB>J!e/R4o@eJe@\}B_UqTDRa`&upjd *tTxBpN]%G/C^N酘hH~MUJDBr/9S 6%4iG1D}@32%_-_OlUQf݆2!"•pQ\ZXLH--r!YpD&D CZč!d>xg.84đ,IމԝHRWd^uJU R, oqVtf 26+"d"EcWʤnǶTF;CM&ض*A#*sZY=`]uo"ܗi) "ċ9VwN13"-CjaEk!&wD<˔Nt3Qs"%^Zon2Q#B%qF+s1W_H[ <#P5JI!#fWD.ՏR# DtXSyf,yAvheRWL\^^9"t0&5YeA5/.DTYEKr BeݠEn vTDЖTqWb ZbPDe<B03B#RF0n.WC/>ucrےPt9qkpVÞyKYfvU|w0!IUh^b>GDWX5=9A&C'1N of$W |$4ծmAm8E B"_ҫ:/JWŵ  ZeЌr<TXk02DiWaыrJ~!]fN2'(-/ yUmlʘNyռ!1 9஁!cY~K&p ۽crBhc)%+# ,6k5hz*mO7 7NdɆʅ*OI$$Eh \sS\pTC_ֹ/vbV+ `,AȻR%CÊ7$$AT.Ԥn*3Igp(x@T{-Ѱw΋' wmptcBYNVLe9U~eVsR\~OA$|DCͫ^0-Ú.)ÔNSp066&C4t^1DbYʪ3RҬ!@dN%dFs(jW3Pz|-_B4V:ڨG*0*e %rè!KWN]9{*ʥ,!-+N{9Gv( iAE3AHٺf9k$V ͟_<rX}FI@Mnj[jb͇6i$U  n{JIENDB`assets/img/promotions/dashboard-banner-sendwp.png000064400000010435152331132460016234 0ustar00PNG  IHDR SPtEXtSoftwareAdobe ImageReadyqe<iTXtXML:com.adobe.xmp HRiPLTE쑔sUt6JX'6u IDATx읉* Bx7>evfSG͂mr*K $$ @BB$$$ @BB$$$ @BB$$AP9`h7;z&JG09` 2y͡ߐbHضP# msp쓁! Az~rC r};,@DzlRB&݅꼣S{3)XN׸,ja$ F@$P ŇeG8}$ \bQTT%@`!_Pe yݏ O΀$s@>S Swa˼e_ӛ!EBc {$3gʇ < )`^-0)cYH nAΆ ܧ9zH*ÒXt\Nu7f]OkYs+_TN>.eDQX})тf{ůYlMP2r Ei*S,V@,{b?^ wU~lb%))P`dLM~:tAAD ˺}%8 h}[ &v.}nK?'[4olr;@H{(o?4o Oq-ÑIOG1\ ylI⼰XVb2{'>׬mZDC?&̗e&ݭ Ng:)} xmdp C?94 v@``G o[KVB.$sBBH5Ȟ]e@@G@}l+B2^^VPOdC+B-FB  @|Xj y x|B*$oH9DH  k @(sm?gk~>wPtt]) Ħۚ9~@h]9fE?p4?dz)H@+ئ'ڷfT6P:Esy4R\ޚ_vQjµ?L{oKJ:;Rb斷*XnYv+~`Y ryZu[\.N4Ж%]07tC>兼2hg}Q/-ӲF?Hڪⓠ] {EwhnY 1_yI T']9(C;`gKp͠@gyRt./:Sj麦goHŷڙ4~@s[k/[fgYJWY(,ɤ]3lUK Hu~:.$5 ΂0/*Dԫ!V4,820ׇʘi 'Qy`j* xu@WepQP~e_x- s7hv/ iGPx9TZ\.eD^UÙy@;:._9&/w@z&; j=܇ }!s>H{xH†>] і2fb,f(ڃtR"qYY20Yl> fC&K8IVFc/wd^%Ei[<d=vWMRd'@,9d>-53Z8ue91JO匇DȖ4oŇc] ֜n] IZWâ S~wJJY4+3oP h ' )Z士 ?`򇭕}|kR|ɪ݂G3 /!.ʛ,~> =bPcn/8{ & u~i&$G>1<*.+,EH/= }́~#ݻ+i @BB$$$ @BB$$$ @BB$$$ @BB?e^GIENDB`assets/img/promotions/dashboard-banner-personal-20.png000064400000014217152331132460017000 0ustar00PNG  IHDR SPtEXtSoftwareAdobe ImageReadyqe<&iTXtXML:com.adobe.xmp `PLTEPٺԴACA˕{|mqCɮ?!ػWL͉_`UӆX))zIDATx {*9i{KR7n*ji-s]M"]~x];?- Yjg^ا"D-|Ӕbb>R>Y[) X(b[7@Sa=U8 (b?Eakه,5<ӅxV (b5l>yqwB `c(a{deR2މV 㿩dI Bk^[_ t lhl8 Ea MW${J|K[vaUjGXY7$kO:mFn\VD<[©q*B=@@a9>3LoeU-dy; ~+"G\4'>9O,Nx}d' O )f'EmjV< Yw}n$ > NX|ޣS0'h# _8t"RNL%t@}Ǻ%G"Tp\lbhXh#nJTZ*nh*UtP+[6bD ׇΟ#’1s /štζZrB@i8%ZR*?5IRVV}PJxX1-HKH%|7"SkeP'T"\1 KTKT/-+gnc#TwK9j$4<"U ?*jR< iTjVtK >Bg5U|e$!KIlP! J{tI)'Ke ױn  b;A&0@7 EaMcV)}COM9l=@t )P[.A: T0I! e5wK4Bns=@to0K18u@*GSX Xi[!%4EaULuMYW| _n((IaL|R]p`O J ]}ubmL;آ1ANFi bB X C Vat8"YE}n{ppLywǃn=e\П"ǀPbp!@0"'PS^V2b#&-70xk=8yX& hBj) ! " Dw1R6 $XnH%bNJw\M 2vR/Vp!؋c!W \@JΝՀ|b[\8hҖQ`Y|\+]!4A8XP6UzXoDX 3=H\Qw.fmXPݍy7b6)Br@jj7SHHz}  = 碰F&BW8XPb@q08L ڸ ބ P^ C'ppDq+F][Cz0*tE:Ly#|nb\V8mz17.Lw <ǭn9dc3oN`8KM]G @ quî\S‡3Ӽ 5lέߩD'U`jb߀@ݲcq7WbUنor!*bWi.1= …Da$$ .ºs@zL^##gt owVgoOaH0\L6 xXLH贔)Man87! n:7\p'xf y艪cg$fl=v{>w6hxTX][osk 'Vo4}C t 9Q7t=JzUad0rBn冫R7-nBT/A*@&auqz剐^ت/s z{yML;)߰[$ aރ$ vƒ8>@sɹp=B;É2RI$֘zJuc=PXc7`dBa:2j|X8@躂3@kH,ds@v+7 Wm,7gX;;zA)@/=CgcqITšekhv@ЃP!4bB{ b¾-Mt`8pXp,䆓NS=@ӈY^Ȅº_K.L k4%+ξB`R+R#M DPB70:BmKqdNrݍt r}8 *;z!Ha-pcTXKcnZ_6}^amsnW9;=$g㢣pl>hv!hr>ya4k3@ay7߇U{܇\c})@·ut0yBa_JAf|ܾg),yxRowVכUl*R^ ^yv=.IɛGߛ*m6S5suJ\)KYl[ iw. ŝ/oS7Ea{sb8HyqgS_^b@ʫыmܘt@[a%*YHyTm[?- НVky˫WaRW^Tɩ5S ,ٸ?('@%Fˆ(jo|K!@?6 S~#{x]8gӃ 3")=Sqz6޽ pn ׊l$|SQX$4Il:R-er ݐN1ޭOE#ҕ "GK˄R 5D Ea=WlqM`G+\i~`j"YpAalU4bV!Ҕ$>)X<1^IMÇ sB/5zA!q`CTᱯ0;4Y 8t GT@Ū\W_PWA0j_JkT/P7(|0>G %V)+U ZC$M [D@SK:G# A:KU.2G@#:SJ:+@lԯa*}s2LA(u1!ؘGQʬ)O4 UWUHVJ+IH {czv{"(4|Gaaш ,My,&ABUc@ . (S}XxT'`H3HH! Z4 2˞":ž^ "CȎQdմ#2"z@z|Qo }Vԋb_SM=LA$T.5*a1v72RXa5V=@SDW␅h N݄4 )AbU=@ qrD |Dد /> f7ao|&NsƩwcD[ (LMrN k  뿝*}nNvܨ e5 `zH]O1JQSQXv" !v꙰ta)~\XOEa :P3|pQJ@Ba=UKzyUwfa:VRV"r0{= HQXg#q@_kDH;fIENDB`assets/img/promotions/dashboard-banner-personal-50.png000064400000014400152331132460016775 0ustar00PNG  IHDR SPtEXtSoftwareAdobe ImageReadyqe<&iTXtXML:com.adobe.xmp ɵ[`PLTEPٺACA˖{|mqCɯ?!ػWL͉_`Uӆ\IDATx읋z*aVMƩLzwcmҮ;S'I\Zg=Z;bžܞ.rz@Z>]ǟ1|W|o5oY.URVfm TXEa@~8 w(H>|U?PX?= Ԉ+14[ħ) cb"|.⦰vخ\) ؽȸT\kE7@غipp+9+LvjtzܸZ#};Bഛ? v>o(b[ ҍqE(pzx:Z4,<@qo}A&{֓f Lk/8o&o7A,cP0 AHݴd,"; 9:> ȃ*,W]mY.{S-:X~9RNg6f—UE It4HKO Sٷ"G- j`|GUXa=WLp1 JmJG$&!s^IiECJ r퓀06 ` JdA< Ml /|GIWU壷B!+|>]TUՋӀ3 *g?8'gVbUQg3?G5]XYx]7ťxQ,}9|*? f)ؿQ+Rw$+ÔDp@GJxa{1MVrs;S QY .]OVpl $Åp!~3C6]:9_P7DF$z4 (Xc֜uC9` cG@'\ ]=oI'\ x`rSX:8jk w! ᷾. CI,΅W;Z iQqn3r݀bf-a/$݆ H19Qz#A!_1JyJÏ(H}@^APXE@Bf#s=+wIE^'A)6q >޸+νm !{4u68E7^b)p7rWuכm7Y/>*x@ˀ>j$ZkٍW~ Iz`Z"o4L5H6SHHz݄B;p= GUX7UҀ{0B\VE1AtN|IJ%Je�M<\V7X99TAFcbajU-Z4Q1zӄX',6kMlAx}au8|.M~U:N%t. s3ABG3J@T'9 9r-G869=aS6WI|.|+D:2{*,ԏ(}f۴ Od-?ŒVIK=ӀP$$-VQ/zr ҙ iXԾ;Ӌe }Ooz`C zSMC7T` (xjV ~Nncqzs/*,]#[x,4iBiDqA8@ҙ5m@C8t8fA(} _: bo97F_ s֤UE~ZnoL?iw!=Quc,9?š7wr7R ol/VoRT6.}β?N`/o&O n$=‰ā! F'@Mua'b/px&oF{{}^Yo;̫FU+slƞlę c-kpba^jdh@N` ym>~2#Y0je7 *91Vm0!#e b$nX(_`4Z1Ȧnk_PX;YF:~Ke69ΌscQNZmr%pS0+ 0,ZyBu7_%Vi.u \yQa풽.)zkqr/h: 2$8EYаFq8M nźFaŠa$ 8tRQbaA.ѭo/p+y׳%nW/0RGz@Naz z`cЗSXb WեdԋeшMݼW($dBaVB"#Ea=& 0s )e2''R b ȶ+Ϟ^G *?2cb5Ea= V7\j]:餵Ϲ}qܒ.T+x bΑa~ߦ5:齨gwxx\xŠ7~‚,$}J|lbVw`InV(B;2N5DL[8\<^ⱟHCz٠>(e!Ea='Z3fj%ӴxދDc a^a ^L*ח)ȡ=;FEa= bq~;NoX HTXfqE,)st4%K_}89Vw|%y1]q%$P`Iu-g9>cPx[:zQX{I1&(Bh0֍zIF rjHfC[Ve;MŎ#:9S!ƒ18dx51%kZC; żL4"72Η%R{]ZLr55^Vԃ# rs5tnѧU kj c*GU=xL>V)fW1')@-.vX{=#o+[Vӧk.ٿ{^(bq'7eliJaQv.e.*H[VU"!mܟz;,ɛ+&F*&[Ll̕jrӲR/K k;&*ZԆJeώj֠Jc`UNZ3ijE@IWv#K5C%adtou.ܺp%y?oQXXmfq jUT nn™.+xXJ Sz~QѾr!\^U,cΏU0vUD3q,IXp}O /S Ye@aΊؒ"'t8VR]Y/HE©7ʯytWSJۀ{cAQ% BfGL,9@"\d @:jLьmB" 1Hb3T~eKr@ӽ֏(z|ф+x9J1AE@MrCH jlxVp3+B\K`kMJ|NYDxRCs(?55 G{ (^[8^ӷ|ҵ+yȲR ZgªR*5B| xj;9 P&N-ZVej'N)9Eq;6*~G*SsjrĊrg(z!,Cr6l5]MApg1bqțǃ9*RJt!0xaN=C5eQ Zq)@p-zK7cFor|x"" vfJRq~h@48Pi l2ŀG#b$R ڪBbVitr2<c<f ]gNe~_{z}@x<ҙJڹ %!v2$0 HU+/ R A(Әa'ހ|k1 wR7jrX\yc0HtY j" kzxiOW*TNrFNT*k§.9P "ȧuK}}@DH0sKnp`|(0v" 0nƀHcNU`ⷜQ:\OEaaʃC rG eHFBB[ yJ:|.B}@xa%Vv"2A\ԋqԋ5KS[#@b/&,b@_U#@ P:@4:EU;Q@! M55CX)HZT IsZDd@KP$an1^_ sBwwY(xF'fM;;ppl$݌86w]!wߟMMMQa[Ud{TJUFsV l-)S}RljwTs2MGUX~ ӓLqf~ ];,DwjקOEa54OK1"(rHQX~~߭6~z} |P{6RVm3|qOQXž)ʇ'X{**vb0. Oޝ }wYSQX~晨K.ְYoSXeI҉ jQo^9ӱ*у 5 7l;sQXžW n;Ց@0$L0ՀU†3Hȇ`v:HIENDB`assets/img/help-info.png000064400000000466152331132460011217 0ustar00PNG  IHDRasBIT|d pHYs  IDAT8MJAρ! z=Zf$Q J. n4s$ u2=:ĂzxU~ScMA#NQ̋ħ\'  @@̎a\ _WWjT?k^}n<^4:<6DzF\m1* I@[#I&ljI~oN*Vd lWm>݂>D_R3-?1iʓs`[{m&fMT6ՇcÞe_s*;`e԰;vVaM]S[pp(>7^/m~|i11 0N_P Q5=5B_ƅͅH@dZ{Q5 o"sX t+O$ / wYocMи "F2=M=Zu[&wsF 'Vֶ>Ŕ<a^n VfeUZ&2'چ=ct }ma)G 4܀_}ӢL)+H lw-WD@Xg73A  *ak*vepvE>)q8nGTt:0ys;#ʊ7o-lwbʦgZtru " LVKgFׯ4t.^̚G:zr/?i;ۋ:2^ky ln-!5g/р/ Ӱ4#VN]lBKS"0%+ĉf|dˠHq[/V9`< }Ӊz~a;l",fD Z%XWӽђ) MHұ uUxwF42?C@ q6lA&ύ*p4Uh~~:lmW8HY[-+hi&4Y7=.߻"E-.|`*mT9ɋn-_<}ϜH4Lпxm2)e&d k`ڔ Ogm(CE)Q+N_¾+UbckhkȃY;^Vp [wR0aO0pldF)l;~Y{4$ "ҐP4܂7+g^;/%-AfKOv,@AkUXyΰt;pOW3$ b/*+Ww(1vsu:C De{gHw{ #+WbU%k}ھafZ9Y/Wb9&U]mxg"c};U1ɏ 0orWkɝ7V 6*uW , ުL^WV?[&gz1}kpgMd.VMߝӣ\'yk{ H(m&Mc魲v|᰸%(SQRt$ |FC) ,( @v,~{ub[7`^Q5Y| d Ϗ5ɊSށgϴ(+ nT@xYx+$* ^/L/bCxc2i1qI@ 3¾$Obf#]@ؖ(jP@L1b~~V~*W!W@Bɝ'-(^~-Uxس4s&(kvt5v.X@"B) ̅{emTG|jc*9-,6͌b9S ɞU 7x?L3!^,ۆTt;g8dTNR6YSс;]ZZ2}aߪ)Hб$;:NDq{HBU}xwWé"heRY޴0q];lB8>.[1E;-D&2VSÙh, P ޘ5b ~p ObmMַ΄cU"b%`7b_W9a PaQd8TAQ=g+wax?2qUr#Lf87O s@]{ >1]H7gගxYۅ"V,AmijNr0ւ~b@C Q6ܙbq+zݔ}V_=C- z'[Vư,<^˷UbJLe|2rye5ҤG  ֜Ϗ+ݐ4llЁh+vߘ|Adp zy$w+{a%w8J@-o>7e Ȼ3VӐ@aMj9_5J,KҹĴ jNj+XMC$- %cwC! ,.z~HZ*/- I@F.fw;H^[Ԭxlj^o1qIE2xyzX[fw2ωLQ V7_VeT@X D/kgP@[^>'1Jbq+ ɈƢ(\~:8bǖn{t=h ^|X6 U$ c'; T9# "@rQ8;%u=K &D‚ICSH#m}/r֨ WIwz/qKBHc\hW=W07 ׺^y16Z;܏/S<eFHK.iű^ݻ#dLK|vO~҈כ20EqaxʉR[: B /ʢ (01 ! ̚RFS4Y;m։a) daYt23QmÊ*R?^\ lƣ}%5 y|fy*p(>xFP [asM&R%mלhciQ tB9B) DsUR!ccu'" Dkq+9#; yJwUhi]Y|w3ZޗV)?0 E z"_{/ :R5r\)&ͩ|d$ b- l\L/CsHmas҉~eʉ+?P]"R\H"u Ƈ".W2dpP ѱ&S@Da..cCAqzk+u^V+& 61^.n|_w!H9vpU ^fVPwhRSK19D`wC7 2y`2 /L./"Lh Vw."Ɋ^b UbB0l![\xar}u}X݉sǼrYM&,N 3m;s Dd`O6؝\_ڽD$28M={kF5rC) =mC9ԃ~_F .s`z *l#c5i0K5]hu#-ʊhڿ.r7+[wS"?nc* {0P}Sx ,hp@2[^+iý7* a3nOfSe~ .^l-xaV*D `+Q̂ e@H@Dͦv ]$ZSс; 6)1-].F'MvܱUI5fqE }j#=5S#,8";zOxT73/Ks?MWbX;ēY^}'n{ʸWncg! [cqws T*\d[&G/Y[ g"H@F+'5`~ KM2|,?KqUmrU >'v8qfv{nٖv--bſTYG{]X_]\ Ol3܇0}.\3xYB^fl*G?378vtb[Յ>%x1? jQ*u2<Vu9pO,F!Wsrt/8[%HIBH@0 %" N/tdeRY,`T)Ա,ѽ1xq>눥qQ9b;ԃw+:/$o¶_Wb=d Ya?Q#A`H@De؃Eexr1W%EJ`_}?u? )=Gl+,ʾ0^j-X`ftH7az.pSxdn$ 򰓀7g6Kvmmz9X)Іv\JsX23ugq,[!4^<|yxo-.mžb[YݫL#S@d]Ǝ=N8L&yI@&nGaŜQȉ!LC˕+o"¯:!8}qf2"׵ ;wq3x:\`$Emԅp@8;q~7 J1) H uJ4ZŌ(St$ioW,Az4V<̹5OMKS[dudm ~yM&fOeV$?݂p8_X&ɑ6.Jf6cCCլaؙY;p*u3$) sm#hoC}[  ݻF~<5?þpqd~W gZ .D_PsCƊ%M.ܰ֐ZyOB@ԝ)~FfvTd}#Շ6c)OE{u~:roQH&"_2+& ƑpIz 1kxX)#jo[*`0a+$ zu^qj$|Dny+cˢxnF2ϔ#m}PV`jõWT Q}njBnT@R=On"/eÑBeOk$ JmxRE=VvoirQ"k1aF 㖜x,Ɩ>Ҁ Dɏea cJ9Q7]CHh7/Kz}< x>aoK?f*;GȳK4&ζǛɎ./sӰ\tQXՉ~格rff\i#:EK. œ0=QǙZѕ+ VCp\I@KgcAi8T81sczT<.oXhXWSv7B b;nS\kfCE?6@Ǧz]ľNu2"rq? Ps~U16}5Z[ƺg:ƆD,0g#J's˹e+-\d<@{(4=f2u3ENW֎ 倾35 ,~qw5ĒK b[waI ",Ȋ!fFv -H!9Šp oUt3޴  k͞<{?}Ui]eJ"҂/rPIo,a PV-vbR nk+"f5BcJKZViX!vȝ9}) f;fߐ/aǍbnI@`)3``[Y3me)1~<2)*Z Z{Ʈ/ &\#2=4XUs50VS-?\_up{47M(H0kCz1s])97VYE>ԣ{a>-҂C ,( UQV(sg¼C#55 qBZ ])Q̿Ǜ`C  >yδQGv?ɏg$#\:P?U |s>\4Z҆/Dc|B^E_1r IDAT!Vy{wIWIv,+F'ᮼDsHi K4ՐBPp ɊŃ'X"E[ʱ/$XI@.=sxIihuaK]7vwgNR$g =7Nm,=૳RpH6؞?ܑo6l8zߟʿvvsmև iǪlM;`v{,,)ux=dGI&Z͈e5#jrmN6uRv[YT լ1DJw)B+҉B@D\ЃU;k2$Ҡ(SQRiƃ0zt:T˷Vۄ!iD( 0= `nuqI@DG<#D@. .`ě;X&i9t.ڵt2 Z)Ƽ=()Sb¤;1ws9a߶ )K"X0UL .T$ ZF=%D@ . &Ԯ̍Y΃+Pl爼D+1JOacY@ؽqauC!N-7Z]N$E)4Ԡ I@d\}qR 6Oܵ 0lJkA[XaN 1- N8/ Bǜ.V}C]WC D/6GcY@\.Wb_?,Ǟ֑=may (/ ecs4( U_yƪ8/ iܾr{ k0A,s}Hg (R9Dh"0`B>. acg5ֲPHaf#gb+luG%֏ҕ@4u7%&D@&Ȭk֝UwԝyH]"0Wiwz*lo7E ()JG4Q@{]F sю&%EF` șN wT=&Vt"UJӒ$YG]?7Qd T  ؾ4Wćk;3Twafr2͑u% "`Eلg$㖴L 79 Yt?OamM76a2ɮIr Gbe%D6{=f L&d"!J"@@?D" .l"@H@h "@.$ Q&"@ 1@ F D D"@ e"DD" .l"@H@h "@.$ Q&"@ 1@ F D D"@ e"DD" .l"@H@h "@.$ Q&"@ 1@ F DmIENDB`assets/img/add-ons/highrise-crm.png000064400000026240152331132460013242 0ustar00PNG  IHDR+D, pHYs  tIME7| IDATxy|SUڀs'[ JA X@YT@AdQOEDPPcoFVaF@dD\EQA`dؤȾ J)t_6K&@'$iIM9{}9R  A  A  A  A B BAa!BAa!Aa!APXAPX (,APX (,A aoApX<8  @oPg \TB"D= D%1FdNUDǂy:(Aƹ&C@@ =%)ۉ ( `r@ `[R>%qQB APX@c\XA!b t(aUAPXW 5Pk (zFQ h APXM T5/>Ah-Aae:Ӂ@#ɻ }bA򁎅 5 DC)tQM@&:B 46 LJM4l`luC͊p 48|-[mwE@&V1.AmA6- 8X eJ`2@k(7 rX Kkr0؃R ThB XX* >h8>`qPb9Dv)*3!l6+˲&~ "3aU2{Vc+ȻV. : AڏMpZ}Rԣ!spBuCiRZ\mۭlMYjKqpB ]68n jUuQY!k3 w+h}L8b QTCNP!I SLF\ 5бpF;aD6aQJ0;zGEQb V h ) ѝq2ƒ m.ºP @\c0% B P E tdz-wwEL.T^#0) r!ȅrq|ADŴN`\X4eq IkL$'DIR9QNT* E_pp`Rj+UY δ U۰"H 8 Р( r< щ':<7uAg+( jh`p$`)EpVtlP&\VSC2n#*Dbb;vJ a!ĭ՝s8H!!H K%mk̠Z^ͽ,@,u߬6k2 Tvi s|?ql`/$,uENXk`Z* vVp@|#Aal pcۘdGg&=vi HsģU=W6J T[; 8m#4E H ('#Ē;!pF\Aa65<B Oݲg>@clu_X @bCdctvE=N|qz?"[bERRRu-Z交\\F~zj^rʗ^z EӎUl /R MM?0:2[ ܜ]7P RyTǎR\""j5Z˻kYȸ$ y.Z… n WZ忰}Y{صkza9rd̘1q7|s<\ Y|ƌ[nu[R͘1rv!,BO[Q&UR9[@/&R ,p !lCi(UuUC K BS4!MX/_VVI&FaPOk(6;>'?{WE#ɪ\0;V-%0 0cūs'dX.7̀a]zEyk׍&K(S0n" %zyAЧO8dAB.qM3EAANoS0;#vPZ x\mIBB`…Bk׮ U ݺu-))1 ݆ƶaqVٹHKX3QA ǷJ(޽;ʥU Y>=k+˪j}(hVЇ"eFpP,FX7E 1LԪ*z[ ?#*8(Hgt[+J5!D 0 r#-}$!|833s̙={ǃ۷o?~͛ !$::;vQ<_n]]]]&L*ݻw=ztӦM&Lꫯ7mTQQẟaÆ~vڶm۲=j0(N:=ݻw?~T*cL)5 ?OAX hbbPcڐ})$=zx־}fϞ]ZZ궼j`˗ŗ.]\fMMM ׷x̜3gNQQ-}G}4uԵkFEEu5^XӧO?yW.ׯ?}~,Y& l۶T ]mǍ7k֬{.Nz+WAߑ#G9dɒx`ݺuw}7 +X>1`0XJ@!#P Aڹ[Uh=oo_|o5/^_ Aka|fϞ=>֩8N ?~|ѮIOnkG?^޽{sss ڵk?8rHɓ'TLX\^Z.GhX@eZAb2Z{^ؼysCtۿkSϱcJδX,#F3޽{nSO5Rh4YUUUYVUVVOi+'ɞ   )Sڵu V`Pt)Rµe 5@c|-]tҥqرV :t֭:u˗{& lOyyy̚5k|Kk^m9[oU[[PPBfdbYC ϐ!Cl%ƌ# w}UΜ93+++11G JK3kr]Oo%a۵v֬YnK,YrQ@߈#?__~9s?DsOΝE"/^zUVS^}\xma/h4j՚#ԿaҥK]DEE]p… +W\lŋ+**oyS]]zpBKXӝP(oZmV-}8mH p;ڵkV3e%PXCZn8nֆEճMԗ %6Miw&7]wzSTTT3ܣO:5mڴf䑧 7yK.qnc"*6iPeeeXzKyMX&;v@m-NȚ6mڴi\G޿-=rsrrFueRF֨BBسgOFFF󎘑P^^bرcǎ #G1bٳnwKIJeY0bL&;Vڠ%tЄv#Jt- iR(@9֭[/$kn I7n9s'-qkcnyaÆd|O<51v۶m۶m{GON6ͭڵkn[f,6T2c3{E%t_5JDx&v41țVWߒkҼ#U055խŋ/ ϝ;?-4;wnpJJJ 0iҤ7:Ɂ^y=zlٲMj-<JiX0*Oܔv6oIiK:ERa3ѽI1'!MHӱ!n3Y槟~zrn?~Ջ/ܻロ1w\'>s֬Y\gzoa5 /Vj,~u\)靆]LCJ fՒf޴۸wqo?iÊuFAkNa5ĉ͛j*ׅ999 sOLFeT[LX{EDDXµ+IC=ۛ0eٳfy~۶m6mrJII5.\V~ǯ_~mPi*j@خ,YU`B+k+G}^d/^Y ݗF;ӳaY /^UJJʑ#G6lu##D <3+**RO>g}z<˕JSVk`|%4~w6ǑQP1.sњj޼uM"deeg'%%%&&vرw?(..-A۶mJrlq[b^?< Uq`7[-}7זcҠ" FOk74^l߿>QSSSQQT*/_C~""">p[q7<*|3q-oGa7aTtT<# EArt עvš6mk^RYYmSSSFS ꫯzƧ}YpBrr+PX- n% Nþ2{y A4X'@[/3x8bFhWܲJe.]{5`~xƍÑC?IIIn;;wgop†ۧOA)]vZ[jngҔ:J(8RBø>>G`JJJZZڥKJmŽHkcd`]fٛ^m|:` B?+gM&L-ٶK_X>u6/esrrrrr~9s̛7/mPrٳgpXώ;okT`cǎ۷mݻwB;ܕPa5Kp$#&W6NP ؐHB{LK7'٦ LH{U46lXSsϟ?ĉѡݻ੘#F[n Ç7tscQ"? ;^+S|'mSjTL'Ƈ(qjD!Qk5 z=~^"zQ}Ν;wRDMH`Ν˖- ]dԩSHԩSqbbb8Ф-*,, ߡBBX0)QOݯlIw )B Id>m7k =,߀ klҤfن?8rϽjժ)SOҕJKKnΙ3gĉLHHQp'֖:sm9>{7mTZZr|Ї8bرcw#66:R>Ξ:ujLLLC{_ZZlٲ  ՠxR[N~W=mnݍuzYuY6BYarQR* O()M*H`ƤyFmՙsXJܢQDp;$GD"!M|?i!rA6i`_nO/Сo9U}]Ilܸqeeenӧ}=0LCq Ri}Ηsϻu+X-,,pٳgJDFFs}~bRz̜9Bz5lذ6R ϺY!b#Q;2L!RP'L4m"˴nSCdN~w=Oadtz3ͽzrw]`A TיD"ѡC H; $K<~^ly0^!F& XS$utl]a`+v۔sg߿~B۷/>PK`3c^ڲzpjBN{H tlaBx;ϩ:g';;uIbbbdd$>턐:)7l o* 915UBJhelU^k=w'F)lh#rFXwy- +**8==MX[nAajD*NƦ@ nD jhb(SJfv. gL;>ts!teժUǏw]ٳӧO~[ԩS].VB)ZKԺC0Z q7= n*,Fj;]7HA|T?{FC߸0+y))) % B$ !>} @Hh Y9֘Q^E WF(! 7`CĜl  GʉHuaY***ƎV-[5II +(TyFꦺo DH }CJsj +f;]Dh N TB$/D?O(@hH "O?]Q<1cƄ{$vtiT(˶_L/YU蠱zJu8%:?x$].! 2:@J.8 s 3IDATrRibqlllJJJ.]322 Q?_ezdW' T)PAe .PDBYwBzΪReB{y,k1!Ax=KğS)/g (At꒍N{r^V(sW^(*a'a.$w ~U2UZ,trBއm.(KY-͵^fQͫ q5r0!,WҧHDDؤHq  EՂofpۨ >˖szrx7;_֙[B2"S0 (APٽɢdIDHDL RB, +5(6ԑXʲ`FPq*=g0F oILR"y06D;mLȭ]}z"PUªVՀ 8Ǥ'H0ز m@Xb#H!rb[=a9)쐫# vpW tHIir}XU8j(DG$ J:Ya:;Y(5AES)(D= b+PSbV|4x<X(6` (XR Z G1Ĉ!L!!)p us ay~j<_= z8 X88΃2 1 Lb D F hv+75 f2(u %aʵ8Q}e"r; {?iܫj`0P '}/![UƂMoyIcF-{gY߾}БNygdhs"99)?A|TV?2HT0~F/>MW^akF _1,> eÆ9f1KߙꬦE[rFQg͚~E33-zg2g/PZ=0FYkn;9KKՔ)SV؆ DU@`׮]=h W;GݳƷFO?yOM7 aj+ݳF-Tlߣ}]V/~k X%Dܼ:uػ'B 1Ƽfq8خ]oŋb0#,V_o/ 3[Pr3ۻ%WU!u~{pβw^z񥐵`r.^ԱsN=}@ߊ&٦4>>!;+ICBV7L07.YJB @T.R_wV׿߂YX%DV^~eƗ6 ,˶)3>.I¢b?簳YG ϙI.^6, y|_M@ 5 UB jc}77˯ ʪ.)]{ zL}&<gs #2VNCEEG2:thwʜ<(,]Wo]8*y`#GEDF V vX,-+MIIiö9)<ӏ3{nׅ+O=L[^X|aןqΕV*[o;sT[V\|Vm[5(|;5 W5j͇T۰[6~3sh="Ca!H Ξ= 0;v쐐-)Y`Q.+e] ;vL0 /[ݻT|BOfdӭ{]{ܖ,}leJ^/8}vX-ЌaNR5?\FjGa!aM1TcbYsW,_ْ #+36!,_|ٳ', |ZZeޙ8abk i@@_OYdi9R>RLk@.F'oO>~Ξ9=ٌ _/o6}V)wm|!_.zG'9rd!Px z˚,yw(, PME 7wN-\|-ZbĦ\49 A=~>HW,_BZ(O̠Ӣ$8~ڹsIO`/!gX,8z\s=r(, 'uZ23ނ .>n/lͽBpʿ6|ӸHs?zfA~$| kя{WN5{֪UY_{^67@[?AVee{9k&oP:cK?~V?%1i$ϧ} N`ݰ,"{˗?Y١Ç:8O DX(,-ri2s[n\%ť@9?Ʒ.ipƍϞ՚lBnrf6ŀ|ɓf/}{rU‚ÒV=RJȲm(, 8hai;ܙ3{Ua1Wxv&\^Y0!IENDB`assets/img/add-ons/webmerge.png000064400000037777152331132460012477 0ustar00PNG  IHDR&H{ IDATx^]TV EEڍڍݢݭ׾vǵPLJ8?=o=3{9Ξcn#013#00#L jƝF`@`FP &`N#0L 0#Zq'F`&~F`B D-ظ#0?#0j!l܉`F F``Q 60##0Z0wbF`g11qhGLaga###ϮѱhHge+3b4Hf^/6^P<12m375B(E۠-F*Q1'n!]C] LQ$-Ea'j;KS}(L 1RzΜ= G^Jwp>~G*Y%IK=~ þG|62],9[=ѱ2[ġ_D2\ѺXfTpI[!{1ֶw`<9aT(]A˗6j4߸%'fL񃣣A說t4uw:o]w] *U&]>aީ | SdcajneMdkL{*B $n恃1f\~͊暬BpzpҀ׶.O h8]3FzBV{_Dr|}=BMsC"f&FZf%L$Ř@REFFa/{EX"\0/YW{?2MCM ysoe t#̅E2Xp W_J-LoMP ^1h.8g2f(IVB'髬-\+K G!,tvO](.Eï £qKqѵrm̒ O_~D% 9ڝӛc};O8!>pIAuAJh&.%3y8xW*IVB@dTϟ>cc|ɜy ]6=D2}/)6WG'/{IKk:7u\}y@6_6Io.IVBe+UGLO3ȐAhAG^e26_O`<y /C/wڶZ=9x3z*f++[{BKyTmgr#TqfgGeis=p>& TН(ɓd2hvl_,)\vdo_GG $= L ٰ't]F*/[ҹtV ΩEZ-hfyQ#^u}) ߒldK*ϓJp%0ܳ!"xw+;[L>"U:K\XL'QWb\}-ƹ\Q?ʼXL )l@tan|}' խrF9 5wSA-Yt]x:sNI]1{ɓjfXܵ{HH(,--`fǼFvS鱸VWe"3.#Tb>:n|(ii :`FCWI,dX0~(Ն-,p :rC}Ua=>%2cl*ϡV?% ;$m!› $BaRm@BѽW?ڴ~V$/apUgVΛ l%j[j~EҰ%m$Y2,@ k?j"^ OC-D%,mglX%DdǍ>P2xhןQ(9皤XcwdYȰ`1P RTHH t/K70Ϋᨿ+8*ϡ|(" D<`#ژjAbYAPSƣZ*du!TZ DDH™ɖLv57ز~5*{TtBJL ʞ,&exߙ@ ugrZ,Y&Ii&jʒd-De+{Fxlml /πr:`mm%[1d3}+%_)[ vO@ڲo̜3OHEM%j[($$kחj,8PʕŬSfDEEa$]) 1$' DԸ`z k!*֨a VeUK2b4UTU'CAN Ǣ%ؼMu*h vuAA0fp>r#NPK/cc ^FFFJljO1r8y+݉t`%Y2g߄qp K ZX1G1s%E6_"(2SZ^P615a!bXmt+`r6~26n$W=cj=6Xv%fZw'}ұ(XBȕ1|8^S."R­KJNL t)zwApUƊ%pɝKiׯбsw&Q 12Gk3P4Yn}T@NJX`1=ѪFt veldU*c҄ ;q2>7k #ujJQ d£bP|UD ZߊN[)GgDFŐ;Y4ə@ tcY#cпǢNN?grdϮ޿G+FLMLPr%;*EXIe"i@aFGFz[v-/=/7߄ӦG3#ٍ̀ܒQK4AXt "c~1;17A` 7ɕΠteeTC D5R/0._ADdc#4'kکjըsLvV (p'9$|…ѷwɣR:@1qx-M,9UQ:ψh|-`jlT &#hK8x.^'R4U`~R%K$;YQ.]#Gp-~7 PPVM;H0՝u3#!L FH0՝u3#!L FH0՝u3#!L FH0՝u3#!L FH0՝u3#!L FH0՝u3#!L FH0՝u3#!L FH0՝u3#!L FH0՝Ѻg`/3h&`&ށT4l\-~fHM̘P'w*Z%/``gAk}T4Eڰ<#`IC;߈ zz`O11b@L ZbRL )bRL )cXKF@[0h IL 0i &wtl,~FTOhmq"c#Dâb`nb c#ǚ{5Q݉ K3?Jch [֬ll,޼yL2BπTecbbKKK]&J1#""all3KssaMi1?8 6f;=XO#*&FY.+Vr AwS0VKV҈ŗpL8DF!N)F45Az+t- e*īaG!FVfșk8Ttc%o'OaUxD/WjR%ծ>A{,Z/^Dxx06%W 37\W(奓iܽko5"is33XY[39ͳXa#>,?::Z7GX| lmEqY<#D#kk+ԭ]]|;jLN!fdzgrLMMaii5WS& dy}usā4O?P:bv/umtn{1h 1ℽG~GP[uʓȻ~Ȕ82.O{싗FM.=_G۷Rd 5%Q&8v#F/YssuE i3qD/٤uj1#C1a{oSK/SFrF/_mcmN|Ӯ6THcy3lQYݝp\~/+|reo#,vf%*V*-VsS == 88Xu Kʧmk%Q":r4N:Pu\9bIT[uPϟNFD٤QC5h:5th)'ضi9fQH@)ǡ|*!簑cpi >}zH)<헫%iQa5D~ ַˇҹԳBx}IeLTE4!!?tĴ;ʹ>ZG O t) jd9zc'>D`ִ)Q׏?۵xɐB_,Y䏼n[/]M|Ep׮Ge'ABr=}y a-jaӶ{ U6k++X<.ߤcR4O Q10:>Ʈ"@]+ǟTl}L"j'6;lZt"H'#@Bd5ak!=ȱ5v/VLL2-v@qЀdղłDjq&z gí\K) uk-[@Krz(czUfDkױ3j<͒9 vl^SkKB9J2[aoׂ*>#RYfOϩڑŠOg>M ;`Z}c/;g5EM ș _ãp;'N=a#k;*:XL.;d3Ǜ{ 1ʚl.;m'ŋhYpkdITXy`mmW_ Q?}R[tZQ˓;7ʔ)lܺu\QmKr M[EHb\R􄭝-^|3gGmZgwŽ- 8dBb@*' =o^'~?*o8)y;o6-[ ]t"'N>++i_6ƌtCGԙ2 ǏRJ*I.gv̾y\q*SB&-w28n pIDATVMZ|e5?f%+=~c&ȵ3e΄[6* =z+w-7ovȐ!h?޹Sg̒weuՆ'>[Ӧ(,  vݖa}rb;F3E|ue0:m|p9PݹL2 ւB=ZzPڮ{ {Fh}Iv\Ҙ7e:r ƎB_܁KD={ËbZw7P=ܙ㔧h1rkEu}a^'ȩy߷җ6 >k|l޶]<}ڠGJ""#1u,@8=wo{k!2mش>|[dffX0g6-,0oÒŋ E@h(B+dʑ2@y3 .X% y9 ˶>N*']|6?p8?tbC^hrBZE!~Ơf꒡cA:L mL=W$֊,~}DNKeڢg;[[̤De i1$eV/^EǶ(âPf5VȖ(&2x%}4.2uEi>tw)P&Eʍd`BvOcJLV@y9)MġGDFl?+WE[h.e 'nAFV3#d6 A8|=wO[Arx>*z?z`(}5w\z RnC|K}+ UEQhEu29ĩYFy'̹PmPȫºh{B" FJY!0 2|!~F֎((+U!`ȫF0b 9a՝ѥLDH [/<қctAST?;:lx :J'^ 'O%Ϛ% vEYv=.1g4!?@FG=ծ cŎܿMgfn3p 2U# }*jJt#?511(WI\xлZUL8N]~]{ݻưǑ{DL0ի&?xFHAQwϑ 3MQd6wy!SoCA=D?)G_`yk T+>Z4w{ݶ9̉% !N̙3amWYKEcP!Šʫ=6Ȧwu#FiqǹS`j" C1ꉶ[D4HJDEK(fK^?%XUU8[*U=}LPݫmahPN>,- NA`0y\}2^YcG_dQCfF|(SG_CtBNJnψ9^| GE1~T'8俄0:Kn_+1怸.ƮFIA~M^Hrj' b"~cqu|B81Oy#n% z{WZxCcQ#g`L+.N6C)G2+d*˷>o.,/jxKh$-2|@^=7ݫBRbaf". DޗKnlZJmrh3;ş=IQE$3f׳G dPI\|K p*`Y!lpSF*V?<+$Vk<$E8Խ \Xc/ "rcUmTD* ~uU/m{CxMn- XLvwj'[ac 臖d(sʋ"D Zc4EQ.#غ}h*r/_HRV}RpTem,dwa։ {(yVZԟ.7ˣ**w=4A [Z~!}w?ߎ'213:GM[ӯ1WrG%W١@y bFqTeϙ1K w8|(' ΜL/SI6Ḙ_'}:v[XPAƶ:˜az5LvbT_l٠|Lk\)e&dG ʯbj}O9 $ȒAG|a% dH$jw|ULCx)L Z}U3cr [dѠK. txs*Ҵ8.OA ߪt+;,W[Bz?pc'N ttp93ލB_#F+,i@hF e50c$IKcu, Jܲa-bh$>L  8Y'[!U\B_W%UgFo_hD%,67ۣl6v)OlKο2QV_l\:  uC#b{Be:hݝ37lڂbgo<0sFvAffdӝ k֯Ǒ3LL${a$M!w|̽$kTB)…{F.cu ]@eVmHթmZ"sXX/$}+ IǠ/^G%"a;X!saGX![&ťe-ZjkPYD 2*%t$R?N+,M`aj,BSY0HogHL'HLL,>ϞS%+sL@/aI;;Ȏ7"BH}v^EwP})kMW 2>O9)drFFE@ߡI D.: |!zLnw+Bp>E> KO$Vy^ZllF|Ke0ogQFi@?"?e_mByE i3tt'.ym܄ wj DYJM 1H]B#XF^Hv 繺"+dțIʞ}Ed:%._M&:vRԟ'^aku0rv,$ߦ}'<~ؑ-kڮY)6`absgNC25ťLԪcF*Fs2Q9i2c$T 9VRCNʔ*sf2H.ڳ}Gi40|DO:.ڳNW?f1|`VAӵ? ~y2 | n|!5#[TP?D_ydk .e`.#B;reW:/u 81$OE2#*S0dh>ǍF*T3oX-"ҤĚbuȞ4 ª5{?D]&}z@*F,KC;::JJ&oAʕEߎʇ /~p*ժ^SRKE%Wdabb͛M6! 1y#1+!uiŖGd3*9E~&Y$׃Bqe Cpx`]PɓN( 4lW_#@fca,P%ZGҍ3ga݆M G3Xje%hl9{\%LUP~dAsݻt/o߾%w`->(Ij#1?}.!Os(ZXRǔ%G{Heݿ G_}(;::" ʖ. W<ȖW^WhfM:/?͛pM| ?~eɊ=QXQxxK[QKbj1j.]֊:irj=i&bF !'4mᢵcq>L ǔGd="@LzC19s`uZ9RTL )fXQFH]۷`xIǢCFR;0hG`@XX8o܄M[Ÿՠ.8BNJqS1-c  uUϊ@30j"c.L9Gr/OTQͩ@aF-k(e䉨P^~9^l S $m%(J ӧ!2Q`< #Q&rR,H5,-5+QSP}*@_#Ԩ-iZHҼtǏ{MnTNSRgF@pp&M'N B{koK*ʣxb֬b5I tͫW#x?|"/%Nhΐ!f͊\rNٲi .}6Μ9;wϠ"kDh3<8;;WܨUW;;;)K/bڵxܻ1iDxyyIFH$1վ}c|R)AIggnTnd^{UD!CPR%#eX`R-z':v.[ǏKNdLLLnݺ!׈M.襨Y[[c@R &}F U W!'͛uVӣ[׮;7NtvRС(]w'dCD@oB=/X'N[@fffhҸ1ڷo/8nj+"ҥK%tXB,0@2#pDtҥd^) N:+Ν;'Y'+++4k-[+ɨ #VtN dyy\p!U`HR%KO>B 7F`*:%y̙;NufϞG_60PMr*DZIZBtEXYdAмY3B4Ĕ3@E@grM3FpTF92eB 7WWd͖ 3 >}Jرތ# i >KQRg|(ZPʣde= ٲe ,];EѲE 3ahZ`R!Z'? TAW_Ɖo*n)"*%ouuϛ3g,n#0:l޼Y(SN#{?QeӽLpàc&rЇB?"Aҵ4:9b*WNw0@B@~ wx҈Ȃ (\0-*f̘Q.VFEB֩:%Rm+WƍBFWUE%0q1#G@r%=ZRIv"-+jU"%Q.H2o޺cǎիB$Y.R3wΝ[80#f̚=[CYym[Nr3#`h@Ⱥ:m$3{nhժԗ !Ŋi{^'(WP$i!I%jiۦ |}} vX1F`Ȉ#qez\P ɓ{=~y99{sKOOA,#0"X("F`4X0#` V `N#0@`F+Kq'F`V 0#XB%ظ#0+F`,! l܉`F#0`b 60# F`KwbF`#0%XX;1#o`F@,ƝF`X70#` V `N#0@`F+Kq'F`V 0#XB%ظ#0+F`,! l܉`F#0`b 60# F`KwbF`#0%XX;1#o`F@,ƝF`X70#` V `N#0@`FHVu:~>v&Cip"ҮT/10,+OJuKꔏP|T"+5~HXŸ ܙkߠKYi)Z ϗS{(iWmht.+>T}h-˯'å,FEo pD)T1#p4%*|κQT5y@N]ȤW$Ҽdӷt풦\~^Ga-+SxGq[]!?My`RRqٮ!U)ɇȒJM3H4' Qn&%(vX4[ܠV?O=c<_|U񘲖5/^b֦ӄyQxןyB&*vs@|' B5>p4]J.]>?o-ޙb;6^?F [r?y~Wwٹq.zww SH9~*=<}'t"_>^c|z9?lp)\0?]F||)O %}_;|Onui ƍφgžT^M9FT(jݼƭ:/c>U R2vPZ"i (X7,:׿@>z}5z&lzô`Y)=KԸDqU)iO7%-JЬ'ꐕ woy _GJ>w׾ _ ?Dw~4W=+w7?V *,)Yz6:sQMۺ%j[B ._nnp2']Cҹ$ķ\e/FPp`A#rQ 5rqMѝjP@J}YsJhh*UDaM2| B;qx#oֱ~)F. ]|xZإ]ݒ4\e.fmY!+3ԵЪNtTl85d(qWd#(S`Z&ZkO=ܢ" mq,]&3.~>EVCɭXkgA@E*Vؚ?N˙ٚ;۫.5i-hAv.2XȠkUWViPWra*]n={)bFRdK+k[2ƃQ;ϣM1@?4$Z`S?﷊1~QYٱJOwuncIHr|XwW?+O˫ $%zn1G=P/?$A?[Tat%LtPjv:Ow_PM޹ v6}J#Gg~z*nb:Q/^Bο{U`&nU [zb֨=^n?-ܮobqGwW+n8UԴb]U=Y&s@a08}vӌ}/4 7ڨek#7G~yמ%J5:toh OKoC[V-*yy'5R魿B}`#(PH=C.<{j7s,5L^p[xQ}تWփ"@ż g;7g$$xt(Et^f1qKߣ`Tv5Wi DO[*VyƯ>Na03 !`ɵtxJRYhu/GQH;kɔVOOW5a|aVXlf4ﶯJ}26K)>[UOV u7K h1ppswn_V "o[2[(ujN]fGݢJ8AuobOӫ #7򧼿(}.Ifm|@_Sʼnmp(ܟJK?G) P3ZpacP[>! Ҽduߥ&uЈCF蜉AT1T:8XLa{Q5SOȫQ:9 '<؈%P {]tjP&wEWMoE5cBxI4W,@;4Zj̃U6 ٱ:=fuL; +;dK&׭P~et }Uo$yJѕ:\ @PDśo->B3LHKG]{12P.VXZ!6f?+0x]UzVnwAC$EoQXa6Ƹx?8k|S D Ō@e6/嘸Y~+MQo`KR|FaEI hϊNI8WBh8(Cpn}@Φxnf=r.OWao>ZS\3SNZyX- ab_?ٛE]}@;̰0ŭ=rzI"P`sC|FjCF*~`s|V6?жW "6:hFj{ԣ_}jPAZ!r?%՘&+PÑBEdI{ChSs8GSwVTaT1(g8Y?0s+:E =c`P}YMYp%ntZTʍm8 oW'!e6uKr_%z>kٶgx{-zЀC(Mq0fe"[m z'åb: L zzr)h 'RW;G@J[s,:L7B! l8?e#`ꓭk44p>%GN5GtS)꟟:LAhO[4l6wzҷ񞟻4un0S~lq'cFLh#&Ӡ v_<3P'_2Ab02 Ӎ>MC 7yqghq&UDƙw('Spz7]$T$sd IniolO=z| eO0O]ssH?x1BOF`=:}`f+kn̵-a>\%cIlF"SǹMsYYK}@=CLNdoJ}ggeߠb鼠t7[ qOR1It>-* u*MIaB{&$(%X^k]^l^4bKFXylUN2qMs_d`ć5zlnZ'~dۀ 71A2AQZt : 6uJEߢ7oΖ jvFn%-U')=9s1S@'{= rEXJQ^H@~ySuWPg_7F <2_#& TàZ41}'mԬs`V"AM$55i qIGk1$zK!ZKk+nO]LI2<"x6PxvGY:`\1̾pZYfYSuڕkw)[n.@D̨ Q22k(=,&Q t9שxa[TZ^'3M8 Ӵ YyimNjċi/Jv|vP feeH4+.vqa/+7O8A#iSA ܰ"#>NvP@ +AaFd)bH2lZ֑1B͘O6,ʆ#.;cΖ0U%tq`UB EtA8`ӗ7T!)?9[ɱWUJ Yy&H`1F6V5lLۿ}R +׵n vŽc)ny wՀHUFߑ4}C|^4Lt%4M|DNQF6RN(:2sG.?F葐mx[ %DS"xdJ DU*JWM2a*YBHpG!̷z@pGN33Yfpv;2f1ZA Lp8c6̬Qf'* b?-8qKl]}PuS @aC.VXۈPF= U`a]=0B]L#}~-ei\:yZ<ZO\ n]d9L(2u &#D!ێ>_>Qw & T4$ S)E1W"S./S&LfJc~(H&<JDTHi~ d Vf2uep%GU$']\')-S+!2i!Jppm@f/ ȚٹKЖ-Zb^{%̓g9DxyRno#k6 ,s`Yd3CH|Wc6ȊEh rPjY$%d]P"q'XE8E9YJͱ$7ஂA"67 & g ըWo/2cN~@f/tO*=ÃeƭuĭU&l7/œ ,%l++`ƉWT v}g*8Nmg%A{NV,x6Q_*+N0$1y V7 *Ru]XLYK 9D^e6S ǿj&bюso~*k\,2X@O)p"ZU5n@ƙq"G M #9$"s_=4F 'fʲ|qͼaU` h]d$F}ҲV 5;|I%Aό%oZ0zzc~~Th'$s1 ΰsPcseL8Kuj:<LwOs.o*#ꖤ4X)*,6R o.>L37aa`!qۧ39T$p dPX|ΌQ"tж. ѣT;mY5 9mQ`Q ~C9"P $4{mrSUD>p;P$S{i5dx:* ;miעwœQ#bƘ|hp#09 IDATWSg@@I#H:ݙYߵz]2 A,fN gVDŽds3awwix_yzsBR B,W"% Q9N-7*Vs~QҢ+.cCpkMnY+ǝ0^JdB-V &eh9KvPo} ; ,yS4^2=g-+Τ7brT 1Dee ,ziz&,#BxxΏO*0 `r]U>ros!Aw^>*p=<L@vۈa@."82ODřr?&pu rm9zn8t4KYP~%7k(&!)J㢾1$g<FmX3߾0ڔW4KxlFcK]~+ a \WO~Oչmc E~J,1\0+W?GwT-n6_HqPhRW=̽y"*KYyѡ o1I ?ERjegm:Eo,'{b/ ă 5qMׇXR$*kPv}|I[=+|(0sD x^)VտgdwBc֑*Ʈ:!VD}oBn-;FMJΆXzYcƒ3j̾NI$>Fd* cSf<.O>eIh1o\$)~Xap:&t kƸѳgnocаdCp+\,L)fۙtf2 ؟M_O(8;xAjR|%::}Y+ <0.y!fM@p!yԇiP(DŽ0#2hǩtJI&,N ATzf ?R3ơY#w3}dD#k9 @>LF㨶aשtw*itjoḨv\UɌZ[\Ӯ\?iZN  3 / {(7HP8j`x~BJpa-2 šېUf?~+ix-+` l*Ӏ{+c.Zw=h*`3<>_R/n@if$!3K56(bΗfb_lғP;@Ei6dCs߆VX!sk /HKGx-v^To<\?3]n" +y䎤dЈeǤ=GD=B`c\N=5>%U uȱ jbٌ3/40%fe_N=R~z6MY~])Df7͝"ӏ0# @j2L Mv"f+vQH+Y7;ϦhHJΈw LYF @G'$*‰^KS(p890l9CHuF$ -AER rC[be.^S O~VI& _|,3i͠H[|m &h=ff9܏`#@&9ApWz-kEfo:E1QlT<-<+j+k^0ƫWIvd*݁WBLU9yjyGV,tp8!k(*VodQ} $Z{oʌƿu AsԳ E˿o5 لʤnַHk-Qc*ѐvz>,=3Z~OKtRevEQ),q.edk/4U%*i8AKl ˯Ԣ0gEP "Zg/eє?O[Z(=4 ,w oGDwٛNӢhj0iysȎ"(byB)I|s oUY:$|,DCZVJ,8LTR#(Qót`yA*Պы)D 4rE"!(IƠy,,=i,m.{%[ķ0i z}uB" y0NjR=(GTVqKnƁz6c%EQĉ`bߦ!VJE35;GQ5P_GOj_ɺN]"rR"^*7IVp"k7nUez9)&Fآջץ̒n/ruXD#LzQIAx\΢Ԭ NdAO=j\ո|ؠ!#bQRl%2S@WHJz5{&V+am'/Q}-kO.=F8 Ydjj6B,;ǭ(:AmKIpE X(=ʗ"|ܧ}Cp}h-zȉWqRA'"816! sTWW; |1V1nz8* CÄhm  HU-`ٺ$zypqƷhGԆ>GePO4ZʺL5 _h8 d o*XT>-P@?N7|__.[_t(ZjN Ud9 =Ѩ,Iv~|ֿz)K'޼@pMZަ6wA}Wp cĉvt3\w8@N{KژeyC3KZWٙN>N=TیEm\YOh? (M gHm^1פenwi3eV uX  sY 9ALHvuiʣR~9LmM2tbV@V6nb[Pk13@}` s%4sMJC[kES+ s89K;Y?6^W zRkS 'e )Qu.\uKJ1Zmu#}zܥM2TmÏc 5Ĕׯ\v9:}Tj_3O.E [1LqEkk әxCLRS&KȗOφ[ᇵC$Z=P7zKԤQrT `nn6~+xPq^3-8|rӸ'{24Ȋ- 3_ 8\ܪ"2y]9(ʂ-Sb;D怫<6M{;S ׵GmxtdѡsW|q ϻN5hCV*ԷZE?fbcl[USuIPt%Q=ETXz@tE.AO٫&77oѺVˏ'$T"Q0$Rl>z:F?\CQI[kR8ȳwЛmh6^чk>y aԫT*Џ=V[ &5yF>Q xU7ڨ٪hNvRqqyWG{ЧFHUx rd>p؉;uѣb)bQa$}K_X%#8ٓ]VK|!t5o@R4A}.66,0#?U%-6U 7[~qzd6R "vӎ4[(mG˪Z?wkxL+sۼd5^u鞚AJD8Vht OМ {rF5)`I8ʾA]gGE ІW, Ug BHBv;&fizR0춮bD:Ӥ5A_qZ_s<9Nr8۪ٛ]EJu.=JKa1?".HGo'DrhJXjq-vDs")WOkɓvs 9 1?och TF  ()DU-Y`R#]4M2SulariD_?UWv)vT ؈1]ê2e%$Y9U  g~H HtofK9갏^Hל?a@P>S t^*xN `z9B{qJ愶԰>$^{'n%N'UC'IDATM^{>Zm̲_ws´"ku,Eرч0BaQZs#w 7#g^΢@<$uNϤElo*E}nАhrPcvv< aV [S0 8\ n [wg3藝m`͗hb#I\`bXlFo,:9d6kT-cAfv =}yPMs"]ّ9;ЎPD RDiċX['aS*ob`S<}}xh{Rچ20{ؕiʺO^&wu;%H,٫ A")'%;FKIt2Үj7?(OY{S߼yZHEpˆ]7߭{Jd_Pдt1#[z!{Ñ4Z3 J :!^Vk8ٮN0T />`54JjkeA|c Y:Z*)XV8\YzR4Su%d.Oc8 nC+?OzbjجFqѱU .owOQ 8XlX-RY Cډ%:48dS 'VW>ai, <` D`h|s2"380qb,0Km c͍=Qή[Owp|P"bQ"~<]O@"]E@|1 V*SIcU¨Z 3i_/XsZ!n;S: =x>#D@oeHݚL!*-`/k"#O^7)ǥz%[9M#C{9ھ.u=@^R{Y~.o(0QTVP^?Ģ~R/yS-=[?^_}G%#^F_׉7vKos{kw6";} Íc#1x8&w\7ܛ%&!%7LUP?Z;54H&*=ȐJMZk*TK]z{}< ( }1g&CO>=cΕWYujKW_cMeﱧe+LX3nI9gy[nr3kYK'S~~fAcp"32k",Tky4d)`3F IYn[y V\?2Hy!k>}*cϋk sJt*9ld añ]:qZ:4^imNs1)+2f'u="N>;] HϮ&9[w;)P~^5Ů #1oYmƲF%G)7l`0IRbC>_Ee^䶨;]dӾl6T朰ɡ ,mXf;9Sa*ᆐt {ii8;sqI;-i]6☧R-lsҘU$?V].j $9b{2msa;mv+t~ R8@1Sʊ!ƺ%z-:WdnKbl#9<|v3]V@. Q,uetډZqζ(4vAL9wHr!fRvsFbExqoD}i] x^=*^$`T4%J_QX6c@$GaOӸ @`1iKqY]ldY [dP4ia4=7ͦW)4$6{QZ"*C*f2$p )鿋CmF%hnKSA IvG|LE>\X/ u5}*s9dTIFUK>ؐ#lRLOWH$/-:Ddu`He]`@_i4۾KNN5D/ #hgXN3&!D5٭^0|ɂu")Hز kY`8DQ J~l)u)0BH,rJڲt-gA- 5&>贡zxY.MǖMyZ*ZH)F)6w>2;ڴ9\@(8!?0|u.ϺۤѨlY~ BԙHC$'sLoѮs>A5N$Kv\@x%5*!N%ҕ:FDS"sFՄ{S2J 8/BnҨ7/##-Gw6RҜ J9%dKL)ÚX"k6*-wIE7:Anع.bI)*Das>񲴌}k>ICЌ@"0^qe Fۍ m s&l.H&GQ XYw9t7):P+7/tuu4 nA#i2`]!2 SH|tn*B+X@HΝ&zu.]]Tb7TWr 0\SN~!Dm!C%Ȯ5nFw'AGsXƞ`!vY*ek zq\: 1fw d6@ t\HM1'}◱j Ӝnx1Lr-8i_vl\SKvb+xB(e::!+w#BNxVL~IKp=HNEQMW(.TW !h'ɚ1Ј q\Flc.cC'd(L ɍ+4틲wU1_0W8ަ8 7NȢ;uNkL"հN=9V/&i a)h"Gh5>;"XoWÏlf-Zr˱w~ h|]&"y^\(Q4J ?W"w2 ^w n<(2(6iT"~ 0dx|tc0c@a:}}')?8 3R2 wudѤhN%mG̺ $oQK`-84]Wz0*,Ӿ~SʗoqGfBR'|qF>E(1|40E☝;ޮ /?:u_tlT(s`@p152<_NbiBka<)@Z`,a+ۆx N !R/;[Ahft _ 7N>]_Э*e?q%xĠ ?r]vsa? i*y^xwW{oir$|jPLTES@AAAAA@BBABBSRRWY T]WTj#j#ʱ[ VUgSy:Z \ABAX]]h `et2k%UUNTu3Sn(w6_TcEo+k{=}WybŪħBBAR`Qv}?IR|cYq-DB@r/B̳QηmLB=VɰȭRfкsx8DEEQҼR[hp͵ӿs0FLبKnF1GB?v5TQKQRROQC;XC9GHHQ{G-UC:RJ KLLkllIB>G*J!KP H&MI#LbD5]^^hE3MOO NtF/G+O odeevwwXYY\D8H%FB@KOC=OPPH(M_D7LqrrPTUUaD6P ݤ|}}^D7$(- pHYs  tIMEQT IDATx} eZ6J^lvs>(q@ E-pB004@Tjc41Vc+qɲfʧcgqt9}uY%k.~ * aje# ?{`׾iѳqL::8-B6UM8,y$ɢ_$Oy^隸9k4-m|v}xi->'˧{UG2妧9۳^ݷk>l” ʌ!‚|ݭ$d>xyfNr9sa'uE/A?s%tR~ ӅB͔Gw3| + ýzxJv໙Z~ud#؄nŒ@OC"[* }j _ 5\vOUOsǁ|^f.Y^xy[\2uqs]8"UhN,Mz:Pq|s*X! 2'{Z4$TmeVf9p!jN$ О6 \#$8[S3j@@EY:*8@Y&IôcxF&;;tV|Dz[c'*&[3 B5[HA(T׳ŗ8%wⲵw(gK58p`1I}죄C@{Pe -Oih`V&Ùa qrųuP5utR[ptp^9GKZϒTK$:3y5xy\4}#Wbs>!m%.QX֘l-VzbPx'7G6?)ѬB8c$)UkЮh)~U86WN=j8RyDջF&uz@tCxb^,8yx6"4NL#5mEgh|'l>,r؆D$0+`lʋɃrjk">`ܛV ο%^ :j8ᐝ{zy;8nmNTszNp%,)ϭ܀O}y]NTTEcJeys;@]_q]uV\=7,FUU\T]42ɈKt8e?;Ktż_ZJWͮ%8 TOǖxYܳ8u2ؽy !2"xÆ8m$b14{U8 lzcϩ>NWz $h ċeT6jlѨ?Ӡs]\ i.9P%z[Z|!b C|C ``9 !ZmP 'C@81 F |qJ.Vfs꣉+@I _s9z*<E_]B!NeI眐=6%> .b‘ё  O~=|cks(xpӓ*Y[O(}H%m⣁㈡ Z/DUOQ E/,f"(1JhpY,Z,ؖb?u>Zu`9Mrl)GL87dZ3~X@ pj(XvB+q<p trkR%H&ٻNާ!h՘%% pq4dfW/79hCqoAôa48 nST@SnIу?OPY[bժ'e$/\6ԧ~j)DZY `>O r`08JsAlov7b"i!Lءm @^"(RN x:9;w@8W65mHU%4xH$_ {%dr̞| Lq(3pL7]xw(30̤є M{<I3{65`;8KN.rh$7"1ZdAŰTl+cQ!(҂~1!bA(Y7CKNi`f>w*qًTʣxvB0ePs4+M$tn5@m#*4ȗݮoÎsu[w.bpLힶYwSgWxR\._@~..mCr릧Ek2GIukI۶LqIp5Ʃ qZM#ܜށ. R7cde.j۷t`èJvʍX⍛}l$lN8_f1w> 2d]Lۘmlʲn@/$an?mY8#!QY_&u<2H_^dDC8*n/j {~o ̀heQ00$wDd*dRYhg {K)[c^1{.bJQ[dJq܁6wK5n^oܴpc?QΟ\s`l6j mU9 Â4ǥoR"h^D5 U` )Mʥ׆rY,`נڷD8y1OwLzBpB|B$7}W^m+{5O嗇 f$ý<`zBԡ '6*0YMO|4IduBɾa] a"Q=%l"=UHƏpY^dՎ We~ Gu=k4JNq{GɑZdZ)7'aPo nB2P߻h2=r/z`qZ-,w } }Qzfp tBG1aiO`yxɚ\exWC%1,!z)L0Vp M^k9! ,>uSIh8}i|[Vk]4i{V\;0|1gbEpǗz| К2WpI]HIӃlسxҤ};*vXe'mݠ+FŽ,vǖ7}:cP 6~ y> ) _NH ~peLB~9ɫ:v0ugMnS5kVg=l8Q Aeb8w3w5_> A%`&dZMyxܲ s2jW7- :]Jmrfφ).3Y 8;zy{VslsKhki*G"[EOD,w7}ݪSݗo khP.UppA!3T-a~_bsؑNH]_tM̭=&s) B '=&81AᄔEd~-hDŽFD)WPmct5W_Щ rc|rbdGY&l1S3-m8H cŐ0Imw]-ri.Yh)b^k{;]ٴk=t,FÐ9! xgqʺ㮿/zq|˷Mܚ|b4$$5 Q$_1vIvtfhG/z儔z%];%|7^=v-KISqg?wut.y=Fق1ѻǻaE+l7;e*Yo>aZYP V?^蝁iyP3pfef +Yތ2*KaMÂ}}GN~}i Ƙq_ϡqvv|:9!턔R';^DWI˓7pͽgNzXqOY~mGkš˩ o|콫w zäիW[CJ(ŀ,̳hK>Đ]H^)ҿ笕'rO].)a/ ]ZuZMx5Q{{U>~(\A2 L˲K]OHpO8){̙𦛦-4B_.5VK|Ǿi?ly'+M}5y Cͺem\vI pUnE$h!`+CRqu#̼,Ŵ?5Ȥ`7V9 .*1ҸTt ט3z/uZ&p, X 9%[1aEdv.;5Ež;gRq*|] z/S@{}I2{7<89 y'9>MũI?sZ&N(R,?CW,py@>O',*{9w) ^񾥛tUiO^|ڛ-OuTCZ$Vuezb](c-9>>:ٽ3k BrBaM5|rkJd5)oIC,:3QK7jV*Jkpwg??QAZv&Iױb[9pቖ54hY#evhİZE+]T׭@H2zW֓wԨTke)w 8Z.@YA"].SjpPS7|S{>TcIV}oтRD"->4!ɗ"yCft|-o`ׂ;7Ҁfފ9,I(ق_:[ qއ;41IRr 5,1 ^jiNT 0VggϯcY]V+䥙joXlW.?];;Ćc&@NH|Ya>KݼSb Ξϳ}솘-r*aA@?tС9+hBr'孺֡KNi J]KLRx!H5s*1 3ruJkaEXRwn<5ߌw͘ b:-wiPB\Sn&j 1S$£%BŪU y 1;S!TDL|C/n\*bQBDs)$.VcvHfzd+?yqxg-v{^ A;$8(;:r,& l;2J8!easyBq}z-Ϩ#aK"(ΧĪܱDֲHde0c YS-H 9>jTq8wsz{XtAsռm8oOW]gb3{Y⩛YuP5Vd Gi@j;Ipꏪ)7hxI0,k*ߊJ$H"3W%#z{ q,'}7 ͧ Rφ7V&rl+xȟ:)JCY>\η ԌDpcnM0v $06 )WO:XFcAb%$-hy:$Ӕ`5-j/m멯b~,_Ew⪫ ϡ1="!:n:"E]0`yryukN`Ӥ^w-LCu5\n: xU~Wi,88Ÿ/E@'٨'x{K.S&1g6-*YڕP{yBFdb]*;:x/y~?CiȒ:e'0NVlPq4aէ.R{HD"~S6-s\8qˇUl;I})6.y/V۟}92‹ [zthIĹVLNxfL_2}Ok $ :s4 .Gv`$9(^abM iφZ' ,:( _A+sw򖯌\3ëFpFg/YBphx8gqq%XIv΄q)Mw1fb6I+qb=z1 N9&ՙ;^=\BؑDl2K)HؑZzAJ ̭{3f8CD}z6ZF'\6iW:'ŁJ[ZYV72vt'.'l[iռ;^\ wj볡va[{9}zlj-L XZsk9C؁\Rc=ŽUě,LWg8ta[pBqLOYǭkYnA酴@+ EyOL"Խ_USD'!Cph5#"3>GNu욟 ;^#Wm0h`A DPc穹BssRjR-)yqi;XrYSs:8.,w5qNsU=9N:;rՑ/0g,pf1a瓠KU*\Fk#?w3/r'%ť4y[<>%Cl]o'HrĮ7=ôBdkp lšEkrAxEx{=h[-OJm,U.ʗp5'h/z8pZeLNj^.U8͵qTf .MqñCvPUxk! eNA2J9j۴Χƨ`35W+%I,=e8 )V2~j{L1^3 DW%EfӿR?2$9m~OqNcO(R1H_Ц%B9z8θokK(K :kԒe1PF KRuqf{&QUM[k.zL6 sW>48C(OI 0@0g:py*Ug0oX|#@ V,!ku pF2_XW2aKmIfc H5.⦍ Ul]I4&F^}{yjwljEvZc}Juɿ氁A V\R4Ȝ2nX_b[BmT.OwUP3TX%Al_& x'zX}և{xy|zi2^pT sv0- H;.!쨚5i2Cre>O%Dh8DujsG6)N=uqnE6f8slطXOhR%3"NU?Ҝw ;>V H΢O]R=ʱM۵~{f7bQq'=ehq _hy3ٴl} o-=ɍ φ.6Xm\e&jly->{];/fwXӨ]#f,}]OrՇe^DXmO 6:b8q`1GCoꟀtvҸ0goPp/^Gر妜'=45r@ir-bs$539cuM؉'="@zh$mg qw=2ϕ=bĢ*m-8MM;1񤖰 F8UDO6Ҭ7INq7|$bC\3r$ش G8!1'mk[Х6*k袄}&ӍpV6Ul5y㚎ә|F XZv:?B ]Uy~H(I7f(qW]-u>d:UG!J㔰o*vc.f]\`4\S"k)x QE~Ǖ ? ]_լVt@ͫi;ɪr΋p-ă65/cabssˍ #ڕ]ml%j<}pAs}ƻWDA;v|LxO;r >!`j]TbH:V?uk<gqel<ۯ?<3Ͽ췞{}w ӌ(|O b7MpPM)xaA-63jX5*1CpN^Stmȯ7\n&hi}\hs}.Jtȧֳ=JsZ,yk~'d>uիkCV%[b&ux@3rlR5.`Vtֈ3Bp.͊'|ә\BmH6;$mCZV'?\զ֣)7BURrMx5Z¨E@svU#)q!$&ɑ`sq4 9rÇMN9_oY.Q$T,|w3i_>]9_WhN!)9v\#7Oa%qlu "EO6ކo!Njo_( REO-⧿f"x|MDO=jB؉50s> VE%Czr*;˼MM釗.nXǔ}Q!.vRgHj^֑IRfͷ@=T_"EY1=_=Z}sD@Bt;w1iT;Z}L ;X6$!Zc[BJ\}MkNyK8g2qahK^! o}*ܧ?v^bICH>@.*4}e)|cW_.șS).$wC.dמu6tq}4tUJ06tbzJoMCר ~5t>XE qnr|PU/Al'.o=m3GCEb,`~)M)K>g9Lljt>DjKBlH8b! 0E@ւx f {?y9:86nJuj:T16ZKVj5݊ȝ h92G)`o/ ~Z-UUmIo W,S.I%#h$wsz?4I BUQ4L+x-rrTKLdpGKi 6m߭etAhRIiO [se٧i Þ(mوQ/Tv^p{Yt"Ga۶\e#*&u"ނjͅ1t֠|,42 :d$& ':}-9zt!WT}M"z8_ٍ&6XTdnb a zWكLJZ[X\|Mx>9bq!yeZ{ ( )Fm<~__"=-%'0GFY]lCYk֮!gxe2(޲W|Q okP7YvH`J\8 miM e7_XU_qRԫ_>j¸JH4ST"jfĞGr!˷{ s`Xz"}o !ٴԣE>bL=_ŎIAcQRmr9>\PZz(5]2\TD/taM&eL}$25޼Œl_pOwV,HH?~WY (lAZg8(+*hUUJಐ ۊ&hD:M%a*@.NΕT5 @l /%'I gh)-mi&~?!dwEv_u\,tu$qڨ͒U~Ō9[$ 9|!NX)1Łw:OJ2;kѴ ^Vw=]oڊ2K {F8@m{'Rn|,1 Ixah,8quo&AbӶ/ U*RUN҂}*Mfv>+!O)'¿˂:/H w ,-'_jr>#y#I*Uh0V%+rCP?ӱ~JR,->Wi{_VmkW|jچO@eb$J:;jyHy࣓:39#xcOOjTܻ_.hЕLTU1dWNKW)zWx >_K-Wrm'Vs jhM`ؚ)o7m gI2U֭V>hm[swԥ?|%-ii9\6sɼ26VS'SsV6ebbiMO $Os9-Un8rSʀe 0C0<Ċ_}2+\2B4ћblLwRC,kx!"?/qNjy9 9-2/k,_Z.]ƙ,Yn|+OҴ/~H>@uhנK7opI$dcȯcPbIQ& ]v$>%$-C/GPM؉Zv7H 6'FD#{q {̴W ??ѨnЖ{̕l/a?[o ]^0cCrr|Ն4 O:\.y1&r p0/: J/}'lW%rxޝ>RS,(^B& ]zX>DT-5m6j9b8wU(ȗc"KEh_q:W?;ٿ͂ o4tF> ;/NS__͑ml =S~'VL ejn*dN~^n?;_? ֈф UD%,+(_* o}.+̭e[$Ҥ k?T;JAǿKXUg.eH5 ;ICw]obhH\nŚK5! 1ɔDXΩEqN[(IENDB`assets/img/add-ons/onepage-crm.png000064400000025363152331132460013063 0ustar00PNG  IHDR+D, pHYs  tIME*׀ IDATxwXgwRZPbb1[Kl514֨w^"b,TJ8x?,s3{ߙwf1 P`` X X X``` X X X``` X `Jɋ3RDcI6PHB8?azafx"DK'K'!ߜZ X:ɒ-.87ˉE8d A!Bt aq,Ԏ[3ٰaD6!L@݂jý ad U#=&X"HWsZ."X\R T00'x#10Vdsçu~0xi#ZG)X.o㌩jJ%ނ&(Xob3B#,6 FU71ZXocvp+h"`eAD6q Vk#ҡ 0K_$4 M,%X=<^!E#VfCh%`\VIAX5 #Jň/&̚ N!'}  % Ѱh5̳#?,j\C?XC|UaN K$G+"y/W<ϯg\F8œ #O9^I;v&Q\}uQQQjjjdDDFFfFz:IN.Ξ^^666B7&a4mv<=-*!m=#",c J1&Llx&|g@C X9NܺisAAWW,ɼ_W^u3jނGipAܵc?a)gfdAdSǦ66&&&R\\\|> @w333...F$YA*ed?0kj3Z^[eϸ U.$lZ Fڶ ,s.3B#%u!|TjdK->yc,w׹߮m[Nmi4yKzEfFc7+EQ$A~acYD+Vl@U}h.)))+F!4bi~~-Z$rm|9M:w[> Lnp-}F j=Rѯ2ٙ\N4beM) `y G]ҡNRRRzv1vvvq&NaK_oƳ7݇gϜu" ϗLF%%%׿=[Q c8";jKQQG>Gr!+=j>%8Bᨋ?"JX(pq JG+{wvsGDrrW62ؤĤ)jִQ[7ox<׭{Ą"BÞ}E"q=ӵ[؄W\ݮH$"IȳUJZuFFƩZ=Ȏk)L-G>Ei:Lx)7a޴H6Mψ%W[im&&$~9zX,.OBI~-gyCZEEFv񵰴Du-:.ѣfEQ쎌~q93s3*!s/1~1Ef5Tl = kia!ù}(DV2^KX:&ܗ SBTOW{h{ːASݺn7FJ|ĨYʑϞ/ZrItmZs+̬:L _ի+ ͈#OsGz*1 ;w>I//HwKYTg0%YZ_rj8nbU*e;W.=VJLtt/}{zJ1Q^/%B ػ7'Tɑ٩ϼ9s՚QyuŋXIijVjVAڵsOk##Q{|;w^T K-nܙ T!EQ|>?22rՊ_6͈þ/B/_2eRsg!7lXcٷcGZ.GǗHeYOEQUwD8.ailE8*ѴHuw%Ώlqbv`$K YDDvk7cFwodPYطgΦ$;X__F<䉀ƌb6oBU9V@^^=zgYOhqq9!e4Jyg+ v#H!Ԩq%sbL? ͫ"y Zx)l 5$eDHt+hǥCM_3X%U| D2|(Mnѳ)<>EkO lРaÆfA9tXiyj_A/A5+$7?mդ,iAMg(Ŗ666j)YgN[N@(UWZ츸K.^753۱kg|R⾃Ԏyy|xXX2,)) !Ok/"0vޕ&^r0?{>&Ƶ4MaC Y)/~Qd7R{ `ExzaÆ&&bMnAUHLMdF?G>_ |U>0/,,\l9EQb䂅K{Z l#w`_^['ffj󑑞ڟ1 ,ffX2{?TUtQveH5ϕQm<= UXMMM}"Pv`H-)))C]]ta3lauH4sW?~E(+*@oo߾zJEf8AXYYmܴGZdٲK/>xhw )(j5ٛjq'KѵTo]G"Jn6]eE6*Ϩj;6hStC$ɐz-]U[EU~zY4T=UN7oB"=lrrrrr: VZZB:6e$B ]Fc9bƾ|ItHxXƍuȹISN۷wE#Gʼn ;w s3md PJߤ}vD0a lغ❰sdբE;AAJe>>jdYV8Zxo|^ʡiӫ7ntjU"櫋eYGGGϞ^r\,)!rj5W ̘weGBa?.YbjJFu'ߊԶIa gUFvbdsC:B>٦m[XG@pqMn:!$;Vǃ "$ QX$n~;MV穉z1!nՅy@%JMC޽w61Dž?[&B ۷n=|ЕKY]X5fafPT"n dR}sPD~p5Dڝ$Ll4Oܻ4M+uA?ztu/޹cgvvj'q_Z"9U/kӒ'ʮ%Ԑ_֭WVݺww@ilڴe ݙ&~7tx{&e2ٟ.uL䰰0 0yꔀ͞3/ts&Oǒ˗ V#FXKB6xV`-5r%ۜ%ڲӼ0] KK˱_}qE~x|kԚWj3 ;uR] 0n=:zbZɗYKwwUZ I v=v ˲Bp;j> il:glrEM+W",V9 jO<;HїH7"N.K[DJ?c U@%%%uԹH޿w/_fTӣyzyYYY׺`c{m>}?X58˗+z}[PZ+f...W޾XV^wIO?b`Q 0j h"uI4Lkؘ͙{/1,[ffR,+3ӻM 8~Yij ŷV A1rǪپ+)5&:m+-6}іMnj\6n:Pu[KTV7rh5$ٿSIA_9sT][E FR:L2c?ϝǂ%n AfI8BTg'-BD/0NUYswⅩ~~:D*y.Μ]C$yzyv~~~\l\qrBI_P߭-E=xjo;R%Kn7T7;xy99O81ĉS'O9th͜]|ݽ'++++JU+>.Z@q`,9ҡm$ddG+XVыA:ڨ~!LtG1)G/\(6pcWӋ^^^5ܚ53Ko wTkdRTcLxgML"?ifRSї(x;ϯ$qb)u50浟ﹴòii+q:EQe5cLĬ9s2\>Vo߾UJFr\.Sʏ uE]#JKv 2s,FaN5lذ*,|;AAV1cƎ:|MRH$/LEJqKw?pߕFڵowܹ r+..>w-}ۖ-[7r;IO߱'O*,~ B3p.3u`:V8a ^ ;%=\8$7PD9@=,.d^8q f1R刑"Პ#D 2'*c"![#R(⛼# yU1@*  ,,TNJJʋ/ Hׯ9EEEѱqq,r@ I[$nQ9ۿ_nhs\iԕ+WrrrƎ ˲)))<{nFFFqqL&#E5}||Ç;1 M4ӻwNkP«׮={633c\C,j>!p6zآ"eIJn<ۻw^}byf]cG:::`@&==}ʕIII2L<: E"Ǫ+L~mdT˲~|UݛBQ5o%e̙>>>Ug߾}'P^mmm:$Y XPU.]|ȑ?8c4e=zp{RRҲ˓IK.<ήV t'%5u"UJ4m~'O޳eYoaYε X 2t/֌Qg&aCN:ǫd㸵kuVSEmܰӳ6h ]~۷o V&MXݽdgώҪ$In޴M6, X֭~a'$9~ܸZOr|_fggkU~9bWKV X d111U Xڵ5kxe+++bh IIIc˗V (88xI#_@[BnٺUy6yrΜ9EuX,>xŋCBtd1[6oA,Јy7h>8sL'41F Ǐ_wrױc5W B,0,gΚE4TEY;zƍNN X`(?B/[z ,?&NLJJ2xڥ($8?@ WNLLRi.H̙/8  V ˲ǙZXXiӦKN1z.!p̘1e- 0 ڶM֭[nֶAP6?Z9IRAop65ܻwÇfmS ЦM1@rh޺m[R۷7o\\i +;N9^$ϟ!U@@T` XP%p!//?c̖.@vvݻwk@ն{ Ƙ89sqvvuuuqumҤP 055-MƲlAAAn^^rrrbbb|\T&|f-]W^ qD*կ?0u֦uk'''2)..~/>,((`YV匎mѢXXP7:uj\|teY//=ztuttN,ׯ_?y cF_ջw˖`@ %5u„ U4M;88L?޷cGۆ EEEǎUyO* -%-}vU(ܩyjU3e633ӧO>}8p]at^oݺ5`it}ÆuppG:pݎ޸q#4:8 >},gڹk׵ktpbG--- }AP }ғl޴+CZ|gkkY^QX_ X@&$8X+7o~|ݻڹ$I>zMXxVUVofஓz$ϟ`²lJJ魭7nP'sD۶nh3h ;` ~zt\rrr ,Q("q_׼Yoab^zJrrMMMGIJaj Tc,gMR.YD d(J}_D4 ͫU,2*j׮]&& 2dH5#7oޔJMlYAb;;޽{?|r$5"I~3gNTTTvvvRr͛7lPe^vݻSSS<}:{2lPMky۷ X`hҲYW,~`{ }0{]^v܍a˗W|WV4\,f@^^^'8{bxcGR%HKKejjIƷ<}1n^qr~H%H|>͛ݝ3x1r}&ijTXXש Ϣ ˆ^{{}cIENDB`assets/img/add-ons/table-editor.png000064400000017557152331132460013247 0ustar00PNG  IHDR&H{6IDATx^xTU3I ^,ߪ⮫bi"Q`YbcPH$! =;w&3y;o-6?$@$@$I$@$@e(N  %6& P $@$@J(%lL" @8HHP JؘD$@$@p (@1HH  P"@(ac 9@$@$DQ$   sHH@I$@$@  D HH(  %6& P $@$@J(%lL" @8HHP JؘD$@$@p (@1HH  P"@(ac 9@$@$DQ$   sHH@I$@$@ @% vf=2$[?>qrGqi(P G>+ttDR=24*i(Y  ?Y/rm̝u1 % " @8R ; , gpø1 #@@wl3 O GAx+ %('@\@wl3 O G `%CjINjҒb8 t8 Zx9.JpT0^t)fB1nDi/Q Dqw>5^~{c tq4SwبgVAY$} Ģ1#z[`ݺ !+6Zw^+R٧p$Nn;R"=uh $ZHCjg߄('yC u @(CɆ P G @xrW*)((ZQR/)Qۚ@(I@gӚ3۹@L[}2e&?$u7S U>_AuC`V:6j HcS[R$3@~|neeU)4}/B[Kp놦4I!{܎-8EOU\nĔyhе乺4A咟xeO%K S}&lCOʛnk<H2EgV zlk"Qc鴝S ?%Y:^+͟D{ CAF:B{v)r@tE+4]q(Ι2@(@@ D/o $wQj7jf"5cv!?<7τxJ qo4]f}% Dor>.?#;-pTk3"5@ԇρ4H疠Qמ2!=!*+Yv ^aMJ`r{lLAu"e8 ]C/?=" $-.Uc Hr+uvfzZ ڡ{YYA';ǎT ē}3crW |qW^ D})uvfzZ o]x>iUv±|Z VJH@f}>^y SX@xң%Q!/ gIn}O +h f Dzb2(Ŷ1w^ë?2lZ+ȓ+:#rA_zϪV{CäAD-][+)88{˾P 5K E:IOd@@RyR ]67EzN}_|,_1Pzq!7z~W@;'0B($(uA^8{[ i=eDk; @ R {맾ig]gN;'j]+".?W!?%Y"@tM@⪔OT "Z>h02E`nb|I/ j+b*AAe뾳]@]e6=Y_T0yivs :;f  D})uv2u鍠 '9N SLS(H=mɵ[Ah+ʫ'[):NAO0hsFN]a f Gi)/!xi{*YYs$79b P #@3o24d W/T"-0ֳٙ_S>YymY=TX1^Hl߭Ԫ$ -`(1yWHZVӿ{b:%(-.ePd" IP'bw @-PΝE+u}@zNfdhde $|{yRp`d:d0QH3iA\V n4O{RU :vC&0idgV=qJMfQ 4)uv2)r\׸oiл?Mnh$cc4[=DO_day Qgg()Hi),]'o!ڡ択䜳gݦX=Dcr񣉻aKhrw DLb_}* ? -"54OTJ/ijs/?#]{HH jS+)u:;C2мI*_R x_k\Q}ѯA]Nse".[tSvlwQ\+ [Y۲4cqﶱw!ދgۮ^0p {)R~+)u:;CfĆ@V W#q_6;w.C{A:t;-ݓҌ%@iiYl bCl w8^}dPDL!tl8 Dް{fT֭B 29QJ37L^4U)&%%[TeA==LP}X<(x륞r.IlKn='2Ns_veܳqHlQ l)uv2M= B]GOBKȌ_-d0BƏR k޾fQmݍjfν[%+5#dԗ* D&P)}0`R9Jk*I %aQv^*V5z3z{!W9H;PZs#O7K߼)Ȏ(sD3){⢨'38~Z8eAճ۷ nŋ~x%49d)3ef\ŀM04J:+I=w|-u%ukv]"QL3){D ?wwҘ+QhСf3܉~)KW!I3M{~DqUy#n} -!ץd瞫/+{ylڨV$P )uv2ebCxA f"5sN{/r튵U?\A͸罆hQ Y5+J:vf-@ԁS eZu[1zw?\1{UWuΝ_ϯ@rsk>#o@r f'kn)Az=g3Knaͯ6w@m9'N~ H8'hTtWr1 ~Z4kI;z_zFGsEEKob%޹;rQf 7N:Z;u=81B \xVNiyhF%<HU4وxjqp kHԇmXM_[W-hȲ5mD|"6<Z/\f, @1S e D|Fr]eus -r2 \&i9fC♚qUk6A[ˎQseqi#M#KoUS<oH@ԩS eZ 5Œ4`[RfRwoCkPZ Fʋvi-V.շQ{Auһ "Y5B"trD3rE+ rkR<H_jn͙G6]FVY{ sO&L(s-rXbkw9qb =[;]龺 @Z PAlpo$&s%: i¬tYNz|,< x7۵$}N{(*8 =P zhU@ʔ= U#/:Ld=pHxC šj#DÈY2%\Se瞖@DyF܇#n?"QL3){Ëg0TWQ AuЬ )zX IVvD,0d*> w<9ҧV!H@m^>V_D=^+BJ))͎IFc/¥u})Qu+1F%~ _9` D@ʔ= Ub Rĭǎ mv]@aڻ Z :ۢC:,X'vnE^Jt^@ٹ')bP0,XmJ۟xOQ )uv$lvj!=_Sacl[EO=U,_0ƺ(u:;f  D})uv$ R I$(A@1HP Hc& @QgL ? @"Ύ$@~@\ ?AKq{w]{:l>G)5Y֮Vw {HӴmG'M "0DN`KC v;lvOQR& 4,HXޒ i(P  ,H`7{K$@@LCɂHH P 5- F1 % " "@x$@$` 4,HXޒ i(P  ,H`7{K$@@LCɂHH P 5- F1 % " "@x$@$` 4,HXޒ i(P  ,H`7{K$@@LCɂHH P 5- F1 % " "@x$@$` 4,HXޒ i(P  ,H`7{K$@@LCɂHH P 5- F1 % " "@x$@$` 4,HXޒ i(P  ,H`7{K$@@LCɂHH P 5- FbMpIENDB`assets/img/add-ons/conditional-logic.png000064400000031247152331132460014262 0ustar00PNG  IHDR&H{ IDATx^dU:s0yiW5Q%* QDkX Ȅ9T]ݕkU}^TO}L{}c0&PH@'gL 0 L 0& *l 0&X@`L 0UX@TaLL 0&`L " gbL 0~`L@U8`L ;`ƙ`L&PED6`, 0&*, q&&`w 0&T`Q31& L 0& *l 0&X@`L 0UX@TaLL 0&`L " gbL 0~`L@U8`L ;`ƙ`L&PED6`, 0&*, q&&`w 0&T`Q31& L 0& *l 0&X@`L 0UX@TaLL 0&`L " gbL 0~`L@U8`L ;XCvȲ tq͎$;<<!Qc`ryƸϝgL`-Z}7v]pG>m X@#v-r_6CB_Lxm+`a ]64z )eig'o`L [鞀ta`h}mw`q+*tL3`DBB*{:p:pCO!!Cj .\' E@CB6ƌ˹s1MAv _PV/ -} 7EȘ.DqՅ0ea^sArPX~14O1=ץ~*Sc/cuij7{ W'WB\.+ap6dda J?T3sSPRPu+\gDF9( Yu/[0KQepcBvo]s7z[nʩaHL {Ǒa b˙6sͷ#3lF[m:z% ө(4V BJ? ۉ7úԹQlT5}IaAOͰ['`~ωbih@ZKk ܮzbI@tT6|f!ScXQKkWQRmG6$7<-y.4lP|CBO8-S1& zT7߅Z~8h?|QVTJVnS JrZqR\ Mn6$:^x袑Z@eO\PO_] }b%L =k0SKd464F$܀<79; k:^uqoB($\V_nhk\Ngh~ɑc|ɕ|zԟ(x\p:8ק%%PtaijzbE@މ˃ 0$dB/yzؖ{2oLrj#3g]Aױ+X@H u((lR?Z]7+t{L y8oYn Fco:xVT_0ft5,[ZV=(*躱m=t \%>2լ@sGU.Sj/ +5VXm> ):[~W^_cـ/Hrc5?sweHCݶX`aWRTq1]'} '1]nu};[XodpƣHI+ڿw}cF@Hwy'C-߳߁,K+Yyo15uoNe#cfWB{ji)R L4~bNOmX2$2w(\3 FĶY7V)PP&k;tO6HƝ#!p <+ϩ_alqԋ^{-{N<׃07q\HT50}Y]Q$2CN{QRuQ@bɍ*K ~sS1 6?!;VM1b=? s6/(c_3Q+uy]OCa;i͢]Zd DOn{<@Ǫ)Mh|wpZu>m85Ō%՗Cous˙dAq9y뾌3ވ/߶0mmc@6"3C:&r-r"%RddK6_ҊF;7:bF@lut/,ԌiAI]nr{#e 8,`E养"' rbM@‰ZU[FaQX@gDD~bEL :]zF2=pϽ, JfHMd]KV+mi.kˎ-{^w^+>F>Ƚ4JG{[:c&AwtПF[1# Yy@YmUvt30Qsb^xdoFeC15:9GZZMR# 硠e=J +m9|phj=^O/jiӔ1*uˋǽDijiEٲ._+vW<9V%1# i{P%nߺn<2wKE#?mne5uPױeoA| Ednwjz tjZd-ýįcF@2sކkڸ0sh>'+i?gv-5-w!-^2yf^Y&ɚq "ҡ-ҏS}qѲa'+/Mgt BbF@i>֡OI>}0KpQVŀRJxOė.-~ iueO&۸|*> M~1}K[x,f$1; AяE(?r`hɘdnY=X@a$mERJJ!#{Wr% d[>eZdb;ғkd0Ok=¶<>:v3둬{Y=M{ֹ(qlh=T6޸n|ھ^{QPtDAn_ɍSp.Jd.> vz/.flGY.8C篶31[GJze}&: Pu}o x'z-}ŕtgFӲ徭 mA bH#F@:lv.f\Ĥ% ,:71(f~}:iMaAO 1U:ی[1% Y砲F mSKþkNޓMn^2d ihӘ;r#V.l]xH;^zkދjҌ=q9 U6rUUqkd +.@AG=BmJ7@WAKtLm/lb<% hU%SP /_t)aRr5v`mñß (Gdr3&q#uE* mk t+fH>۰ъqRj= M%wݥ՗zm\Y@ZDfKM 84B7 m-c_YK6b~BGrc\LbN@f,7m䢤u^USҷz-!(|gN [WJ&7Jl+K~܂)DI}5cl9LEEDqag_S}io+tкepX@TM <+r ŕSRU4w?dy3`=\ EC@|eGh132t::'I@&tq!MDWBŕfttK?_Ako\VץlU~UQ+km!K}z/RyݗgJ ky E{63{?)_\/畉;V.,/`p:&U"!1';d}]Q"˚c\Y1}]o+O^AoHEIե)|fݳ-1N *̧|rQL DtwH7mGy$J; ~RmZ!vz҄>2[G=HjBiX:λ8l%V.&ĄDt9`|; 7#{P7ࣲ~г|^2m/p-c[=..E ]A((?eސdvY1CLb.Y@DIq:&{pt(N[*2Grߪ rioABRඤfQA}0 /D}aErJeDe00i{)E 8ywÂ̜sPZ{ ^]15CN:7 Pm=Vw-dkXz"}5[ج 3H;tgXqM`MڟN^r&ɲbzI>_!о}:=zCqx*eC$t0NS1$YmC滥W" &Q3ѹ1/],I)ŊV&˔8t-gN@;HUM^r ?ܢw#QpM&0>cF>I((;݊t8:=GL< [ko{1?U>Z0"Kҽ{=?Iq'_Tp8-e8sHL.Fy:SӦN/9Uh#ܦ~HIBC}mX, Y\<湃6: cB)H%M7W OD|#Gqeb@Y "4*r@rs }mwb"fyB?JyPopG#.+ ~!!(rit$'3בG0=2A"+\^Z4ad߀y 9SX'N"r Wi2L̇{%!zM[;Эi]X[0]%/9K"7"Ng$;\PAm tm駶4ReC v۸M!rFHf ;0vH[%"MgϢ 1~Oʡ T]H>iAktL/Dz1QmH*s:(ma|T}ѣv۽Fǵyiڏ\밖uldYNӪQe)`VM}?"iR|Mp#i'n)Ͳ,-ve;S)i0U\&ZzaLl{$&AdcX3T|!Rv4v̊#+h N3AB"}Fq5k1Et6UnKtc`H]`XZl_v=:]6`lIt E; 2&$ I1DGz{$(9؏d zuYIQbFo37g u;lv>&e,[ZBoI)u6mtbrޕljĤ2doX[vױ/ºhH'T.bqtY(,bՅCC9!=]O 9Bu;]VMXbTu2a=}no7]$S`"rX&v֥HHDY@֐UEK}H5#;-Jz%Tp 2w++wۿ7+](U?9"Ƈ~abG]tuڠVT$uQdqJmCڱ#a>m+&rm̜7!0H->&5{uש{WH_1,ηfs> |[duոK09P=H?bf<0`zW Jj2v R)!EpPSHDŽއ(r$VK$u!tEMblC٣Vi7Ҽ_qWaT_"l ݏ ;9#sN[{#l!#z1* v~]8=%9Vx@y(f u@EO_veR@Ll9cEml;93)=tn a03iOU%a~ͼU%崡K鱗1 1nE="nt=c, J'j96cL-Rmbr%θ_$fqo?l6R}UvR8uSB' V6T_+k5>pzJXAZ--[052sHdcAfn)_Ins䯪&Ep7:0&q~t UݝpҚ}҅I%N!Y@ })|pCxu󷑖!6;Kh;V)h t&ܷh$R@ ?q__Qrޏ]9VPdW@ч:&,Ƅ7qb+-&mփ뉻:vj):)IK(R%[Ʀ+Z,+}[̭ˋ^1Q@ `ILLY(%6ـkV+ &Wz5v7vSH_P }LMW!|H` )ĦyR@yˌc/늈;xF$2iyP( HhOKM7&2w#EIk14n n]U|Jr `Tcli[R$<. hcB>v?&} LR8Bkа!ýav"p C m9p^ȴƩbIDAT&H{0 ֳ_s#ڦO \FF(!3B')7耐9+}K6>{u^꫐Gѡx(Nv8y5-IepY@V&&Ua${o'4&i/C鱟$-bQhU ޿$ :]-/+r+Iv-!!)e5 3G_bҡmB;17GՉA# HǑR*uv cҢ^ڦr. ;(I 3a~iե>*W, +@RrϸOysN0!;ŷTF@@% PϦ}20{ਤ䅵((?_[ov̌}KlݘƝO] zv~˒'K]Nt«PUL >$^W:=[XI)!~?}LwQRurD}^@l;%#01"&BX.4Nr\g䜅4sOwe`=^l Zi%hԲ/<> 4ҳjI&46%7_qծX8|gY!A+_4|VP(5z ((p7l9N}\= Ҥv٥IBffk)L =ɑ%+hIC-w"3ّZ25xU:eTh_a}|M6kVmyzbwQ7{~"yf'Or13r;kx ރKgƻDa t Q } N > W钐ILhkG`)fdZl;Rh,K<]%P с'a0$oQs3 QRu)2r2i XOgK$ܚc#9Dd@.-++S/7m;|veF[Jl6l Y;6z1mAuy?Œ>^i)-(L Fޛ#mWZm$֠n{hG'mCLה6ie\٪%>?Co$1n*?:e7 +B{ UHuH˨'- H\TrHJ.2-,;JO+a^TqdRY4`)4R&ԁJq%kE"mbq <%8HvvLc}{h,*>wX=inS=ݦ'CfK1 HnE1;+R:cb!w~WxY8w}k%p9gחX4F HFPxp_;L9Rz)_8dBQωtL g'YY]j+(&[ą9./va1X_!V%ɚaHI=?~5b+~o.i3PZy$]VΑM++-, ~Jиaaʛ"w)qW\y[с0=*oq6:X4E&%s7zZn[W~Z(=gExZudUVIEB%t7crgҾ:EC&|2`=fI#~teKNUFN-#YSGhn d !.ҕH/>i퇯>";J]W#)%bݎ.)6jB )7m%BRT QG"B <$t9&]x+KPnS J؇kQa$([{m{0=?,$&KPMgKJ_;`Y8JK#,V^&rAiF EiX[ܨSbn8l#Ґnڍw!).pmQ˖!t7 H[2cEl]u_2&Kp@Y>5s=]zw=p w2zנ%K^+Wdi{P% ֊,@By$T,<- I)ըAfX(eq/AG*-tN/)q;'rިSJQO܄%sw#JffDsŐf`bXR}r I!NmTZ^sBRʆle(mP+ J#BLdYhCoyxWHA~G_a˻B?{زY`rݻM9Ǖ$OM󷐒^6=-wy4 Õ6w.x˲ٵXUM): R? H|hm ˖I؅ʦ" 06-h o*nCZF} >y\k&, VG컜H7smedFUׂbl;t!a%c!' >k* @7O?%}MF@$:#(yIՅQ٣4P=٤[:XOˌD8ߊX+ԋmJ(DB"YnEҪ!]:%UCRJDZgڬch? b_@lCMzAp6X 91D~z{ {1ؖӫtHNGi>+`vL?}\q! FAM9smr1$~/IgЅ@'\b{!=!19_@]F.ΗV]_nBFƍ|M, ćۓKdcB8ݓ鱗NǔpHyr ua07;حcpT7e#Hфzt6= Y9a]mUo9ޢ;%_Ƅ\4~胭_ypTv{wcsYSr?kNe]Ǯ6 LD&N <"^ RM6`\&̭ix:\ud^ڋqgQ61&]D, Eϡ7yVTy'f3ӅoojWۿӅ]$`eL@kt揂ݏW͸O}6G X@68q+B.feWɦ>v[X@41&El:2cP/40vkcݱ1& @V}h19ʠarfEf$8M x:m;h^^6ߍ+\$`CϤv!ô 9D!t,ژmZX@6xqkXCD ^|  H|3 0&9͑rL 0 ̽dL hNDs\ `L >8s/``), 1K&X@4G2& H|3 0&9͑rL 0 ̽dL hNDs\ `L >8s/``), 1K&X@4G2& H|3 0&9͑rL 0 ̽dL hNDs\ `L >8s/``), 1K&X@4G2& H|3 0&9͑rL 0 ̽dL hNDs\ `L >8s/``), 1K&X@4G2& H|3 0&9͑rL 0 ̽dL hNDs\ `L >8s/``), 1K&X@4G2& H|3 0&9ѓIENDB`assets/img/add-ons/constant-contact.png000064400000033321152331132460014141 0ustar00PNG  IHDR&H{ IDATx^dE7t99ٜ3i|C}A<"l999tNgfo3;Ϸߣ+_ު:D D O H(; Dp$ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@.t D@tB]_q5z )!U@h B !8 :[CpwDowNZP_!w`T D |DoH Gr) r)[}$jxy`J v | Jp> tƼ]dҡ-E("@U" {!zqptr~OZ|薇Uk-""@ " Cn=Cn3쭭REpp  CZ4PEh(""@@ߊrt,0vj(;H- 8៶GQlC-j$ EI"pI`_L4:g; y-)D 8vC^,:B%倚*j$ EI"p An7 ߀&Hx_OYY][āow6"@.!܃T[OD#`$.x~=`5qj찅2Y(%ݴ.c$Au3n6jSũ\N'/|vSt!9@?}}[nخenw 56p=Y~ѥnj2͵љ +)e= Ιf gYBKC"oPR/EDgpv ëBŤV?^|۩oXYYX=F$yQv#eɊ?4= w{-=J ^Acd0 k"@ж`o"N~[7#ȭ&X)W/W|37]v_<>{,|_^VW܂ԩwr[]2[Y%Sũ /ͮ7@v= QQӕGF)3vyl9W݊ԉL%۳1"1&Ao[M FxH[ h'5ɻ1ރҝű>^@{M%z#}v7wRaD}##79zRg#Y1PN$]+:Ђ9!V'VGnbrkm_9o#9mm;掆OZފo`j]B{rΛD\D_oZ!Lj}> Bйq@7JV|&'(.GY5wJĒVB9U67o'sa5Y`&)oo!~Z3#.PvamtB ?#ކcf`Rh>~,N[_ F' 4/ v|b$`oϦ薕^or͟U%9T%^I&77Z1{N/eu**HOuw yjy` n@ȅ@IAM'Nو( (=PǁI(cPSUA3ߺKk%K. ޑano#Flx>Z[^U`P nb.2kLEP5w(:[15I>I&W@ӶCwzt)b۾ %^/ϗh5uJb)Tta?y:)U;tf"䡗 g1 5y~;F$ + Gm].#ZMԼsHcMEm?K. ?5ܾ -sn2G'Hz ҅2\?cG|y1ҪٌG;h+ʺ+!;]8:Xa<_\lqtai6*RV7ⷚNoBx!1JȺ#YԄ~L] {Nmt-ϮAb,G:[&;Kppb+y 8д" Yˮed?Ɩw֘*P"%SKc"8ʭ+ ; }VAn(ShuH5.uҭYwv'Vydב<|Dp3|#IUGlHLm//!~N}M(j'AoռqP#1F$ Y~xs #ދw<>>~ƪآ/z H^|Qj6[K͆Avlٲe3@3`T@8C3M;ߤuwRyD6gd[jɼ5rA`&TS!xljP!gm/v0]$SqhH0oac:_ӥ}=Fu+&9I͊Ix._B:3BkYj#um$859Gi;$"`{>xi~l[CF+Z}&횪[X꛰rygA\\m6]f6c}cYffy!G'xv6{ȦV3T,Z] k6ȮW}9k7yfK_XU?% /5< ,*b WC$w#o#.c埴RED;Nl5D*aX@D;W;#d/jl6ORmyF6% RM|[h- H `< Gљ3;m+w#Ҽ3gmlY"n:Ոvǜq>-8%?掱i1"4,e\~\o" )Vz} rk}퉩"fl-bYbWkX_Ib3:6DO!8 Fr/۟Aծ&.L sT"ʮ9YP,N/ IF*__< @1+>c: # ʮ9˚ͤf,k8Y @s~>F}qm$1"1^ 3gY>:)4$쇣5`nf^jT~Kp~]˩m_mɊҺ.ni} ɫ\xE5+*~\{b.ӏ`vSm~ϸ3v5nuqbwBuk,Nr[yr_ES x~^[Yf"s֣:{lC oȭsl8˥h!/$ "\ȍީ$N!8op[o-Pm"}n 8/o ' sm,E~; } j}g\LN_w-;;th٬S[⑹V/3fBoBt~~ڬ/ F懑ך9hm/#K֗f>R1")ts OѥS|/Z;muvrC.' O+pvBIEp.j~? So imISi围rscdb<6pUjgMc;C|wKsW'mSn#x? 8a~JUFX9ʼncm>Xzz,QZ^ >`6fRbdaֶZ6!v(CM:1?8:fl'%r#4gd-ǐ[ \}p5S[:"nq^|l =\MkZ^v& |r6X]R5,Nb`,S?Ԯd $W0rl^lG1k K3}3sj#[uC䟗Vz)A$9Ct{O*_5y3P߫A>l iJ}|mrO :|f5ZfSl-m8q&Vt;jMDh E"v>;{<tԯ1Hstb:2rSWCt,D>и/:8}YG7s$j:=/UƬKb~ΧKQi & 'Aս}Ex*~|qV!S3kOZˣv'8`:f\pXfYk/D@^};RX'̾6i%Q|c⾹JBK&sT@=w[L{UFd-Pk-"X@ -ȳ{$)Fz?;Aζ+FJx?0fg\@X?G~zIWGx:V)ڲE6+8_!yߺCh81KOV =Hϸ7eU?}]O\ʩ H1ƨn' lcDnR'pR'! x g'kuq.8Zd:9]5~ W#}z)63#g_ݨ-lem.@j1/;^w*$:S)$ZgPǐ:#Q5\dvb2;7b8hv{o`iv[[ɗa=7pu77VVh5uM=sV ?+yi =Atv-噛zFMD߅ixE\x=/#H,ZmήFxiv 58:?yDO[jEDU8b3ѽ&7]b38jz:#> +AtZ1Ķ>hus97aDׂ\b6n싕1%/y(YO,w YwN({>}/ ujqa|vl%k PLz@[%<2u֌gL)YmS"oC;Ŭ..J ·֯ ϫ$֎n6V 9笎Y~);c\蜿;x RPݿW=ܻm`fl17uzI>mO \%v.ݹd;q uk,M-o?}$_ǒpa[?LGgk)Q*IK$E^_,.f[YMZ@Pvi1cY3+3sqWe2g a/q!m 9s[p,vwԛBĎ# $HUe1Xx)ѝ /7`TG2_HJСnK* VcsBJ/F7n1n iKl%͟]\) E*HVX:g31^;ƖD') ,jH~hRgV r;HRf_u .b9F{o&gokg2\;52%5|XkWzRYpw[`ъ(jO[覯BM Awԟ!#j)[&@n⒨ݚ&oܬ?' _?2eJW4(sۗYxA-.:]8 4;:q cgmH@7p'fgM#yO<-H5Աς27D&7^k,:॒J& r[SYu#D< w_89ώTfu];nMO.{ض~Y\Vֺ!uoYHp+ l5`S+&?CBWBt5m?UL8sN7j֚gr B z{@־!7/7칚"jQYOWB\j?V[5!͒ \Bp^Wnb[4cHɊ&slaӉgĶ{stIo -M!N;*j"\=MR jhUPg[pvlq%&VLޘ9?7j@r3ǽfj:{7$v$@oK:yP{^x Ob%ŨIQ2 \q!ǐ SPlH5U 3+Tkyr7MyAPLۗ\X󃶪lc֩刬f_gTl[ntB nܶǑ;: o HYāW>7pΙUHH-FsHzqRo[kKWmEd> bAp L_K:YhY]MJd2M3vu슍\x97sάK]@a{OQ^h ~Jj>o_?Hw3t朿yfk-֘$膻Ƀ arSw%ZQP-K#D@Vo|wU|4Y|358Y6}m&2 H~}SdURG?6n{ m}^u;R'CJ-f?ؒU^.;k/ g!+ cƁO}T1ПČ}߃AG/[|MnL 7 %G;N$1 8^:$JqȊv@ f!o@ok&ŵXlBh3)ل90zpEAOg'̇9oD\Q~xmGi{^߆2PyxpƮ/]jWx3[^6xWR,- ]owMF@|CnG  \i|-,FDnQ+/-$ %sӬ9Btb~G?O,&΃"5dN+޳-_jLMAMH,-v-YɷX[lU2;`fX)?Gʮ'%0dk^81%eꟺR.Թ/;ma58$׳PCn87Ԫz {̚amgoX. 9% Jh7m`ܺ33KX$R|XcEpBaq=qНΧeݵo2Sxs/B*;C8M(sXKzޭ9.1?[|Cp1u sAMm-sc$:Ar/Mr"eHTK* +"n{6.Nw;yU[.bq_@*C`NKjoL#t $c&׻,z $Ob5Sќk@bߋ`WuYܝ&o7Q8 V@6UOGI襣'?P":Kgbjخߩ[77Fߛm6= w{ ]%; ?J$;l*siw> A+k\"8Bp3|^ oC(]J. +mТ+VW)x7Թ~eB2o] /?-7ĭVS@ʄ~[ퟶ?n±!+=𖟿mAL|-2LjJ}vj;D'ω#o!V+x(O% L Q~)B>6{oꖇ!ɀv/@ 0}CjJ sulk"ƔqlWn |]X{իc:3#.N & u| #Yo4Y/AM̳ RxBWy:\ȪYTc+3pv2vwY3{rh>f>3Bߦì͈Ԅ}cU@onbv2lƛ~o:T@8 ΞqUV%A|"(7ֳb.X=By={Яnlx("C; HÙ^{7RGsa zۛsdI( ,>o!s=:dGh:+!AvWZm7sKP$xCbK8x@cϹFy7* ȿAphz?.~TEqBA!D jZ4Bˮ@;!+Q ȅ;63"pAp&<!j tFKuA^q;ER\T .JzN/q/.$ (3"] ߨ7}άDt}<@K ȥ5D uc@Qm?@?,QF%@Ҩq"tg璛 ~dЦdSH@쒣rD#p{ Clۏt#@[  "@ 2"9$+K kAr1=!(s.ZCdV@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 D[ب D D[H@laBD"@Bs"@l  "@ "@E6*D $ 4 DjUEPNIENDB`assets/img/add-ons/mailchimp.png000064400000073702152331132460012631 0ustar00PNG  IHDR&H{ IDATx^]X~wf:BzT{r{zwkF{%j)ƘB  g30lv!<>*{̙of{~þ[-CM4 h4K 4ƴ4 h44"h4i@@4HԦ}IӀM4M4 h4ڴ/i4i@Ӏ ;i@ӀM}Ҁ }R%M4 hD{4 h4iOOjӾi@ӀMhM4 IImڗ4 h4i@4i@Ӏ>i@>MM4 h4 h4' h'i_4i@@@B[30(q'8h'5At*OH4Ӏj`j+-mXxUoJ&deD758.sS%IoߖIh5ź*h2TMz50Wv;x9<)hr\c^$ |{ ,R ƚ 3r}t(O7=w5F[Mh@Xq}Sfp>oS,C']%scf L) fJNEH7`0 zhx\N]F#,յ @֦i@@D?LI~ 0t ZIes&Ĺk1>~3v p<<{܀_òe-sQѵD@Ch@jp7Ű&쭨k@Um=aRd dHބwn^5٫xM H ;O)#@5$p%6a%pY ^!JaK:m[\6WbybN 9 Ĵ.[`)?w1` K8efx¾9qRRPko· ~Śuaon:F=I1Fo3P{'(@7 {S֬i/9Į q+ͱpfMcAry2\UtJ:X8n=aia#tIh8\x2sZ$ ʓ~Q1|ӯ|&$  <}D"0Bb{d|lڢ5 5 I0܌`UnV} 8@ḳIJSܝ&NzN/nkxWuxZ -NĔXP|~??݆8s.:6xy5BqF"֠Cݱ•57D[Ӏn5`نoހ9e%I1h|<;T(8K>[UgDh$yS)Dñ'2U'QQY C/")r̘xܹ#:ՠ}OASvaMQ H+K\x))Ѱ1ݺi2h߾?i 3BuA UuFҊ=\w9tg^}nuO.GY`9ZxsBi 4k@~zHDy4,}1^;Ҏ6Ħ*}D?N/OݔD^@֡Ml+bs8nt d5_{6do{bz5 DX,F:;dч1uj>r{>8r4},Dw;DQ8~kQ%1 .y[}Yk;6G™4 '_ \HkTOӀ]5 =7/T\*hxڊ`.ݕx<>LMp<8}K4Ǟ[ C(1&CEQ^~0rM @CЖiOx$,\MY4r+V)D[܆v78u}Ǩ[-*z9p-a՚2X hqБ6X1Zn]WR_zNd%";Nu-NN-%AHdz9?jB} ;۶+V|ayP1`~ײL+]!Ϊ `|%ZC{_t:l,m-.:l{1P H D5] ȫS1'Ƅ%43Rn/u[^w60٧a{\<6uޢ,!v,t[x4̸ɻmyP͍v@DZ~ - ^GڅKŵ>< ntBد ,7Ǵ\ چU~Z @^{ VäD: >mT;%)2鍐j|7_ z7*ZE]d ֵT xȂӯT,t[1\V. &xA/հ&W^x .<4<xy0YbI^.Gg֣٬O*Ou3|$;{ܸzE9<~׌DŸp^?燁j#ͤ>Q9K1%{hseK8xY"ֲTI.˨:GJ$Ե@WhZ>Wy9paя9A]-\^ Ke- ]E VI&3SW(߬AdyVZ}"8\u&}@A ^Ry[#< ج. IJ?յ=T ./8:Nsld9 ;Uno+H=>&ŢY7vFO|p4`ڂԏGUli3WVhhla hiV@E]wN>oceGhDZO)aTI@FIxD%a]BSdiNDޒ3-3/Χ]Edm'˴&7.W ݍky&ㆽ`VxTnJd+j4x81; gtIǏl&M=%6:S֒Z<^?>-Xp拏xez1>>l3e0IYP/܈v <Sx|UqtLZRRLn)q,_7uiBöj2X•93o'-9vZ[b725"@E?t6N=8̾obB GE+x39:NNxHê(>QVņ:F Y&Ǡuʡ}zH}oȄ澢IWvM 6ܼjkn?< F= [#SS")x{{&&XqǸNLCIKi埳l3wBPLcR 9S#oTGl'~c$lhq_m阞#hp\Jq>I&JDrw ( hwr\+`R2/.`6s"~ض |#aCN9k$19ۀT\I=JȆ=ݹZ I.H ހ7Dx=,+ /Z T@5Eޣ(f3VIGv=kֈkۓ3!vz-([,6{Ug\\V;@ 4i{3}RوUԤ?1}zEiu {DuCv~,xm%ex8Z`ov h[)}^PV>0 v.׭XJ&SX:,;DT7 13 Iǡ .7!{ @"?Ɔ-op'L\%GxV^^FeukwZ`5F\[]ng}NYVO/fO_lzRZ׶de`YIS.;UcIgU+`c~0t5ɹH} C=f^ wք>z۪с6G;xS ǺEmEzYGoǩ\[wyPUV-B-j+Bs.FhJ@\cPO"C@K ̆V'Ӎkr7=5e8T7` dms;]Yc:fX"Y2E+<31g2S4qL SLgzr,˦,P JZM${qjYYj.4ho7ƁU˱>d>s;$P 1% 92#IHĕ.Qn6'1>)`bmnz#Z!1d8>yn,ZV kO`3sk`E1r ROOQk`j-Nm = 'QR f3jOjlՓn ĊH6pŊZPP۱1 Ld+w0gy9dN+jjwk\.&FYɱfT{T/SP J.9[l ?rcxaj{ۇUcf&(RnU+l8WpYS5!*5Z8,#m.Tbod1Kی|r38R:kew0Wch^EAװZx o wɶ"+4ML琙`7A/piEvll+(݊8a0:-GD(땚^`1? {N .*LczUԠCcY*"Sh# 5ThC~`B>&(8TxMac3}sƈbhc3r <^YܑVKً6-d$7ՀP(}W9mK\C$cn⾢ӊ;84kkwޚU\p,+SuRLE!>V35ζzޮM^H{q>`@я=hӡFCOa_iG̃qꏻ(to~φ HKZqxzh׍ġ Lߴa^ln1cl(u.#rjN . UhIt{N{/JpN=( h}sf b[ܸ%qʋΊjWwN>ل'{w8=7"6q(^o5@I}+pQ< e)frg xnSl|1)M?˝Mxlc N/b#Z,x(qj`m]I?nzy fYꃵAgth׋sO?yٸ'`t z&d1,I}.ȪYlPI1Mu.9 zꏾ1ѪiȎ2)IqvYbd/Jxp#CuC{J1<DŽtV( j3cl<59-ux^0 G˺)2$z=,Iˋ(9#ZQNDQNM@a\(dC)Xu)5RdIZj$)5j/̔KF(P )Q]ue`Xfa=R͙k囱i$DҙMKeK]:Ҝ~Ni $9&/.L';xw[}?;F06T\W \76 5# UAs`B돯e]vsOdž eXApaE+4'6#!ΤgU Kq!~V Vlo^!s<:{oe =j@i%s]=O!k!,?by=ݫ,"]1{}vOC-3cq{!t-8:nwį"N@ mre}3NJ-DTLŲ&-Xh=&$X0>:::"V۱ށ&i$.Y[ GeXj)H,6 TxJACwQ0$Ͼ<@ƥYfTB1YY6$0h&)D5z O@\R $IDݶmxwʬQoB sP{ 5o"yomkڿO JŬߣpPҨfT x+B|P"tkѝY&McͶ=Fsd@7 7XL"bw1d!g5c@(f@r vrE 2`p8ElAbPj.ҹ6`v\Ip^uN"EMUU]`Fr(ROc3:/馻!Y%(=x-ri,nmwcTS-vMx#P[mj?K?w%Eְg4rѻLA 1 #DjL E;\Y"f.U|"{p %k@As\UJ\e ̚6>+V3+z6Yh6q(LGJR|{}oU20e NHH$接~):]__^g_ >[2jOb%[dD^TIS:Mad6Hq Z96Zƥ┚;mnb46$83\JiRjE,wMȍ %fTЇHO.Iz1`jaJ|S#~ O Gꟕ?~|ƾLۗ,[ֵO< @<ލ}3yd%'aU2pȨě'yMv,X2QXZ8 hmnFL: zX㐑|sEs<^*6W2baH-`=~3l^͂ k *-Z}:QM4l:Dcotڎ -Tf.M]1~s`2k#j'~ $TF]C]D7yiC=ЬP 5էn^OVWь#S2ۏdԶOv~TMW\'N@ u1%}Nn.Xp Zd\spP eGNwT I]0:_TB3{_p6 w?xW>R&t9}o __B.>< 5۷IrGa "Hn{"B$0K3W\M~?|7x@G#I4Y(^AЃowf] cL%:jYaIƻ.%kYe!hy\_۠|oPrPa\wRo"KY1Y\\4:^mB&#dҳXQ<96kωwCj\Gً6'<+ 4Vj՝ k$?GGk WOr3aeֶ8$9PB< f<\ea$C]4UkЀ<#n+Cl!F| Tv'PO-+ tTutH}kw`@oeEwVOKfԙWlEvff:q&*4ERV2&(Ռn~~Ke <ÌNGRNSȒ^  }y#}ҕ-%k'?h4h:7ׇ ;kd3nP+RVVK4::цZoK-TqbE3]r05Yg53>dcXYM.AZ(iE]hsۨE} Y4IoW@;Db8B5-Ng; @SuFOdɩ RDkGFnPӘٹ)5$|H]Ը*(.@]%л`&ԸGǙh y*; mLY5cG$z9@zI}+Ƚ䊫vzpޯCQ{0W-Bs Uū?G{S늆ȎǺm+ uVl|2 OεE<`0묋aTbî PewatWԝ4gVK3O{sK@hh[†5%,p` <ݯY:0LP)]O9/Yϋi n9]5*ޯYqUFY?l!R3PF mc6=9 b 7uPDž+~',;-D1U8$Ն}UAKn"ɳRqVerZݹ6i4VM@*] ɚwM-g0}AO1^Y6@zM;D;qωc9ppXOoWcbB ;C-k}.JeTbӋVRKCT8ʻpCn~'8sI@=>V3MziQ:N\mln( $ ,J%N3UСҽ pd' F/}>]VwooӸFsYSo|T?R#5U48s%X48 Dܰl&vˌR'w)\=/Y^J&Aw:q<ʷW/~DBι?/1s ҝ+\*}SsY~S1U2oO&_tY((PEplQn.%j}n̰xצBh< Іg5vDm]պ%OBmbzSw@frW]RޑFkƺKۨ)قS6Y!OM)@٠4eoTԳ h Q/ҿ K_>{ hps<׍aiK`lC^aC؂àzvS5WGۑӌ4iQZtVRwkGhӰGpM, 3kSb ؿ$)bƕE w}^H oVBȝu4Bt4 :&l)bM cI x;-&2  DAP6:qe{J[]6rW-om_V7B1ܺȢk+jmt|6P@'K ӺJS&zL5 v+Ңj'ӲZ n ֨*EGMCsxǣw%  G* 26 ,lqzQ#T6abd9nH"%(Pl顉/-Kd<(sw}+ ї_>f̀>PHpIDG&#s/58@`u:kC(I BR[:C0˜j7"FT /7U4)ӫw?1 ~ 8oF 6C#꩎!ԯ8+?PtWJ]kvҊ暚dmuQŻ| eNLH^*~F%ԩp;z C.8ObqO*#Qci nd0FM8}a,_طE3_BCTwGt/soƶgh<{OR;Z jt`ejwm8N@#:ѝ|Mr$=yO`[=ckvt h~.Z-yF਑V(.$ExZ݆ 'f̢O@wk9uFxKքj;I9)$ #U ^USFzzˍ[|>?$Kg_ڷjHe > 4 ;xTʤz|♲*|^egO.1yp‚B K{;=Hb$s ‚4'Rz1AwQ|<[ wԩܨʮxai_wNVDv EK;]8@ Sbay9\,I(.uӱX(]j +l]5SiQ}kB=TYS#y,JG۷+uo7AqŰ`F ^3盚O=^QXLQM10wF\x/Aގ LFL&| ,?HW—2Wܡ {Շ(~e0|SՌ734`kov=ь3؄O_VKFfP#XѠӳLF' ]!ޢg%T}ޓ't 'MѦl7+}F CI*uvހ; C@ c-V,s#8p)g曐Oɣ(IBJ㣔\beB86Ҟ-Bu9h.g\V|Pl%T(@"v] yjgv,}@ @b " \T¼dwbs9ƍ+՗ ^/O~^(SKVD ud?!m}{47 760neKs3zjx7/CW/E̼1nj[gM8oqw~=ju0W[;6Fg8kKj8~* 'kԀ:1/k@=Z%f Ul8_yaWuOզiɼiNƑ3騂<|`!Ɗ#._S |mu<ÜKink& TFUBBwKbV0@VL0dŻ>6[ GW(l`h2f j@zW2i#uCJ#)m["`{*XJIjD$?Tᝁ WJD+@+J*.!|B/* ç~rVCQB001KOA)7^}6eC  q RzfO_,{2 XpѪp@i2 j&+k$\^T@lz!lgˡ#ˆHu,B%(yQX2xXݵ^*z @Xc`6Fc$ S˲f] RJV2:هk6s}0@齌8Ja4P(mmLC{d4x2d9w Om6Mȴ0wZqM-Kʆvt>R?| e1YX=z " 1vЉ"s: f@Ii؏,v M7li1ELnc0bhR&g%`HovZ%p{<0q0(GTTl=7* {sl"k;5#DAzbr&)UCCYFd(@Y">S,֍-1Y%x#V?A9J,#1F,5&I`eunAfz0' τzp<8K%E\,_7ץxwI\YŨ;`7oM5`84 KnƎ((#<#8g+R>yX)/֌-%uVc^)~IF˪7V?j[!ą5!7 F+$j$dؒS0퐃Yk~*ܠ`-|lŒ0 pA˥Dh54WӀ$o'W nHx=-BD˃ "S-Le6Y,px$T4y{2L1"+K= !!MA V;0@ี=&dƧ洫!6~5 F HoƜjX<YX rґimnAmN,.݉V'LxaƈH@Gbz7 'D>!CHH;8//q9#?;oM@ͩWJu @"}4 P !y%)4ݩdqGaX0/4۠8^kpuzN‘3zY zbky :xkaϻ7RНχ \._Y ^ I8Я am~M pǡw4yƈ+χ¢|v쑬nKv@'e[s2Χh.Ja=8zsx>?SS0yUUˊ*Tj:%5VCrud]Wm/~}VB+fэE~HQD[J9v0*DS4YI٧Axq!.*A7?1*3PaHB\|H̼\lt2xePA Zq{tQuk4wj ~ǰ|,rz}7 ݺ@x lyF;d 7ygL. LXL80u,Ѭ7cnMUJB `΀P (GPӏFe֛jGi_4W@OL}eqz{ gdpry}t)(Q:FxXD7}0rd>&~p#PICˊYlNl6bᯫk3a,NAW@V{X@NNsY|PY>YutgVrq\?&˵WԷMջT.(ڧ`,kac,.SޟNY'f'.h #3pF~.ݳf8>Fg}`;]'\Rq V(y$a /lA'<{lkrzŅ*x|p$w׹ne#XnP{J8<.-$7*S2*`=Z8߇^8 Su~IqW*7ގ~F=h#eaCDFP (?EЙ:vP4ŹmXڭM} AWl֮tGe$QY]w]%5+=Z8 ǯouaܾ(ݕ xlW'`d,i]; sLMC'Q v 4{rym:ޜYdӮ^TOe}9fX"vCu?;7gB)Q5+D~÷5#-@'ˡ( #8YTw%*D13 DƛD(oOY3aX 0$i:Dz,E+믠}g-zc=>0jXȞ?)zѴIh>h&Ty{V /._RA~2=8׮x }VHAN- nf/{eLo7PyijrKVĥK7uޮ.Fԃ];\ ;HUw?.aUS-/4hB7gråvܽv;{ T1:Hror*(˵@*}+XHo7o5\_2{Yw p9W7Gw4iuH $<~'hni8(C/Z=v,K鬛nY@lkaȯI[Aq')tX#dMcj6+oل[Mmfe u[0ɰm{>|Z:1o| @}ˡUpgWoy䆛Փvn#B ]Plɚ.4v`'کEN;)LKD8\xpcfNk a7~oI;cu(G_g'vG toN\C%iZf^Y0;{ cv{q֣X y,i׎VՂ-M!9>D@ao9 Fw[15S>w͇;*߈{ ¨6P HQV}[G|:VgrfA!V[exD}YO2)T"MCʻ @VA iuAp0J5nPB܃~ FKgA:SweΫ4Xzj&c ]掃Tx㠖lfnTK>FJn l{Ԃr{0kvbX ta/k5Lk>dV;D1sĩ6|~lqE%ay+Pb^<|⥾\JȔ&8f Ztڄ?.ssAw˃iP^eQiREpΐou&474`_7X˨imx\z=ZGdzؔ>( h5A#Xm?Ռ:X,6(*̙3knťP!DBFl۾2x)(AL`CT|Tu#x²^Z6) y&gyQdL9= z$* Y )DPDn; RӍԷDCO 0eepx1ǂH&m?t2@*EcC3ZSѱv ߈-$I!?JΊ)aq_6#gJsq6nPvOSO''-G;2G hBd&,)^ԝf,jHs @5Y}Cfo>({c3qפ𜆇W f-BvJ`F spy?wOn~rjw~s%e:5^ǿM)w|=z/Q5Aܱ&6z"r&&.<+WCc^jT V2}?U("rT8jn?9+ۡҧ!;; rcdڐ&h؂Ɔpr3D)zlf؜{0[0umf "O[aDa8)*BiTTT.FNN %?F~-/p,EqPTȬt-Κ_;S'5lG {,o_} "¢a6HM IfȻ˧@8K(OTQܷ?1LHNAO!4m%;ZDŕqLXtC;<=2"oRgq$I_(E$JHZXY`D64 $8M]wBY z TZ-f̛ygÁ|ŧhmD'e,_0o%8{*,a2$ڽr9^kF`ZJ ]Z:y㐓q%((,ff)ZNV ۶SOࢋW0әC?^3$r%:.^?Ȩ$hxh%s֏@^kKѳ} cen_^;+gJ fVСzGع{]Px<r>T<[beIDATvٝ _H$hG6`S@_@uJi:iiDX<!s3sPG)U\%zu%xŷ<aI3aE&Nd  pYN3t(9YK7<@(@ċ',YS>@ '0"?o;]1 ŘgfsSK%i7ZsJ5&v3HlI*uCcp6ZCAS)?Q17N Vj DzeڄɇB|/8c}tR_4ԟb'EZN>O(&o2 'Ǹꚫ )ȺiVԎj_Kۯw^{ZB ܲsͨ$R C2p)N9uo+/oUq387$Dkb}D+h)T/o"VEm " yǛŘfL׳dRȔk߇!C!+K'h_W(tvqNWl9$#5&:5YXvŁ-Pʱjlfo.^_ۊuDi B_MOkV$(VĊ%Dm$)|OFvzxU(.Lt g/@vaq|H`7ӖC 4=6ȌŐfCHq< =Uq NItvvGYfXOè%L:ރ:(%<`~@+֯h?9#~?~;:-^ʬ|L y뫕I~IE?gz>伾} t8YÝLDTwBbH V_=gkj۫âÒІGW}G"ˠ|%Hoj&D={ Yak FR_ $eY!ϞGv: l,"J/4m $L@*O${zzo_oڈ\v1@,xE9(^T߇'}9q{!<0QK t ]/J&>p [Jƒ2Uïg˾SM E+K0_6}#Cmb_T2t2H5t(jspwc2fNiTt?jYvhKd N!;̸B󼼸"L6׈G >7]5-: |= <}:5rddВK$}ʦg &)=yE..;`/E$w(mlq3.&ABr$js_@IeI}>i:!$ 5 H5fB"S4hlݎ->k=Fns̃{<̝Vޗl4e#ݨ&Z$E]Q+e )ll10$Z=bU|8$ȟA:L7Onnk_L4=6#D4/muێ8Gz?{͍NaSZ,0Pv|iJ~ᆒP[{'qz 'u{WG 9Ln,ˏZNw@>yП" ǐm(zϘՂ|D&rLT Gp,xf^_mx܌0i(Th$J }.+ O/d'! R& P!*MD}F~4.nF R 6 {N"I(0b2*d(,t*t<^j+oTȘ$5Ji8q#V\?gQ\p87ʕN Tz8ה;  0M,V;(Kfr: 4ȸ0{gcM F-PREp ¤i(f6[ױOps.׭Aiy)d*$&rPh >ܰ- R_[9ȊJ3vOS'^>zP9P5D;е^Dy K3Q1Ţkn@O[+rJJaL]mJ%nޅ7xꊄߺ=n::P_'8Ӆl,X8 GjHȹ<1g >s_H4w! ;/gHo*#>Y񪡍қxuXXhZ%4Ǹa$P衣/\mSOGv^>rrsF;.غA4^n^VҲ(<S&pxrv +%0 %h! 0GHTǷpD 9h޿BTVrp8`$@X=ҐHX,Sj0  v`: &&pEmu5::Lp8LX%+31cs_bhP*~ SF@W]~yGhЁ(2E߄ϿbE W wAxᷡ`h_N "ůpR~Vd}VJƢAh_==(zd&!8Vw˝~xAvEB ^&H jdRFDHTe .LIW5"}0]I2;pϾ ]&y ѳ;a歔;@@|GѺ/PL "ms3cbڐ}"_w+ Y9C+m%V dϔ_чaf< &PkuXqaOSpw)B}p7B*ՃM,vf%t\C8ʦdd,rG#04d t'8X21c2Jƚ`5(^9N!g ZҎg6LGy~Xl@F}>7G݌'񊡱 SZ.E3AթB.A M"j7kt8A;$PgGb{+=zg@ϒXdH7N #pTM'S!&砥ËiqO$n/d,Csy 5~|a ּqe@T<8a!8! A{||ROb.%9*6}8oRҴʘu Kvc (;uh4o^'ꬓPbn73\-:5'7 'p8#;Y^$ҚIdjaӾmYc GS4Lu'0 uSݍ)ǽ.9>zcPhyͫ1?dx[q8E ݟ$2Jshq(Kl-$WE%r3 x=;mtZ5rJ'BFitn›D[{."jt^z+EC/6%mS}#|<G?qg)2gɥ=fێ2+ F6 %if2NK/*/ H *bCXicٗhnnc%A_Gph\U71af2|9dRU`Y4}Iejn\0% }i ^ONB߻ mՇ9~c!#IPP Z --عu}==f69#sWѵ:8G'yms9 p`+?Lc=H$DTȔJ.ȄVE J_VH4"WP6gjvA#ygB"ʊ' qDV= {ONlDuu-8NeE]ytaTB 5@"o TH)uA.gD J %P)LV?D \ (JPX6FBN7umAc{`XC:i -F#]::.e9̣ $u$#T em攎Τ%"ru8fgdQHQ@UàtJ)TJ9䤲+dM^tZN6/nn!Poc}Wq{8 |\G e44,DR)gI>ϿtV:=P)DA]$D"^6W@0Sp ds8)A@q#}HUJ)YT %RDU8KO#o>GLV /tegϕr<)NG÷Y .c':u!.n> ^'΁7#g'Q9X(:[YKW{ɓ Q6O] m^fR9D 8 놺( ĨxuiN]̥iaj: 2 (s/GsN # ?#HuHuK R1d:m ls eF]}8m)k]<J@pՏ/#4>zRzlPTMǡR;GhTYXJC+WvH3wp~AYBhCR DF(C5d0{4x2U>I'p8syo7nȻ["dw VG,uLQx›A]\(sI%~ G#C)8G )8$p8@;p8I! $)x'G#G#H N I;q8'p8@RpI 6މ#p8w#pBHRNG# G#@wp8N p8lG#pG#$'`8G8G )8$p8˄ IENDB`assets/img/add-ons/zapier.png000064400000026561152331132460012161 0ustar00PNG  IHDR&H{ IDATx^ ǿ{<*$U**%&!QRpQ*4+DCrTy8+C^lZ?QZ UJ (}n杜dP HVvJ CGE0'nS${K * *Z" "Q <0>x ~_ "RQKX4]*ȅ}@>Z`NxJؼ" $zMw/OBBWJ:4N $<5ir"H`f6%#BNax'nDGCSF HBL@Wt7*Uy96='@̀? 1dz<P(@*0 8A"UPg}Do}CN敥c§ctHq!SA@q B Np* ˴ԁ̓NtISVF"Ccz on= 7M)R?G@k M_gE@ƒNF"ÿ?Ð[t἖P`=V)ՊޓWNYl)ZYqU'hCP T@~Cr,2@hT@B㥩}7ArHp;OG>j)T@"WM+C2%<~m6!PJ@ ("_PoP!PJ@ ("_PoP!PJ@ ("_PoP!PŁٛsnr<3NN|s+ٌ,Wm9 HCO'OXgw$ޕ)% 8,jAjP)E aNضV®n9YX`,of`CX]Vvޤ"Pl 5@PXwAz3 Gnd׬NmVfGο)$+ Uφ|@l!ػ~DzI^+ '=;9VY=N@$A@z,ܶlR[9&;'ŠPλ U#0*^c}ĿfݠrM(Y6`Z{O%#qYp}W^(V ɷa9 ?C;OhDO9HQ ᑺ82p%`1[ 3^E!}Ob"P )EӰ.[4 *5X}Ç{YZV`SD27d)loX],?=x)k6CIL}>~0hEMپt~=@:_ڇi33`s0_\=`</Iǡ]1ydt`dx u`#gxg8GJk2H~'xaW@D29WV'ۖ7awS<2 aQoVV<>4k )DCaH:sZs+}uY#D]y9p1&+_^7ariφa}on?wo;*[[x*tT@"rWL=kI#Ynn?~o8-w+:p/|5)y̝[E>/٣maʟ/OϏ H֨<14,<,Oû@B7% L'8\3®Amq^tnh_.6g7 H$c/#V@5!$rPEĊL MK#,igK~D.u:^p굸ycjDL@dzO]HWw'3 Hh,V)$.&SXcMyt6sÛ'z^/6O[y'O yo K? nE6l ?HR(U.5m(9B2pP9abJ~?#M#YJp+/!$LZXuo(RVȿY9~\I"Ɛ I)֧K,20aE@dP2peWAʲ`wy`/C&ݶ \I*cgYk{^o`5-i9WjhEቛ`:k3vح)Xb2Cf^NmItcЮ灦-l%cе)l]id mppΆ_@ښ٬!96 f}Ra@~1 gFiE@J* >3ar8r8pSppe8_A޸Bۇ!12RmcFH̀Kn2//~nA;YO Yڞ7˧͞;s-8,剿 X}يmfC5%ʔ* {|%W _]țOô'>ɴGY{O`oޅ Z.lhKp(Y z`9T\'_9oH{v8ͼ>+5g/Ķ ^c_ݬA31dȺa\ظئHK\{r 81zV6H= ~i/7v5${ÞMyq6u۶||f3[,6 XC/p&Y|9e5HQ L:?$mZqmJcx')a}sL{\}}ոB^ U@,>[2Ȕ +7ʩ _2Tn\Ya|#z SpFǠl 8 U@d1F7{t℆Mы?7t>)}f 3~ OO@.Q|U޶:q}%xch~#b'帾K۬l{XT@LS_q,u@Xy|L]V'a ĩy edu=KL:L8bs[@rm>ʹUo*5D 2oȚл=ϹN\ x}-$r(w`x:;羁ƗO,\'aU@y )_s̞~Wªo;K$LN pq l2YeVǜOHiCs- \m>2* R-aC HȢ!ÿF#K;ւ oQtxQ" Ôo ^,*xe^$cU@d4SX؜hGZ0i5$+Rxyqmvw >8/G{n) תlZ o[V k+;A?~mlHyeG]NqSK .2+?8tј'2a4|TxG];Dl=GXN}z@(DDpsd9= a2m`##:kT@1) oY lcm#XuJE|5w)k k ECdlؒ}{n۸n"v ({efm,`%xJ<6\8S}ѐ[z,/9]/4VG bְ:̳ h< cÐ[ xwׅ#S#JPZ@9LH╝2X4CƵڸcvlxxgXq(Q1O+\vmհ+X~Nu9 FFxvg&6;|-r#o|P+P}&-sn wc#T8=ZE/O&nE@dza^ uI* b(grX c#ejL{ML) Z*Do/qE톎W=v@R P"W&G[r|@1* gw^ i&gGy;rw?cl3;ĒgUxٺ9pL_Bjؕ@n+YW*g@̆pޥPd9A@|ٞ6o . 2ڵ \ľ^#.,C*ԇ+̯Ux>I<4Z`v,YZܐ"~dk][&L\i 䋩UCgK29]8Z-1Ɉ M 6#;yĠ͍M : ~qƅԂؕo7~Ds'z$Va(H>2ssR"’ xΏ 7OAFvT@K9U@g[_NAn@*Rφm=8/~==\񷗵?C_PhQȻ Uk?_**Xy}蛯߅ᷛO{* A* Դto'̿`ͧD-B| asKZY@$9ؘU*6"ѸܴupO]G浵B8J`$77N5źv .QNgc'``F8LcrWZ[\;?YNۥ1l[JK^Z豶$@Z6#w<8}g-ؗ9,^6.0wB̧`5- E4(Uָ𷞁jؚDV0 eHQ2=1븍&Һ4;pė ~5?XֿؽZ[@C3 ak~F3 H4iR -- l2G} $|\IN7t;`Tcgcoܩ"/}G?̂gnfo7/c y, H"(ǕZ&sn UVa^>0upvxưydH2Zz}7hȍp8R$j1ͣ YTk ,DKTIk"hli#K;oB Ce}!- "6[u^jհ5s@ JpH:z 1ito |\I:J1cC&/'"N=)s,dmqtVq9G.3f?>jbTepf}G %Ҧj iCb8KTHp0#l a͗DI,tnfGQ~g2S Gv \ͺW>5v'{:H ԧ$a 3_@[1*d:5n w&WBJs6NN* lb;\˞8)5%ո$!˴7'>F4('(mn=;`hX8܉ ɩPT[@kf;;DXz2@n.`HgP~EW5 ct$#(~tz<^ `"8*RR TmAKs!9Tv_6b=^qR$7gd)cxs;9SH"")!fԏKwv H^5Zk!@(b>eՕ ㉤;7~ ZsDzg xZeRS |̨DuaHXGaW wpupPN2?~.?_ߛr% 0EX|Glu.ڥ0;cbczg!tfc{9о&Gƿ?}w;㗖%c ,IDATx*ՃIrJ Ì=O* inH295"e7V_JBh_rx-@gv!8ϗqfYݠrh2>V:;oa'j@̯ce΀LE(Y6ط v=F>e/F:u\x=s~VG-mK5r,?@NGV !tػv711='mdodH}v=eRvVDjp+XűݓIg $'(ddQ ~c ?k$ONse=Ghr<0 +)^%a&{Fb{l1]Sģ#8<* 4[~`'W}781`_'* 寥B \ Me* Qi˜Py%@ 8 3^X:)-S)A*9 W|W)l98 6%WT@*!m J U8mJ9T@+TG @\Pp3:6C@9ROum@  :#mJ9T@+TG @\Pp3:6C@9ROum@  :#mJ9T@+TG @\Pp3#_vA=z=,ݫi5tJP)Awlբ|U(RR#A;x:p DJ;ͩ.G{QqJrvs]Y֍3* 3Z(۞3Xb|%{DƦTs/ԛP(^5^ l)Y^+DzOLY⑊e8k-#D`Df]f{Ou+;a* `T#v 6'3~\V/ ]$:> *5yo~iւjsZR.W*SL9O;x8w{Ş;ٶw?imcN>1CؚwY$|v%o+d%Wpn9N}n+[l^k~ch}^ ׸Xj+4 H V#y+08 m^&\w.\ٿk; ~3gş!"GLObzǹm" {Կ$dFCU̗o).?FZ5jEN0mO|8s&__Q\>*akhfPqN8! g^=ziKw]p{kVp k:i/%lҗwtkFgPqV8 ,3቟&HTzFeբ<;t( T|:ĬJ)T@ z~<E[p_A|R ݺ>ʚC.jlb6dj̸̠1$'1|eBuWswGfʊo^ QD&ƭiV4'% 37@whr.QMuA[Dr{+t9otfJSx-֙vSы-;_:%)oMr,牷_}_o٭\йT@;<J7Kyc'1g*ܢx8u^_3Bw%\o%ˬoz>cR5dj*Ƽ2 4wޜ~zdh1Xp!ƍc\Ф =z|>~LyeKC̣62gPqfXOmKb z0ƍֽ;G=L2>y2%KTN(,YX$^:*AMy22Z+mjʏTq ؚuM/T@%#LOMKv/W0cdr?oO.],c5ܰq)Yzt734C=n%D]i:Pqh9w?6 СCm_@v *;غrK:u? 6dK/7mL|-p{ȹT@;<B}Dbłz|rz3g̠tҶ˯bСyړ9}fXo3l$K3{m] 'X^0]&IENDB`assets/img/add-ons/intelligencewp.png000064400000027755152331132460013706 0ustar00PNG  IHDR+D, pHYs  tIME1T" IDATxw|Eǟ.F/v^׆("E*RA@zGzUAA`(HQμnr )x#ۙ< Ih A,A,APAPAPABABAB A A A,A,A,APAPAPABABAB A A A,A,A,APAPABABAB A A A,A,A,A. 삚FVk4%g!9_ 'ʍi;A%/~Q+AB A A A,A,A<,J)4T 9P%Q[4o`"(XG?5EWO9K72ͺԸla^؉e֖zxe3qDW+HG]kOhujz>-Do49OkK-,Nʖl6w J33YG-fOvGi R^>p 5EĢ 2TJvnТi:;5 spz"=K+^\W}ƌZdyW;~3pKKg/X"Yd2ۥGBPo:erF6w! K0Hm#R5]Eoj'7x0]S"p Y Gb2Ev{=hsD  Jy!qHfAC -Bf:#tp<$?$-&G=Qu,5mQ}{Vُ)kVeB`HO[#n/X $PYanX4Gѡsr[b"/]x.;^ވ!2UӲ%[l8%K*ڹ[ \(f$(mЛOn2bC:]TS9ci!if+XY> Vpp"sLߧgXj2]U4`&Cu6<(Key^!h+*rܤGiP%g-\^j3G>`w_^Er(c1 ݍI BըUc$*E d|5~~ly1Vb6%X 7ld1ryiB΂BlzsDz3yYT?Q>qÝ}wfIVWcr:vF99b\/ٌL1UGa;jƈ͖_|2QklvGwYlyk<۷Ͽߵ(.0fQO sƌ7fDM.jIT(3гC_m|ue-ZԞCQ+C0ʺa 5 (vB`_-PS&!0cGbON&į`=ֽkk#Ϛ:IDn.ͺ⚫9X/D{xOȠ~3< qxǬ/H}Ic_ de-_Ҷ%m_Ҧ%mf okѼY83_/{6%]vg**PǼXЧOKj?al}]&e2.\H:oHfe_UՉ D0^QXWlyUmJ[Ҩ)«-5YR z5$6SN]r/vRկ*L #E+J^lU?IY+ϜBrv!$&XnƐΞ=\^u:^=D9lp Ih>x3:VT\1-Zm~O-MG-\:4HdCu;f?Jj4/|H@rrR$Ys”Y ^>qlNQw~ez+^<3JR6sCLk֎{QFVVFxtnҹbd|+. [e!,} W(0W{$+dOV-1w%umt?əhY9 C ?WrBZf ag>eo7R*%VqͱVO<$&clRv:]^sY>M1l/*.QTcBTفcBɍS 5tҫ&r2gaCr.z/gqz U:Va kך~ˣV!o[-hye2IJMXǎK5lW=9Iv$ǯM+W?,a ߕ\ƾۧ r'UIª'tѷJX!$Μ= /\d^AEƌ֛ST|g!cF ;)NWkׇyTclاġy9{LU7")|l^VE5`I/Kxa7jV)#=.\~CFwc,N-$=E5Ӧ!ύcƁC348(/?g/55ᨃ]2vԪUH ;zd (cl_jjC:/TxcG?%y6]\QH[5Dܧdk?R-_U0hn,9p(XudHCNjݲ[ү wR0)<޹c9xO 9 ^mpw?\tdrӼB gW^՚nyI LiA/ty'(1C +h0xNHXdQ(El^y[(i>rF(3Y.LOɓ-?\z2Ï/9Thӟ Mj ֻ:yOTn'N=lPN=I0u} ^ΟE][xlʻJ`阑# ǹ U+_vɈ7#!pBgN.P~zw[XjoUR9/-=N})1V Vclдjdzcחsڷe_|缴4<d13&Vܜ1RԜS9o*ڬWzM_O2D,µp٪}i3[0efŬcܧ^k|I c Ws^ g%+%^Fպ XJ@Vn2ĸFId>`i}j*\{Ok5뒲Z]{]R>3)[IuJf+-w?dLkZ{{)3OR75ӝPiN8*61%ӅZ*=p;פ` #](V+a3~D&dxcsէ4 Mq۪"c̖-2[&e |ͺ`ڇog_DU61e}*馗]w^JVQ~w;dǮ/2Z۰9/CjEWG&|'IN ؉ӒZtk%y ܇,ש͆=}>s$d]KS2$Gf\H5H*RA! W&Dq튅{B9vd[6H(s!iT%ZmkW-9PcF .75']:7ٓ=o!#v};xJ}VxEQ\hÝ/-<{Ta>533zB_NJZPb;psz,XH5SWH8ޱo_8@i:X9v QBȻ}_~W^OitIJH,q)Zɺ:D,nxdڀb@,lݹ{z+|~ ;6hrٸmU5nD';c`wq_$S;rJl/*69Qr 1'[GwjH.cL;sU^`[#ZTÍ+X-|^lI3ɇlz5ktt[N83VlrЧ2Xd0—4,~GE6#!0upg;X~=dk[y C֍Ͽj ۄ+$0|icKwt 2lKV28玣6-b~ƠbO28ۧGnNOn=d5j*Rx6ל!E"2I޶#<\C1~lکyaqע ݞ%TBBx|D ^B#ƻ2ڿ}b  s7z3&sL|ٸ|Fϗ>r踬M*+sN# f?1G`ks'؜â#"Zڸc1}/{WPLɮx4döq0[(s&ݹsy%Ͷy?,:9(F.ry;\;2H#G!+7ؑ1lY{2+5+ص}g?{59CM[Bo5vVRYd<0 9{WI9g3B-STVJaroq}OY\@˖^}K[<m:! /c֘wKe0MIPټ2<f{VFv>s+`n#d@2+(P ˷d#%r1x% .~!ﯞ$m N~iGǤ~%An![Oȋ HYUoi鐙zA{.Ϲ[W[fuX~bu&ErUnn":eJe`:͆bN>PO] ?";hҧ]C:۞*0-}Woi9+(5y8=CfVt^ł U8RY 2-wf~:x[ty9U}sM ߗALR:d%FwJIDATt4tr97 ¬NG`܀b ^sV4*v^Q^Cȷrsˋ eM۴S4J,_ƀ2 RkIT;'Qvq_G[-R!7WoKu4҉#UڤG[W-EB # { Dx>%Dߺx<%*CpBBb^SB\\,APAPh1|qc 0BVȕ !8tyjg3 ѝ(krBRrvjFwz|N7֌1dިS<Ǖ? N-b \8 qB4JF%y+Bv.8\ \bRȅʴ{N -,9?ɐ i>Qcה1d%'+%rEB9.-t1UІx.<>@ HUd A9٩&G|>t^@4$w!^?`!9ZNdb1QdN ZRq \J9QEu*-0 F<6Z!գQG(Xq$Ѥb Ѥ_(X`1hZOeeB ^G cXW1J磔feffgggeg*rFSZMEV\RrرG?WdPC^chҖL`!+Wӯ֭ZeddX,Jt:u?l(|uT J!ۥ%bBмb2kcJ(]vٍ7k Euɓ'߳端_@u)-w,bG!'y߭>/--O״iPO?ƍS*7?h}@B.r - `QJymzj٢列c֮]{@ P gJm.,wWeiR:u 6o~EQn' +DB.jxk( >{bD~~Z}]Qa__<}7|p\g|']4|Hi_:<]B5@ۄq(nj)g{?T1?DĉoբEce<$>͖ˢWxwR(6T{j$77˯FHO0 D7Xͣٵkd...#{ /d;v숾mke,mDJF$텅u$n^?o֠|sF(ܝ IENDB`assets/img/add-ons/user-analytics.png000064400000007177152331132460013634 0ustar00PNG  IHDRIPLTEdҕu~VptJ^-˜~a[ɾїvrG^}Uοܰosa8pN`6nL񤓻Ż뻮۫~bS|_RW#V"QX%Z'[(]+Qi:Te6_.U!\*c3`0Y&yPU 屚X$i;a0qEsð\`/g8m@sHñՎkle5pD\)켨nAų֮hǵIJb1nroBvKݿc2Ƕ؊fȷj쩏ɹق\ʺگƪÞ}̼۰ǼwnBLjcpCĵʡȥd4˻ڑnh9z|ͽf7ʴg9Yk=bvL{SygãxOtI|S踢xNƴ׺ɸ٘x̽Xi]ˢzQ{RŴ¯Ԩejm{P# pHYs  tIME 2JxW IDATx{]E!&jJ̹ݻ{kKKk HZhmkJ+`[ IF<Q$#&FDILH 11LQIݽ5393ΜslofΙϙo^@QX@ A (@P@ A (@P@ȒыI*Z8Q1@IU  1ޅ@$ڕ> t),@@=YG g@A  /c4@Fͦ <-qr$.Sa4ۙ \ϸm |k=ח d ua[K@T@t[@go,:uf d~.Mխ[r%D,_%\NzWpS^>y0U b4n.Q&W1wY@n1d(}ZY|Hv?ցkE Ru"sN#]4[ qUzߣi) co wN:`#Ѵi&(<@BXv؟n!2SQӗȻ<qPc& *q.J4# k`A( L_iX٠v2.?;iJ+@ ft|<+ e ujlX}$?wgr (vwU ʧt}Yeu9쯁-Y\yE /GaۍWxun_,&%kԚy Mj|L?}_À7 'Iv@D{F|1 Dh67,L8kPH$[ |qR(B|_'((^='їVIƁla?z];@j Bޓ%l%+ėq)oo?*Dz/A=kbzduKBIBp߹7f?R  Z,5 4JDD,ނ RƖDҽ@a?x, k6Dր$n"@nҜYI; qeyjn&^VKV% 'LjdT7n{?~rCX6x}$ԗ! R MD[CD@v2ÂgFUewv}gqP m}曓#y{pMdgLoJmHCF$k"@|_՟bM#Qm";S2$QQr3BjqA3@ Nc(pID=!"c?y]!*jH;Q M=*[EDܑ}Iaa]y)-<4 ?vgoH<޵G@iW?Q՛b!ٸf,(/je><$G@qaH:䗞5Becj =pVDblM~k}dG }sѝ ӛ: u7O@tӷ &r1}$GZu/9~GHJ*\s'JĻ6H*b 6xQZ2M <qTa"R:5!E֦< p4:lPtdUE$y‹Bre *@&&_1XTҍWaW˗鯶Hd ,e /IS@&X TWm#0^̋$G@B  5 ޢ']x ).V) joUBю*hJ)m ̈́ y56; 'B)_/b/nuQ #,%yjnIAL@ALxW/+ Vגѹ%ODf^$Pt&'4M÷<:\|Vfp"W@z - `&w#2`Ԫ![wݜ' \Ɂ8 i"z,*' 8x̲U-jt~Tw @M*Lg)}ؖ# S^)WD=e@,zAwd~ _g#oE KR ܼcx7``nԂwl^y}& @9̨@87*Àr, ە+>ɠ9@ʬ AV(4) gҸ/@ŵ[PU`he] &+9EIk@*_d5䦼U' hgw* ʪ܊dʁ<.ia^`$SD@]D@ U+U@lEU'<޻:LR\¦iXEe Z {=_ٷXy ѣ A8߬+TȜbWNt H‹ofź&˚;;G2~x :Z2a<'STm SԸi3-7~"kn)By D} {!${ ڃǎ.!$@ @B<u: w#P7guU@>@`Lǣڙ>LKn@z#]g(Ѳ4y"x!~w'$gB @ A (@P@ A (@P@ ,yUJfIENDB`assets/img/add-ons/help-scout.png000064400000044772152331132460012756 0ustar00PNG  IHDR/zTXtRaw profile type exifxڭg云sZ| sfZʶGiT]Hs XoS6Z QFr^Cy?#}^_?<Nzyst>?N|c3N ۀYWN?y]~cw״|հN AwAVԵ8Q[ our{mQ3F`'*-\Z'[li}qн|HJ`zn=rrmQ,=vS{iF")ȼ!XިFmߣB~2%X5il3'ŴaeƢ;,k2KTg6!سN2:~a|lsRW{mm[Ƞg5i,gD7u!4ۿxK)nܵS>Oγ6soޫldz,^|.,? \d}ƾfk`ySF q \kǭxLpQ F5ꮶr,8oԆ8"> j`0,N3&V󀈉[*ŃNw6N$"s*.byB}O unsX3q-́{)1&~.uyKFgR7 Ѥ=rPǔg02[1 DFB Ed=P ]/p\^>1ܬuHߴtybT+)q%9=1A8.X"!'\3=CrA/c>kDID)3`.@@|D@=[-#tH=jzkZk <ɗtCR->(*|S(Ǒ>YYŨ[28-C wɄ|2zH6xpsW8;kuN}CTL [&0Ir <ǁ:=!PO4z'5oXUB%^[}V d/J#wCnXѷ$0P`Sr" '&Z7\# P+aRfB-L9r5bthAm YP9ib tX񐓼=ZB)E83ڈ.jP zXy@^J?Ϻ>`<prEP)%!M 8#Ȣ%؝͒;aÂB!AUD[jRB N&oqhhbw`V֫s5҈1+4U kÀ(e )"7yBszB t+A";z(/*3{:3^VvJ܈g^,œ^_((8B$sfߥqQZtMCuZ}KwrEQ@vra\R80Ctdm ? IYQr U+x6M@@}s =J݈B^*Lj`XITG8PR.Ay^qX0%TF*n85mLM\7"'K]&q༻FeC6_iasO~5)Qp ?Vq>X1N>QL=ڠ>xy(8R9aL)YևC'h5M h'tTQ)%Og&F jc}`hؖ3ƒzCq=+͐t9V!7"00YA 8=Lpp.Q ɿJHM;6Z 8RRR7m}Z)8IK258|f12\8Z^h4E 8#hJDޜɴP` ſg`@?6GbBсu0(C9&.`j[&&9HӋ@JQvdDzԳm _ \f`1ЬYbF`#;zXȂvp 3o§H04&^lU-JtxZlDoIg&hĩFY6 IL%v+zM'΢PD#hQ/a%( IX}+@] +h_/.uΙ-xIz L[kl>hG IDѽDzؙr$Ox ~:<?;E~0$dWZcm&F6)*K<[t΍-=@/LΝ z[8^?2''ZT0 zSR4pdEmj@e*ֶ8q`*S OQl JLÒdr8ڈB,F-C Ԍjr7`a 437b ADva"'U0)C6 NR  focjNxE#@7rST $cl pM6ƙF;Bf 9}EPXO BEҀA'dY ˋ-Ĩ a'_FXA(g𖆏Fڗ"g[7R9ݳJۢB5r_ 0u2* OB߱pFAG6 ncA>h:01C;`vj"mCU$dq2"<!uzBN=;x~--+V93c 6 0Q&C^ﭛ,y1}(U D@&'%0UYc&1 }Dud r}io`cX=-]Z }pc$,a-St BPHm)N=$Q0ZM Kh'DxNд]O[CKh@*jk'BMl0ڊxt =1%_vFjǍp*11!K &ڂh%'B3U V'ePR^~{DɈ_̰l0[˄W[Ϟ2K" T8UZ&kczwo/.s!ƧCP YH9ۻ8oTHpÂ47]㊒I]O>ϩp5dͺE ٭@Qadx2}9/pBne w6ekHuQ񧋊Z[q\H?tRF*M<e+Sͺb'Y=?Z6f4Ui_^R*| _f]ZayEf3WV {Bpv)^R`lY\9|"C?Ѝӥ{q&%cSz&b0Xҳ9|\!fM-̽KKځEɪ 4^O`F=RGV32U`bID EeyJ"e giU<qfKhVtb'֖*zyj5 d5$+j@'! Ak'XnfBܠ2ܷDfbU!0th)`HK] eemΒ x+!E$aQ 󵔝% "r' ' ht 6 if )" 򲏓Bx²q$j,zw|L_^R`N/OٗTfB~:#w$"!N6L^P"/QFG:\g݂hzv"B14 #|bі<MB!ೞ$ aw]6"!f,@4)$k #u/vE;}X(h29dS@G@%eV1<] G2+TO}yi SBV;ơ]4‹#Ľǽ%j l7.`"ߧ8ػYLx){4bcڗO[tZ!Kr=, ,&n:@f#̏s:-i|t$ߣf+KWMϷY$ XYvcoM֖ud3 pE!Nsw/6:QGMs_F"ZB E} Y-Lֶz%q`Td?}.Gبo昔rbW&#I`70Su:Q_BC7.JAdkA%i%5n5pvdدfxo[6kiݐIykOh,o@\xw]m%& K*[c&"YN CDB`X,!W9//3͊ғ[ެ\]2׬'omx{1`d wǻ6DEQIJh'ywuJ1+:a8R~-sAVf.(ݻԮP><{ӎAqŏG7sNyз!EиGs{yyMj_iYs YRbT=YvPiۢ5js8 9L)qQhhuw~S7(QNzcڦH_Pͅ%Y3~VYpF%CwE%950D] [l~cj~H+IOli]ۤ`g-,bIM><{}i&&R&H5$C bGpMQ̯<8Xʦ)9ZGBq^;<. uJA'$(o_C±&̢31f- !/pRAxb7E7%M1" (G9\AdHّJ3ApR(J^;uĢDwH; Iƛ[/h2$E@w52!Aۂ]Z, nE,+֏- t0.w>v<`8Ŧv&)| #$ɀmBo i_>P=/&PA'x)$TO/4]2ad)! #$(KN;<JaI,+: I'ȟ  43 u9BFKaNj $Z&6ԕꊬ%暻;:>ON,ZY@P1 zY5lH$T9jH5%WNiя[?r)h֒bK2,IFkyuViVyYrWb\/,:ki~'ڮ#[s-2hiRѵ!!$IԲ*ܱ'vw&d+|Wn^\|<miHKjnU%/ rX<9$5sr/di?}J]nsqZqVa+';uE>Vmf7뷻\/WY A<M4q"Sai{Kެ?_Jm"SC ]4kQřkֻp)徭!‚< p~狊 -% Xfgo_X<.ήV$kDNpyŹ9Ð+u}:P;d%veKK?[\nm[QY>^l`\R\de:#]ϐ'X ot}1Ⱥr_-.*iӊrneR[>l(lR8ҾP(f*pOh:ّ-b(UGpR㆖uJ2ïXtj=TЬ1F.0(sY=%s_v^ҜJ˵3k;ơwyXx%B`gs?o˦~e%c_\eŶ4닇71w//]Tk籿_QZf}]ObI2Y R釳!UFlAQ}ІJ//5ܾfYoegWBRЬ/-^.4?O9+HRR/6ܱ9R$$`W,^\dfMh_FC留tӗ]5RcL/eRs#eFKr P~Bǐ7_xpX,qfr3_Ig"Z^jcI&(7v=ףhg=ԡtncti\Fl:@?TLRmg|AOkO"%k1u!!Ԝ-”PB$I2B$ P: I&Xyȧ¼'_\>`(bPUF=|!;;2IA54Ӑ!grcky~y9K$#H0!Ԭ~Oߧ!Xft8u+,?:iǥ,XkNSG'Z;;۰<ӂhi ]-B bC뛷vho_Xf Z=Jef[^R;"%o e& Ȝi9TJv>liP *##}[Ԑ3JM}>\hbex,ޤ?&ǽ6B%ʨ!*7nljn8 ̪*_zPnWP$tZ4[r.wwy?m6Ԧ$|Bڃ=Z=/K] mѻ:gS*;zL41աXn]KST& nivsFO.`}?rcZh%ecRn}PWdkHA:oBLZ4 oV2,IFs?Y*m/ԁ"i{"7/'5 tV KZxuG9?lm?ҦPpnI:+#)5 ¢:Du^ѳ߬N"7HQQ7Yⶼ"N&zYUl* ®ޚ tߦz_dcW[BQ)ih=kY4$[=`BuD5omj֥[3,^_o 0ܳԮ:Cpfq$k`z)uoƷ؅wmW(?’0%(>*2MJK(|#1Y&-5gwyҲeFAƩy! dxX4]%xgxқ䔶'!b$[A^|Ÿ: RWk}a(/u=ߗZI] %>EBÝJtUB!%Hf$!"HHBH"]d\ !3_ҺS5ASM)4b:{,hgI׶͂\QieSf.?(hdwKKkRz #tc!R"8N*_POLdgՉ!aj85%vD捵A]QM丈vu%lh-Q3 *tFVUCjOΎNLzP? ^>.6aMGk(( "|KD|!`U8KEU'-bkNߙ@KY4d,{_Z⻇ߙE׵Jq[n?*k+T!`*(~I@5XRX4u I*pBu+ɉ,(2C)o #koׅrI<#eAmyE-_P!4JiS YQZq*wb! gnRDnB`xTPC꧕<Zvu)&g 5KB@PҒzm_׮djF$7qliBq#DNYvi-k Pv7xnT$2D8QR܂읉 z﯄Sm"Oօ(0U+YI̾OLj/T~FH,<=K L w x9͑)0:)0Ҽ 7&+0`}͟T!!?/sJФ<HPK, Sw yvNܢPS?1x\HpWgfhgO^Ufi\ZȨJ7ʯ>ft=QO-j !Hb"pDyXVi:&%8:^D?k=meȸ^I<2B_6R4!pאNE&Zi"(5M nNJXNUCzUK z$O2r-kAf3d&lkO,|o82*Ɖwtb(7xR֜H"bIk~WKJXE7Յ~{%w#VKMشRǃo`G2;]GPĬb}ekZnNE]U%^팋?q?"SGYLh (6yi:5#B(r-5'UkgdY A~jK۫'4kF{W}4ƛ*HXk46*:5$%iRdi¤*rtS `jAp]uROwEQO; Oߙ?ʨwꪔ^u@G jRH^:a˕zKͨxY]7%מH=&IcB:yH Kr+&!! !,ОFȖf}w83 yo[Rڳ:@w2{= u `J!I/(0C 8o `v"O_2` pS'`Aƈ oo +UG߻lya*]P_Cq= ~έ Xٟ)0? ^i:/ΝHЩ~UiQxR X5|AB}`\|W9uQE9DO5[3 ҳ( FtyLFq^zjkuTmha~8q[gb 9#kgy̚?,+涃>.u ?^P:gXvorvumjtĥCB%/g$yZ򛓬WNMm|IF5/";Nصo?ʮאj}@G]65Gdjk w.ǓL1B"~4H\ǻOhHZdRYU'#F~.Y7Ίr\6*ZEyUdhgy6tSCxc_2[0:VJ'AWwKwIDATBr̭VW YI9YV=5>W7 ti;Bљz2ʮx!I8/R4)!1EKXjI!wW+| YS gT;d]W5 00r]O)ڕ 97_aI-ZMp8f;6=5>WW('|gyywsdxբ~5hb)*01!-zdG_V"' I6Ƈ_4$aF^fD9ɭm4(dBhU?F=Ý9xQ=[&O522 M3`y_:=Mv=m- k%v4U$鏽 ήAgR;(E3j}u^~f[G,%w}a!iRS)NU(w>p28¬hIh("GWpқqb"znCj"[Cm-v>-o6ԿtXSdS$wz39j_=zg2x4 g4+ul/Wq"FOf72|jڦihb/荽j~]s3}f2;Sֶ>W&u7exʣJ &; C-S+'=h}”Agᮮh "{GBOmn!OwtQJym|2 dC<~и31<..MIA~iW“zld?!hSs^F}1AZ5M-d+Wyꪒe!_z()ekmsx.hKJ(xŏ}1Q~xٗfFUFA)om|ijOҤ^]j7BHfԶ!t&2>2ᤸ_NeO7qӜ\F}y³m ,"Bi&n[kdԟG'7w`1*ܳEV͠Gb ;ݫB"ӊp6vt|wV^,OI&j5iIJntkZ2]9ybw4 p/ E0,/w3zkTl&z ??Q> .`Y9nQ>^|Շ>꼉:!?HNu*eUy#KwSpBơnln._82iknI rg[w")|*"7Emu'W/5+DC|ׅխH=i< $#jkNTU<o}aUvK+B ><xnY06c`"tʛxVϑ@krrF@Seaa"C5kiM$D$_\sEx9Q-L$zEe cstV $ JM~hkӎ/ bc>ZQCɃ-ͮ;% `d=E2 pd8;G3>__dcZ Br !vxw0y2(YTf.[9ć?jY/ciw}^+P" KBlG@RB$xPb|kHR @Dx&|! 5$ H!%Hvj !(),&3/R'qOg6>-/PnV'kKU꣆*-8ABs?+|5꤉2'E$%p Brtd(&ب{ q:JoԮvaK~Kk;>j16'@ bPB|xc˦4(|Bty t/&<\>][2It pюXv ;;=ž!e+?C lmps þ^!% 1 z{Jm31m4YxY !='?e*d^Ž`*[D۲t_8QcQA~psO=* xx0 GX0 L> !IF{3 i+uOIʇ`NFr#ԑ6PB "ȝq1GAlm?=搄fm_-q 0 - `0X0 - `0X0 - `0X0Y }$R$ìX0a2H/Oك@A&Ie^Q0wPdr =- GFPzpBX8Hr,w9!HRAX̠8̬];$ ߦ$Ȝ;xɍ#GD(9-Ӯla0gU%b ' K$ r./8y `Z醢IR`%Ć}v$ B_3^`Rn9%> R4NX-li(ϛ0y/D6^a)~ZRIuΥ7Ų] ҹЉZRTo;, H&Sqܳm[wwhaoU7`x`ޏ_ wv f5ϸJ?fFڑ/.Z;kC~; {Cc`spk0Q8gikIjW/?3ot԰la0JGZ7=ٹ FS̳i3Ry(ҎDz /ֿ,rKꊋ~BN" f%ws?N!@UK Goe o~YΏFڍ4S_X&_tHּuRuȱ+7.uDi{1̬Ddj@ZG{Y7OVkFfHE1% Ewj>L yeIR.vY@e o?}s#^1Aj1zxW}^ލUb]8w WN=Fӹ܆\HtM_BH?0kלzѥY>x~ w Ik;8$2"'v4<}Ӭ,55{V;0ײ(~A_xзJ ̵H4*7eɼb#4]X0yV?9zEQ62]y0<- fPvk{_GP&1&b\.ሺU,[LaGwiz:h tNRɑSX0uHBGCӶ" srV|Ko*b@hFTa`'qjok֧۬7=FhMqG,旧a`Fհk;!'αZIO{jYh4&^o0 x, G‘p8iXZk_ 3UuomYV-,,Xdqդ*fvdHs+DQD"^7x=#nx㩆Sm}+\LкA$pݪ)//7M_@$h2BH.O{_MM~`{ola0)~7I| FCUnYJKt:-jP$mjn\c!͒˯t^KGe EbGYT|sÔ)Sz=<^B~׮O[|2hZBkE}c[LO[ݛ`9 H<37 !+V,_xaM͎'|?L&ӫ*DDEpCiF-7}`ҤgLzY0K/Μ5#]+AFSM,[L]#iQRZ/>㓫B8oFY7Wn#4S<qQMX0/UhoO9g+r`YvZ]IJBĤٯ'{͚9Y}=$e?((,[綖(KMjixiӦZ4eëW]]f&- s[!hѢJ/FT5Aշ@GKOa`>P+7uԛ:w;wV7W f1ma0ը*o*r:$CǏls,^m;Iϟ_00]}^|i=_3e4Zlma0A 1xy3. $ކom^{D}Ɔ^BvW^k~^ z3PٳoFØ-=jVt"^NIENDB`assets/img/add-ons/clicksend-sms.png000064400000025642152331132460013425 0ustar00PNG  IHDR&H{ IDATx^U?a93,bVDVW%I0 ,*DTte1A*Jb@%)A K!LJkP]]s8^z{޽r\.D@D@D H$ ASqD/-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-[tD-q/ . Y.rP!["6;5 BX}|8M n| Nǘ'#$ 6$.H.fBhP.  OD Hq) g2snA,sHNIOƨe1iYNMArjEq' 9.ܽ: ${>n*&" ;Y8\6 TCοQD@,;y#d>NrihYnVp@ Hhy ζ>t} T K:VF@@bRTDeQ"PH@b% sj  Hv$V{N! ծjϩ"7$ ڕX9[ↀ$VM@r\.d~S*j=V;Z% ޾߲,&6))!_5K$KKކP<)cCn=[& c'~RdPEBO͌HOOǹspQ !!eʔAѢEQX1$%%Muƺ򳝼ٳg/HIIAJj*4heM"gf̚]2gK@ -n70hqK%rR<1y-ˁkӦMkXx!ZΝ㏣^zƀZn{LٲO !6;<ڴi_~*VIJ>Cbbl='Ǐ_~ƍ˾e˖xѼE -SwYhx |^+?ƍvZ䵉n2v1<ҚppЪ/L̞=oAU}]\~~ `۶m⋱}vciYYY NA*RHm 楗^~ ӟsΰ 7ص;t1cPzu ]uys橡pXv-jK% Oy[iW@\ط .#|ׯ_;M %KC%p)lݺ.qyN;u9s'OoĿoT\rEJ@_믎!;w.z{/\99> ˝>}_}^\l)Sࡇ ,uY#]}UBgr i@A DeE# ܜڵ]U+W:4|p|裏 xw" +]s/+]4&ON;)Bw{&L-[.{2 Cʂ# DS0 \of,_x.g Ȯ] <^s=>rbF&O>}DK> HacIr.7=sf lLJ~v#vb଒Aǎ3 /^lK>ΐTf.]8xo}Ω{n9L ֏'*. s-/0ku"VN2~s@*4y2&M<M4cM|E;% L`= Ƶ߿}ɝX`m*T`r\Kc`y܊Srgx'аaCKAK?#:YٸK*Uh#l߾}x0k,#e? D m5ʈ'rбS'9ҘQ O FLk,]d#mVI&F ! .-[6`37@%K,dNA4'˰{.:u`͘9s&糍oDʦN zk9s-Թh"#?y0u Sȑ#kW|l{5 Ç TL{g$ @K}dرxꩧgglݻ8 5| M< 5nllq*%Ӈ0B~_yZƆ74~m/gGĈí"U<8 ۴ދ{g qL֮7xonjV+'|RL\IZe/?z3_Bzwg}f,z_~وEc%R4Ӕ (F#2rJjՌl4.oݹN ׵ݗVsㆳ_Eƃ]tۼ٨jժ/nts)ҊIkzVp(Saրڵk,fy#| 톻]șʕ+TbJh܉[H@B1*O@|W%;vf͚+ C _\2N`)"\Vb/k֨{,Man5Nqxq\}ՖĕW]7Ŭ3id B[/(N{M>[Zg@͵I@?qi%5;[)y ~ܾݲ1e ͎p 'S S `%Mg#s~ϊ$ Fo H' \ӥ;,~fiK*o '_O4zSK.™LN7wit&8fog$ J eѶ4+0\? %%&FBφ`>,u礿?DWohy6fefZbH֯*ݛ<^x;! SMC޽ {giӦ{7VM"D_9 ȭҒZyH,dDJ/Aq!a ?g39iwD't"qF˜z=-Z̛g1wwS年hp鄀ypfg׬AS u8Gƛߝ [LQW.˅%+m 1x.4HLH3U@܃<=| 7XOq,R٪Ua43 M\6[FHzUYiӧ#;+VVWEJ@ to.oa6 biQ|wH\&%s\8h +਀pjzXvf1cƄ:^غIiݦ %a]. ;`0zx IT^=Z<fLx&e]A##% } B`$ q( 9ܴ| >IHF^jYO] ~#:QkOXu[b}Æ ӎ)-\ U@QcpZbEXg 0i9W7>'ms粗.]j)ͻs 31u?9Kzp8UDR@x ]O4@y"ѭЋ2?Di{mU@dѾN1խ^\qY)y!z̙LnMFsxSJX9JqB@8?J{q W9gvǞ ,ќtݻcΜ9_qF8yd@0/z\kӒ $mȏegh&^ N;[Z *kٲ%-[ɓ: ;+$CWZnkܯtݵkߗ<h27rS(8):Q_ p듋-UCdK_xѣs揝V@K8FZ'нGܣGl`{@ޮ,Ti9r&c0)#Е)IȔAB>|0rVqt`o.yAÆX`ěaga7̇`+oa0s?KG;^WuT.n l9zOۋrTPrWbҺ%M8y-^;u8q'mbؕW\arʔ)իW0AgPЃ4;kݳMܼ6ϡ߻RP$Ag t2 gw[@zb'gr|+K@l|_.)VתּySa_꫎b4c1{CEWP9}bQ)=80=7cĉK_yc,YB攀xn`s@xkLtR۹ܯq6ͮM#}ύe(.5< 1qUz2s |F6{f󍴀YY oKS@\h^9 K:TAI?3 O~z1A)lQL"eXs=x܋AZEiT̺xurg&S.3  w׽?|\1˗ayb~A2ڝ?r&d p3):皿fD?s)Ʈm,=h\cy7gΜiD[󓣗i'c5x SF~cq&xfap/[Pĩ%* 9VQ4$[S9y"{'XZ&$;n ]i˺B*PX"zy;͟{̳>ŀ>\(V8O628(rZE ttR@x_ޟ^6̐{}fܹ3\zdq ^ᑲ]A]17ŵuףD^׬Y/n?'~O|o JLΙ‡9|L>8l2̘>=ϥ`iA<c+"! V0VeOa/pYGtav {9Qy\gn;Yj:ۗYz9 RU>gUw 0=+n {4#;޻>l7ܹLWP?w\s˟ǘy.g1%KΝ`LNOhDwo? Qa,ܿ-yXz H qȹ<{S<Ӵ, [r+Ew✕}L&V_yc/TY o?qop8(c8`x\)- 64v~ӳŪq4͜x^kqdz3W+UUD0Ζ ּ;zX_ȝNdͥB.֌}*VD۝94x˓\ b[8jUQ75 w>6k4˰ V"βw,ϔ!C~xo!ZI@ H7vci*O]n$;gŬ}8/J0$Z_nKD $ egQT^ovڏF9{-^V^H@[tO7(~f@Fj% Qsj (gdyϛQM H z C`z ]IDATƜm HXu@$ !. _u/=$ B WRl >9b@-n1PMpA~糷~i$ #񬺇@tDwxmEÝ`ޭn $ х- H~wfıU H@qI@ݪ " qI@ݪ " qI@ݪ " qI@ݪ " qI@ݪ " qI@ݪ " qI@ݪ " qI@ݪ " qI@bfgg#''D…B F;w;w[b8r0srPvmŊ&=" QH@bSx޽{w-طo;$+; HLL4LҨ\ 7j:uZj(RŻ:WԩSXz5-[={ී' ÇyX5- =y$6l؀Vqqca8#)S WoM6EVg:޼yop P&M5kZ[D@ 6 Gsyf,X[no7XѢ]j^{-סC0e]-w܁=nQE" +V{c׮]^w4ٮڶmk,}5>g>Ϝ\ ƽ*-j( pƱjj̜9?3iʗG.]ۃ+a_z%cGPPB6~<*Uu*,"P hٿ?^{ulܸ13@g=(6lWq`\r;f jԨe*+" (YƇ}f0ՒѩcGtE0y7ѨUV"PD@@zV:nV\]V4jC I} E@D@ '͛YV5kMv([c=gLL-ϓWZ~p fS ᓉ@ļݻza,Kl[6RSS=^p#YѢy_7(b^@Ν3fL/W v*UhP/d7`2W$cy̎Q fR]#" ĴpS#m _}hӦ J,la+π5k`ҤI$111{)S3O7RD@D bZ@>|AAqc<5x0^|q8:R'7x ,]E]W_E&MN1- J3V3 ڦq4,]^${aĉV0vo2ӧcyP,VZ(w/q4̚5+R?L }޽{{-4q}У{ MsyF3C⫯>p@q@&" NYٺu+}챀<|ժU+<=x߲? ,3(V(d!7-[\0۠լQXQv72֣<" ",._qرO6nݺ#y0Gk:e۵kWdfe婒ٳfᢋ.y<3% N$qIIENDB`assets/img/add-ons/ninja-forms-cleverreach.png000064400000044512152331132460015367 0ustar00PNG  IHDR&H{ IDATx^]E~{f%gQAP(g|Ϭwz3+bf3'Ù(&́`$.g꩞ɳI~evuŲq  'H킀  ! ! RlRHA@D @AA@9  PB &A@@d HAI!A@! ! RlRHA@D @AA@9  PB &A@@d HAI!A@! ! RlRHA@D @AA@9  PB &A@@d HAI!A@! ! RlRHA@D @AA@9  PB &A@@d HAI!A@! ! RlRHA@D @AA@9  PB &A@@d HAI!A@! ! RlRHA@D @AA@9  PB &A@@d HAI!A@! ! RlRHA@D @AA@9  PB &A@@d HAI!A@?8vH3?HVL 4 ò,"DFLc# {To>Vvx%n"xJ !믿K.A,S$b66tS{챫5Fʕ7}C&uUV|m^q҃cCI q?ĝm;kN ws5m P, .ĵ^ dȐ!^lխ]__?5u=+._q@}v)BYcl bmؚi4)8zw ߁*8+pV@@lve;S/@ YK(DE.( K.U*\;;aP8Gj%rOx9j/cAz%X$*a赯Ú:(k֗Im5UpV"ҥ"=la(h{ X6M9@dxg@}5Щ) -XhR#m{ 2tWX; kdJ @tH /-_s)uӐu  ҥ ]w]9 w-{wB ǂi`סK!::}5d_;]k89zK (J-6gMWP$妻{_h[]Oh7p3D1`H7MF ~*y*%bjB$ Eb~%0"v+HHGEVz|7[8o2U:Vgz?n=q[{06i,9cS8Juq\lOQxBb{e{%Lvuj k Fǡ;MKbci8TQY}̜.].-vV#v˰(@:@y;ȦVVPS@۷/P J v?z6bq,8z #T?xjg401'UZH8+D‹Dc{kO4.uW,C7ǠKU䦩|!C7\y½\+Hޤ0H4ɡ[bNC c_fQf#rK>4{Ur ,XGmmov0(]na:b_}s1%fF 4*漏//>v9.5;Ω[ն;wI Zq'OTmqt $r胤T_J'$uMס滣7=3JJ X{ξN¤dOX2=@PeJ b)z R%駟5XAO+++1o<駟.廪 'p6p6ٝ0dMpGe5Hb:+PBN""e#DIAPTX⪵=Ci<{K<ڬ1.$Ϡd ձ/ehaO8fzXGוErEMǞ]>#Piq"@vVIL˩$@:,tUTT`ʔ) aJ#S$"W}v4b&m9g!ھ3O?(20%SFO\5H'ObQ+a$)`4o^_%JB (9axSobV D8;emá֒awkmG5HߍT1@[衰n[ ӒH%:yY cH$0am^t?~xfAw@(q UͥE)A)l52UZ-@'q-i!ø6hc:ĕLEkU@{%1d`Dd=n=xڋ7~*`i$pAԼG9 \b Q%{V:ΈO鼔(+ToؾHP D4k,L:m$wc5558ѫWb\Q%'WA3]s5ihUr̂'jǡʃ܍ezayui7^aH+顕W O-K:/&g(ou)ɡX+=&D>AXg@y'|Čm;k`=M,X]|ODFt_+kC@뮗t$6Wg*i>p.k.ikR֫y>س!3X@XȖX}לIaWoDIib k9a?v)M@Zڌl8GO-Fa%\஺*m~iG93kg?=Ν +WT]{z뭇]yUr3%&Ƴ}0Wnݔ-t(U)b&~?Œ$۩S'El}ce-Y~-j>}`%íͲ~oaJN@L~`EӰ?y%쒇kxa,$Wa'  $q9 VV//(izbkJ>@;OӖnIȗBaD k"$?ձ;c Rl>,~Vackw2K㒉21R(^I`LW?'%۔@#ii ę?d5GI#A۞ aU.VD5u[ q9@yʔ׳?^W83F#\'ͣzDv;}LGJVX/<B |I,_ AajbgyokmFI*\s=L~.=+՞&&3;Ʉ M}e@8{gV$6t,zyϖ[n#6 ^=#T>w$GCoWGmb]0hCѵkLw4wm4B\qB9Õ?sszM"zՍ2`.,?of!rlT&c dX{\nȚҽDPaxtmN:7s_ϊUMD]܍}ҍjgJ3E71s6Kg"q-]FgC?8h]~ظ08M>@(i0v%v:*@qJ(-И=XGuuu*,zu]wu(//yqNߎo&@<"9':RP>IQp(]r . LGᮻBΝCOsQOS_ucΘ@;iMp^`YPT~r"ҙ=kӰvW=b[Ihj|MMȡ&YjR #~V:tOYBnP[ ݡ\t]^˾ei?D gJuj ;6G}tw?ӰcŗfƍCݳZ.]eWy饗dXgucTZźtNjt>sZ3ge=[P֥Mih`&tAb)un#@a6$lHIT&ɀAӍpJPZQ+oXʻنXE$\Ȃ{Ld:p0 ZsȅWldb (Ry)Uys?7[S cnFP[ϕ@;w.;Rd>} v.mv뭷V˗DCŕ}G()4T,[ "0#ܽgH&MR}5Dś'b?h/+E$a^X=zŋ}l6xU97|So-ψ8%h/ӪIIű;R@=9XW,FgWiE%^@/ׁǗ@ >KɿuOi4l"Cg/Nzm%b^|׽$/ ,| f_7_ M{#;*SA4so>WF≙ RT@a <9Q2&pR=k # G՜mA_' +nNn$;v&THxu5(@ÂW@1fM;wM!' Նv<}*"C@^X {.KfH <るPpWؓSN9%*tjsœ.8 m݆={s49_|Q-*SRO}!㽔`?c2.I k(o$?)]>,^X?onSiGU?L9 ff6ԺCpp-jnwx[}4w]IN ~\˞[z}mm1AW^V B|2 YsȣTBVRǸi5SiѰ|yt)[rש@HT)t Ndc1G*D:}vN 1pLO"r.]\0vMjE= 8]~煃|!c̛uU<>|>WNG7e(Ho>vW-E=Z Hx"7փH {u}^mbc5`3T!H]yqѡqs \ j>~z=S1c?FC!:Ec[fBIڃf$L} #}?%lLX(ݑxJ}>?":BLcur @QG EsQ-}gJɎvjm ȓYx=aF鲈JG(ĒX}ϛr/X0p1_S̤# `3ǿ/q ~u5P-eNbDDUSf %7SVOăPLDibW~]<u!Ծv>uS0=^\/+OlEM_WUm*,Ou T&:t@:q<]aZ8=Wg+.=uM>4{])@ c,DB_: V!B"Ȗ"zԵY?{3:@`3wQl+:Ά 'MaLsL(~UXc1LUzl4Py])lSē}2 n UX܁q*W^cJ>zRYqm$;,bk=K>nTx㍾$4j(K`ϼ:L;њ]i6/.T:#z\Gu:+@SX K? 'ZS>}}ި]4bj)+)z<8Fyc;WnG;Ӑ`U5 i[3M8nJ$܌|iJ/~4@c CpY Mevm=p%R%6<@Bz!dX0=FdӾW l0ؤY|7++H0D _M=/?U$ص )˾\${\j]UIcߐ+)QK>}-0X8\{ay1^z[ zԬ7J ĂBڽUKՕm)\xsY5|=hkV/th ji_6(1@$Č +Zݘwyԑ瑨Z$W-u: m@+#1sw3֮#sAy.*ZjR op5GGp{Z {"M(f?onSBTp^*Svr=ti؄7J@}-nx yܣ)ԋwZXDw,* IDAT8q7fA.ƘR$C]-< cVn%W]$صy9G'":}iǝt+ciQQ𾽆^ڳkBϩisuq K{B<mN8J g]u{=ACdOtI*yMl TQj☧M{: U|sX3@k~r}5/®UT^o}):Iz$o}vIUVSyw*{2VVS HVb>E$2l `<Ńk lO^b>uJ +qh_U-CT!S]L/q,wiwV zLwJp짯v=2R. 'a h`"C6Hj9b?kc|p*~owXȽ! qGg=1 o~^Xs V&3Qb.s%7^.}bngЮ`FfD.6Ƀg2p{ơ ipO+]\tO>d_ʼOҰh#5 q,<+L!zyUMcЦ&<G&' ڮ +6zlzr8Z[EBGa/ō[At 0mU@oX6Ӱâ˓x@_@z=Ǜ 'Z8 6 |uO6OwlT]6xFN C艛~bD_I0k74bBh`f]{x.q 5{6A ]P;ʷ+>h 2 <$~O.|0<\a*z辺%g#zy?|saqg9wf7e3s馛Bʻ)Rc0x?xj@j{DLr!I ̯E*\ssX$:r)ߓ*%C U?}9gBBD VaXug==76\$) jbK Mf/L6%ɛn!&M2TZz{j3Z'݆# R\<=g*]`EXkCD<]m R@ _O7ҔNJ.aj88#2"%&h;Ʒl^B4K/ŝΛ#tI&a}:"{6nq%%)F°a.)Rfg` LH8HQFt r($/m$nQNwRöUJ d/0sqt}Q| lxzo1*>qTHtZZKI@^xuJnj1&a,Q?[2\b$DU&W9xO`~AW;~Xр|"\L&!,1IY^sFx85Ͽya>Dy\]@PiGu::29} UXՁR!FlrӯtZif!Pپ׏=cw;I ܗ g?$;O8AIfbN;`۷^I7UʆB$虢ǭ%N =#ٷD|-m$&&{KHrqSdz,'|:^34mx\XVuX mYܨ7x؟/i׻"čGV݀B`>}Xcyj|?$Ϸb<׃Yē`| n룋i!2$rf>Sy<ȝeZ~F8ƽN ~&#QM"#DK 43^9M3@ PgRKۊDD(Fyr uyJG"AĿ\.@E-I p<$AzwP!d=@A)Ax1%%H|SՑNNʎ2FK3[.(I[IXYOŵ'^]F_;vgA&~6+abQOcd?mGTlV 폞 iNmNC֬R^Y@%ot@#rF+a!jVNq;yHr"_vL9 VBҊx%$wZ34;ڶުZd2E4+buQ86S5"R P/,UPH2TR~TOY㩩u0#mB$Ag1y!%SNU*6@ ;33C;$<(3`UY3ERʯߺE{7зߥ8LCiz`Kt=SZjl*(ȁ{i*1]GÁf\rҢ} irb1G2{")ur7t<Vj2dģarHASc_!("|^$$\IUL~cv1l3aNLBWi7V2{^>U h Dl*,' B-=X&՝%Dҿ→.]Psy/K,ȣp|]%AT !ZMhāόdI1T ԿRV]Tޢ=D콥=.}?.$hO8͙g8)hqkBD ?B *{@jONV#mrWyJ$^VnO P*3[ᬵ6Rp$ɔ 9 ȣyށ{=g t . ; W.X=KLe-{E č }a f..y3ƩcB;w~`> 뭷ˋ)Y_}J`H.Zt\y/ W.i)][D /&'I*\S8%3͂*/Q'`a$ P714Vev3j6zm{ F'Hk ~U\%0ļ*ҨwCRxk} }U6-r2;|=.TPKʨ˨Ga%IQg;NKh1 z ߦt0hkᛎ$_M`%}x6"CG"G~ZYT_/.t&3(TMJrשH'-aӾVuj`_W1e3f)\D"+HfSHb )H LT;U*nЛATT$B,N=DH?@0k mR|Jz [,]$NJ6[ҍ"U._l!p LHPt6Ʉ)Lfh0I#q4V,lo ',ITkdidBWcXM^sdh 7˼* 9+'[Lrm_۷#Mٕ-{!to D8T".ӞB1(N֗K=rOnPJzζ@[/2ߥO\T!*^rw A@ s }S ?IDB5H0BjnM8>g=5a!RdF`FQqHaIԣHes4%} D bi!0:C/ 19G0U\ٹr/ݽ-L/M !- vl].ԋVўBB1SsGG\Kg| 6 J uYKL;_$1`2B Qji!h;YM5sIF/Y ~j.! ̳Fy&DaDxjGc|XL g;թWrqNDV+N,ߝ k&eOucI@*\IHZZ'# YW lg?z1[=şnݺQUZ䏙hepwM/ /faU͓`˜Keg3uAϥRO\%|8^'Oq[\\t)4FܴVsuOm'rGKY q{MB)Re>\Щ!Ѓ.QU:+/b&bl S"IQeGI(m+y Zr@Zӑ5:\b-'Bs]ȳþϷ gɥ|Ka*|JK߄45IۀHa/-08MdB`J)-~w Y3GbG ,iuJ [cpZҼiIOCb.$3oS:z6p71Ujڃmi2sHa--R̈́tLtNBrqjݣXB|U^i6~SЦA / Q''p@ NJpDœO:2;,KAs呖ȴq!a0UZ=B -YHOZ!\I(: E*FBE)HTzSJG:R:& 2=H}6ҳVE)q'љihl҇&NB` 0ZNm!?ѴPjI*/M*\O)mF.e JG,K'Q|_2iEz EX䢳R%H0fjS]Ŀ\TuYFB H tI!~I!%c5)CY `&AkR!d+,k& M4hЩ9(ږӚUo䑷n G&Ae 2BVH{daA@ZB -9H/A@huG&Dr*,\-Vkk bQt-nkD޽ѳW/bٕ@~5ޛ!,\Xhb8>4Ym%IDAT?̆@viTZ /\Y‡/KN$躖w@>k`@u1b-1t(kӦZd)1{,к@Jn 䊔'*/3y3`MרQdb㡇bƌM[W.]pÔ)*ds\B ́)͂1G[o*>XVP*IQۺ6;l_zJP+hlfyQB BR@}]}d{E_,j@WJ+lgF l]/ 7O8 #wƼA1ѕA/pm`ѢEDE6 lLNѣVîyᒉ`eH+|qcQ 4#@c!p}瞇+O*3GEs.R ^{A.EŪ$y13̩'wܡ ˫^!A5 P]UIƧuQO/m裏Ʈ'0U9U;vlZI&JJxH A-a `AI'Ht=LЃ.#G1cj{۫W/}XA9hۄ@[Y˖q˯dn9LUH_C !vKo5Cۖ~_HKVFdPJE МPmuc1oPޜȵm\jN:dm.ג%OpJe \\ypd󙤌|TSEHHM6/Y`iإQA@(%=8><*!V[wuaao@^DI!" |3H Cv{Ao6=]XYY3g'ƷsG2tdg-FlȚ>!f^B`N8x}<˹\17& ̞1{̝77\Bdv8曤H,@xw \3 2i' y>ʫ랻QsIN/8s݄SzcèGvFE? TWUѣ4k뮾mZ';]h$HxI-z#3J}}=.2 2łwѸq3gN d&\<ŎAi'%@+@?.5M{s=ޫb5zj%9~p*>C?d#7ztڳ?3BZO_p %[cU"XJ Pr5oHNG}7gu<`Wb7ތ^UXVo . D<N<K?ҶS; n/@48J- ʫ߷mkAi[n+(a7n\Q_x1?|7:L۶ɇ?sg8P՛w>/X[ovw~ڧ?wM~_wM>]}k\6"tܢZgK) EU&5s$:F+{sٷog{u=ѺO~߷?ڙA1QӔ/ƛv.' gGԶ\v>BDZǺZfcsw|nKC7sX۽kPF LC>&QurHBfKyu?i=ˊqÝ]7 6 'S9O2N㪗uVȲS | ;.ðn=)jsOfuߨi>bN,9+ϖ/"(׺BlmɐòiѮftnpe}Ӯ =:#wqO yKz x"TWڽU`)ح\,P1wqG1i(Vh~zZR5$oXz{eCf~`;XG]2ec~m\FwS f!Nm.=ߍC#̶k*;Y"Y=-nQϲ.T׭UTa)Sv0O*}F5˗V~@ Ys&U<ɮA|Ϧ,kV>v%ٕLE6˰uH{ti.-YfsFltM371ָzGa<3CRŌ}b3OZ}=F vgo-gfp|CГ lWÞ^i„g+؟g~38-5;*(kҽO'S}4`E"s!ZT6e opLuv: 2gӮVl|?/hl \.b;FJ w Q:B2` =se엳c l%PO?ACm* 4G-L`RQZɐ ֍`Q9D=PMSP3'3^xvag7RhwMyȾF=eɲ(љA-H̨Ш%1XlVq63fa@ËQΦ&PIN (䍥αdx1T}`uj P)G/ RvK)plgH+`"3" @+Tg+JOeNd$@h!?*̶F}` L Պ\Va!n{ D]WZ𠋳-pmerV5߄`}zl8gkƇ=6վ!V:/ÈuD~ufzUڑ>eⷆ]6('*%vXWL!nR[\E{=U@iw%LDN=+z"2ޤg) \ˆ d< @ =ƦNc2«v''D鞈i FOP௻6LYznb `0ݫ"l<~<ݪ {څ!4ga3j0`?J,Qr ^mbL 7B$EH9 Ʃ3 9V+YoJT8ؘ-wC^RHy%!'w<ۤL8_fK + 8jg) F;@( c_F 8(C pm"pK5*ؑr<&YF]1}RXwXi%O0p 4ܺFy{A8`NQ5꒒]l1y]PU* Rtr1o,p1*^Z웩 jj?,5vW~䶕I"r(l⟮{!DCe#qNGӲ xh juf"bOh;4i1: !4nCwGďS-gAMA aPLTE,,,/// 111iii~~~555"""***(((qqq%%%^^^$$$aaaeffQRRMMM666YYYEFFIJJUVV|||999lll===zzzvvvtttxxxBCCnnnABB???  ѯ222333֥߫混凇񰰰艉Ჲ˗ٓܵΜƽģŸɾKLLOPPGGGSSSCCCghhoppkkkmmm皛sss[\\臈ӕyyy___Ǐ͒www廼cdd}}}ҰWXXι{{{NbKGDH pHYs.#.#x?vtIME 7s8#|xIDATx{PSY~wιxXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXLEqQdWWW^emZ[TzmdY鸼ʺʢ֨eZfET6heRGRxF[h]**ҪԈib+ɺN d!ũxPEe2`4AáORFZsUUdrJ2Yzbk[i_i\Ϯ/FTLy\znA"DP"yxR*#KKUV[;Օj3PS/C$ TKSBNPFW$i@ڛA GQrXTטn-9^GnRQAQa")TzkFU4EU0XLui Uzs=nOƴ U*EP(%B2 : /JO M$Us8e AC2fPK=|JdR~bDD޷U8ot+ͭRu;2 h$t,̭"/,6$۷9K/ ?$2HCjygqK~թjC0h@#^Z5B.W 2''9PhFɩ# AXТ0HH" "/99MUc*nO( MU~hwE*@N  c# YID:nU"FQ[[ 9cWQ4<9-4H` BIVRUT"?o߾(d/H's8RTV[;`H+tVF#W  ;MVmXQ|]]|. N$ t[Frc*)&%+210!"کMJJO(ƭ i.,._8" {V6 } C:@QVm1Y(Bx.NL,!1<\)vvfJ%ؚXY?@ 5WL™v e#d_+rZ݊˜ql"m 11ΔOKt<oHtD !M$ibLLLJ!nُ4Ƽ"mFolx#ĄtH pQc)`"64!gUקdq\z@{VR/WRsEEE;B| A !2wpxltfٖJWP(gՓFqEr{@#1}>v,‘X$LJ/ 8x[( B:tPHE1Ro\:2w6@ zM 5ɴDLģ2.v a&E"EB$n YiTooQz +kT.4c+#h$4"p8̋1_ӽQȴ}gaj-["sȕ990_۲"᧪[=!2Q RPߟrU@H(_ί)P2JVDOk[8Yq Vo-i6xgϮji;wx`0Ln :p:pϞ=z#Z崜jl{Tg B:-466a h3~# ,{I.KFҏnE+4QP(v߼$M477ӅpLNih :4FHdHC/Y ڋ"zd$%JXS=glFW.WHc11rrYEeeQt$"`X[{7%sa>ol` }DkH=gPL{Hx4b/=B(V+ ߬!qldtp` $?WJqle Dp VY@$GOqI~/j Fgxnym";t̂vhO: ,xNx]s5>K"4Y/.9SQjQ VGr@q AV:ﷵٴ3˹礥DCse* ê}cBYfͬŋ*--m Q&*V̓.kP8EzkE1`HQn˧n CGn@^ѣ;::@xV}2'f[2r@N%*FM_&5YN$H!@x EfL&.?6umOnWê>uҁ&5FOd~`>Bz''N4to. H~Vp3dOZ >aFd7g} f"͍/)W\r$r"iߓD=D)~#@ *]cm*xWFi0m.@xm}@_˜mmmV"]mGVVVbb Uyʹ&=P8IV|-{,)f` RcTւx 48{CQ BߧP6tk׮3+pɫHJ]Hca||} 8o#+5>9E%v_R.8䶸|e,>7Ftq;qmP C`;2H"Xd"1R-g+߮h*`ߔXN:CH7"'DOV9 3SI3 e!3g=c%=aׯ_r ![ρ)aEt"*utt-~-|G YzDv`YQmY%[4]8ޕl@'GQ J.u֒EZ2ls0^Ї v&+~ݟ&>p] F.6kϝ: Žw;j3WDaRY߈U@/RHuu;;o-kMYB%>d)מ"Kd' d~e񏜺 |[lR2@p0ڂ Dqa9*ŋ/DA^uuWEEEcg{֊%}zX(\bgVćrJߤP38?tA D  >I?)܁o`z3ڋΝk,򄄸ǎ66'KQʀ7Xx(6nb}ds Q;ۓ`} s6ANn@[KD̔O2A "Җg7Թ֭6W'lA#ft]է +AgRPe1 2*v'X uneaz$5wpm7~Z>~|8:QgݙA^:h2X.^z"^${&n@Q/0pcT]yf{kpCۆ#&bo͝ @/@CSnGsO;'p=8Z_xI~e.i7#@xyTߐٮ֒ZXJ'!!^[XvmM7{· E˖d9K|oVzB;;!]cRBVu56g"^!5>=&YAK7@ػsJ♭,:tǝ58M͋{%`1c ^*&jZSM{+~|u55kW]GI(!CDQGyEA Go鏛[s\Xe ]`d)i.c{wDGP Y: 'h-,M$sp :拮r1i h2Hk?0Ȅ FH,33 e<|.b%6齂gA2sƘF2J:ϮXřj̝M~MD[;>#U5bи9wz\"fn}6qwq;4<3C=YY'@Ə|55ۼ<Q(; FoFC/g{Ҙ"ܿά47'޽e#1ka$z$߿{wrbiiTYAAAjF@E+[Do˓gvkĢe'/+5ϭNѻVw:;:awhvCwܧ_ú޽Cջ (I"JhEoIl'"wEɾN3 o^ꩦ:'oD]0Mb v%kȃ4Y~W`6:}G),lmm{a(6S%yl!i4O)߁hjlj"[@n4΁ln+"{Y$&sݐӚ<$Hd@$ D7PX38`ullWD\.}6*~8TFD'숹O!#?l$vN+驥&S,`E7mnz)T'Phpv\7}[-Jժ _vJ"4Qky.m eU@G  *eAدlM6izQ:?MDja/5 WvQD{!DMސu\z`!SBc~y׿yWX$(^D *]5xg ,mWd5B^¥5;ܿd":ù`njZUm V؉C8Ho:Ӱp$s&(~+3z&|MFX_hbᫍà|MT9شTN*"ޡ_trtytO~u gf](&, àlM~gڌp%=jۥ8o}^GE(nhx/P[7trf>o W*z)$QbPhG|ȅ) ϟټ5O~ OwvBvYfxu0u:SGv_tF"og.Qu0! 7T'l-~ XXpuܔv9sΐnG)C@ #CZDZeiO ;;;#(5ZMzuUwoha4fwW[^GbZ*OJ-.$UU2>m?pcqX<,SOcd6}aNzJ6% G^㘈 |N<>g0ܼ.0|w4$^>_Y{3IY[/XYdvU*p]׊ﻇ l+U9w&ǭre^#xGi`Rt(ܸ!ڥ _Gj >33f|Lͻ+rg~y1E 7?]}Zbn0ު,AdN>ZWx.P_]|;NDV]촬75wħ7FEr.9E5.IENDB`assets/img/add-ons/emailoctopus.png000064400000027275152331132460013376 0ustar00PNG  IHDR+D, pHYs  tIME+֝ IDATxyxdEOսt=e̾0 **(?v|QeP^EaAAA2ldfkg$n{~tN:Lӹ]]nշ9uup+ (6 (X (X`!`!`!         (X (X (X`!`!`!     ȴ!F@-,A,APAPAPS3?'`\ TaUCOP|L1 A7]$r#FSG6y 5z%)pJF,#U9 NIMA Af䬊/UF\VOƮpr9Ql9/K)l! ֱ*JL6셎7ѕśr^:|5Pݛnr*B1[PѦ^V;NO[1Afq7j9ݎ9jL$Y;OFtk(Ԋ@zojS1"ѥYj`Mڶ"ů atE/[wwBBB KO\i<5 ^.E)z{ᢗm:  V̕P߷LmM.|S-A.頾q 건x7 H#vu.jhz\ AfmW䜏!+*)J<4$k[!DR4e]6yR8O  V }*WIPAFd|{ιd@d+ RJ8J',SێL$i{~2Z W?~aJt?"Mfy"K *Z%i?3{uˬQS4o NlŊ&ggiv/'|ua8sIBbD$C>hd*,0')^Ǵy +D XcJ>mr%ի1e6pLE#1P7Tdjkk;N'TZc{`D:#ŧk{߮:}_nyi_Jԋis'^oϽ7jv ArVŶV&hN>JMe2QpMe:^QTo-,1a@x㸥5P%8, A0+ E D"sH 20PJYxzYD/|t DPcHX7c)!\UY7l}h)ϵSE饅k ǒ1yvrvQt 9Z)hi=>or]Uvܥ'*pv5# rQ10`"F*$@$D p=FJF+ KMፆ~ZӧbQjOJHrh n'Ac)@) R  >cx"!%'@<>^>F|%i9WgKOI~+->9LWsEFa%29`kXDJs3.LJuxZʇHdg*}CN;gI m|21cs`% n*2chKҲק ZM{{A4=;y:9mFeN 5eSW(˷,=g_3M&r/4Z/{mM؃Vj6lw=LGO2 UHWS.OKN1YD(,2ZգjK꒤g:_mt̷r/MNg  `3RauBR+^уW_Q2Vh0fMIœxuf&[˔ &0K}Lzo+ -'@g}+-'`4yݍ^7F  ^ @ڄd 8FlUN#sTEOBsrU D$Oe'=. ??9O"tٺĜ=T +\Q|| RD)Vvwv 3,0%-fA /vMۄ) ֬?|^ 2%DWVɁtWRS£ S?31m/|=ommu 餏7\}FZγV>n‰ I=TD! 0ZP+A0$Arʹ܀۫"HxEkG}gCqVc^i3DZ7>9!?)ha<ư}'@~]Ѣׁ} Nt N߰EcmDžq S^L;M8NmJ-Å?)fHaGL*q+rw gc}D>Yooxp%T6:kcku<݋Q? 9bwF'U߀ hg$M`ԏDy &m E`KDC}؀Kܜc<7<5zw퓯ٗ*n/=il٪:d`!1&{ Z,uk햁@X7"gSΡᠲŦ <ꍁ *3U\Z,:]In/OLMeU &g(oaK 7P{4 g g` /%_tau\Qd&½F8g&žf?+9=`^G|F$ ̚*=Ò(H#zl r{cHZmJmsW,bIÃU|:h2x G?[q |28pizsKӇ>rDB*\Yieˉǵƽ$Q;}IlȷwhNa#2S%]@qBA1%ucVcwy5uXf`{C~^+aFӾe a9} ,}g;̈ľ2v'&cL H`T9"AMSx?BsR-s9EȺBlB\%fМo.h=?tLJ~Y:[ 3DˢB붍Lg`nmM)[G~a!mi;%n oZ(25^AUM];PfNDpM'Wә'?Ţ]av?ME `L-*g/__yq8kPiYljS|tI59ƚob""!ou_5%+Zz  Vv6ʮh_z55ƀ(614jMH&*gg̛vt2EtwMb[Pv ,} >ʚuFPJ_z,,r|>@dV'%$ߘ]tl(cgS`7sߛ_&E?ty% 㭃z;FT{zc(9kJఢs2fP>_+^N"YYzdgg=SD$X:îp;֨ Wg?X(Qh %sZ-2Z_CLOi"ZU@V;驜@f`ݥقÝcڄC\DBo`12l=z#<]򡖚C>:ÆR;yFޔ[+*]nĴ3ӚWz[eTs$%9 bR{5G޷Lg2RE<]rsy[kIdvzN;#mWR2%JޱwkNY}E'Jo/= CMn+.1 >gk9vD[4Xғh(wk%@o;AHjxޫGv^l}Ѯ*sV$$ޒSl'%7r6ɞM]͵ST%BR$i_;Úz>>A KrM>!ud Ɨ>ޜT&W_k[t,@3u%MP$BkK*? {*e,?)d0)4n+v]Mn;}e?)`%iU?t4|9)Ϳ좀Qٯ*.׏KW}\ A 8na`ky:Fbүu!F_w*֚fkՖ?,@_Upn54 <񁂅jf_v۴b dc8eh6ͰFҀʒiKsds{EV)!j]pg\5C;$f=tv~%U՞q3dƾ[Qm=_hrpRXqŇw=qO]xhmcWR ġjܱuo55h`}-,RJgԸb=ô+>g%,$0S*rxcXP1#Gvhᔘ۽ݫOVRwގz;c)5圊H+0}7x].MeA7x[wG|NM |*J<A(8Mǫi 8`znbQ i:]Ψ6EfH;pUQ z}0M^yLvA 3u6i2h&E}^Of1 :yzSskj㌏,/u6cx_;TNDB%] F7[ 1AT=`= +D5+ls(Hΐ_.NIGtT $ZRD{Hp@d-T yvQh̘tS|tnE(OX>[ր4p'Z'!Fh4dV #Y9q^u{]x4 >#ƙ1.! HHXZCXBc!&v%sDw Ӆ㪉?qɩjƐpCiH&Ir!g(|<2%QwhgR˗,-+90rnz^UP)*D MO2)1>f2z}ԐYezo?#%PH64 Pc-X% UX)vH;kGQ+h Ch)CɝW T?zSuFh!?rXX=bS\=H=^yUjkYJAr+v %@֎:{KF^g47!$@Kr,X;K,k ,=QylFKוkP~`K K[z>@h" zWZ+fMV+a$ 3OY0,x=νwZKI\$I[毤tO"^n{Ņܾؒ\ >qR Uy ;AaIUHn-`WSRͶmYXsY+WtDۊ=!PF4tdZ9**۪S(~pܶ/3[+}=yZrb3͂ SurN5 ̜ D|$ $s@S2> Y0B-ڟ髙\)!J^J `zV%:JL(X2 PW:|@ǖljN$r8;`":OMN)C)I`9Or?W~?I!VO}o,XhSJi+mz<|/IՕVȱ}% E~lNN))}ݝ"D2_3Rq7ȱA"䂃;.8;鸇9`aqXwo^ϝsO/+þ9PKs?<7c瀱,X L}M2R+d..7l [pSfc]4,~żu{JL6y# lZMojahm!Sp5s,,Nafޮ`i9/}bYF5qF·i;LㆊL%Wsj5|YѝlX߯YqsA^gy*U0>ᅉxSѦΰkUR-'J_"+]#In9?X<*|BO>#ѻS/T^3 )KnNy<#$Yo* hr{'!'պ^%Atf'E]Yl[Bg L4'%䙖'qy^N`壍ghz|~z)TPIDAT9ʝ֌PaIӋ^ծGr= Af`? Fޜ DNK Y 3:8X*OuC؟<]Haz>MpUh_h,1&8|)]zD>hgb Af` Ƹ[jYodF}p`"a"vPdn  , * F}#Eª:yg 2[HS- (Q.U^'C]A`q ڑs V"~~s7m c{ovQ]c/A8aZ|֤*Yj 9 iS͢b &wΝeY.z}.9՛X=uk/*0`!,F٫ssȫ;8#2'\# ?ş\CV HZ!?  pR oxv Zt<ON'"T4. L@ PB #Gp93P5PiPhbۈ340(J/$ ,Z#AfQ?;`ȩy=hL  TDI'Y/]rlB/TOYm?kpy$l$Nr A&ݛ7ˍ-H,֑r @STYQ톞zx-9-=o ?JzLXkGvk8|l ³/H"53O˻%v cmPeOtw*{`!Htۄ5`"Pk?&drlRʕZVr?ps:ʓ,bc}Χ12^qr?,A,)_fS\,1+kK >%2r`"eMSa{"nM-k}8J9}g7v&_s ƨVKsi0# -,ל7jg.,Lo_}s90KIN;/Bi1#j]^w޽soY(IE_<ݲL'pMUcΘ9(XȜt;j)˾+~Bj|V\48h\Y=tRÍT8DkwdeLAc*(X2LY{ϪoUvzϷkݽ*ȞYvwր ֛欫Ξ^ /ֻCB-j[<(MʻCK ͏?uΏ8hfffzZZ5Q/8a><84c]H&6=}v(X2>\Y5Դo|k֬.*.,.,uc|Zkwx`N S~4>Cw~@[U?ޜ*>Kgd0Qi|PK//Lr`nyKJAB>* rʓr3*^}ҥ&PɌϧڽs}ݣq9\qulztGf-ji?Zt믿)w}te7X>zM'r;380ˇ2H*1g3EB:͓08ӿpڮOU[Vwv$dtJ`! tAjص{RU8?۶O>kVM7`1_L\H!9`!s|BÁu] |:(p]fdgL+CgsĮ~}+v{F5'R-ͦ't:mj߸5A[.^^>DBe` -F !^tzݶO6,b`!QZWqߩK))c AfۅOe|:$[>K/]c(h ̞x(X-1Ws[|couL4@uMM7elǟrtdW')B~M׍e^N9e3twNZs =SbbC_WYUPX4nT= Tm*K.CMxg_~i_8m,>8R>SO?U:߿b\#K ]lIEBfnŋǸi?-Lknjy?LfmQyC?/jrޭY  Vپ}y{Jek>ƧJKbKrϞQٮW@(78iamySw)ߊKW( j GΚ”BP9IENDB`assets/img/add-ons/save-progress.png000064400000017346152331132460013470 0ustar00PNG  IHDR+D, pHYs  tIME jIDATxwxTU}͛F& M)"H/1TUa)KUAY+(.@Pz C"U@W̝L2ߗo;9{A (,A (,A  A  A  A B BAa!BAa!Aa!APX},$łzeBCP]9)ŷh=0[! ArȊx6:L)m8N(C+gaL\`"& K,ЂBPV(, ni  A B R8~Xu휝 u9,o~DD3 A$ie{BAmXPXAPXFȨJltG$PIlO ! H~3*='UbGa!Rm`vmXPXAPXAPX !5@1  @$XǮ&gn^=)ҁGU_2jnIJkAb8+=&1Z{ qȀLcSɠi9Eùn_vHAt|2_ǫ A 8r>_ V=Vsה?3R˗[Soʅy^;/!ȣ&,+ UedZ&I7)R/n߾u]:23{IBJgFzr+v% P :rtc#6O[ztYluz̅"F9Frs/mY1u#+|zt3«$QK~2`n;^jR(EUo O:U} b&T0uz+с.:Uզ<ռ}  q|{I&sTDX ?>+u922R[zF5TY&;yp9Wwg-gEÄhKmzAvC2S)NXFT\XDy3||kԹKiD갂ߊN%0ڬڥ/as=2/.~^7+lQ r~1WK] .ғu`*U*Ue^gBӭz_#%D}u4`08Pm6 Us<#?_NyoJy#_VIav؝DMDtWZҋ޽ϩL潼 {ױ睫V~VǷ3SF^-:Ȼ@GYX@P9g/4YPggԠ5뙦?+@:!FSWrt *s$^޴X@Hw.g }Jj6óhd׊Y[50g=YM^ʾ- Vq8po\j23j[ھXlދn&p?RN%#z:C'l 1~qmnЁ >f˨|TcFCB.w6]})O 衞ޕC7.fH]=gݷgn8 EFX:/(ϗD"2hTyW3AL4K-_aԟ'*i׏S.`tԳK_՚T).gxnvB6,LEi1ܡXP2C^xH#4+SyG9"Έ x/9WJ{65 PX)߲FpOz%{JFYݳçr~ `5?A EJ ϜQ!:>)S,Y /뷒2:σk  ʙcZ,";KTK\scjC/, QC-oǞ"";i+kcQ"0IbgY]ro#ueHV)fUK A ZU9uTJ>潌3rA;=vԣ\޵7JWR MQdZki$e k`l?-ûH f82|͗={ /A@9!m`=vs͢>5Tc׽ٮD@N Ϧn[ʑ]x5 H1H U-$Bظƺ5 P T1 M:8m_ J-,a)zē^# _x#؆ LX^Ohf8!wФ1U) W>n"&H+_IvxߋJVy!%b+'=C<#҅f BQ y!%i uۈ 1m#"}n@|ԉvu|;ivYU`KJn{*$(R<}|i;uAL;cX:ƻE2ƴg2D}sPV%}Bj W+!:5Ć|*aq9]Rȶ)&z񈹉\Flb+02v?5vH) u O}z( 6|}ƒJZy[ ]K JUK ]QŊ.)_bU(/O>?1yY ?"GEy -}5L"z]mUb5Lex ]f=YԌ BW}Fv]M=6[cy`ݗ >S=h-qB_">\rp>U/^زg"t@ԌQ_JXQXsGm}/ ĄM]S&=%XA)½t3j_}4hc~U|mDC]oOhbb3Xiv%BJVY}GQ*)_-஛R2Z=%d8n'TTEmPJW~JUcN Pr\ +Y_Nt.y2h1Ma(`2—S!|Zbƃ6S;̧:g$ UHsX'v`;{%qzf':T)uѵ~p1Qh)QΏ~:s-01[=;KXQlJ&~[laEDOl1&l\|t eS0CqBKÛX?ߙfj/_g*bͺADOr;cl;vɘd13Jput{N7P6 O+h4#ڟ7IVg3l#[ nkzp8X cl&3*鿙Y.2&3b 3)-t폇>RZ¹W2Tm0'QJi#Z'!D~)aAZz:!}2I0{}H|f=?Š!D_ų[wڐ\tCU?OE(XAYǛ[uuޓ-X=?VMBӅsFDwToVX:Bz1 o1jz~Wly߹ Nlnge@ZMl#uRnOW=E ԌY}!bGe>% %IikN@YPRJ.ઌ7*6K ٞ}hT8M޿BzaIo D8@uԕ/RΎJ|s8k)j|Wk,N#",hvT+yKT<" -ճ‡I72W [`bFW;f*V*Y/zC]7؂/[;r,y)n~e /%cvr 9*e̷ܥnHtV+]+ǸZqU(d?;.uvFSS/c( %V6(v’ TD5T5oQFL^v֪˩,$)*^2#eD'{b9q;aeuݜҵfku撱[n32v,xغhh3멞%*/Esww, [^,T̨\x{P{ ^XnV' so$QE$" ;pOV,^)!TjwR{z?KڶLM>%{D246`gbXcS8[ypo^PՎ3Ǵ'|j!`=׷S~\ Uwo';PKPOna:ͻ0VIaoJG6gQM؆{ Tjn 2)ۆPPZ[bMr9QnQd`n_1=!fĢ!)eZ#JR˃1Rr|Vs;s<&`R_Tr2ӌX9 !ZrV[>S`@QCxo,oQOO$u_f_#v~6$EF9e%%JFNZGQO lG͈Qs ڶc +nklPsNx@ qə$"3c^Sbyc]AךtgniKSSm+ҁ}5Cxqe|iF*?n&zs#n.{EK }R `3f/;jVۼ_]i Zol=yV|R_=.`lٍ8?Zac9#L9 `2&9Iھ<3 &9}=t06Źo^[7&>ITizk7>q&>Ń}y_Mh;"1?'bv>'חnC +udgZ;{$K y۔kWʡ;Kc+~IU"~IƠGJƽX23g>++dsT__ Z=HJ N%rbB[s|Ud p|=g5~iމ S4->̹pp M Sۙ2=C6)jC%\򡯁FաFO9wKۦť36J:}DkwQy3}kX6,yʴxΣ=,ؚ2p#^H3cpb`}Lw^]Gьa͚=90qPٝcOkޔ޶N=CinOE¾e2ga.֭$rX32*%UY#iTǴb2%0sP.IP 4jR_ID _[BZٻꩩhִ ~C%J~H?|]Ӭ\*P 5%n__KTHm)477N*;]_ ܞ>O9SV4 tu*[.&Y =@Aa!Aa!APXAPX (,APX (,A (,A  A  A  A EB `(|NھK ECbQC!Ү.Gj6a >5~@'-^kRU &ĀB$b clyDlѧ"}?%/*Y1_3Wk- A:$d'YB"1X(,)u\T$ 9+cK{* ,r(CMbFA.@@Z wzP=DEos3حA<>Uٗ |ZaK1QXR )a!Rt>,APX (,APX (,A (,A  A  A  A B BAa!BAa!kIENDB`assets/img/add-ons/multi-step-forms.png000064400000023625152331132460014114 0ustar00PNG  IHDR&H{ IDATx^wՕߎ&   HB !$`mc5l0^XXcg{^0,KV"X(Ҡ'{BьnUL T{9wQy D($#QH̉ DE D"@ "DjD" *lT"@H@ "@*$ Q!"@ 6@ F D D"@ "DjD" *lT"@H@ "@*$ Q!"@ 6@ F D D"@ "DjD" *lT"@H@ "@*$ Q!"0v'pE:nL>5 ȘLM tȋ?YCi; ѿՐ'y##fNj.. ҩ豟8H@d(h"OhXn.= Qum v~H@5mD@P vI@5mD@P vI@5mD@P vI@5mD@P vI@5mD@P vI@5m6Sv~(:"|_78H<A۹\I|3|ZҖ7cL:/ :;`:<ʪy~oȵG{Jpl: dt.E6 Ӿ@Zu^,oڬ:2[=>*ː%gkElVNmCHPlJ;*>;5LO'ei;o4u;q۰:k6gI}]ƾ0m7"Ix7ޏ>G//V\{T$ I@|Y0J;gyu-0}$ ]9zr1:mGD2CWbifGY<ٿl_D,^u?dE> P1 drX,\! ,k% ˧vIz1dd:z] C@R> !m`@Zs!&L'_*]}%ims4 R@{kRZ#):j˱* >EsPZ#"Lc56gMG奱@a, 0E{jˊ.^W-VJ]RYn pׄxϴAJjIzAJ6ägUA^ V{Yq?(æepunbeXk Ϸ#/- sk˳_%i14|T[X@ 6zKYYDu@j̽P|2ٜۀD/(¨eQյ{jore)9l dwؙw1%^,x6т-ȊZGƙX{îs;j6b~+.Í̘+T q}j& uaiRAV@M1w0)}vl,MruML3ǺnL{d |$ݘ#oWx婺 Ozj,c]~Gwэ %mKJ@XŠnE&>U0E}EBBr@@[_@l0+nIYy 9XW?-$ .iw4XWU.Q۲KiNs+#PR "5Z}]+oӊM\qx K)YgƱiwk+B;(xDc JNǛ*"5Urjlµ/{TQg9]5L1 jx}<nr\6iĠ^ς^dH=&@`δ r{v֝m%񳀄3l =?cZm7 7shpS ܞ{£T2' هqW\$ 1Æ0nqǑz>u)Cvt6\lL࿱v~p1"m\! ZѦrGzbR 46uLs~KBFm>h>BﯪS| :#~-ԻD@ǵ-f$?aM~푙 ݾ[*&"!dܜy =0=$Vl͟?’s J@XwPy'{cF=y)K [bE"(I'h[h;6>GNZDr$" ,@(xOEHZqN͏q />9{1/IDukZEgua/ȷh&6]r|U`@ɥG={[3wJs?#v\^Ib$ |X6Qj*3*:?{a6a0  x?a3&5"bBcPM8 ޵F^@K7{;/(Bb4ќn,>goրiczcmek2}.y@ DFCǬ ` +3=e\K9N'ZYub%Rꮽ]Ӵ_czEmٶߨV&cD}Z^zJB!P&䖬7^^mΞb{8eקu{j.o<{Pxat;AIo6!(l Pk9 t?3bxFn8X3;KY:_Kc_s? F|䶊=IZZOTP.#k~+.MOLBo´-f-Ϊ9N)ó9Q.-6v if˶'9jki;wRѤH H@#{"0N Ďc \rM-mJ8ק갯hWm=ʑR~ crٖPS\@ X5Vy#r}|K"׆rWn^;=\6G}#I@THBr,z VךּM 0P_ b}V=zW9o,yɛJNʀW@ 9ϪGqO@]$ "=~!Q( S_GN6 'Z//EUWڃݵKdɭEɁ]_:]Xb¬ħydS,ζ'J (E  _>{=Ml(t&F %wºv>(>sZ\dB ,?V>r2ʕWrD -%@&͟7G$ <*//h|=:tIƠi9O<ϖgAC@5;N>'Ȍ;\ HJX.~pJlv+),x[֊h%I@|FtH@8dy $NS*  ]=)Đ 7`b)ֺw1l~! GYy+fAM@I|WϺs8P&Z;ASG"/t%kߒ^y'QBlq! kCSo--"=ܐ O63ε5A9#;zN;Uf;}$RR@C(tcvߪCxl>:mU [g2nyg[ %JK{7L"QUu1_[V%d]Ds`j=Vڅ*IK2<VXmֽhb!8{hEi{1O2EՉ$2& fGLߡ`}vy ݄u"AF=y)ɺx6n<ЉvEȯ_ C+31;UDߢ*<*:c_JSlH@|I@$`UѦj7T5+WMx,{q{-Xӳhv+iuZ9wKΊYdqOIobVS3s׈uZޭETّԅH@$ĤO2{bىX>G'6x16 ރY͆*Vfev %걦13Qp 8po@2 xą,ĔFJ5~[޹nS\1 Rbd?.`Sh#>G z$[ڼv 1FgKҿDr6Ãk-FaJXPk a05Act3-.F@I|W~C$ R(lL{ʦG36G7֗/N! Hq! #HƝuVHK7)=r UE\T@4G/ǹZHf}>5.bFJ&nj9]XAu3Â7aJ-l:mGQbL2$ ^01VzmТZX~#m_*jY)a!pu" !Q2ur݈C ]+/. 7f"ܘ0C2Œ3&6F찖um@PܘÝ쨼 M#8B"62FKȈnH/(Պ=Hpg+oEsf ƚ30V߳ظb?sd/k} G~0O|Ę`E֧]17csi W7NÚ".[fi%H/WjHٓxiW] 0=W~c_!~m8" N9!/4w95Y̘]?:WUs /cJ:J勀 dc m7ELXoϭs}\rfC++O"s%Xۆl_q3qIn!֩q1ш3\[P#;by5;Cj@RaQ|\b{ޮ8|^V:|8Ʃ6R6K>|P\11"QC-ː&PWVGj,{PBB#/f-RlRXJ&y@p/aƵ)/) UJohV@ܝ{ۇ9=aZ¿p1azo~ bRܷ|VwZ).ÌH@P 2$ GLܟQ&Z^f?Zu?n# ,¦q3=5W4m9$ʮ~؇eG&۸>*-qܰ&SjXmT y'XV9$ lpܒy!gcp6@at8n2VK&$PIDATIjXw̰Z>勀L%Mfq쪺u=G* -ȊZ [3koֵfG"Ԑ&weW7MʤO•qTwϺ"QGp"Xqn/yl*f{K|YNmQnEL}Y(鋀$݆%gu}pqaoZ,5 )rzÕW\yNu H@iK 2?qMQ }d1y5glC m,uhE@tź&$<ZQCwvVœFR^Tgp헾xY$ 8ѩD!wvѲm1D+,̜MrdW x a&?4ε=7aGJ87Z=7/ituـoN}*%ueI@qH@Td6@̍-/GQCv)Qmaiۖ|M{3'B6[R' ,=߸fbݖ{kGmv$ JH@TA(TJOEWehnxYFJ@X g5:A3_$!d)gy_ms`CI`B 5dG/u_8gk6g3W-h1+# S2W"$Dh &BA"@OD9 $@ɴPPD ~(B"@& h2- D@H@#"I$ L E>"$Dh &BA"@OD9 $@ɴPPD ~(B"@& h2- D@H@#"I$ L E>au&fIENDB`assets/img/add-ons/vimeo-uploader.png000064400000051123152331132460013607 0ustar00PNG  IHDR&H{ IDATx^]TE=ӓ р  J$ָ.bŒk]s^a րbVwwd,DA(LαnUzMtf}3/;U|E"`X"De $BE" bE"`D%`Y,%,E *,D"`X,5`X,Q!` $*EE"` ĮE"` K Qf/X,K v X,@TX 6{E"`Xk"`XBHTً,E]E"@^dX,@X,l"E"`b׀E"`D%`Y,%,E *,D"`X,5`X,Q!` $*EE"` ĮFC ҋ-($1hhϰ7XZ@Z\ʑT{}XWm,Â|>\.>0k88 n3{X,{@ylPRaU8B0'RV,XK sVZiD $"}p HM-{9@ n{uS9XhZO5\88э#c{OGu?hU R.w*tYi [,r3m @=W{q1X#L\nigE`/@^0{^ w+V+`;avA\pÇon6VE"gpS%"_h`O*sC]xGle4%@ݽ/wE5IN vAZ{HDR#/KI2TX],s񛟶8+ 5]rs"tA9jHE"` MkJ1."6w⬤AYv3كf c}-nR, @H.]WӗheC~Pr; Nt8"ɾ^XQJoeeHw In`G"`iѼ]Uxl} 6{QRCW:ch8-Y6\>"МXiN[QPEY-!3 U7Z[GHX3-E@]E"@^dX,@X,l"E"`kzW0XN/exk jwp@3cqHqeSo%c➍UE> >Uc-VvZ@N(VZKfZL:\K Zk9o.GI- n?43< NE 7?⿻*Ur*wht tIĵݒGAAfn-#+qNK"c#/^Om,EE$Cpr5R0,d #;7sևj icQîJ/ZIĺ)Ƀ8X4H‹ejg%WcGW|ujL&ɹqv趛P 7-42nGBٍeL+qM$rhr$RR߿/{+tm*,a HHX{dF$Bhή*\I{{xH&Ч(*B\(7lu=ƹ+9;*=}hƠ N阀4^s*F`ma UԢȊug'wQm>Ι涖?*1s[~,kKRюмHpq$P:$8mHkHMx{kf8kΖt^\;cS1 c'm,B(F(ɏ!HTL8(1o+K|]jVTGK ܲn3&!LpcΈl$)7~_Q۳RuLSRH0/en =Wc\xo*Nhy^W,!ޜ~Nabԛ&㪮IMb;+xkskJk%]!!ͿW_sAItHZj}̶-aKWo͐ZPT'WjV&z~3Dtmd4EGXO?*qtb^/\kۅGgG^^#Zh4L2)+';FƲszsǮnD&:Q#\-ի{E&54*s6yeʴ 'GXi0uCP nl- \[ !y Ӣ|/Q (urcn)_ K$g@Ds)K!IYnևWUV@$)e #bA{n|[yyզ"5J1=6@Ϛ1 MTE^ܸ  |B R8@;NƍO.QKr6V'42qxu`zDZ=42cz4b3D]"n|~T&'DfJ o{^FGvP[]K 0d߉==jxfX&;+ƫLP?77pG4忎̎[GֳKrY8zrš萸L&Wbvn2Nx,!Cl6hO!k,X| 2RqG.P} ]-~)Ǵ]i|2,8%Y͆1pCX8<-Mـ“ SPW ǸV}LHu4MM&4՘^Ert!JkpƲBl$ jX;ⱨ?4{Jh2UktAъoh &oENlt^:a32Ԏ,R _[X%\j7/Dt~.,Յz,DLƤBpJ!2iKhm`IBY׻=Iؿw+>6!^F62MG% ˣ2;-o0nIb=ӌ @s2=$cIQDڤ< V p}EubTu"6gDPGdx`CĹ+ EXn:m8`m~ ̱bnxFws+ZZ՚<;[UĎRX;HH{#I;Gc-ew`d 7uKKy?z(?c''i=n6oT%FlŎV 0e+ nɘ=Y*S)"қ[?IxC$oZ+uH fvWݰ9v&g:@-Nɱm0}PF+ٹDF<%}17RqwFfջ5 \# :]nب( Ktv#ƀ#xnó-1K {t UWœ~e{mA5NZ0CyCgl<7C|嬍:fH/- =|xD&g]|^e-NZ\jPEC:ɫ'gMo@rFIፀRuta# x}dmUD39h,͠_]EE ]"8Ekjzjx<7@Υ=4#yB+W1Gir7YMu/x 5E"_!i_SIGѵ,H@Ck9a/)l.#9sIȘ?Re2vJ‘\HQGL@SsJȌ[3,G S*7c='F[+|Hqa6#L&',vJVs ;>&\&$ޡuu[d\SGǗTUfhδaКV|S*ehjU|OɆh<,44_yY|wCQ~j@;.r9"+Zd+2=niC1?DBGԪ|z[@~ZæMQ0+dZ$ev2JJ][5>JT*oxkq-$"Nc#!褟jPJK PFA StB?b, W!fcxBcۄ3SP؅yءX= h҈RNhn=.YԐVKFb@8 | -PމfhjH9{YI|So9)V˅gO`y̩ҦS\M!kf#!f>y K 4[j0ja5Ƀp`ȭb\T47p) ,枞YXEYf=;ݣia r̎xOח enf[KXup|xa⡼HpDtJ2 ݼGi#g]D~4veF)лzwB$1FA&@U0)@-p| r}ScQ2&{֗鍥xb\Fd6#2b:s!f^[~(6LȹKM66/n,ýK h]ӝ;=|)DAY&0y?G?DѪgCSm4V#=HX@}>Q55%H?*1aThK:^1n32ጙ2E'q$Q{Kkt|xgPX_(1OxUMOf!?Gd"AHĴ-2/ή^ /35zO߀t;0A8_\ڿBLx<|tmJQ5Q/lc]U/$+?˨@<$ 6rU;C<E[S3Wh ^?K3 Xh8ݓ=">pM28 5 wKZ97WעKj2/"z¬+ы򅉍7ezǠ旞.^1T۲8X d˘hdV%sZ8BI`#RVM͈RrH`HF,f}7cI_6ɨEldBU_LبtjLdu?gԯ󱲨pObp/zʝ57!:7[DT5t-'ֈ*gBf[զDBӜ׍/pV꙱hT:SʃHIIJTÄ]Gd{t B1hG{uqW C}Nٹ Ӟ$N#B'u*m>W8+e dN+pEbkԙ .=c~*Eyuh|%8:, g{[qbc/jkx? pͷ`{n Jh0ڀtdg9{'9t/3`U`˗eS陊 f.JRhm958W D9`?`o2Qh.&5:SqbPyU㸯&CSL|@,5_Kj0ba6dJJXC)Q,QHL핂;E^zV(K {ph4JArQO,K].=&Rg;]ٴ2.VH0scAmׯ){[+(翑3Bk}eM)cQ~lR%(1FGfIP~]D\9/0ktčiWf9ăpw%1Σ,u1fp^&@#,t $AՕilN3 Un".w:4w-.7ڷelyӚb\tkTbB{oPAs4.7¥.EС;Xnv~yƔioDC;|^.~lj#Ku!6&`:YE9Fvbz-)DwL{Gdz4Ź8cYb$8#5fr4hjM}$V!>EёeF$bT) ~e75[ :犃wD)\<]i*Q*‡g]KsE0 ވpsQp*αZXy%0j,@LKziw-4w*J\6 .O(Ȍu1AM& . p/'ڏ (>rPaD8҉F 2Շ3qd=;TV hBw1:?peq_\*P@DMxceEO͠yot5Vk jr菉pw~[,v'߅MY#ymU´LA[tvi>g~7-O| 9[$d!|XFUMigT!` d/96Ki͗%RЌ? c؅ym؉Ҵ:j7OQ0o:-Y@9͜vH;cыt-zWBzO [WSV}F+$VQ,(3}=RpI#R>"#MwRS0dA&GOkSw>vGeTBV vިAKPc9\U ^ |X:gb@fxZu >vޒ ߽O淀=,YiBوHٰ&GNf^jowHr PI8pom.MSHM IDATF)z&1gdva`HrjjI%1 G}?/R`-(<mWDxyaPn=7+&0~u3ՃYFj]u%xk3C֦3 JF=fA~R9Xm8&;3Nt߹qtɝK?C3P a[u 0<^ oQw G8aÌ\EBG75+i MG_!wM+hįPVNO9ȧPm5!Y :r}c]O\(?rF:m^ X7% mx/wžԾt׵\.^YvRs,uȇ9輺4մ o<+LjiPp$ H1m3w81}T4[뺻J. 9M;? {wŘ:%s"_?1V聞f{#-4DVR )%X~_q/%j|?혀'mz[gpv|6a)ABJB}Bwl [w};Nc,bD5]Z^+al;MlX}:!r07a'Ճώr\IE& NS; 1\@:4JP+ٳϞN4dx-p~ (G6#͑x헆SEИG2L*gEp̀XgXd& Z#-4t dH<3s[J'Nju4le|"b;)?^I]Xqt6RUa`PPK.KhF# 2kZ4tcF62w9o]o}!)dΫ;߃']I ByralɤɐݪÈmGz%lpuDOLcAvm 67ͬoFAUƩ&Z܌ޡKM' )ٴp~ ;8#Oԁudgw J)%^3ac *}|j{P-;U%Y>gOét;9~a+!{!fayC2C ^,GhN"!ti{nnVw s V&P:8؈ br~MQoKfP~%.,t @eOI_$m[RU~crR _&CGhdJ+p"&lli μ-•ۄѣ_pO%` TN)֎,Krm.4|Ym0eTY F>_JqRJH$r)4 "+Lgi2Nm!v{1h^$lLtv~L5aD`VZ E&KNpMpn+.˨&Uhϥ0~]UGaP|N0յ/or MViRo5,=v/7l^ȹE"bSvƃD -U/215G5僦NYaun,ÃK59,i̇qn,ӦΠ>5 G5 '=WX +ߏm0v5H3M-Mp^VpGW|Qgtr&\C #RWt~ ,4] \Z Qb8e]褢kB:oWYI뜝57r{w#A^dhWts`n9 cMXQSJDQw)7L\טOŗ) F;+y5& -NIgϹҟZj-vͣ JyW:_%br#/^72swO5C<+kN7>28b;N'.$qXiƙ?mq>VTKrvRImB Gח`})Ll>alIh'[R P: PZ •rɅNn,Z;mCΛkK2uJ]C$ŮZpfye5],n\6+G4[6ǻq"s$jn$o]EihPGz)VjNF=8EBԇ;[*pw_SAW`lz-كQUX Ӣ, 9х̨74z%f\X_7kcۍeogRgvLS=L\KJm󅐻[ ^cj+ kR#L~Pm~|ֻrD'|;._1>䬑m\o׮33EIgiRg,PDBvukUERY|)^ZT#wvZÓ ɉ(iN&9ށ Mӟ^ N<\jrhf!i..ߌ-)1ԤN\U퐍ɸbbq2ށi oTlsъjyywF@;Βm>t+Sl8"0*1З4[/OR47?:%媾/#4&.(!:Y}ddLy=ɯ©KDhV>TF.–zRLEب:&N CR6M~Ȝ\Y^RN.)C'fӲ.\tPzBɿb%w㍏87GknΦC،!cڇt=AH3*ko4WÎF!6|Bk1lq=|S{R}sHg5 G8bnNt SVd'G}ˊc1Brdc%p_& ?M粐2T4|K>u!5!pazۏE5 Li0>5aT'IY3=6u-{ncm,C9\cz#*RY %SL *X9= ͊zI9K Mmx7 OwVi_ ":(Htޑ}h''Y+ϗDf#=ZcpLjozo eY_qP"g-*GK`ӱe[Ď] &`yITzQ`QJ{J둧H4M_B?3;JU"uno$mqZ8a|CTЬ;0La&I0~r +u_=l-龾^.)wb?YY@ԅ7?D s˚h2M mH\ul774k/"K(茰4,`C  a/rxS. i xQ=vM >qGfN"lQ`҂gF8pWbE~ >^/vU5f^&fnpP3JH ~GrmlReh t dtvSdPe3{-4tR7Rxr;Z_7Wۥg-+ h%8ĉpQbU ޜx|G j0}f P.c`y`T%.ӕVBQ~.P8Rqo)Wn+gXj)0\EY ai 1.\%IO6QmDMP:ޓ.:Hn'f$ZExY?=/ƱuQ$6qu8 T];}b*:K,0i NdCSğ#nGdLjM{ɩAtRLuW/ɩ9bGpPkxZѰjFC) Z ],Ͽ6SLemMɫRE1M^twNq73vZ1CjF,9:7pE6N7\ :mIVhϽ2gހ}SґssfJ xP}ޕ)J4ZO1",P 88IՕVb!bv7UӡswTx1dn.(֎IA;b2N9G:VFg`@6ʑ|X 93QJVHw,p?e\:yPzyz =F͞P@ h8W^J 2->ɸs6'-W:\Ҫ_#hBDƯR~b-xW#كYبp\U;7~!30TnLJG33=V U+xj,/_07SccT=­%2VI@巐htV<엂8wΘvVbBY(?/*0@m;\s3`$MŷuǍOf .Xi!+>ӗ`yA"6Y~[|I3=C֕<Gr+On햌3L G*ܿD$e\n}ltLM@Vwp =e}U 0<;Ey_EƦr<lЌH;2яN>)WH#3\|_S"kFd3'tk%1~ a[׬.ĪevaP,L暑L(˼Q55}hY;gOKpOC2c14;b8H#%Kk|tG^L* GW7GgN DHS{PQDd{!Ә3 uݾ{7pjjsB$D 6u7I(Le:~ZӻZiMejXZ@ZdءX,ք%4[vE!` ME"`hMXiMejXZ@ZdءX,ք%>[ӧOGAA!CSO=%9p衇ԩAqG}fFmlHNN];CwǴiӢ~xZ8woA^ jx/?W^}U866/:ucM%&1o\RCѮm[rSȿ_z oc>A-AD?ٳg !_ltÍ7bb|w o2/`|Ax嗃ދ+V;?j0AM=O4px^^=#2UUW .  /~Gwc57o^6ق\OĘ&^vY> ` '#'7=&T)m6xw"~lSS42eODYѼXi^C>K/7?I۔O?cCb̪uIDAT'IN=]w]י'Λ7?w{Njԩ0t|x$bm,4y˖F J03gs n_S~~>ƝqϴSѫW6y 4h;,+2aqF\ze"7ߌDO?+xwYw'J#bѢEq:!t≸D4=K ͋ȧ7PGlҲ2[׮D3 h*!aC&$:"Ͱvx#}%رCD Q uσ߮?ps?$|ɸ9p@hM>C"QҒG07@ƻisH}o@E{.N8M"|ߦ"ҐN<$Gy$@2= cQhUN^{ Æ ÃAf_1 :t7x#E)Z nI}o>AAm۷ SĉqƸqQg/j\,4.~"#F>lTBr䰾Kp9=TJ4ܰq#:,\>qbDs< )q3ψbHhyⱄ)W_Ō7@\l,>P{4/@O珋! PGC?^j||C?Yf2yrXC"O@"9(7u;H 43mz`A5skDN҆S{'rGhwKHzHd s\2Ő$]t$eHrJ$$my@&N*#.#~q{AXX ;_QOd_&yVVVܷ~[?5"=hjDa/z' 3,^w(7r٥F\/"t8T7KQbk~zDS.XH#"r@" my@X hDړ#FHĐ ̌o*GTv/$B{@tUW_-^u{F'*]RT\,r7(7R1u4pxCj/?ΝU9pdڵ׶mC{b=sܟO; ^{m4diD,4"Mu> xqq{"~}$*߹s'KJF2.8))) alwDꭇvꪈgۂFy37TB% nx.B/<a8[7}tmG5,[DK4 w "wKHK;E@"~sr0&b0"T}Vr*:EB 3/[_y3|^g#%5oøk>H˞;:>i+w? [ohDݻcq2r$ܱ %vɩS_kχ'GY-"K -mFx,*>?Ͽ:mgiJHH3rKp諯0g_PR+"q6@DK ME">9[S`5 F=ra`k.޻<f|¡"+9/8"jlYiP--0z̙xWQ^V親0GwZbR5ee1oٲjWO3'Lثȃ@ X, FSz͞ n#=t(n6ĥ+kqc5u:ǐynOkVY`QS-AhNriÆu{+=wǣ݇୮=wߍKEtOǟ=_s5S"j.@,y'6obɃ'0G_>X[NNpwC٫^5e,-n;BF-7Q#>>7Mcj %Cho`@QN4 m 9-Zw:x[P%`'Y, A&MgɃ#6` ~ K *@Xյ+:tꄤ*Ȟ\]Y} |ekߜ̩ c.]0ѷW/rHi.Z,K e8-N~WH5p FE~a d_m=_~W]_M|{9_<žd ME`@#ߏ/kFui GG'Oޫ?K eϵXB`篿baI5֊RqqHJMEFBR ۍ*W eee(-/i ({~5>˅7M=z {y@/ch|xf 6zѵsg=zTi#viЯ PVPܢ"l*nY k׭CAI bbb 9H 9up MH:;p@D;lE=@&C`GO>HlsXei)~G,7|xbc&;*Hʊ}[녖@Zq[Z">̙[|(zWUUG׮8#`r\V|=b  kW`GX ){E"q'f-]'׫.0.'X='^w/bJȌ5z c FH2;`@Egw"S$⺫q'yZK3E-M@Ν8뭾K}7FsLL86nº_p.Fyw{SNؾ=^>] v,5 w_!HܹQnb 5̒E PrDp3fN/K.t7C6m[oR[T.Ħ͛N#b{f47;6oY& ^"w^xuk8C88ڻXy@θzKӑ^;w.x &9c233syy9?d2{5SN z"?aH. ֌i)La>aIENDB`assets/img/add-ons/campaign-monitor.png000064400000026171152331132460014130 0ustar00PNG  IHDR&H{ IDATx^uxG߸`qBpk-hq )BR()P!%X $|\rg;;3g,K]D"@d I"@@2D" "l"@H@"@"$ Q&"@ >@ (F D D("@e"DD" "l"@H@"@"$ Q&"@ >@ (F D D("@e"DD" "l"@H@"@"$ Q&"@ >@ (F D D("@e"DD" "l"@H@"@"$ Q&"@ >@ (F D D("@e"DD" "l"@H@"@"$ Q&"@ >@d9ڢfYOȂoc)xf_I&`3q>>DK$ CM&P*֩ ILJ[BtM&R{k+ QB6GtyFC7"cAZCbT0mYmy|xdOJiǑ> GDvC3y`Vͫ1da "`V΋i 6"6! #Kϐd͌)⎵Qz␷b4 "`4)A6ơK1&>Dŋm0sEW<1)1gҪMD 'f@@x.C廯̀utA7ɅHFE 0R|3y] XZZC"V$NjR"gJUax~?x%ʯx>gX[[r{H!Vτ$LYw=@fF,K .G5s6{ŵ1[a7|_C Ņ`Қx%OH-ٳ ;q۱GR;JJ7vq2g>Jb%qi:?]:?g Fd]wAs6L'%GV^i5'`#Xo{4.Y2kV-X(5lA)ކHV@Rx _p OltQ J6gk4Br|݈ϥ n"Zcm~t,sj.N?C$kIѯo;uOa7%Kt#tbF_fY@D ]p'=U<36Lh/7\>f' 9B Ѩ5p AEDӲBNK'>(U@麜k˻!OXV=|tO0Xs}4JܟmtOs0NA {y1wI3LXqD>J)aᏞUuZ}ve+0H> q蜅k+I~>>(iBm8h KgzHKOa>郟ԫ2k/mT?LߋUK.E@X~vbEaa}ŕ Tj:g,J*f% [5pG|U0}:ψm?-M/u ~fHr$11 i([ OmT@jΉMIb I/"oMp%U@#>̷s)$ ڮ}Lȭ+6ėW1aww|.!1w& A%C`yKt_脽S[·Lɾa-Ftp89|&zL?3WGV>%G@.C[Rmtw [:7oyoE`eZ냟R9w[*ۆD>s#O7Ĵ!_ ;<- ,Ò-1b -$ o?sN/35M|+Ih6ңa1RQ||"4nkk Nl'lgQ#hf@A Hx{9$cH+]ީyP{qMIF@Rl>E;,FRi}S" }nRkAf[% PA:,x竏q(e)"cW>oQ?w'/#|HMXGfEڟ<اqf]U6 3F (мzO܉'>-Dq+iVSn.?zZ)~ O>$+ e'EHΖ{gCҏ6~**xjkέnuܖT(7~!hRyآn\yFZ؈vcgrme-w_"nz n^S+ pC!0sk^}+ \pqeO^_ F E;LJ}*GD'`JeĈ?ʳV\ `ЗYH zb+^SWkXg5NłhU,)gMjZt%)j ݜl_mPX\é:VV1DMșA9O^By}+ b}ydKǤ7Q" dȿqIHXhiՂ/Q_!.,9~5.܏@v;+Vj[kO"9m@0cgHHJBؖ~ZKN{{=wYS9uDIGs r#hlSdqHЇ|Ufut("jԖijwⲓl9}% k>F·g h?52}๧2l|:h_h$ z)}_[0lRC;Sah]-[@XG %[Rpc䭠ZYtWuѴq \pqVSoU^vʱgҰɿlzL^)>MD F[֓sLbRZ.ᒃ{5L_}N+pjg? KG;w\7Vlk?m?ަ_m~r l"tVߤ8K=* q{ yT~J^N;- pmQ[1=Yp:[^GGS2/Ә+Q1ɫ]4ks:c(s2%=uF;u& wcJUIo\a+AxJ^:B40pᐮs #úX>;bVL5tf"HMlEn}X5 eUMr󚅀0(Wtwr&,MC`l/y 6lY]iۻwguO8eOА똌ۍڄCWF,vſ$HXXRo(~r]ϋ{U[PRpbS;auz;F R{%wЈhytZ%V +73 Uj4h^em7oܪEqβhU-?i ߤfU sT K0d57R[@ Oi^׷sל+?C@X.BysғM!U7w_@Sk5,FMg6ҴR^ׂ6{l4x-.?|S%v\0{uܩleY)#!c,fƔJ_v?/6ah'o[|(--мJ>,1lmφQ:a~7ސ"mz[ { F\IBeuW)X2I~Ӟ2DȘؼ:޾A и t\l܏֟]c'f/3ilטbH~J;%|K ?z}&o=¨5xG)NU# >Uїg8 ;P8?p8lyLkR([OiB^[{eJ@ͅu['WiLXy6\Z@StL;KgzHVxJ3Ɵ2R/V^oxtjևF r#-+/#B{ukTבf82+a~*OE^RmrWENyل}~k* B #˘bH~Jͯ"vup~ig BsVNU\sKĂ둀ގNWK3^l3_xNedf' qMPda^g%Ylp{}_^8hhmoPN ;ߥ ȟb@{]K@ O0TGDRnrrͮ+a~ZtOGEŸ_I@xG]x(tbຨ^4}lu/Y ýhP]%)1gSkQ S,ڦl/cyk¢_Vș{hnY"d>#CS+ ؄o*Ut4l$`z߳~]li'Hg{\^ՋfY^.eZ{O|NޓŌi4K5R.l*E{+Ϳ*.󙵀hl_%7Z(PGO!_瘷ͮK-$Do(]ed-цiX?$" v9\PEC^U( z$%%(er"-="4iBa_ϬRkiH@L}Ty"0Uag (7#h^Ab(T Ϭ ,d\$ ij'0& -`N&BXw$KYbKE7.\W\Wo=퇯1{G&?0IJJJ^[b#35+k(һsv1=JoÅx%bݼlLt_%B+bl:OjT!7VOl%X~||{_6 V.Ә\Mo hduFi7/{=43ҳZ97>G[&*^H.=B_?1_?M'wv1dfaOQ"r|sDԐb/!)iuÔ6: vy3xB)†؆gs41) ,aRKY1{n㌊j\$ t6LQ v,j~ퟭdk-Tv>AۑxED0Qo`[t1) 6 zF Y\G38Vl\Ylt@SGnD"g5g>Jbe9O@ {d%ݓZF ִ/U@XA1'61- ٫Opd*{I@Yvz?UI@>ߔaocR>(*˅|r6([,-v,GmJ)G@jA-g_X1>^  ]K/I2$u5r8N 4#%w.l<~_+յݐ=,q HZX pxD?waROo_?RJSpΌ5z/+{JldydoOrKCٓlF;YX2ysB?>g#%!EEigs!&6 IILhf]}>U&D?u+j؜a‡B Tn`ٮ0a;| 'Gh2"Nb fLhGuwQAkOPA|z(v+KޥNaP 拏a(W܋{FQ[gu9&NXfQuٻS˓+ ,wv9F'D 9,e>1S0 ߭~QV_b{^DA81-}oBboM>% *0,}wk|N:]dD_ҽ{VcvrGJF&"f}m1zE\wх(٬)١d$Y;7WvZ+ӫ$ =V.!;ނ}RўBuVMYQ@Oo r oL0vރ t CEq{T /qblB@.ch[C [& 9\=7-ϕI@4UUGo9쭒Xso揗;!Q?uݫhb֋i R+vIЧR'{S=YY}-J&5+c,J-CdL' ?RDCzZ3:ͯO OE^7\]8DC@ŷrtb5+Mkkߕ, R&7٤# 9}9sd 4IDAThu~9 ^@X y} H1.#:I{(3l': f\;CX^n3^W}q#NDJ] c]Lҗ؄zQGj)YWxn]-" >dq &Ġw] (gvw8V:3GA@FuQݴ?Qm;廯'Gxx=V%Yͷ0i8r+% 6O"|xy1*gS=eKgPl( 4QOdyr|KNXU]}'Ľv4SfxkvXq" l z+K`6f}G„8wb%)c$T+ l>Nnvzt" Hijmq"x3 >;GsKv~:MDʧç%?(±?EӀK* ,ԸdLhj#֟p(_ &i!!!'/=F ;UOU ;f(lvғ͒dߓڣXAdq_#d K<1)o~&%WP{"=9H HfьUh'اͣRf4J}%s[V}Qt _ZH];/Cd#!J) oh]؁G\3cw)OCѺp%0E{0 K}2R>qqxY/I$!"<@qM$ ҩ7G6c՘&:5,4kh]TL7~ pQ#ۢTOdL`bl( ps"D롑} r$.xc=rΊFMF$ 3»S@p3ץ–# ͫÊߛ <:&~\+Ïzb_E?]te3\zX@X .) D@Xڔ2:m;fa)&l|mi\"'F Ʈi~W'ň(tc;N|jݱV=zAsٿIt͂g =Z`bl(+\^M_'f <}'˗N,& ,zEtFV[M'٧I>1"1P`a7`-# ]+b$Ǿbx̎ھ7gvIgYt 󶤅rg HV{k\X'l) T@BoQOfg!QGd%,#^^O}mA]EN$< (X8j?bw"!D#ç{K}'$<\JqI@xķ YuGti@XU"w(w1m#%a;@2y%UTĘQ# ,h?_'|`K7=&>/ɏHQ@1Q=l7nTFz$ <wB}۰c W#C=7q/T# ^Ž%7!l1, ZaCzBX2ݗ]Lھ4$hWWxecfc>ϣez, M5PsSLmJo%:JF :}O :'0et kJ.p" Z3 5︦PՒ72^dCIpr5<7q_"Rm X :2poJ$P `Fva0N$؉L}b B@rD) B8Xc˴6)F;`3`ohmw tV@m笶Լ$u"zkz X7o>L.o[Y! a6f~W=[GV4c6@Yl{f[¦ ]9P+칏 {}:/岳D|Μ|Z.7Z+;Y5+ZF?wO<>~3Wt>B㣌pvBTt .@8uM3:!$f[UR@@˅&5+bdָe݀h#2co[T*B1ɨ1 ۏK_L>$\[!{#)pU( *p9Aፙ׭?܈^-y%%zK=#?0ՙ| HvBDRP :" o&_**_G8 w582>< E#IgK:-qI4-H \3G^LJK8x؁QFeE bV|hDLU(#*Y6!)p-P $G/Dt`xd+L WzIkIx ʌQnF +IG/a Z mPAHPO|PWS lm2C,#kcJ6ABRQyEY=" ?:wBa*CNnD Ov\,b##)d엿I[5*N5D1`c u*CA)$bx4=g/TFX>V=PuW|v>9+  Abܸ2V*JzsxP*NCF^!g)3]{ٸҎ4YN95#2UWFIY t#WɒSLDj[-GCy1#e|Km_X ~?IC]vԁ~l;-O?ѻ"C!оcNILv-{2VM 2:˱>Pf@Dw9P4ZKS}7qƤ_6Hmw;LvDRٜ==@٨p[Eᄎh$g kc#B1y`Kv`Grhze+G mCBйIM|0 hC7kuf_})3=LOm4x] ,قCg@BЩqMgT_U׍{@D8s׺>n,JN}3fƒD2S?1g9򮳔O#{ψfR2{@R>T w4ɑeVJˏ8;76@@w:l{q2Yhҍį7i 0J/PO#@1{㓠^l҂ݻ3V>Np 1]zmAƹz *يHFjʽh/vhȝcLїRێ=Ct o_+jbW0|J@ph"7S.bLԞ*@b&ƨ v锾h~oH$PZ9/c%qAҪ?o>@j<.y:p֟yL~6=iE:xwôg}^Qs`x] L˫%8!*7!:Q|#"5cY 0|=-@ HٵoTwE~/BXf Lߓˍ'1{i`DRȶqojHoE?ۇ+,_zGǺ1sA*@%=0 5NIHm}OfɊI,"sv1Zޢ%"eԪ}80͘&FqtUZbMì|Xɔ>Ocs\F^@Z'h*qQ_o3'Yb0 Z=)"@U+/hE|ΐ!cC?/`5.|k1ye p;5@i?0h8tـWҨ0xg]Bӗ0f!߷Q%<ףV gUA5L2ȏ %B딶W\HDh:x JFj V#ˣ|':<Qa!,8σc!'_ " 0Ο.42a|P+W??"ېIv$#qCzmnh|tO 44c=NEv)[ -ԯY/ P\:t6q{VC[d|c)GdW7zKg@Py*1a u{u,j\;&=׍<sq(%H-@f~]Xv*2ꖍ@ѧqeT W LS ['c>ם vø?RzF\[Q⇝g>< u+h lUre@3jtHNe (o>rQ,~<(x֖'jOA(I1]} ݂q$-ΦcLJAID1"I}!j[=Ot墼2}˖BIfŲQ!Nat+)HIǩ錖dtoR鑙C"8V4λZTuQ\LT{VaN@Hǻx)i1L˵/#iҷ)FGH3mĝh./r!tN@:񆹎̚wc3~"b#CЮF&HwN®V{DoJ~G*TδFE1һ;6d3p'zx?f vxuTe,sw%XwPHM x `i`>c||#g?OہyCkZ@qiL6 퉨aZ~ޚ‘$Jt^>i;5 ao[q2-O25:f@7ܑuqrܭTv'IUBa}[N^؅%WC֭MѺFYþ3Ё#ge0].͑ե@PO>ozek!%I$)bDortLWQEr|~j)~RJ}k!J@?%/@i0J'F0(_&vucFkTSi;31~/& %fSΫ1?y_9}h4jކsNf{ƆX@"iӜE+aw< p|\Ȑ`x.`PgI,:)9v+g˛};kZh[~Y7q,hqbj፾ *EmC^IP ז^_ƴ`, 0Ʊyq(_*5epkT,/A~ &QޡNQ&2 _ mFl5ftZ~?(STIZZwC_@VJM,I RE#9|ƔFi,| uwfmrҌ'1s멀SaG_QF8lŤPRY{e_w홢Zu@Gj8ފsv).Nu1j'6ΐ_mDF(%gtK#V%k+]v2a5@*ɿnHjű^d> -Pk%fb-)b0R9Y-4^gB?MPǃ1T,Vwp#|Ajz& jpf߆h[@8 ;}q rAHSu%r2u\| s/jW*ᙩRZ٠pرKJޖ cH垊,uyx Guw73,k7^J9y~/͙zlD塑"gp $eKvɃ[+:s)10QabX[$G=V+($},~ʱ@R٨1w쏻(9iqst+#Z@i%9Y%D>c@w;/5W݉C*wL$L~ U1~Hb==Q -ւ#W𰸃7o"P*>X~L<ϜЊmk3qbIS^V 9hY5w6O`*Hn80nƄY1#{fC%K WO< "fnYkGxBWŧbv яgיK2Ee֭7ni FԎQ2NCT[%=q- j1[41 { N Qlt!+mŲCڤ}XZ&Dc$cQ}Ն)t~kW?<:~ /d!;@a0F r_0DGGbӺPoxm6ȅv~tXE[.b ؟l})Kxh(ņaht[cQ&})HqE{Hc @mPltpx|fNL1TWV{`1ރs6N^,IN$xZ1ن)ي ==Rҷ[P*3S"kb,y\ x[۷4f1NqRsTCb1"t`xun$}<߳nI S *-H1_=G<yJY1:٘(]mfL%lP>Ouĺս\:f+'#l^̈u0]MX >׿L;yHI}o"z5&9&&">GIof{TԌ{MtWl؇fwKf@8/KId2w&gy͞_PҼ-Xz0MCpUX|6%d~"ڙtr22=v:;'&A[y 5>F3G)S_z_,塄$U=tyژ]!Z?v?T+'+5`HVfP{aƌmPRm=6k+2SJUNh]3Hm°b|4f#h1@:4-YG5M%;ͻ4Fji Dz&ya>d?aP[fU>~Vt,Er(@+1üe/Bna=Z& )֊(嘁}?pb݇k|YF6甓2 tV !X~FsKVS/օK ~kP&(I!y{3&8xN5y/VIs roVZnMϙgF2#59a?jKxm^:;!HQXV+>꫇glĩK6eatBÌR+j9|2 06Yrk]`>"zId~NP9ѩ>ytI3o">l׎8NC_ WgIQ~a䌿PU;,uXf QCCͬxaQwkyjrsZI^/;&igVUmJ?~kxrӝ7cf^Xd~2oQ* ǒ)`1](nR݅o:S ]-`<(djhs>}W/$ P mџc0uX[]y೵œչUxNҫShMD:f2 G G7Axi0)Ylkki&eإ@V-h{w$@@ŒWsxt8s">gH2@X̨-bfl556M,:op(-PlW.qQ^ݿx2Df IDAT]5UZ;0_Kxomp/ 1j*qBCS7k3^275i7~ߟȆ.,'۲{DAۃgN] YoTFk;j;Y(bȮiӖnG ۑ]ɴFc*zؼB~z'c* Os6{{:rV>@>3c^X֨와uXf#FZVS3Ն&iu51Qc ,HCNR^"C)T-نB$,'EB\$gѽ-P,]e`k2\.| # rN?_A ڢz9|4T.'/`u,.#}VūZj*#fnqt?{ p(}1!`CnlJbl2*<ěJFRDC9)>u}uJ_H10]ȗ,g@B@ =Rn7lY,H݅LetNUF)EL͟`["1LZЫ iY5k/̒SyI4~?Ք~x_+TS]d-Eڨr,>%~>\.|m< >iOuE .#aPCi)PWZ]=N (fMY7g4ԗcEf{(-rR.祓>9_ݪ:IDG/V4.@bʙC| ‹UXK_^I?9dY3J~$ϊ9$ͤ2t@xa9Qcl-3౺]%$Va]hk2w9^~ô!)U ƫ RnFF奔 D]D}%;[y3?ߥxe9PW@$}}pO+4QOl5y<,2w*__),?Җ( Vo*8_vQ*xP_do9TNVN]ĜGu;ΌÜ \'ىOuREnmyVt@SH*P|kyE0KlWnUXF )iV5 $AeYSF&y%@2 NRwQL̑Q U/d㱙$NxgC֬*(@j۔ ONu0}mWa#jYߣ.Ҽ {m;S?LXVOᮨ(x 嵶@L&wĨ|xwi6gJOٌ2LSpTW'ĩnC|G*DbI2@Me&b ŃW`7ub$X´Ɉl b$[Hw_1LOXT3>ԁH ˮ8.fR4 $&a$ ͧ0yaGy[&0-͓1~t~A ј4(A$mo2Z aP_DbN97`^X'2IҚ;=߲&^AA܀=ћIBT5Ф^3_$I#v "= D/FcփIj:R_>7ov(h|24kW*xfhtr&'~ $'/S Kbdř +@Bfz!xP%҃uUwR.}!t"ֲh:yp#Gp֝is[TALśՄ}튒"xb&OG";a2İEcv9RIʺyUU}6$M*Rhǩxf(& !(("ڡvy6#Ñ 1Ѯ)"u3pHUzgd_E=0jׇOhH@_m`v"ү z%R ~Ӂba9b]HKab?E>ҭ,VuLBxus.x23x{D?鲈FA|-vŁW'm"#&=Wfȥ l(-΁M>\r8ej81hLG3Mw$-}Wkfn;Q{bf,F P4EKqKxhZb7okG:$eAݛg.dү.o(o1cU!PU>ShJb N_ő{0޺&eXzTGkضxFHϱO?,}o-m E@DQ }7[^KQXa"b[aͺ",4LPa};g/ |8Dnѩ^%ww+,D;/1n޳xk(|Ji%B"eP+> >:x d{{sLrOIӌ`NNOvAIu@6q=w۰.cCR_'WwFeT $8+\=@iQ3ia4N;JOGr6hVa"M[1Ǐ;Ny 3n׵GcYL=1Q2%ϛ:9yA/uUX|7 BecIJl^(Ҽmj 0EJvISo\Q7&/fûy/.2Rd۱`NUs+͉@mێ L֭Ii2<7y/QIĴoj̘˞Mp(GU㼯uM<׫%2Jx~]A@K%;$J TLəK9x`(yjirt`&H&Dzu-b}^Dӑ6YP4Dbl [2& ǧz a'o4HtK$Z‚d=4"QIPȽWEy`"DcF"{>_Bv:e:gzu =8Oe?ϧ+`Mda|G2ʎxj\c'89HC޿ zCx4uaLS6tO|8=SNzv,ato-PB|HW~},ʃm1~ H z`_u(`AyhdPXPt& fPqX8 kD+$ڠ^n>E%~DzFlWșw1qs:kc%uN56;lTU+N _w6EP3 Q P2,ܬEuѨOˊҊtQ]{/ҟvHT_omw[,3Lk]^@3w;=V|f;7I$fc4F^V~!dr׈K x"}ߺV<>H6FçYJ>j#5լz9 M){_3(uJM_W}%r0qN"2/m$I 쎄bTa)>;}^ wL*"~t\pt},ښ䣡5*J|D=X yN^QXTqG+TScCRګc͡Ty12&Ѽn8v/uefv>KS%=&"~q"|I57Ù;˷oXh=|>[}6Vjl$f>U,;o2yVl8K"J95JφGㄲ~wut;Xo,.\Z jO|*,5?K1@B0e-~ 2 >Pqi~@g&"Bdb6M4:zU :z}ă[{u-@insk vOV :$y^oC)z䒄|#ܰ EIUwb=)*l%MS+'Xuo\wGe$u<3k٬hNvǺ5:^ x̉TE4.̍W);XOm6 a{[fxa;ҹ AR^X!3'ӣk? (6 V0:ю#@=xO@HO" c:tGO''z4u4iǭTWI|݌'j-̜ȘܶN|85cyCbg Ht1__||qU,Цv>@8MV/ rz߿ջI.HtMٮMd 8'Z1A$y;*Đ;^U"cJflѻSȁ뱮 0c]P=0MY|N {*|Xg? D{J]nד$ zϯ۪ q "`kANça,s"uE F˙k#C%U QT7fHS4sQ_Ag!  &U;[i<N[/VPjP͸ Q>!ޫ"2dKɬ 1aujP A؁\ RH#WoR5u~ S1*IՃ7O@0%$M7*:ro9#_hFtr T)c}e C"|NL\#Lwyyy{)v܈nҸ7S|Orq˴'-6'z n'M_2B#Ȱ])#:~Xt fsC@E;Ӷ}_uyԶ6tS*bv> p1Ƀ2*.Vucnm[$G}yv<Ǿ\+[^DBqCYlǾ")Z4,hLvo:(҂q%V!%#PB:֫Ģk+v?+El]@* 8PXąܫbw6?FPǍcFDnҦ Aeɿ,ց<"`U3x9nLS@OpX njI6I=uU2B 1.~o_{Z)J -9y;VCK N efLl>P`]H1 REmVo+O/U%0s=5˭@GX'DF3|K*4<=%=Q81&cҰq>T]^,# @O)f DI3* qŗʄTXo,g2PØoߪ0p@ Ka"(9t9gx J={tԈaEC#uave,PNg٠'& ~3kc )+rRP)ve: u1^l%W>N/ 1rm4Ɣl 5R7}l=/ײyQ$ ̈́јX7+vN답p+3կ(:U5u!𢡊}E\"kA @BP](E3J_"]a ?ʃGsՀ=r4nv}%%3?hZ&}@LC R>&ߪިOTR&ڝcwVcYHV؝Pǂx+wc?7$27R1lEsZFA}G3ʈR1jjxӺT#+S}XhxH?_? #ɀ wxP-AKߪfyIx5xnUXf? GGzX<@J< Q@&W\qp[GdP3ET2>& 8.\go#M0{1-W+ȟw?nU.k^4c{aѴ*P?1ys4uf+"b#azbOZ' ҷiuV~0UxzZ(MI&&EOIOTK].L{tc힙+vkR 5k5WFŘL1,ya=*܀h%. ,@9';k$w8(鰟`v>ycom<'ƴ`INv+G*x*6* 3򞾐t$U,F3PcN~h]Loꥤ/ݨ2 9LF$ٺ6\ \f$XLۜ[oDg./Vy" z| vY Ϥ1e=y]k~MAq(uk{DW(bvFt~ATېkT%Τ".6X9?-fM}3e7SHZb_bT/%ć{yx(^q\nd)suL>-3Q|V[x~aj[0~|&(MXd)t+B5 'vVW:kb,6I,ډSK#5 `q#=РraC'_w_oRf$W{jM~~ѻzä < 9yD>~xZ􇻢qB9||B,6-edкBV'RlNzqSʝIh[L|>i-hx"t3nn|sFg\a BvI( /+:81pj U?7xwfX6Go<0(~pwZ^7@-يE&()<n/$ѵy 'gDZtUQDn<)(DOzQU^l)L'CJ}##'8OuO8tVȷOR7) 2~/ECa\tD(~x7BB]8~`'QjV\nJd{ _y}'PփQh?Zz_Y?-zd:s N<72z5ߣ8 B2E բ!=l=qрAi>NL;QPdxn;1ɈFGTI}}/:7ձ+pR,,SAR 1~ډ_w9?[ Xj,+5GcJڣCʬ|(=Es)K> 㣙p<:o!TQo,T7zPHH G=̫e AmIRQ*VNiLY9N٪Sbb$/G7Wͥ.JLtѓ;/W0U=OHݹ&^K٪g)AE}(f&;a+ؿ $ZNLEY&,۫A'/@Kp>M ['y;y?f2 jh {[dn8Eb'!(%NvΕYz?zV~^~sé6qBzUцj(ᴇ4OF"E9\E/$t-|&rm0ʕׇH}XƘo6)wn6綳 퀖5 %u$cdf>xO|8>m7ii\c~O aȮ@n6w(cЫ$sR࣡T"r ֠%Ved(0𓟱ps"]2-2Y&dߴ @xL]C-)]Wkg!-&wuƽji4'q:E=3PSts`&޶u4=I6a||/"@DH#}_T_l4z;K{Bu18`Ԭz<'CK#F q i]КVh۪Ruuex֠T/CjYNXͫQTBg$dtQ_vBYse&2znz;l /ף{v%^€ill=7lAD4P?`螨Uїۈwf^W/iJ-3npL;' Q| ⧬>۩HBzF[Y(1r0 Yķ(ԭ韁Dcլ޻7BzTro/܉["IDEFેjY&dhHknMA F̌U; hO@a.CP E/AǼtoo;Tf aaX,/<8m5%_Bq!Qu s}Q!FqUƮoU݃0 K  T>b]_?V)K/I!6ȔȘƸc溃'[wҍ[+Y?4fl]Қq" OeCc2n̍DaP?u]URS_^d.8ΥtK2"0wȉb[FtkgnlzպQZvgu%bջlmddj3j;f)ru1A]m=MR #;W\eb= 4R,h?ldN9]nkNu{fb'5ΊwFZTs@}!&G~ҞTMHbt+ᐤzx&`tc =k=Q\ ;#7O*mf0ptiՈN ix|00 b#5G-"o﷝#iqrtn *1OϿ m&]ǃSY`Fi$AN}}!ფԌ<,}]%YC1E5 J0aG[#:BRwƩ$(N43ctu#37_V3pb_o&bNJ#&G4]DF)j9Db6%띄-i@k s1Y 6} ZYIu66gY H;&x4?$Ӑ匝v3wfׅ-ǤT*@FBU<6sZދoA ;nOjˉH܄- na46CˈLR3JLjlV qINu<| ;!w$5cBf}vJ#厏ɚ3d{uҾg$Fc0چeCZ|'EL"gJe1^:aiӔt )o&iο}'F'ј^jyu)2?s6\ )ԫ On[֟Iw(3"Y|n})jVhFG@K 5+kuJ!5dav_JmisVªvdb2z_ߟﳗIAu,Q83L-X+c\Wj&1XFJNe]f58OP Hncv}o}shKf국N;,}x3j)Sa>Jkq9Z4]I#jlFiy_7 BNFGzT`F%߯VM݌i3b@ѰzX|`/9 @좞 h( mdf3Ӣ┡ۭQR5LKG ^fev^4)@\sBOt5YޭM2>؁̕ջvc^>i; KvCq YS@/@T<ڧFew o\ e4Uw>ەC?X1+QB,<9=*ǩȈ̐|/9mm3 1;/xbۏ&zԗ$5+W'kOF:n/sRzץ Q;_oT{V}t5i$`#:< .uS@@:mkS1/̢^6X=rOmU &=y#g}>eSkY%SڌZԮ;;$2{18{!Cە&n-v,$%[p")޾ yݤZaۇǒApsQ@nNhW+GIONWnT4F^9"`/$.O-.#9gy HV e0AelF="IWʊ-!}{F fZcJ%q"S'֊?Ϙ"Id)JPlfaʒ-8);;cPB ~|\p+{sʽYHIfEL) dvhP6)kL M@j}ʏ1s3qBf@OB$jQY:r'0[khдfEsepb&UeV K4R K O KtĹST/&5}W+Ry̜I8H7YdEXթTl)cq2FY)`'1\Ndݗ/nP@H]*) ) )P) O@P@H]*) ) )P) O@P@H]*) ) )P) O@P@H]*) ) )P) O@P@H]*) ) )P) O@P@H]*) ) )P) O@P@H]*) ) )P) O@P@H]*) ) )P) OP)Dd%! wh$迼XEi -ClYeA;ay8W/K @B5N@T<wg#0X¢BfT%d$ 7D۩e# r .+۪5JVJHo\:.{\) Oa A(;$ѕ^ّ A*J@Je$ w;,}} ȉ(܈8%S(@i.Rj.8:F+qŀsRLudGbLY_)Y.9erR1gDUƙ -ঋ$`\} P28sPpdC*pH/A K$i N:erӂf(-RZf*_QBPJu4nP7DtLE $$vÝlڻC\{ I!j$S\Y7$7Ee}BjmEF]RtJj i QwzǃBjZlڰMWF9eEW@0eS Ѝ'^UHx$N[$P8 v` XwX䲥:Ze1Il݀gQ3ySiSB%1}zBl%}x_g@Vƥ"7yzOiL/2W@&e[(P=e3fqTV,DFz*Z.~Ml(>t}MrI.@"0߮޷܎??zJ>~ o K1p Ůn  Hq@$YQ "?Oy}g@\…%8n $kBzweAIL W9k <stϵ ޑz^BEL4X%{C~1z ۷7sq|Ftel^mU@dلs 49ȶpLx,r/^Ðd.<ܳ;*g];4kmijXɳ)>tm,"=sFn) 亝70vE?6e?z_~Dłナmɼ0t:ΰl=/,߈x.UI+K W(@^{[ˮb"* B!!{OrM! O-93;gfAA  A  A  A B BAa!BAa!Aa!APXAPX (,APX (,A (,A  A  A  A  A B BAa!BAa!Aa!APXAPX (,APX (,A (,A  A  A1<I);雥3Nb/ 9=cCcVdS,Bu˕.QPTڃ?ij Rӷ̱-+dEן͒֫^eK4<]s 򷎊%~)tyIBt|W>,)jeT(˒J) G΍񭗐OV?.oQXx0"Vs@hgZ1ԨfO֒&L{U=b bwZ\z/vԖ$fX5/^]#suUeX}-bkzIrK; FojT6/PjYt\^ižN9l۰׵zJ^TB9AIw]6񉷍M]x۷wVO4,&Lz_MѽtQ=5muSdSJUՠRPUTT%/='T(ӻ3<} E)ȽNm.**2{e}ӝ@"PKk'S [ԗ#Wԏlw#\cL ֬Aw8{I4MKtVjVMZ WeZB51fQQWZ|V$eRVJ~u-t6FiKl}ޮQqcVն߁'ԤU03c5!fa!ջھV:#S`Ѕ[u/7tyGԳl=pX=S>b ƿFxkFl*ܡJ߭dv&V2~$"R(mD4Ϯ?k&8PX9xf5UrV^5./gJ O ax̊C57-ȩl)L7 Egiw{'ide(^Gu@m ^j`Ӟ柿׀*(Ӏ.O]34RІ2'wԺGX3" H 3뵚ߚq蚷Wi& Ub{0h P?_Y,Y']rN#~˓`s5NϞ5.9|TRѽJd`MGu(<ݛy;2MN~$} F'}nIZ0Q %n)β3_0* %NBaYF3 n9jXVM}_ n=-ӆ&wg~/ST~c{܋GdMo  :6!Q&-9Rk݁ aYEs \3*{ TڬwgfG^_m+<7/JmL2B{o] pKX0(*{6ۍk?u8W D^9Wd \K%g;;wIěg[ATR[RX*P;,I_zHL\>yENKJό$ۗ;$DEYQon73ͯ]g Ò0YJ뜾hK5L։GǒUUJdZ*[=A3:{B=giUJezu]^}%Vgh8rH-#ch i:fW,ϵSJMkI7_0e.HU5 Xqm~WV<E>yIn0<(6,Ƕ&Au4CC 3%!ÎJq?+sY&^34eH8' էPwW8-,˲,U"S@b U:=9ߗmh!7VA 2p+ty]Y_cfsvB4+ꍋY57MAx´g2lMaɎඇGZRlSB*;RB~ed]TyΌW/NڦoA]6'h_;#[7H:uS s_WYԨyӧ kh$ ^7eɠ#n㣿~FiA MmaiQAVm5bƚƠmnfkRV:@`i{1 ŵWU@h[s۰xkeRJ)%0A]݋7:mPVN;F\{VV%@]q6mSPxV\E%=uݠxr|f|#cula&& nb9#L``r.tk@`aR7UjTy{ɢ~㮝tI4]eX6w bckΊzsNR'0'oaaQNݽ42_XKmIp $7 I>@#)N׺y˷E2(QG?`gf )RԢye{kM< I'ơZz `9b. O.v@I}ń!qQE~^l+orj)6TAeT~y距yYhd#2-+0D'uYEsw{e6JO=; Bni#s.W:JNǬ؀1cp߾MiR |f&dczgt?gpQ&&-ܷ@@aDifĜq˨XRTB0iAV({b!b7.ɨtx>2]4|!1P-YopؓJ"ඇB)}~g3"i<.tB)]qm7T&5_0K'~^I{~)Q4tafv3_bK(&ʄSYp_XIйq-)3ᢵO.ecL *Ziǣ{榋>6!KRLyAǜ Bۏnw䑭NLRz#Yھa҂ԠPzaŤ&h~{ĒM+Š԰I_s]"~@\,4=Ն𷰖g %<15*J>U1G7߶Һ'ᆌ6ǎ)!Leȿjί 1V1įwOx拹_0f@39`5r M&ETb,<b/!`iqQ,i:>-@ڻ WZDvrJoG&xm)M>K~JB?|Ө(<8>VUXV5C]ĕ_3=+5%eM=9e7I.e. DbTy`b?]`ܜQK*HQOLI iA!۪{ ^"ӈ#\32 U5]C\"L35Mc\̯{v2I[^yhk_€ZqڝnA :Uc!Rx`~V4V_521 jmO(rhlQe(`uc@z@\&:<Ģ^$QڵŎFۤFTd-= <7}H\?Ir7GMCj|ė~yt.^;.FȱIg[sK(&;&Wx kc6rCAYbа=j ȋ+s1Zj6|j٭,{ݰm?\Qj" n;i94a?U=XՐ:WdұA jtVMѨtw#*A/Ixwfڍ GYYVwN81 K[V xCwG<8èeO׬)n9@Xe`.`d$כI$5azAI6#+.rޝSu1X3hc{gi5& 5P| mhryS5Rt{,!L=w+6 |)k z-D+& b,`X0@UUL':SOϓ(-mTu`L;&ݾ DDi#cuMcjX=1W0.2E?=tYbtgSӓ O6<0Qh-_M^:.xnM'D4q*/j%ycXaU9`H?pl<>w,bI{[AjJ `\ r'Y$a`-D5m tqJvTU‰gXFz"vs%u0ro\xض<2k{I绗Rivyæ?/:!Ve8ֱ祇u3}ʀHn/^[dڰcĘ:^ؤuf\ .c9xaYsbOȲ"ݠm?U}N J|bEU/H#39=m ^nJ[ $!%< &]i3ݮs尬<k&3rFxs }~M֘opIdځ3,0 xN$`? (!f- @-z? |pʚxw|w>:4'㫶;Gn yaz)8MF #lqC𽭝EwoW%], y^ p 튪^: d@t)ɳ6GTHGӪ uA*ӆ_۵]PTA/Qi1ޮxV2"YIg$Ŵ Bt|nUV<¢Jkl kTAȭ0e XEE.5L|^OTcD9(2mamS53[vqv\SvX[|2d s˟`xj%/^2m$Pa'9\m0Hgx:󬤠Xoł: GDwB! pZല.F^n}ˆ%it+K=,,e. 5MFGbHsHE%\N<'\;h٘_[Z2FnA@N P\MSVlT5eذ&>/QLpxF3WX lRKSm+'WJq6zMOQ)]Zrڬ`Ȕosm.Ug\?6:I&å)qcGS*T:+kGHrއמBaQZPLJ| E[*;80( z LRfFV-NDݚC56jh';_~eRzarc}|`GRIV@~!wЁa1~VVA qpek&lR!vGJuN 8~Y^㸲@܊?k7{02@{\cśVJ/-k̵XWgY>[TP !o#]?:.?8`OJ#w ~a?ȏ 1g?2R%Q%,!:hAWP!RZQGߵoo2%698O䀻KȩW{f,.u"y=U Z_XaFgGgsCpE 7+i$, j "GީVu:&NGHZ2&U]HjUs~Ҭ՗Nɬ nު; ʆ&^z׿~w[#rLEsqyiaA[驖>'\o31٩e}&2c3Er%U,QA%$L߽.y{OV*Mo}2cU1B [5ogΒdPYa#چ7Wl4jz*IDATMF秥mNFBPI/;'f%MƢOUۚV!WN |ե*zN`S=kͮvHǸ- )(=/+!&N/!dtutyGJzr"ԁOVx/ #M)i_H_^m4(tI {-Y ᙉn9!E$cJu/ԀM=F\>:~Q|[YǀJTdž4>5|}vwEgFt4tMԿ_imi /LK{~jZWX2k0Vj{[8շ4 s[Te{UW Ld=s^0¨ 3C`IuaԷU/۸ӿ[DJa{_#Ih_vG{Q[.O _D򜢊6hcɖx󾼋_fIE~Ynv_JR[嶻/Š <oF-bM,b+t`akꅳ,59 u &T˝O îqhԸI &;fe浄 z8JjLة#dei箷k"Z|-Ӳ1,ٴoygR0lu(S_[͓;[uCV%7 'Imy+?eN9#l~nMiYOO_=9&tZ׻7>lPA]?5Ҳ]pߌSgC9XY)xêZ-f&FZ,[Q}Ew|&3tRLaQN# g}oG/ĤDrEmޢC;+l%^҆FDeŇE ۜ z'[@괱W~yֺ/ f[Ij"V;I//BtW ˩[4E?0kJLx;]_[;W QGfAUq FiF/~Op-MJ0vs ]Mxǩ=3np;s pυ1tx% -u  &*2QxF`;Dz 暌DQJoyD㟲ϒSc%>JkI8SUh &%P7<~uoq95OuzGxFViݵaWǡ&A׉O 1 *60G AdJNC5Z{1E׻CҀ6-I0zImޤ^k+LGK?m]auNzdYjPUUw䀘eC$X׊qlå`8 0]C)(];GcCZd%)61fEB۹*xGE^fdY"jmgGqݞ&6\ц3 "hC%S>mC'.a&ۜCHiu ih|HJE˱*⒔jR[~HpX{mr4\G*Gns~啪>ONi{KnM;k6nP<@0J-{!,"p"B%1:U 27apkutc* ʠAڼX8-0lxA`9 kvtlx)(>=H@Pa#ۇŊ?O5K37}be29[#8`' HIFAg摟. rb$K5N8,^P tcW?뒎j82<^&U˷v!g! pWʂʷnFrm,hx[rWq`p,җ֖9uĐUof޳3L1"> u}5ZWl$Z )ze|+sr*N|)APX] QOS>[odbZ!-4ٯVms%C 1aAKlNΑwR/6E,:AxB樰98+|KXw[&y%Z˭v\ANoNJGn#T )+NF8 =wwRLJ%3-'O&##4@[&@rZK*0h >,kAz3T<A  A  A B BAa!BAa!Aa!APXAPX (,APX (,A 9V Xpɽ&|{Ar:BEv` AghHOp8$P<'A & pZT@B_0B3FR |2  La;hs DD /VeϠ\ADa!H$t ,zJst @K\0AvDdbaw`olCຟ{QXaP~ mbcV΃(:vLz Mp*78CUxG`a!i*x,T`fx%8nM <5TuaTqzR:PXrRWDTeg5SqWg§Ά+_n7{Ga!H7Ö&x^*UuY@)ADJǡKP *B.h =PHkZTHτ+烧 Q0¢[`ﮮjv} A fv #z꦳m0hӡk?πޟ %!b95W_!ݷU7A \e[DAE@ň ǰ0:1:T3e@Anru=6!pxI"H*KTrtS9JᗹVLaRRH_?؇ ۪z̿P_ J*S<SB9e`>̻(kGRe2t܅B> >hgB= |ۛ5 HD3 HTP^" A~ꃒ#˓0 /~`  (O 3 2UU (,C lg,ଁxG. h1Ȟ>Tp 6 { P$P%IEBa!dך~Yp 9(Hi վhٹ{O!(, p8ڊ[?9Ͳ(L `]Vo8S\||FFz|\bf9NH 5EE9k~Gc50&F%pxꖭ(P )Λ2eQ3B=TYܵsƍ_nC^d1q! 9Q8A&]|ܶjwu33}Sk֮۸'j7Uv&x,l1K3.<**8%թv?~׵EuuҶ NBo Ǯ\~]wGEF,҃P C 7o,/2J0͏+&?(,KSU3b׭2yr{dY>*IwyJc=z}xl[u[q<觟6ya'{>9~cZ?R+YBӀ`hb1A 8uO/ tä }ZX,U3y >=< )|]UPXҗ!걂>,"szP[Rx'N| 3g|e(,Њc~dȳBCC;zh }G̙/ 8{Wy?95v{mEp/SwaxE`¹͓f0O>9{u= 9{;|yTNB` F5bTGomݒcǎv'|ă?|_S]h0h˼ȅX(,45 Q_fwbϞ!`[^lY'_pڅ zXș rB_Xp(B6/"/BEz N >w\Ab>1C6(W ٽR["M&#>)5W4-u}ۉk2xyJ'uW,]v͇-5UfvPBMe(lN CM&eTI_xQE3ԙ`SXU:ܽ>ޞo+U*h1tu:RuX2Ætas4-HX uzp}"\3N&蓁M Q3(2 ; COJAp.}eFK=T*5l8Wuj~gh5lNEKELXwi8 n-tdT *3=zϬwzWC߲tzt=tR \$.ˣrŒ(I$b!))/ãpc\8$"T*R災N ڄ@GiOW'م, uBU,,Nz]&MF kՕ9ދƁCâH(( \w=)a^C*pn_GBCi_c."7,?:vhrgq8 Q"S({C ل@T=J5(+bEz%?BN27l]?MPw*o†_4%-%pڄ@+xglz<{sw'0& [-OͷħnY{Ǒ ,ΩjX y''ze)\i=̒6!6Rvy+PG&:E"^H!OMqbq %!KVxXl@@QҵHT$ىZ僊`oQv9q6AN/-.@HPvyzu'E(Q(+w#:u:O`3y:s`PENGG[ѡ\8{7楼ijvj%?X_ϞBB,St$>*f'P?vM kn!i"gTZ= f?q5S)jܿE-HCf#Aв>d72'Ǝ,WmTx|2;g2 f\TؘaJe:L)sprrwyoo{3PB TZ ˃tZӴyѧݳ]6oҟC\e3ijun ُΒRش|wk 7c8[CAECkJ^D:{{wKdU3@HעTM ]4C%d \i7) o0 %ygh\"~:7G9|0""rՓw|Vh.9Iכլ-=&je:FGqR:,#T% KLLN/gsW1#ZwQ_q!6Bd3OcLB~[OmPj4z K2 Y_GDc}OaZVXzEktmLŠOWÏ]q@ci3aZcl^B0L-'1/ى%i@};it ьg5ᖸd nwgrUK^ׯwcR6<7BC"k,6 yHm&ӗnP?6#5CK%Q^}MapcHK!rTC7Uf1 A:Ѿ×x_x@d^}qw;r G.|^W|BJ YpKRjj =aVNhIĮC<.c$ǡ1Z,)6͚6?˫T~,mJ O.$㯆G $|`CM^~t6 Oc&*A(P?x6%һg8p?1b#V@(VhԠQT!|}bܣ ?@ \⎺R-zN.Ϋ{`ewqB X))H`? "pt*92~S|ӰѱJw&ܱFM ~ ,5y,{+\YSRwf̶3v@LQ1]wyZ$؉(惟C1!aW=1Ww?nƪ'j yN8+[ #sdY~v.V&xjiڴؙzbcQ89[œ&ABgh6ej: KC*+.UZD)NQB! 1C40djj{o%239"bLa%֏ F1 xiJ@` uD`WV"-Q MR\=n"V7!O^ҞI9ǖŽx88(V'Y e2p./Bx4u&F$"d8'6-u:/kXfB9o\(Wt\8>U[>uj6+-Y>l+WVwVNrr5 p<pjM.͹,d.J=Vz6CUo6|*=.4.nċ,d K-0,s! ΐ:*%cۡu(VhQ(cúN#*AGWnf~gihElTC|<+J 埓U||m9?]̝arE}oeh쩅D;Ah|'-@,n%\lHtJ[6z2.) z#.`sHHUs@ȼɔ Lh9>xpl(tnDffD*иػ ۲H=!~"$傛'@BΈ <$ئ?UjT}{nxwk)6:&q?7Xn;f-< E怠A"dČأg>)Co )SK4y@maoU%D5%[hB//Cppx H,yY?L_?55w*?-֩fTt&wHm٪|s<}u߁:b=f&rר_0<{ Mb DGʥ9|Sԓ|,Z ;= i03L3"æTз,|3Z@n_mt`6o;'iY*6mfo>;/ɳ;8 L쀯&6`EH%@ꖪVZT.ļ3e2T2]}j|@>R'_!25=0jVbSE8y E ֨wbw!$3 MX'-0ٍ h6. 8%VGFudgg?7sd>I ѺvelbŝmE"H6b:XZG χdާF0g>pڢ&նkq?_9hǯMjfny?/;pn>)/W+ Bl:~1qO{'VZ7ĺU9㜗dz7trR$.yW@FjױT<,`WGzlabrM_Gڵ;p1]73zG-bvճ=<~ZtWцAsBldZL#da+b$Y&=ͰFeHߚ,q|xhu(ʣI:(Q0+a%pBӡw2&"${dYpsdHŅ;}+:|?}p{<+Ob޶^-FYtl#΍`F:u#u#8{x֩joZz#Y=?Htb3]obnw=B6!ƁZ(:9p>ES=/! 3aE~{pNhϦm8hEgsWнʲh#4V bs!O wN1E6ܪ2;J ,Rȃ5Fx ޅ۰^r3t`̙.J@Vw [q%95 C0#铇 hj]ө%sBB9|feq7ytn]^Xk8B$DFFʵp6r7'hhpRba׼DNL rMr( X=SPɂ>ƴ: vZXޔ+W`uryJ oyЧ Ѯ~M*h..{$h2x| ~Z"MHt8"dwd_6it@f_G;. = $)}pH @4:=\ nx#BcF_^OO1;Ά 0m w)zϫ@b[^.ǫ v,$RvOEƆ")1Q@#&^ $;`,&Gvu  t1N\ M >EÖS-~D+~0i?a1s}PNoY'p+An懽H%p]6.?xbWFÆCѻG{MF񵥔@ԃc(y ex]8X4?>bݟ8]yr92,mۖ¤>f9B%DF+qe/l/7\=ʨcƬ޶]TI;8%%Ν8y2˧"1J9Y8Nc<5U*M>hU6n4qXR:ƺ@zV T %3^vbgB|p:5'~مKL}$ m =?`?o9 !QX$'ZǜO޼J0ؽ6w卟 )w%wP\q=l062.q jOêY1p@p{M[2[}䈁E];B,SDqf' , ~M GGPA\5@@%qX=}u~ac#ya5m?O-lbB$\`pe/nL4e{1ޙyx쩥Ǎܹ,_se@[b c?Ӧs+q$ :Q#%>wF;J @8) IDATנV&yl, _ȸ2aMB +KυpK*c7anu>ZvLJx.Ϸʱ ϱ`/qٿ 4~yk_sPq K;-߁5#»lHD4[C&\39Ktj2d])$o? GvQ3Bg!bj۵M#[=%0<B qhĜw0ilbШ= %]OCS+䗭ۍekVX`|#7w|{efSȑpk=h % W,2:EHR-G"]6f.[7 B )boTfށGw Y E멝1yǐ{722[LK79ud6jլb|n,]c2iT/LȒ=u;uK $Q'pk.˚E 9g3谵2!Xds^_͍?'u֥ɢݾѱ%3M"Z7Aժ /@%-gI8" IE/f)I&11N_i7/:T(s3klSRN m<O_2D~ 1BY Y"w:5cMg@n]ZF"-?xCu $&.f(XN 1i%d՞$5]e 4K{aNؙ8wٺ&6="&..&I92 ^(qK6$Wĸcton; $~Ey57\j2kV 4gn=`gO*db\+~> U| ?zy2391 iz F ?]\o&L|ȜE[#uϖbiFX{{q6.2*kvDȷWXf$9%IJN\T$&,Ro26%G _x"G$Ὤ{O!2uFWx7Uc8kR+9<!q# ??t,X /oGE jxYg>N9

    o,b㓰~8rp8wZ:mG#5YV_rsbT(_`iit$NKCFrsO?qT%BNF jѸ%% Q1MWbչ&>NKS1|?~3aY0pX_i"q*GV54{l}ŵa GKfT D_0kLdj .$ّdB].؆͠סӗx#,@ ƾ= .D >{Ktf z8dMбC3u8aӾgYB" ɮx%}^zf/OY&D)qTavf *-*A@լ!fM*-I bW W.vy>Vsuscj˓c^q?^h3בDű)(Y2([ NcfےSXny)|`nѱTk#K~k;~=?IO3ÜmeVjG0f|Lrqc26!=ӬN&ѮQ+јm0E 7#x%jSrc++,C@b^8rh<" 4E1'Sg.eձs^ؿ1q=CVԉ/uC0qToh^.Fϒ (*'$#&^Fπ8zR)ۍ턇E26pbY{a|97jX/dHK?ߢJeohd7Q(hrX-ĥ?͆&gJII엜 dd&בF/@9Tpr @OVQ2]'¸}87a@"e!ˬw(̨ l@;gMtBt%4O›LL1:ZRh*^cW=lB 1~M- OxKH::GO p{(JƷ)CM^BK|^뢙+G]gXn78٠!江 cGVZ%m{gNEkw٭b̭2sGѻ},_>w|~ٸSKK"jׯ5FEŢai`6omB c"%-,I %* p1iuLz͏!bw-»e/ق3ZGjk|ˑEK6ccpR";A8o9u{: ݛ`*ËPU"/ݻ Pgk6;ϐD n5!{]d?εbǎC?u ׎C-1rA-Sf `IlHBsQ)ů߸=C-[@j7?'(+b8>y}?qN -^Sa؁=mL.lTdZGitZl}>-M 2_ #Ѿq%?B5 zZ&BtgDؕ) inx|ts1|N缂SH~ZC+Â^٣\-%k]US&zu cFBH+pl(\|ТUVBVhV ֮E^`ո$NK }eGsTkKJAJAZS;;! GrQn ;E+@"E3@r=[~!@ $$ 4$.P"`cGB 8E^b/#I$/QJ ӎgAP;(ݐJ @QRGW R *ec(pڜ} @ >Ƒ"oP~T=E{:B'E@@FEJ v7CD$j*m" J tRP( ( Q(%:(E@@F(9tФ݇6Mgl {{(ۈP - @T5j?ptv@޳T#BV%AC#ٍ20.tK8/}%~x@^#91T*Ԋl -b ~T"f28ľ uZ6Wn4:zS@ x,E}B -R#|!yx,IH +I@b-(S9U]~%Zr*[ Q)LEu**ɑ`l,#u_ʐ1,а]TA<K6.Cni(C ~hTBwXOYD"Ofpqa_8{NkzUGO"ώ"-%Ɗ-U- snU{O ՟"`%Ғn#-+nպ٧ D"zb&J }+ VD"q+lU݅OъR$Xl5#J 0NR!xd~BIirPRG8Q繻I zqa w~“g (!N DjT"`Ev;! ]e(S,<,Xcᯊxs{@ €(m"^;Xhշ5PÚMʺ)aJS,@RyȣYb35+&ggg+V %KD"ErYh(|P6؅ 96AJ }~ EVoG P^=TR,XB&^RDdd$n޼+W]ݚOph& ]ݔ@ ݐQ)G %"cyUn]-[ow %%OxZIDATƅ ~z$$X>/L&CJ,{aHa=;EB< Baڀ`;~!ʕ+rdGR矱k.LJT |p+J \(vFG-һ֭[cĉ֭MIØqqqXf /_n]g@uxԴVP %{E@G"):45Zœ9sЬY3yj$HHfϞ+Ƀ&%J ľƓ"P N.WX}Znwgc8rKV 8x 'AJ 4/*@ 5՟RJ /!N3gbT wdM(Ezu$^=uN:8z(k[bb޼y (FQ=*E#I1!#(( $h 3h :AWb#KEWĉ쥹=<˽F;d|mYJ v;cćAjjoJ۷o\0$"}*Yw* ݳ@ /"Ps\)A~=/_lH*b6k 0ʷœ~ rD60 ! e3 / eh?׫P)R`R@p8Aq>H XR X$}t*t*T  0I Q%}BNwUww4c&)KEA|Ҍ)kWQJ]A?Pg$4Z~ H7e`ҙ#. 0àC??au*T ( $}φy;AykҍYȏ+l `fNCBd`T >OJ "s'cMZ|T)|q8J hd Mi(JGOK: $#TgR_A"+=pBk^ǤF>H2$Mi@ЀID$yq=[Q)pQ ,Y1¤ 8 !47Cp!xh5a"}f-XTA>H@vC fj TV@DQ4A?< p= _{qZ7გA^X: $QkpRm("HI4$ ?' ߚs9F2u]*B n«O8LjАPBu45@s80к̞Apj|-nZ.3RzP%bujQ夔@dIZF1C}],ziKd,(H$Ő|PznѪyP鷋>^V/Pad&U"&SoQ{şPZg+Oh!e@}V+`>/4dhL/pk &6y#P7=xk|x d2/EsJx`љ3  nLe)U,I VW }8NXIXh%qDzmX$zJ@v~ @ hBTvdf]N|Ɉ3{C.8/k~ÏU?ҁdPv$)Xړ2i(ր,K$!˘}7ʹT7 $#M HPeq |cOP@|ZqŕMXRUNcoo웽-xc|T*E;ِnu1( YsE I TI*F% &?ǘ؉ e{  psؽ-IN/$ Mc $9 FZ1ep ׉YwQ~ xy9&6.N8FCЉy*|V9G& `K]vZ1``rS{ V(2:vK+՘|Ekk{;`j%Qf(H$'P51ً5X05fe"PX:*XT 1e;>w0vh6*ث' &?bD|/p[)@111:\ z[[FNNWˋDT`ibJĀʄ oͅݜd#G*Pe LIƘ; dmik%TرF:H%$C<'D|[RX ;߫ۈGuiFjfFf1k$`O|\>4_ýmSADU!.~r Æ;#8.xiar4Kt 94ԓYuHz|P1q7ƱĈtn9PZX]hJ])( ,3o?HBZN]" i00u~n]n؜^;@m[X-7Rl;q`y_4Z,813:z-Ը( BXmk8fΊ^')qLsjRImD$/2!]_B;X6qey8nGLJf7ˋFM E8- gEDE hb#) ''԰A*/F!%dI%Izs|zZHh nuO=f@Ճ9' ꊑbUa$mz8&=m#&ITb(yKѱ[0Q">rj@uDbu{#cZr 8q^ՋyF=>N4EcJH3b|q^ H7Y;'%KmћPs`R(''HpI`r=>-N<>PVT&$SUQzD4M$Ҍ:A0j5X[/%ͨws,*ܥΉ"t 0e BeLXYI9`ڞLDƫza|jz<6T9Ih2ٲ NN Im| 0fA m^.y&@y޶>wkI22T<^jp{F'ĝ|+X]v-=6lm 1$/ 3vmLTC}ti.'u P&`T".[8#֕./l<ܤN3t@OdS1yuO2ӿ5wʷq8_ _miKPCKKR X`ɄmrLR,RI\aGqڀ1lLP8|6TDG ksfGW>oojld% J䤢AUny2%H@SAt0Ыڌt 9 Ot֭A=@ `2sJvY9~FmIcY}tC|sVPEcT= ubtC/C%{mu[Țױ]5mÒ FJ\|ltQX(q:%6詊 V%wۀӄ GS\nj)1?bjI+ri9bbĽdj4\RlUX-  :ܢ=d1 k%'nUFQ%Sωq_[o@-+&!Ƭtr2)ʃ9'}B EB`u9>ۻO쌉>w{{+0{%X|3l\gF0$$;X*xhqBazDdt*Ki_5m7S DZ3t|% ǙD@I3-(J20.hGm%79.E\<wA@E!١݆q' /HX"l1e4Z-=5k;'A"4_dx EUh z"@GR^@\)U|83ѱԷ: =<Ǯ3p:G]]jkkYL-)) Brr2ƎՖq\itztԔ|#d215azf3swjpק 7JThs2Xƌg.@Ӎ:Kl?nLh&7cɇ&ۢ<\H.*F v h形.4LcG_sVLK J*)^C> R-XҋkVU6Pq,0qPjPm[k1m >ǰ ehɇGV-ݖ1M?&1""~z|8nCWz1 bu'[1egA$ @xpM9|00 , %w9-~Z'X kR Ȍϥb' rJTVV%``ҷo_7nrrrS8nJb(..FAAN:$z pB<1Mp ^O`xw`1g}vXL﯋@wµ|cć(Lrϭ1r]M0n:2Fik\6lp6OIWcpT++Y+Flo"[ramm5cZ@%FނCRD]&Д&ey:Z76ƹaE rwb^4&Tj/@)(0oBz'ŏ[@vIWOymKNySx@gaR X8z/y\fX.24&( RDIqx$h; #Mq?px ;$2TB.@|t*n$ӧ㢋.Ep{e믻61pGso ?믇gU8PQ[|G8c{#OLdXo6 ctjbq%Q{]M䗕s`Do6'AY'mQjs5_wGF5gϱy'8b;d鄟lJe}B]jMKfQH E.2tB2MUX1qsjMIĜ k_ɪ+!ExF-# ۤ%mxzI&#ƴT2R&5* Ur$h|u' ڡQOl{x>\eһD@nf~=Z[%֣xOzyY5i cJm֬Y B<,Y)))!￳bUiW<s߂yRꍶTLJ$+YsC VxvvB;  ky/# IDATFO ã#&#AʋTnm .ZE+։Cپ-|˚bmO)ɐgFތt ܼnsEɒ_(C82?:$RjMKf뮘wEpJdY'@FYRڊ˾څ&fis%{ N_@TT dxC;&ڊ~ǻ8ydwMdsoQnL6<.|1O(^Bczw^o4 k?(+SS8Xڵ\ 9ЧDl7' O<4#제X:X*CGk =!gu{}XS[GA`yf(?Zt"8!v/yvrѷwRAȧā+>˛? y( Sp 3:7*,k>ۅVIR"YjB]90qH=0*l 7DLO_J0FłC >"X t,\QTT0~gN|͔]T(H q娙tj z}i@OFt-i%çBK &peUV_e|{ 8\L},hBS֭C{m #zYWiw< 1~+gć42Jndž:,0[pTN`.`2nKA^<G+&Md)˘a=TnnX4_ke|#t =&:bd%>׷`.'hMB9̨ɪL{vQ2wNěB6:9現sr./#m721"7.ӂk=ͻEü[1v U9o>Z[.OH$ r-Z|pNvux\e)-mG>0+ b 2qj>Lx{-V5ҭRB5C&!` 8y`"k^Lfl>H hڧ;[.P*h gtx !W;@ODDeE]YovکQ #F`irU6HmCOqG/@8Cv]SSϿׇ/@7>Ӹk 4.h큥]$ѣGԀpR A_"H[7>(Dyb#Tbt!󶫐pEg`&^z1=~żݽeǺ֠=.[J@rHz1^}RM}ia'aR"_(xAcʐqawܾ%eFRբP?kF2D̠xL#3j>؈\y9Q44$PH`b x~8g07sŻcEDq0˜$`rH.Em/Fry>Rp(eovYB@$%@DϨk1LX<|5{ln;wرcQ"v:PaAuBe˖1阮mS+<8`J$)eyavv>}੧f߅jm)q |v10I(Xe NԋF7Ah|U4QL)}ROdĎ+܉fhU cL#C*>0j_Q^5uF8N%H+@t 0Ut]x-SyaIG"KU@uҽl"H}@@LRpہKUMT/|JY8 l tQn/2W0ޅ9! g'I;WfLotEz'g}:{]Wث=}HQRPPIp'OeUR+)rlPޟ8f8|[6V2Fґx,ס)ȕW8$_#g?+̉1tKu?w*b@>"\5 =+p WV1cqA%JTE7\s8m; <62(>?iGC`wR q%z#77fmn3ܑ6Zɋg"Keo}+$„/ʰ^b2y> x-~x0lT;1n%,(RkȫO4,: ;|;β p- mx-@͕Wՙ*즔m%I)QG@ ,$7^[o[nK/ŋ/|<@ȓ<2!֊+K/j7JI8HQ(Q~l3?D.a8XP94LF΃w|̨s+* BskLJs XjNg`6#)O9+*kQt) 0hMxI81s|)n^?P;ϙ}1OSzҥ%4i)06oy#0*SM@+fΥkb904'turvDSh$H2o@a &&/˂8=ay^AKV*Y[X_+ӧ NҟcP?C>Au).b -@#x@m6ِN6YJ% S%K@n wuW;<~4 d۶;g5'?kv ʍURR^mC^C|6JgbDkx,0\㪫Qut6'X(|oIZGS`#[FutРŁU5T'Oѭք現'!`/~﫽><^s'M7[v[,I~:6o@d(O )ǪUT"GoP3|{W8>h~o#D{e4-%Tc)KB_}ʻ"+!p_xCܯQk죮É%yz;xm7T7ZYXKHn|nrqK C+^ǂvH/$ϯjcVKd&x؞St5z؉z 6][ٖΤ7cV6Ym62RMH['L^#'Ӂ8tAj"Țćc5C'NJ8,l6P@ܵ^0a̙Sh| @(h;dkTIG,BP nɶt)ik6 /KHG7E.Ǟ#q(GT1#{Io4'g{yYFp*%F%W^EްO< ^z{+Uֱ̽RkV#émdgyf5KJ7"knNƫގNV\h&VneQ]ebG>ߗ%|/L( =:{P^Fcye^K E(<B1/9(0 2mƮTN9M=P0?x֯C੨a|ChLMAm<:*8<||&Uc`|^wFp&G}x֣iGɢj|mLE a-ߴr9x8oWҠ={D`>-Stye, |6:>64rݨlqIF6K+C d[0>H tqQOCJCgTT -f@oG}g axĈ@|e@^쥿=@:…Y@"i>u$fD?6#E'cD(^f(op:"șuc@sa={/FFꫯb }@qI'3uU,m xER Ţ]rzڃhiI@F]Ϙ[") ?'!)9Bd_ 垑<WXj*ٸ<'vc-GJNDcckCSX <2{^s{DU(퉖;")ș#Q7$\k9qc,"@V|*%խ<&|똷H51'I gR(N/bQWa7uK{Ak"kؒ.I O]$zRF@*K:7Hw}/Hj"D$< 4vpb) b"RŖ )̕K$͕W^6)#I%W_}~-5HgƤ$9W_}ijC;hAM$CnB 8(8V+' tm ]רx&NY"]8X%`ӆ-#Yqhb bZJ wOI! FkZ^](N W܆Aibcۂ+[TޣؑWLufW~SwΠ?`:/͍!&NɅj ۚhjEYqz>oCSË^?( GK5Z⊊!$װ __%HpT\wh.^ r͸H1•dh͈.4B]rJD;ŋL: (fp.(uG^I4: t^Mm_)xnW_}nB}.X~R'T}9`娫WQ{g|y&ZDsA֤G"yUWQ:xKYeE!K5,_pq܋K7 O 6^7+|.R@y7p5:<6R{W6 evf42ےN+&ףZ ϊTM?|.2/\><{V&җ۾V e1*YaÒQ^> QZĮ8QbscW6^؜xx+/; 3BSu` IDATA̕W`A͜_mZ[jv#Y<)-ݛC^X¿ p9IQ,cV cY)n3y7^&xD|udtFcFuD<(ԏ?|+j:2(S eZ{qCD4o}QR$u@֬]N=5j޽{?#>jHK 8B|4)2PUur'7[ω-i#{s 'e)%.*S#|99p<;FHmLk>6L0JuepSq ` Ը W< 5.*+|txaMHQOh¬?+Z u(r#x<6'?+Ē2pTOSԽT*ݠś Ř!iwd;+ wqo}v2)m?Fד~5!C |wnyL7Wn*"پB{nɒ,z4&/dFپIy,p[I-F#"6ň([GŃlݺ5&'_s@xnCɍS) 6^i8g5nCر}^Կ.j^yiħ܁/e#~_5pZ N.weRW"9P?Is="!~W3ezED{IkxXtfLxr;Rsqn<-sXtfn8 T0mte0eky$! 荷ٖ_nQ<Ē_RmI'yFd|V/XW |^E0@" _R3QŸk:;Tr}-h+C&铒a:_ sCIP 0k^7- \  La֖O=XAAۡkLOG\ؕ_~X`ۮ۽/$YZ-8z`L{h;"X/M ow! oŠUM^o L͘0o9KW<3ܷ@ux4dwK!#P4>%Pu?BwِQ1<ąOt2xXɀ."OΤD1*UO| 0s0+DOBy dw(B`x*EbS)yZdoDʛ=p{ <ܵ _-uNmJ=i%oF^eUS ^(Z*cwS| _$ίgb6x'%E8urp`.lwLRRz>I|4?SBila{x(` r'dKhǀ'. [ܒ\LVoDQ/]¢O1C1AqaR]kқOƼ9x L !"5nZXB>v @p 5¼cgɆ6Pӳf!?// }_p9i7x~Eo@u@ZZZ$\/I)wRۻc[ظb֙Pr}$@ >j3 N_>k |̨/2˝6lpN9g=; x'݌VbCC)ܜTB#Dg¬cE)Y:FWTi0#Vr?a=R=@Fw9-IG$R y{y*tngMcԣޛtYa/jihrz%ZL&S`JgOr`Ƽ%%BGQZVK+PghZ"BAI]ys5s }b=>Vl+:#8=G]RJ.U3/]d2'b؛qdf#8S~MuL%x ip!Gx9Pg` KV] ; ,zw &mjUT?bތfS9d^dQ'P P7ĸX5of8/#]*I$Hʑ HSd-Eө.X/k(MɈ#X9EV,1Az}:冤Rs*RWFaf0籒'%g ^Gq:gp%dccci)_ޝpNi3vSe09䃚>= }ۍʙ7fqEU0Ho=XQ *6%V8Fe#.¡}z@uvsmj܉'W~6%+QEܨ!_<6>W=f-.4')*MOu6#{LS&ɪ+uJŪD5'ṥ2 n3̛ `b&`\Ts6}PLAC"z?j"hr'bbQ@^\n&>M:xtyV˕  e `tv_ 054`{F9e/D:ž7g9c Hm+-a5:J ("~-v?4Oܹߖ@D41/.793IЧl!JSŮxq7"% !2[K0X0pF7~Se oO) MFLtZ `}RL3OGvncf<ʃܿ$33a*,d bAc [ ̽1a\$lxViAnU3c׻WbWPٰoqLfoL|BĜCg L?oio@A3`FOۀqĊ3'=o/%6 "pȈNҢH4wB/qû|+m?^Ѕ!1RD6P*6!sq%n q yn5y}W]T!T!0It|zlm֦ ա` ˠ8,;`0(9O OaG[JAݲ (H4`E;-q{sR=U(Ӑ($C,K ܴp 9yA: /3DQ݀*B(0y vNlH*~sQGrϖTΒ[/</;诿cEJ s+`׎]~#4KԖ)fPɻQ5^$b5@Hc6;IavGS֠ #EO_Ğ(rE9TMb{v=T Ȟ:@`4PPjkҟr'Qsu:2i@# OwVk_''J^ړZ5Oo{YA:0S9{s)DMyjK͠fJ!R?]KU|=SjFFLPMkujpV"!3FaS#}[~W|IJyѶVZEV^{HmnI5a7v7|i) ׋t* )TVrAACU"^EA$wHĽ 7MQa9Q*+460LM]M2)=C@TNv0]9H/+Az 7^̕O"B9DMNttoi,Ȧҏ\,UK`p 5[:M&6f7R"Yx8TH㢡㠈2@nEy|@W^SɱùcX݄PYqx0(ݫ8xèN(@\zޝH/żΞ<]tmEm+5֗ޙ: Z9µHҊt'1t4`ҩa)a(XZAB*,Ra:AZi/QQx(c %+._N#oZ;{ /@bwC^(n9 n@(prWeWeЪ(NE{i:Dj"ZIQ#23r_9%[Nf0K6 rNl@ʥG .Aq GKM 䉵&O[ U͞vDe/yQoPTI*%z((UB T1ND<&M7$[:.=OOė' jėzcqj#V3f""9bRA³N9mVnӐR*JF( bt* DAh0iPHѹ%a"Ò EVg%\e5P7]vH(hGP6D#!EK JV ExT1&I+lX L Dm:4OwKAc_Y.xT2f:/{5?\Ciu&)\!ɞ/jr2DdH %BXHP"ZO*'R7MTMr6*{$y"VYR ap٬ (ny P&9'8:f*O ҤvR* k04EAuR"4i)PF4 Z.{MERl? *jm6#cjxt7 UZ1拓XP2^0+4r9J*h"ŠDG*Az•a@I"M%;pl@@ (ne)a BfՅP'C Ur eL4dHA, y^rٌg]t;߁}IFWOv×W]i&-RHW"JD\J"ѺH™PNb]O`UCXQ| m=Tȉ-#oQZ`98oADbH7!UxO֤T"MFc5 F#@NFo3@ ^`FL |0#x :vLT<`F TSL r,'#0C {XL#2 HH9 0Wh Z#0#",@@\{1#`'`F#@<1#030# a"#0#*L "F`B F``60# Z/eHFS)//^38t N䠬z8zB L cF5V?%%%(//Ŋ IDATfLVpDEE]vHIIAǎm^q36tNaӦM8z(_|]s j[\@H@o˜^۷oǏ?|WTpWA_g`0>%}o{U+++|y3r-{ѵK̞5 JW[lu@~^| u6ٳ9|rV[{€MZłVaߋ[m¸qW|?&?B=t8vVo8jn7݄!>]zVB%"C ;ŗXbaeeeVFؖGk3={@UMy[R"iixѻwMO7LAխkW?Cӵh6 $NZx1w-#СCZΝxw2ݖ^}UUjW@|4(d_j|h*i Isn?'%%%!`ܗ`BRmgggc^f&Ν;PB}޽{&ͻKHN:aԩh|0 b Sdo#`bcڵX=OȓO<z1w<yDDDx4>X1IX,Xd vRi0rdCp_MM .^m۶yG~Þ|2d= G2@ii)233/++GWԪիO t:~/h4VZܗb]7W/e6њ $deGRwddd`] A ^`32y[N$ @O~4w,L >d}sZ\vAatܱs!eaigf .`ԩ07RSE+J)OCac(1p/F h ՂE)<'!P9ֽ;R۷B,@Bgfطo^9Et rΝE7JzE.xF (Mɤ)S. oPDa:XqOF owG#'I2$ؗ0m^hC(}1cP`}Yh,?_Źk8q/F ظq#YMiM֩-C˨0QQQT#Qwt_&>~>T|2&N\>(>BӡG/\^84臚@aCu:.^!=v GA󨬬lu R*Fdi|<?L/cǖ^uaJ{sz:z|3u&H&H#''?(겷F#4cFfuS&w#XEK`^ݹVA~ʇJjZx0٦ƶQPP՛ K>ū1$#Z4*ި瞃lʲiiix` _?ͣ-ɴ~|߱{l%2"K}W& I@`YD1ٱcfdRK=?mARx>oO~X?bCӅܜ#O#D4F oϟn걔Tܨ~ .-O]wމ {:y F ?KS5>z 7׆sM"ϥ1G77G64:6!>,_lK`ݧʏ>BDD[CiL rAҊ~'wr_}\_ƃ<aQ:>dxV)y&w$態ɇ˗#**O B"y*0IENDB`assets/img/add-ons/slack.png000064400000045775152331132460011774 0ustar00PNG  IHDR&H{ IDATx^]U~OM 0tI7I4JwEPQQ:sFsUZ{˥$I?#0@@D_gF0B`F &`B#0L F`B $(ظ#0F`` 6.0#k`F (@ 1#0`F &`B#0L F`B $(ظ#0F`` 6.0#k`F (@ 1#0`F &`B#0L F`B $(ظ#0F`` 6.0#k`F (@ 1#0`F &`B#0L F`B $(ظ#0F`` 6.0#k`F (@ 1#0`F &`B#0L F`B $(ظ#0F`` 6.0#k`F (@ 1#0`\0HO@^N违 IH.F؅Ɍ'OPPFFժ""2"Dr5EE PyITP%o7\ FX,74Z FL4*xPU^[h}wk 1\ L yIH,)Yǡ KDXJSh@S*H#''BXrh$/'N~_6 *U*aWU0b*O6dmsYH@[ j“]jEPM;o ŖM[VHñ~^=:kn^r#v7g>l m[oTV H7?&?n=,f?(nJ|DꌸÙDB4-(JUףkܳ Hp{_ٵz'.QUU/?Q\MQ`)*Pxm׿ɔT;$8=b GtN\PȐ$&P]{Qk' q Hhq/jmL EE0I},J~:TRFVa.pɉpR+V(np" `z ܚRX_S~p'xB[K 멤U5@<@Ej0L CVXp44Fdlx+( yd%r ZRA ƈ vD@N凉0;AB{ʪmfq"rx)( H'0B6% B~jd%~64,.[? EyRcC>nXd۽jD{r#w^Lasj6rrp1HAHEGxc@ݒ1|5 :sϼ6x]8|U@!W0\Ez-rjh=X4 r8`6:7e7do,֨:FxYZ%@W])*76XL >&2xsUY`6b\qw'+ Ď?)J*U"u8-լ6`dA r<\8wyyD.߃BDFG!::I)@@JL@p)ȑRk@c:dnTpt</> MջNߣyسc7jC" Ys]E\T~fYX4zʔ+( $;  wx! {k23Q;Ld.R61;XHQF ďQ~cI!j[F69F#$-ײo LCRru/wNίooCzOo,3/$\xK{XDDדoTയLf@]Q{:PPXv[sgϋ& 狔E~^>U|.`5\bD[*ZZD=:ueK^XwumIҹ!ضoފ1CF#77W + 6hشQI@*ZKN@-ܔHo2U8S" [!yeh#VTk#Ѧ|RRV}r}N ՈL$Hno};FOrix>UXtLzwvleGzCT WNw'm[׎ łmnWy˅OxXkb B9 ; 4當Ko?qӅJ̃{"7cwK EZkU"ׇ\aFdg-[zjB{J5a(:XC[*RRu+$#!n%y|8s>1 %bh.H$xD k7l,3j.Gs"$=m,h{g@$B˿isF CsxIg: }ao @obG)J\'L1.My*ױhͷ;#>Q~Y_Jm%?&ǐ>L#)?߀ki+A6 zĥzkDbvy'l(UmlIVIb JMDJd"iNnod6oznR01t;I &lcƽ3y}]9JDt>cla!Ч~e,u᤺*H1>GV Em#Tӕs?zu뮫 Z&BzȬ30H$I|1'$Nh_`#p$v)[E\2,] /n¬unO(Kw{!Iq6~,$ ,HC4*r*ʇ Nk] i@ń!J|2,pӅOyŝ6??~7oG~~AX>0 6V'B'zJrMʗo.!=#S+k`ͭ Vqw{0h`< ֫}pc^ʎ,&A1HHL׋tD%)(Iooi#*&ډ@+\|)lDKgNP@˟WŤuql GWX V ˄ņK{F< xkx vt?Ɖwm%^ʱM**v- 2ZVbDXVHgi}.'ĊW@;==*H3_7aꕫ`|]""^֤ESL;ţާݶ FW̩F^Ozmѥ+"/B?sϚ;7 ƞJ?$X0 +WRo3 4m&@W_~lj95GI~wKDddr/FMZ7lJ9  d 8r角SI $G㦍0jX1^:dawz.2("\QYOe]OT[)MCۚQ!:DuۭRuX*~[3#F#El5@훊CT$_MLG6GoրA m4RQ(씔$|d0铧է_ںe<ǹ$^_x;b @XhojB:O)^^ĭjG"! _Ĵӭ6Â֩Ph2~ <"#-~.6osmք =pq \T"G5May9}uVӤh<H\eDJy΁qv웚MQ4ut$`IIu(Q3&mR|vxJ.+Rķ&M (@[ðo>q v::(QQQ`ɇPbV{ 8Jr0w,]}z4*?V}dtNbWgȗp\2>SHZ^8~ӵT(;> |m%ً +z߯&3tH's@H˞QuniX(ZF54Z({rYk3/a5ZTn CmYBHڥ&qR4"Zh,37E}b]T64HhF0w K>KUkTc<{qw A}/PŤ¢?;q{B'B-g$..˾B$@{chȳy^ U;1ڪZ4{PTόSr*+)fdyPL_rQK9Ybq^ M ĝ/SWSxUYf ?i6uTV"]hW C(V6)^A/Bo!֦/Ul@yӓbMO5?)m:"*u~Jw?2"SME݆]:n;L;:v(Oq ŭN"VgʙCbiv*FdPwXh]Q,y~*ohћ-9wIhW8+(o,Bk$m$KM) A.q5 m0\I%mHgr%’`ɢ% m6{WP9M^=QQOiom7%$FPOFto߈S7vot6A#]{+? k~XcwnɲUX% [eۥB]Vb<cb}"%B0&͟62XD '$c= +wX%9=>({8Wm&¬f:l}w+z0%LjɣCr(`EBѻNQX~:#\$uG#!1: c/,Õ]H[THWJ7k*% I]9]-˅kшڣoo4_X{"A+ϰȄ`ʑێc,IQ':&~\UuNdt&OGzLtkbwe%wnxI&0ebŋ`24˶J4 IDAT zX/%nI'BEH}V{ƢWё:&!&LamOJ\Z,|բB0m`ёPv *] t咡 }VSO_ʶyc9]O׍ӕrJxp}w{L*-$SniPFi ζ ևNtRiKL^Mڢ Tbbcm*eHګ+^Itx3'-7}gf훂ZV+dRBG,\nvvzޏ@ +N]2u TȺCJJ4<ׯnkM67# kpe?zm<}4ӯkaȴEѵK#6)^z aԔъW\U@KF%RՓ:ɞУדm^SJ r,KOwˑ7Zy!ɥr劘}7!JB͘H+J1jЛ RVǖŜ;_z: Wv m#XZW!w9)CA4S][Ch .鍨iыPwlن~%2GyF)4}K)*iլRBWPH SGO_J`]N[LĖ2ˠ| ̵۵_ Cs@.]Ovu(l}y-|Q)Pr;$xQ̂a-q.4>: OLQ _ e n?;^N ?:'WZnUs/3KWwBs4Iehrt4IɈ6ֆ_ik8q$H~@b3X@9nڂCԩ8w,.tDDDMGx6ق]:)Vks^N.1I{@N;!b[W#5[d+ RyJoNƔ^Cvu7gOg/(m W/_!^rNnB ҇XX $W^‚y mk4jLyo*hZbc76RYp4"l\09@:Ւ[雂ƒ$3rv@C'$ K2x  7- ]IfDv;ʌTi0A\/?~$\Ʀ'=3߲q=O`̐1ww8^\)=mZ7DAד|aeb,d@H@}϶D0|@EJf&R8 "5h )9 SOWb].ݑIt0I-_,]ظ~d  5֐-`{ć6Iܖ7YD_q/`|6.CZ"MeR._Kz3G= ~ @fn[Z|[;r)q ma;H?+:[B6X F=RnLs_e/Ѷ}Vc$sv7^R]}B|R2%aE^O˾_o&v%٩D`װX<|<YsVMn)@sW85@c??5 o,REEnY+6 ?asRQa;aQ9'WgX) FRH a@^Gtyb__[=6| u@nnNq:c#ov%wꅳg{^Hբe q- D,*S(ŎX$tq~ZGWʏ,SWEY_W`in6W1St>ިYLkx幮&{uQhģ>q]C~T*_a ѴM~{C^5vS[w:GGEcP~ݠHϰ_Z./{S`wYP5spa~ㆁt@BHxOB%!ϝȘRH-xGcR"S3D#Lwg'Xr He=4k/lF{EKg28~OO("Is:UD YYx'ܮuئ̝F̓t} vs3v%:oh?.)=Nظe_z:Nﺎ .jչ LqN\ p سńwaϿS\VCj5b¹ 0G/*H&g~ƲhU׆c^vH<6#oXNfC&|iT&dkwâRJ6Dhc-X<#P5 CESwC%O{ck_5:rJF{+/ ݑJ H8BA b5h;t0#*|#ZX$\Rdv+ײ՘4jW1[zB'נ. {ϔ%k0o<[LӾhMQ%l pe"V@z R.8x ֻ^2LJ=|#aPyht7|w~x/&d@|soTמF:tWB%R^ܱn2q>H3nzmc;TVj*Bߪ]2 TDNx{gBA I3}HnDt1q(]ӹˍ`@q)Eo,E$!66=(=޾ ϚGNZʁ4;۴ȩc%QW{mؘ#mz @xew͓eꦻf?kZ +2 H'ǀ_aOe7o,A:h.dA:l8!a%TFb&$TܻQ,^xDڈfXLznyD?mo::&u\b~g Һ+`x?5k,EOPi!K/bXd Kg {CCB )K=py!exR=*: ޟ~m*\)]!%..1י;% +jO-qERF(ﺧ- I Xg΋ ?$bA ׻S.C6vv\k^$w+sjLB**+>1٧C售Z@B8䍵6;Ke=zX}”w3923.*XlQA+C"xc ~.b^lW ̇ySDO%'^ )';99xĦ# V*TцWn-^4-VmXÆ_~wquHx+IHNI@{8GƇE 4qJ D dJI%gR;WFкG&8564o zބݚ5BSP{ +;=qѡn/KW Ga I;W ';ұk0o??OD6} Q],6h;7DYM̀:^p➾xt:'o^}>kwnK5tK~dx8źJ*2-`ݶn3<"PC>qú0bpѝ 2= N%]Q=UVFvQzqS+Wq#ؽ}7\JCNQVq&"{ᕶw+ڪ:~Bٟ8BL ӽ='JZ5$cV IqƮ6cr|#2] u~R0!I,3rO(\ $+!0b<>}fp\u]igCW(!La*ĵZ]8E~].n ݥ>Y&(1(ܵGWtJ'^ K^M9Yx r*<C:KVmЈA+m]q&?; l·{x%卛Ȓ=w%腥Pe 'njCG&T551YyüRĩ6`!o>a:t_eѡ"Yaӭֱʌ,.'o,YP@D# (:ғZd6",6$]uxu8q8^{8]>n^8nHemm)._TWU2ٴYf{S^_. B*4zUDnM\z:.kΗ?Yw$N?d"gg℮Xq.Ȥc2DrSس^HI)lBW%IU}zϳW $mz3\8evXr! ~j:.Ԍg9,LA5=cFy "o3#0Qc)VJu)oA C!ڸ(9ءc@ C)8]y6ͣΉ@n..Z%#y&!0bbbbg_"^ 0\1iv$ x.,o"WIڒɀu[9s NaZv`8>"zcI& |#Q9(q́,dSI+f۹ #D7"J?ssζ&/T*o^SǾKt?dN-~ [uW[_n KF#+#LƆ O}Tж_&Ihww[|'i ȈX07q2S1" ?fre9!_[W!'cO?nohHg"*2 K&\` 'ޛ<{'+J@u0qd%@#oVHf:e65V0XMxvow kg7smqW8+Հ 7݇ɣ'P1TZT=B цӴy 3eʕ9xay8VNnK~> *5]dPCJ0zh*;rHkD ޟauӬEgï~t&'tx>9nmRC&v1[ Ft>R/*;X, %\X@XbFШqU:Íǝn)6o,%;d@2 WCS?wBTh\pٔk:rvSasߚh$޽ z%bL iD_7ᷟC8{p"c?_R[2R{CD",2OӺCVY nz~'ޝ+mv\rUt7";RhfE~ըU>:>""=ߡvlocj[aŌa}-ڸ3Ål}u8$IBD~QqO ?0* g|۱+@M6#8g*W*k#1GThDx3b:mr:˘vik'?%M"Aπ1Ukw^8qRT/{'v6MMsjTZ wmz*lƄRkj'22OG& Zd39w,klڰ rGYEE~h#kдEStx#5mD{;2{tw#w5İS3WSkؿk/VX}{ ]~ݾr 99-n?0Txߎi0ݱpUbCehGHNJDrdԨY5X $#{(s%2J8mvU_}ycUB\AQ[7w@ԽMu'eNx=#a) ;.xꄣZ$lk$ul`K/ʄhAb$$I\+V(ǯ-nJʸq`N[!sC7H{2;%p7udy$%4#0L A/<26H W+Q*CjPTVRaϣZo!QpUa=ؙ@_fnhXcY^A0tfJ>e}HVGD͕ %E ݻ!nوu≛n .s7$b1^>ķ OF`c Ňyf9\LU XW*.NMD2*֍-Z=/N"}퓰w!֩x}.0&?&b,@"sPjXrPFx X<˒ӡ,nUyeGF B2U}5LBfrC˜jm+…bBXj[$];Au 1? &?˒+C!k#-6+.w"Msh$!]7~OUO\^O!P2둵u /k1Am?&:5_c L L%/Y ñҙx IDAT<@'AMDD@X*PGPTFd51j۷ؒvBo͛% S1GMB2#(85 3K#rick È ȔWFFG $ lX!$h⢠)?SGX q+$|p۳T1:`g3_.!ԑe"O$"v3?&c__#!^o6chбzm> /!hF"RBgϯp R@-ѥ6~F(-0LH  ND njjb)vF/@)4/ɺW7.1f8ZvL0!B $D@SMQVaݥch}!Rx4f,F'|_`F$`)AmvS;1[$ tKP Kph#܀0 rˏlG6t=nK#cA=lA/FL aе^֨ZgNG\|u 4 #OF ?͝^ j /'%9}VZ)6M͙5_]V*O뢺;tK#ODȑ#5z .#T*^:t:Iلc'bՍcqr/}`k%F'!@*_֮3Rթ"!)t)"Afk%F @_aⅰX,۩R1mTn.<><`f'I&JB2HjF#@/t_8mYF *\a2\7aF%D+3.qF`PhPUP=L /3@iE`=8p fSib"'[ooY,{ !F Pnݻ####U A;6*28 #R] 2 [n e0]׮z ^zZR˧Bks^L jpgF PNX~iƸ֛ѠaCAEJU*\xEWP;0t_*[,5@lLL" yff O}%/ VPb Pz50#;0def_@~~~{8菷Gрy0hPW[,1 \)#'"`/EEnF&ĸԬ^5kB5X& qQDF'bK &#yW8rN==zDx>l <⮀ F ,fty3_TDtTZqwѤiTVMܫABD$frrqqy3~߰'O*Ͻ\Pc+BL %60!A`?(p5G<裸vX_doɥR}0V\kրQ~Nf_14# :ϙ=+[w=De^#<w Hdr%,K;%JmLg `BUF% g/3I+/w3?s>mv4ҫgO<3~zrvF (Ο=:wlLT4ƏiUa^2Lx_E"&M6d&",.0%1v8 4:̝3*qSȓkiaJ$_-O &bf"@.ė˿Z1<;t(u'x^zS>Y3V(Be$9 ok:kc޼yU4>;w[.M7(C}b)ScWHԧ8pGpF#&Vm/YXشq6j7ظ"Mў1•n֊8zꍿqoUHq!2@ Gؗ^x .y {1+V2i VJIբy L>1'ODW{(YSP7WNJY3J!= $K+dBN>,f\D 1{l/]_z7XH"W^=qDf!4oӦNU+^ ^Dn:;< &"-.0%<̼lvxA_Qu>j$ZbA=/QSy\rѩ_ёQ"QgǼ\< ^O3O={ݯ➛c|8IENDB`assets/img/add-ons/elavon.png000064400000021647152331132460012153 0ustar00PNG  IHDRIPLTEVVV锫ɖxxxWyf槸[Qmݻc*Ht***666bbb6x *Wbw-P\ã\ABBnnnLLLua`yp 3ib~] 86g+bcEEE@Sq\WUiZnmB_~,;Vsk`oRU!RUZsss0qֶ"C CCDHHIfff||}PPPׯ]===/01~miijߌ/\ǒ]]]Ko2 pHYs  tIME/ʊrE IDATx \W}G$Q>p*A>R"QWxFR+VSu.zlpg[v_To]I{Y3DB* ί+u~3Dn@D@D@D@D@:CV9!I8sjQmG_*ɈZ%4Kz6wּ-1enYVY+yRS rU߱U|JmLAHF#tPCٕ4(lѣzdj*E OWH=bf6(svI?4踽WKjhulР?nKR @th}hhTFR.bG̡RK/e왗> )GY7RfeRE' 33cGwD O1/!eɖ1WnviF"h~sZa^_S"^FcU0$odhVG5=r&Dic:VҹɎ֬ЯS4Pyҥ ŭ[[ߚ\HJ`m^ee^?fpSSرMcf=9p,;: r%2H CC*#.n 6ڶ|.\08x!/߇xx/eI%Kt(lɀG+ @kt@%v9#v:hҾ&Mzg頫 b+3?~7_M5(qve-rOB$-ژzZ<"xas9Ɋ~CںqrjO1e߶w[tSquYB^6<_5gXe*E OV4|46xQQ΋]nެ/VVfXEAov,kHl,:L>>W-YrIKېۯʲm ^=7ۺujնKh@XX\  exbh%K))'Eum8[۟{Ő1Qn4ڣaHj>̠53=@CQ p. EoMcȵ hiٓ3HCQo0-U(@3hK٢ݾZ5͡324p^9ޔ a2!rޜy_lX*-51Q<ְ6aD )yaڕGc´K&h4,E#@RAa!C,S!|8ګZ}VM֪ãϏ{+Vѵ6p6)?iZvݚV}j0m6൘-{`vHդmXŀ0P~ D#U:Vm8aTM3es!uSɳ^9VKN*IfHVze~sH:,fc9ZS"YH] A) kel?Z=%kJlWic-{4GfU4DB#& &Fڡ$/Hd[ŀwL~`Qte#i#R/#Sq~/Pk ގҲILV +H8Y<\"dx!:(YL@"e@<&1O8($*Y4ҏS'_? C@>ۑU:d5xGm`B~ @G+ZO]I%ud*2Y/I ]5DA:UaðrBQ{Wt5qA7H$xy Jhrnax1GF<$3'0UC W+K_EޢO~Kn-;Y c]{@bc4>:7UI_C=K~ AZ2Q@ELH%USwBv-ko>8MevqMz0-7Ns1^Q.BpQ@XD!,׎hHq>bOkƕYo\6 , OfNuO:@Ov5? H4?VHg>q~˛:W ёАAoHzoّiy!2t.$| (|8jFɇ+)i#!@+E~@J MzmPgs'nU8Cx*a~>BtR% ]۝)) gg)KU$`hT|L~jk1Rʶw QXШ;#&SVd?@9%!3yLxj=tiG2#o}wVBz_9)h%o'JGuQ ꀢ#@LCQ_Ăt& eY¼9,9=;?WM5&ʾ;q/\"@k$u$.f י'@@`E7 VZ  "i`zכLxlAhl2Qv(b?vGCYf6OV^"x?.975 q:$a~wt/ 0]게᪑eBf@(o-zf .X6c2\YZ[\ 9Li̿I'z"`D+Ggkffd( jgsA҉ )ڢ0# !Fx0Mc ;Hzv9T 6z $o.;w(ZnSu'A[&@5=EHr PfTX+`)@u5Ĕ6Yp%hPXxd6!b֡<hxv 2 cE8-nݚLU ŷe4&LC1%)jWChrPf(!%C4VVlY$pWK4fiBGlLč*|ރ,W.K+h"n3YY'o)=ѾAG-EA+ڜʇf L#AȠSVn0 qݮ104ށ\T  mRJdQ|W_ZrRw,Bs aM(HRP/<у:xu5@.C xb"*[b |aD@o *iBA=8^pkH]Ʃ \W:!?47ֺ=i~($9u<fّM-3`(k"$Uǒt}1c0@tpm@掘,&ڢd8485FʕݔocLv5'L0{NL^4pG1ET3(?y92ef $PXK*"qb",>'Y=\ u<D>ofOP|@hu0:N@,Vuz_Bdo,i,ZMܣ0:Vp<ԟe 5JVodg % M"|yJZ-kI\Er/Ry3b@+CN=ChMԉkX|GS7DsMJYAVW8!14(/ip[auY!@G )P,v56\E,;!a=4D b4Fe5*þ;T>L.= sA)D)Z8YzjH\]hVfb (<; AFjdxHRTY zLi : wOs&Od?`V_AXGkFnYMC+#}E0eq gpE7UBhqЈ. mdU V学. D c[B8;hpET_UAK;: 1Rd=0YXS{84Buב4> œUqBNᆵUa7qu4e8) = gBd6$^TXۄS><לgE#9 4d*ڡ{ӬG"͎Uwk|GtF WZ,;!N(wTtY Eς#_!ODھ1\x 4>o(ԑƗ_Ao GN2oB~`ղ큊VKh_JԪp@ip¬Slu6͚@+.@8+;^+ZsPc^6kXf;/hBv@ʕeb tq 8͉p @!DޯF =Z(f1fv eQy.!+a|$"gKJ#)U+@IB|$q͟7:C!xK u6΂t$ƣ4gitz{ 6MuG?Gg9W?M,Ln:WBb:Ƚ7FݏLn|?gc"nrhd/CiY1@RO;{{/~A!oQM%4`"\A'>S>XpV HNH|X'gy4cF,!gu 6T&Ԧ;V 4ȇ VCoDY*?P,Â,~F-tt6Xk؇~^T%w yR-hаoGR D6u/ Ke&Ska=9BhN t`q?T~ ^ܷ’Q%JF5 90C _a$" G!i89UҐ_D{$^`r_n-pw{}6ݩCܶ5KۊՂ Czåf?#P yIFF5;.J~O%h3% Nb|̩?408P>*00l` %J @-@D@D@D@D@D"""""E"y*ͥ;]اQGݿ24HJ͉uǝL҉<ћ\PQ.&^0YSv{D %'>J=h&-m;ILlOGjmeuؾk-ŰnbGB)u[}"!$;*w ?n"*>'"~+JE OT~>+K}w) ?S>;n?ƅfc<tL>-_-FND #́PR>#q(9CD %? -E Oͅw|tuNTEe\lv`۬Gf/l8*лe@:Q9ס9z.IDAT֕ZH'6{H#D:!39>! vo! qIENDB`assets/img/add-ons/stripe.png000064400000014134152331132460012166 0ustar00PNG  IHDR&H{#IDATx^ Tՙ]V/Ј(JA1(fI\&c21:x1Dщ "".AEE@d7z_jz-U9j[qwHH Ƞ$$@$@6   HH( l$@$@"6 P@HHD( "l4"  P@DhD$@$@a  шHH6@$@$ "@a mHH@D"F#    DF$@$@   HH( l$@$@"6 P@HHD( "l4"  P@DhD$@$@a  шHH6@$@$ "@a mHH@D"F#    DF$@$@   HH( l$@$@"6 P@HHD( "l4"  @/DU~&Կ9Ћ[B ɏ^ڀ {# a1AZU8U~rL~<1xD^gOĪ0W"L+úVGh@n%@qkXo<0 18b Iθ6?Z+dk؞$&7Eu1xj=q8 @I8e-J\>|BGOR:*ϩC-Mb{P@/(aLQ&f܃(ˌz-.nhǯW5 XAbE摙Hb܈,Q&_TɻN,,6ף?y˾6MfEz=V<#h KbO'8ADfFG:*;z0 H81wRC7g?_cЬ2m. uP;sχ-'m,TOM3ae xkw[Վ( vP(ωXpvh{ &FrߌR1Kh6VY71Ob9-]<ʶIMmxfPIOOzSGOKڮZ_Z( g 2[d ȧ B=l pKMG m22d/DB 3Kb\dbvA{&[@n_L18 O}& cwdêzf퟇N}]\=zͬ @y,[}Ǒ8 Uv%joF}ƛٗzzyDvy#^}I='b8?mfal#&.Z( ZK?F{;Mx}+k^cޡjtMA0r$>E;-lBn*fG>n7QXZh=qɥ\[E gJ( ZK;uu8z Bfo^*?  9 + SFo}XvtG3CN>LT{lxCmbih>ͼ՗ط!ڙW$nfuL;j) o>eG>^f)֡fz5RU;Kg;( vP5]<Fg^N Hqƍ|2@}HyDS@gDk`W.kFg^NayQ@̞->k.yeN׀kCIP}z#׾hP@ a4fz ~[vH=?0;Bø( )@Ǭ>DTٕpvAH1( VP0i%/+3BB I zr~JvH}gӟ٥r.OTR?kwxa"w % YJpzj]L Hhv|$fx%U8cR@Q{_'9s"پT#OK o\0y)zO_D( zaLfb=HiSQ@QDR2UglV6ݝ 'i* =v{Z$t+Ջޙ09$!bD/^OEI08 U7t鸧,B3BыSQ@\}-ǗCl⹹)y%Ak(2p*s7'?5W<찤Aզt,YY5|>01xYXm':Gg U?vun?S\_vকaDm2 ϗ|<eSP.؁lF/L (cy2qIʦM9 ͐~ss.gWbٰXM{V7vjnmҗamrfmv8r%8 %[:qïBkz 揗{F,eV!{Mg l @,L/ڰN3'ɿB&ӟwP@cvmAv޹h}jIA3[?|yqwAV4b'l2&32߇,p+ 2he+ xg> 8 - Kv枽Lm6f&BUG]0D7ᚺ.~>,',<0:Lc }lE9;- PDGO-GggV|1P6͕6oRlOͭ̅bmܭ̍b%M rZ@+qH=  ,o5-Ao^0ҲEbi) #_npit7ޏ\CT,ECyw"smhIlNln#{LtDSq|}ʣF\:5dyubDFrP9wͪ:eS@t(%' $9cꄀ+rtpav9㊭ʢ͊G Kr3rY̜!-"%g݌1r[rWC? jW1.JD]UD( |ojR+o蔑9!ͪ|):e>}d:e3M|l!h:*lL ->ؗ"^ ǍmӊM]d/lW9D7p^3jꉹLi.9 rr:䳺6vFnw'5 P@R3.j~9>a\q,φ:}w܈᛻v'2Q*Ţ^ ~gEE--iFBh rPyO( *V$}m_l[;00ä>PBkDW \_$xN84&DV?[{ESW6a*L CY h* $$YP@<nO8KDd*BX+ P@ɼH  G[DOlhX1! H( QbL( !/mP@&td  8Dh cY P@ HŔ( HѐԩO1b ӄ$MI71C( f18y- _LQh`X-1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1  IH( ގ?' 1rLVsIENDB`assets/img/add-ons/active-campaign.png000064400000032712152331132460013712 0ustar00PNG  IHDR+D, pHYs  tIME98t)r IDATxwǝ,7^{p C@(Q(f%#4snjDhn'.ngb hnRHi$Z" AF{o_ϻz(aڠl!?Ft4ˬe:BP0 BPP(T( BPP(T( BPP(T( BPP(T( BPP(T( BPP(T( BPP(T( BPP(T( BPP(T( BEP(T( BEP(T( BEP(T( BEP(T( BEP(T( BEP(T( BEP(T( BEP(T( BEP(T( BEP(T( M!@Ц|*/Fwcr7S\l˲[Ųa76mAJ/ذq=|Yi:Y^yONZ0Y&{c˕l^*n:!B 9~FhOO#b}->UwYֶ c0ۚM^g0I !f. $R9It*1k-Xdgkp[C䋕ߝI;ѶE!i 3VCXg"pG՞J oX,Y$@]aح/X.9)`\[`0 u{l:wi0̊Sh, gxrFˢC^zr\l,=r_ߎjwgBHW0Cs劬~Ɛn.U3J̊ق\֐nXeg}ƙ 5Dhf` rgvŦ {_M8-)w`! B+^q8+[~!|s@V|Yٲ EjID1W5Uzm ~x]vZ㓳yt#_ѝi^yrwh{c04V9;= M76=L/m@2DNzͱ]^q83[1:=V:QY)RC~ؽ>?~D,/*!0BAHYR\cvXXBŹLjZiF\IlA4X.e !!3uXp[m_=ٙ:woxF7[AX&2Ʌ/ec@h|E1F#AŐ*őDTrxobu&hZvVM۲%p#Qm3Xxv0uv 5/.3{pۼe3}o 8-S5˳Sy׻G[:,, WDf&YT9q\B*/1(?*|hC]a׆Ffl`Z0n hfȁW|{H% e>s {?ҙ韝Y9l8Mj6+ Nw# h$V4bsY@׍<۷3|Xt>ohG;UzZ]-Qix_,K;"_n5 W쬩r[ya™;:%Iyrl`"ІX vf1ּŁT!;m±{j®+]5Zj}w{WvYY4Ma61.όW[r <./+.όLݜ`%@>0F(-*X vmZ-,xʽ9΅dqgsΏy !tbn eQl q3 .BKoh*iq%DU#mgyWhf<zH_}z=mC9VïY"a-liPSub!ʲvh{&N7+(cі>s #]'44S-e]`M3{{>k1,iD lQ"XV¹)LRjBv {?UX!\6^ɋgNN_Cyʬ+St\Tc̱UwedE[l }v31U]"pi5ͽJ%UVtccUnU3RYs[k#U39FhsY1K3*گNJ?۾΃ 'ӗ#AB6j#}6"_74 =hN$JcKDwV\/+InICьñ7J -OKJ꿂A̟L?Yћ"#[/Ɩ,uڸSn x]q+0Fu,E_Od#NdUOCR ;өXXJTMӉ\F8-qYYNu͜퉕%՜VnT-*e rmŲ4l'bmBnT!#ıƽޓ/Q7HTy7jFMfXa:d$uem® 961E3Md\T ۭ~^jpZ9?M.Y7t;ϻkHIN+Bʹٷze@C؁%DEծeOY0ȉKO*7H0`k !ەHeIYېUS5c(XМA!: RU2S?0K塹x|uA*'흕du}+VL$i/t'EY]vM7&2fM[i:[ i>,}ch*54j.p[9+ZA&w/Mg+BFS}Ʌi+ cӹ+~e%!*~ur,kho|nhvy)VxmۿȚE{Z #[]0BKo\Zت,i_?jr.Whv'O-W-)cu\ g2,Q]d,>;2<9?6.BLW'JҒkL@s+r5 ENVY:d,qc]ʣJgDYLx |a MfM9$*_/LEe2/%L']Cs jEIK/d'@FsVRsH{ovqt`.A_ZFUg?Kg TZ=YCrٹOWk>.̦ CHf4^+~jgjm! @Dp6lIyҬlVl i:vOWGv L's)]'׺`>W {,e F)Ví򥊬h6  5@ >0F@hbEUL' efrBH\Yqja 7:<벘I]%J$Y[4=fUıxEG F|3#'J?~eaV}to7޷Z+XST϶E_E_9?s#Fo}?Ws ٙi!+fEX!*?/o\^m(M7cz?ح\kkh5}nso_̪s@E`-S11@zt!Zmunr|6U䥊s,#l}ĕHniT|6˺|&bwVGj+LɹfYG9,O嗚H=zRR4(;Amr<ޤJdtA l>ޤ20.lp,1:-pv(56[EYM* a'q{dW\3H"\t)Ls`Gsh&YJfhLkc0@Df[B#S[ƳvR3apW&'˩2z HtN[yPKox*Yn:[C [Þ*71c@T#,B%y dy'띞+wԺ-sdGfEYrElr,kvNc+ >Sm +ggThN$KXىvA<41B>uo{s+?H!X d>xaEqXxb{+YXLSg"oGfа,قl0,x5?/4E` ;.n=szxw,ZxvHKo b 68]/&ujzaq,43yQyEd&`dgFeNw”mS܇-ᥗYj$3mڃn L69y9n71[y`LhFCk|^ և5}M+!eu@owم-5ƨƳ# xmۛf/k'|vcݟ+MUѶ1ۏe-[?w _}?}yʗ'NMZt[?/b߾?ZgPjbZ ̧]͘ff\,mwxo_#{keEI.Ψi5<87OuRQ4{d:T"nuTq쪻޸a3'ҥ(+` 52XՌ=1z:^OnQ1E24S]~ غn#;a Ryj?a.'ӓ0m큖kxjxzjgwW?Ztͱe>uCu!;_l3Z ޏ6߅u{!S+ydN>qi-*񃗇jWm?+'.7V0zxsG|MaO:;qzG eOe 8"ZeWV̏+z}Ӈ+X>3LdDX.s PHﯩZV5#ѯhBHM_=!dt|wdGw2;0O*ǴVv5>0ĊO96^nsC?~p,X{&%Po981ƥөf?vO97ttvjdFڠ#Oo=gRS9yBMоտvK燖\&g zm!CnE%Wˢ 68E`M0dVzT7j:^݂%_:=ܩI24~z0QZ~xOtr~ug|Mx&?}aUEv] !}o\==dr1޼U#ϖ*m5n⿶R][B.f|Mg+ߔ-űζpKWYyf$XZh`xZ*+o_|`ck9>⮏uen+Jٞك[JX w<X̙tcx*^LyR(W޽4usL]]qk!)™qOÀޞ`tvl&sY=..p,d,)ɌXU3| uY,i1Ʀfm_Pj~)G',jQNufmyYxCQ9lgo:Y7.&J~T'Dvc+Q7TђyKߟJ-QUG4  H!+ZXn?l±hx/f &5޸8aWTc>Ps|w; tC詼.n Lw.LNuQ71Q5]h3s\V\oj 5W{,c1 ] "+ZYRRi!hqSK׌0isPK-H!./g3-cix5T,{꺡F($GgOŒ^Uu[xe1b':+ZQTSCirijgc+| !f_Zv]  􊀪钬3ϋK JjXmD*3g_1ʹƿH kyl,rڸٌ֨85W^8F6n{㴱uUԉDh6[,kZzOmUT}:)O妒3[k< T<])RT}dJq aRաXgM N[@P`Q( , BBP`Q( , BBP`Q( , BBP`Q( , BBP`Q( , BBP`Q( , Ơec3)͞qY5@ 1,HIUd!`*XL{ĀR $&@`sO!C ;C}HH*t7h%GB) ,GPn04w$FP}F vj/1#&L7$σR v^QB@ːqt\M9#:h"h"c(& u .~:!]`񯷹GBY7*ۏf9n I` ~j$;{U}nwA݃VT(RQ4(yj@4%>:VTB 3 WabZ9ABm@ gӠ6:Acϐ[pƶ(vͺT(PK7T= ni hYRBB>&֋QPVGoA+o2I;a(ث,)+xI(VVZ#ͭnE̢ ӳ;TRx"I"Q- jiuGlMŧE  (U7|#M4SPK +'ڶ!BYC$QFQP~ ̪?JaM)bEܖZ'IwZ] A) ni8%:)}i >ER(Jez?Ph(ux+E,V 4;"̛hMLB򮙂o{HBYaS}YT(%ГH}XB z8JlboBRl }`͢E,pyҽbn6ϒ أj{,~@hSnE8C5 O|WiCY{";WߔA٨HB0gO}"EPABp7qԂXkf(vE\G cFt`m`'8n8-lZY*X5oM _k ~  +R(0̝%Wʳ+juGtR(gX;B(qqT(;H^Mh: cãjrCwPaQ(Ag^B P0ƆH$"nLB&''GJ8eZMA J!mT(;T i.9ÇؾCr,;{B:ìiZ@i;>p ?kSwvv9rd VfKzsiVE9S ,,e(Juu߻0X&J3g'{zz,VY .70}bo߶?h08|e[G7br?ɓ'5Mv]Zb O@?g>7 dų>[Q%m MBӯ݆y(C=o}c.ks;a;p?NX]9*X&?r{c;!v??/X?xhMeѣNҴUn1Tp6⏋Rfo+0ZZZO瞭٧{n`Q8 `Qfb8*۪۽U[[YP9gE\E7!|o<{fXLNo;,]_yi7m6۝ҹh4%/ݠE=B)¨a_WZ>{v^kUOBYsBdnVrid#Aueyo|JeUnF7?SZ0T+9Y0Gyp,YwOD"a}~,5mCбc{u(uCrɳH-C/-sMWW׿H&(SNeÇy*J(_~[=/doV,Rbpjny蕮 yg;}zm[ok77UGG 7cJnbQŬ@/_ZQn~3˲?{≵m~nfgg|en֮:, 4B:ۗĉ084ͮY[8W^Yo7e*XF4YM?X,j垞v5wuu-(J%J|B%IENDB`assets/img/add-ons/twilio-sms.png000064400000035643152331132460012777 0ustar00PNG  IHDR&H{ IDATx^]t~v7@)b H*͆`A^4 RUDE `"Mzb'&&1 |n-^333̼`l" hD 1. FA@Ѕ.ؤ A@]M  A@Ѕ.ؤ A@]M  A@Ѕ.ؤ A@]M  A@Ѕ.ؤ A@]M  A@Ѕ.ؤ A@]M  A@Ѕ.ؤ A@]M  A@Ѕ.ؤ A@]M  A@Ѕ.ؤ A@]Mc# RR Z`40L;ꂀ 4<B n\[q1Y(=s~tiaMO57B` !06jSl,Lqi S0C`G(]  >@\^DG[QV&%q` 0f;kD&efVRAA<B ajԅJSA@܋Ft9,A_ ^n& 1`g r;"^֥HAqw s k"#a$v*Gp.~f*."@=! R $:*ڹ&’ cXX=-Xssܥ̚.> i!ކH +VrzJL1.DMyQ{úoF@ꑲ:ͷ9Y8o>RjE"oo1_]p@)yJ~ P_6'3aDh%##{>2zA@H@HSsHzE~*]|n 5"B#06n[`@iV▿77WYf%4~K By1ncH'61, /sab4`4fC_{DZQƢE/^h7AoK u{ܲdQjlVbxE^[C`YXKa+.-7?c!'absǝNּ3?ҔTXsrƫy`E>,ދ_H'qfģIOa()AKvm=]I5u"Hرzj0-EEW썎WpѮCHHϷ[ ,n,)4['PxK&OtOS'~GR^Զ V1Bgjߑz Q`x_ {WU.?JNחOCh2sJsC%wO6'^h_1,g$v_k!|6Xئ#[*-$<QBڹ &hɽAiR.vQ+B>&iپCO $=Y@KE"7P 8`ڿbOdQCyjl6 ͿD`p!11dqk? uE4&]Guy'ћ&,Ookiiڠu澄u8t8>> b 6nF[o|'^d]|3űH'X@s|@gh;1yg"moh7O40-E@ZǔKtS_,bt)a!I "B!S % GM뽒<'$2y= tG7Mf= 7D_~Ewfgs`,B Qqp/>I luڲRq~W_^9/"{˚_l{;kQ缱 'tbcS9!pbnvC ShʭP#qMJBCXчORjVRZbcyl٪:+{WĬXVz+K5yX!R9FRý|dK~R%tɎ^99vv`C ➻aR꯼JSp1֬i(8#5Ԧ5&M*A mb$3g4um/۶4~G@e =y_R^,_WйO w9h6~ j*l^@=w)H@zܥoӴ?am:'~DJZ*,[W* NZC2 {Pu Wҏ3Ȝ Ȯ]pa{uG'"kj/"Lį_#J%͚HBZއlqJh`utyH+?}ł;\Mzp !pWnaEsZއQ06Җ_brFl<oI4#ǔ^*'GGA1"(MOWeX##5q2"r T.ur}ȿ#v[<w;vR[hoF?3EgHq!мUMNnUl4K]zY].2&hTtb0ga4:CHcEmqfbi iޯ@Cy&>C 䅝ZѰ{&dֺ6][įyߞֶPH=`/p6ZN/W"|-NHF',b_W6L{!J0V(NWSPS*j{J*'={45MWFf-Գ :%e|MQԄPgǞvPlj}9>^ts22}eM+I ~af<䥹i<ʕm6G|`&4ҔAkeKCC rz7T1FD`h@Gs|2W JjVym"(ܲ%?5˞N((qi)^p>BzvG[xE[WeAq|bsN)5~jꔈ(p]şI!| M&$ Stハ5u)pGt f5j"JGe;P.i"a."mۑz`NjG__h}C@;պ=`v-$^#zγh<:#RLfCDHN ExΜ5^žtZ}5)CKzI fN|\t}F+Smn1#*iC 󞽺ob!?Ep+S­_!\&]VHNQ :H>Q#Jc| ۷8̽rdLfiWerO;!iAr&F $W]ڐA;];^APvʿ/͛x=ЏuO~RS~#UZ6#\MbԔu%*=;!a{ҜR Cj&.wC@ ka#AAch!{WĽƶd""MOpཚM-j(2kS {έ@eo#cS05i}/hmAl1MU R V9ͷmFХ*-Eɯ!U Hwze5o!_Z<;[gd$ZԓùY)ahyx!_ b"'8,>5))3gbekꛌd-Q_e>t)nV_JM;c{\x!/™nq4kf75_=[ק@?݀3=B0DDh:l9dS^y0NsbxMy||f(˜3!AHvs%Y@(VXI/*|A_tV7r}"&A⮜%#kJqΪ(zS .ذQ|ErM({K]@QMAq^O u0eJ7B^Jjy5d=7W5Iߍv4yl_JyM}uQu:=8Sw3ѫ-A\}| /z$nd]ê̗ 7~(o{fC7<2GZHNOE=c&+7F zv- hb416B¯Vzxch{^adG9VT#%?UZP]2&QGe1@H̚ض̱P,PD|~!Rtק&l"|0#.-[h#>64cT.i]v)?Z[DP)VPcCaZϜAEf++ޣ&x%h#oz d/~s^PN1s"}6vAꭃ8fC+ %]wQmqf@2&MEtҦvEtBܪw\ɳ{7de!}W٭ꘌhIeC\7#k C1L1D8o~FKP{`{"-ůnRp9zL?W_zw{lb e "\V+oMq#>ïC]8;H\lѥAqKw^M 6Ȅ7 oᖥsB2ԒUԼP˯Nkn*Y+~l Y|wBT@^gtE w3FZu: }3VkjPD<5g.rr7Yپ!!W#.;]1.Vlռ@ȬCW)Fo<Ua ܫړ"aW?R[38Uo֬9J:x)*)JpUx9aח@~35]㋑,s P^=cCž]ׯ?铒:WKYYԁ#FP]g?YHK~8ŷ# uii_Bۇ9[o,VTJP[=i'95T;'j=SoЮPWDXlv@5ÖֆDf4y.]"㌘jQU'n`&`Cnz-^_P?{]pzY780HɐrYD-z0*6L-[pVE= i\ E $:u(H끼{_*ɂiRyl}Oj|ݐ9VGsH/"gjؚփȃ^Դbb^j|I[,,nYb,&V>b9 h7QQZڳ'Q(ڷ~#:ܖ/Bn#>a53JV#64}~VVZZ&ewܮ&R"%?/D|J݆"Q#2DO!Y״lf"X Vr$i-c^{ T۔4}j֋5HkN/镼@lEfޥ)i\ҽ.ceQkfk[MN+}MH5`IKg:e/3M{GMh*"۹#W{ I 3<4uYۊ膄R -JPO"]ئ=BblͦN=V:sVمD骙AuN^y7XH ֌ Ť%EoQm3.w|]qT0iAGn15jH$%EC5xIcC/DOD AmT 3 DMo(=R2gζI Z; Z9{R]&2(>zLOJѦsgs0%}DPs ӡ=׮16S7X sTŚW"[Ng )!"~OO I t'E.G=3ۆ}¡!"VԵfMb6yfM^ L)eh'VzIb<~| M_i-Hƚr@aCXκl)\w3VV쓸2]Y%_%] /M;Qy1U^0i*dX>MkSZDru;K~aӴlGQ H0(]!뵉H8+Z[% ڜo~e9i>IDT\JSSةK91eXX3Ƀ3`T 491B:>|X(&1sCUg]Dvs%sϵ@hM2>HRqơv@v BM^O og^W[>f)#-3L5YwSKAy:Պko鵞C@;Ro/^O t$y~D' ꎸjY Iq>fmClf c+P j`͵((9V!)X߭7K+[[% ֭SG}ߔhC9INkrN6Z.: ^IDATuAܻog"9ď l6"*9c:Z]v۝I kf[>G@*x=VSf ]5 6X%gxzǺݜ^|*zd]\Ӿ<4|co/z}sN ísnQ۶FQ)z^8/R1{wxj$@|@hާG PA{ޢ}KMu4D=!-[9լSHC=Jqz؃X,z1ʧh }g@i8_Q~vV#G}'s-jfd RW,(jm3 s mT%+#Ǿ{*9s }y[_:$j٧gyW?nv ]ZIp h\Vph/"bm[Ѝ2m0k9z 2+%vnktш *LdWW ~NV.shR j%X1J7ys+skSe m /b_RPYsu іQg.!#&oFM6WuRڏf-Eί" wd(0: +wr1#rERܪw*CKbkZ t^qK@|c\.(^+^Y0WQ[]iw\tCa;@^_:<4TRb٬vtSRDcpb^^tUP}87 ش +W%ʚ{C"zʦ?>`:,p : pft__dL? ̇xYnAQ&q-Jsr=k[}P#ChhE:^r1@T*d啻|&1̛p O%rFZRW@Mfc=Gj0Ws7-z-wgR4Oeyj<{սOaȹ5ȲIh{;RP}zOEI /SBC_G`+ ̻Nܦ51MϷaPV>.cTc$C]4#ՊqTK _mGڝ5{+ַYågu]zuq􄮝J38yR(MOop] P:2rvXoc'cLiP>̎2Ecx>"\^Mo'淢yX:tGwW֪͊,?(244!c5w!J32ru訡 'GP]$3P5W3 te=rkg߫SzܤfZ.xU|U_F @ =`޳Wקk"+Zq߸M]yu^ؗ4#/+נս*5$K/t&7jc\uчOŞ%s*mo]>K33:ffi?t-Bte&93C(@{sdgvZH( : ɤ*~@|fȆ ƍu4 QU}@l%HzyJ3L"mZ#njMxrs zP@ ;3r^ӫE枳x fβ;);F!;vmIhL:hS"*F}HUHPc'<9(NHI3ќ%6>K 3)9 z#ngbbkχ5+7+PfꪘEc vK\ ."Ba*(Bs[ΜIC U$q4WS<(A*~M  OQ37l&zل Mvx+cC !8Զ4Cża  AB e=8=u96Sn5".C9AVW>-^H Y"yҺ\Y !>)$e,# RO73Rfg#4Lu9[F@F %CȘ< %^$L9ZDO /pC]~ " IGQ,jz3*|* ?=Ç!ɯeu%AѰgwy>%1WpS)rCzhL襪 E@D'Q lNpu]AEKֳ8UIk(gP۶Aؠګ'=ǽMt_  =@Ҵ4X~PILʳUKB(i mɞ.%mfFJb]7LS277Axx8?|YxL]HViKJXWAf|&b&!!4ӅRD_c囪 .Bdeg#%%OFZZJ,dge1"@Ll,bcX6|L-U 88v=~ n^Ge"7m?ѱCmQQQuII 8Oׯlj'Q[袋B 2A@If3ك͛7_EVVS9眃~}ꫯFF4WK٦MXv-8Ę10`jwyxE^W]Xr躊FƍѾ]; <_((D~oO:tY>+:eĤ -[{N!JPP.r<$;;,ݻQJIKBB/Zh[M^ 622A Q˱ϐs#+={GӁNzYf̙3ѤI,?-[S+ xȸB .DrrGΊD[ nHWhb9[Nj/s9GS;O,ɫ#czuX֭)=9m=@>~mM"+sf٬"K)s<|Y?~܃F|($^2e .*WZeoBUVLqqq?e5@ld7 ?ciy퍅~)t҅a,\H3yP[oB ޸ê#@NӦOg@o.Lg\)zr(sj+PwD1cFR"sK-ZS'K.qK ݉HC|_N#ƏG`9k!!!0 4냤 .y ;|٣\s(nW~0fh+[[ț|̘1Iw |O("xɸ@W-\7lx(| 1i}XX!Bo.B ޼z2vAرc9SykN?ON"3#:S™3ՒW_WҪuv*8i&#]w5$бC\|lY,T1/,,q1PB+LEf_-}Tya\kΕn. \֬Yז.ub)" {?/_uQH>sP.:Ij1edWB ^l2hAQp ȣu|h߾}+i |!mƖd9IPo!L*;=@&m?D݇~XHk.YDUYPpRH"JU{3ӧgϞzr  ^G"B \ '|Ek4=jH~qClyN_Xp!߯+E֥<40'B iӦaF"+Ǎc':WX+Wj>oK$J6Ov!O26AC SY{EhB10rH7u`M9|XoDTTW@ )wmM,C -i1=zн+rssYMB [ }O+Onү/]6T>~WapСAKoLDrKCAТ@'Y 0`=fo޽1y$L°0B |KR^]k׮u:z2ե+>z*jֵ+nfM"#VỏR\sDYǕ^!mڴyJ}oqi ̜9_mt#:t(F<úGq*t*AX^fs+&qp2.qZjŖX_ m7v:l:-Z6[Ze΁+D^zEtwTHOOǽ/#Rxk2hѢC*=$҂cMu*^T VZ樵cǎ#-ӦNu+>r"FPMbT%eAW0a=t:AB9P@%VQr~ ʕ.rsq̫%":`s9פɓw^;lI(ڕIENDB`assets/img/add-ons/excel-export.png000064400000045166152331132460013310 0ustar00PNG  IHDR&H{ IDATx^]x~S7wzPHD µ!RJ. E @@T l"(* @}Ιgfgvg7/Iwfϻ_dE!@@QsB !@!@lԉ BB  6D!@B!@Gxu"B w B#@<:!@;@!D FB @ B"`N!@D !@xGQ'B "zB Uѩ^ \Y"`$"aM3 @BD j$URE*q}VHMDP`[W >L"bC4$NrU\Y+Ϩ* L65ъ(!3jD'ZB'k4F@%({1 D@*DRq("Q5!1hV Bդ ؂CL*oO_+uDHkB?i&B# ٨]9.k_5!ة@PE9#ޒB@k00y >"2fUe-**8(%%B,8h$fA'aRB׌XL@D <؆Jq)]Fb%\W%T0Iƌ,ßJJ!@xTl܇\/⢈@#Acʶu%:]Qqܨ͈B1kK^na&D,[!;nI-$/VF!!*!aHNP?&4l)U` E1;6' i@dRlz÷$k$Dn"D Úf"|@WۣmE`٨aKzJ3=,n6S)1JT>> Ũutf|KL]WL!]6?gUT@tĠQΥ"x7صX&R+^/xr6I Úf"|A K#e!&M7@QZ&LX"(KX&vzrålNOǧXD &2 D& H!z"(}E5WH"t)D ,t呥q{y8>ܼ{8T1 B|T ¢H؂m 5 #VAJMN!_%)9/^M}¿yD  fQ AԛU\Oˊt., 0v E =&i1_"[h(/>UVמÿWǖ^kP@@"a,nD4H1CJ$w◁˾CGjL\겯ͪ1]f/m˵dܺd&I0ao )[TlD e !z FQZ3..в3)đ 8?UØӑk-@m6Dx#e(`ۅ;?|ћ7?tZc0O=m~0mǤ鷎 ۻ+D ^o0H fQTE"iȁbw5R^BQ7D?> k_"!Gج&Y̺pͧI!A S内x`s?}\Q2>'{)0R.V۝}D!~Wկ6=: z=.~w I ~Xx>/UXʪt.WvtȻphW+>[F5Ϙ Q+˱6 Th'I 3\oxdjzH,]ȱ'ﮌ|)>3{[~(vg?gXk6-({XoJ k]CHFd>N7oSm| .koAan73V1c/j xD?nLHdܠ.ň{u+z7ZE Q6*}vOd-VxKYϟC,#?a&M$X~?ڮU˱|s.-b=m]j؎ЯuD "V K&tt&rYATcqxt=4 \7Zr_W! l?+f6< Xs5vccTOfY\;gr istg w@> 8ay[TX ,.a4FOY2}bUR!)]evg6iLg3K r2 ZIUj~Wr&7ͬ\ss8ڍkb[]5rTvT56Ɔ=[ %q\zo)q67 {gr!>2k7Fʈl=% cG̨5S?@\ 0OeOc"<&HH=$.:*Weoub-q@{UysMpU˝s88:7F .ُ4oƭ#].yy Fy3m_+.szL@H<%~.k@{)kҁpO)[:CR4D#]$,chHc+qlW TB*,2iJ64I7xABklbq|upaİhxdK\Ա mc 훰`:~@@,CՆ*8H'z!M[m_: RR.Ea/*Ѹpu#?HYщ@f0[GUוzC78cwng-KʎM^8W`Bd'V<heFwQы3XʼR +^{ TlW@-݌{y1twzj:u@JoR+5#[lD**'٣v؈tnxQ4k؝٧q@,:ԓSqq!@V?(R\*WeI)K jbx|Yy"o 1ʚ@L3F[x:%*VI=E""kO**)eôp:^(v/.˱K++AX,Š]U?6>0[[,lٴ*A,;o06T@rp-0`e&᭡s)Uc&ͥ,V{uS\6B b/}/#* &52]JK1~-ΙkzbP^Xᒌ5붇pmqVVXJs!: KF6^uOG6L]4_\ ѡ'K`oߘ.U74_ \eVKŖ/ %4y{v98[WA)n,qM_ ]_n 1VwMazG۰.]Ggz$ʅu- !K+Dza)t]l]WI1BJxV jׯM,ݯJ9kҫ$I )4dNTX$Xz˶+ P>xCRo/7bGKL|\\Vy-zk@uH2F(uBON\ؿ=Kߏv"-FMF*R!@" +O7dD%q\Ti$$lwovGor¬Wlo$"pê~q7^1@VMC[^(]qi>^߼m.Cq{Sm)Q%5VBcҔrRaRJ_Q\{yk1?sHs{sq)VLˇ_7,՘jK b'1嘿}@xu}VJ-B!n`"XyPϙCO5pcx@nyq881?Ed%񋊊rz/SԨlA zJs]e<-@v/*7D' īOҡFSxl\#:LmWL0lW.` ==N E}&O JY4셥7x\Yh$#K9R 釭ӽFwٵS?\lܶe$} Cs{.Oٍ b;i??n=:4Z̮/3ƕ/cإC]tWs\c r|*cRP51i  Gdh8Bm. ݗzilo[7bb7ص3>{N{ri,ƢBY$ E fx@/wyG@T:pPE5ǓU{P+/+T*0%d+O[.rDO1-. G =6 ҐDD\X l^x6w3"0|9u/0ޓвΕN’ٵz7 .[|h_qٞ%D媁⇭R k*h4|!K!{@XTVa1!Kfl[$|h\ɘ@ukDŽ>&ȃ"!2HZl cQ9.o,䛇G˛]2`cvGvMRkaй.{+ƚ`?2%K o]D B?\` $j\I!,vJ,3J EZlo:EVj:$'n#RjX=Ѩ^PI aQqEeZeUߣ'LWܸ˝H$B򑔫QCR#[WԉdJf_B~< ab`щTYbshl/x 7hoLWO4ͧE'󱯙 e4\YMv7fc.%"ǯp9L8X|eGcYi@bӆ)ԡކ\xw_eoツ nTd.%X3,J! E%3 Z.uz4[LBnR~>8f+%<8 {x]{{1蚻\q/S-9vWB|q UdJ0$h=nuK$|?y̩\-(ߌ_S1.UH=*eyd1ێyZ{Uyr#񖯏{%7x>Ww Wo}]?x% _o{F}w~U ]Čۿg Vf#T\xYl02SSإg}Xgiv܎]F{^GbMfT&\!~F5MN?Yרco=p^,j뛋7~G~q{OnͮwBeo:UǤVS?YbaHEF^kCXUakT5\=K߮(D%,Yc(ֺ)Ȱ`1LWH IDAT4{o%Ԛ0Rծ=t1!jBͩCh7/ )QB2*58},ZaE*@,Ԉ  ]yE3,1:̥WJ/bf*{K[۲+^ޖ5/*Y.tv91 AB SP@\A'Ȓ )D؃jlwc V "4L& @< =^Ka!#{/2ËZ2iK! QN_gde#xc p u +?0S{`^30;su@&<w^oB@ª͒bꊒb{9XBHU(|<(0Yw] sKR]4#ݵ3NVykͪ&2]ދw?N@3EAQVD c1G'ы)>!P1XYٍWJaV _@30ycUݬ>Eq Y=t̜:u6,U [h]zB-oB!6]C@ 0|ĄEeʳdaR*m6^e-;[EZz e *(u1Dm%2~bkÿ⾕%_)<<8p?~hCmK62/A8XiQe"e_N ELxOX5!bQ)>)zMB6/JeHtvɉj%nJ WJ%ejy^ ^5 3^|X Wټ})ZuǨkS٠;6^܊wRKH )Ν[-! ݋/(CTw55!RO_?a힭8y\Erv#IhVRC7ކN-JY ѓh vd9^G\z bãyݪ騒$DZ(b?Mh)Fnzf $D/_jlQ6옰 6?7qegL~݅ߚytN-8TTlyغ+zSew6~Qq17X~6<%ýug:e+b2o~?}J F%]V]{`@ )ʷ[t1hD>l᫱@nw=J!rtť M@$gsh5Z])gˌJ[qqv.:sbO>raIJ[Mb~m@(acL\{ >g5Y6U=,XXTij߾k 1m{b=ܮz- ry<ŝ,+{ʌrs7T&xO g|۽"Jܥk}x`dӝBRwGwO^i{v ^CZ`8JV.Jle*&ul'NQfsP6^KFdlW"0gFʯ7-/knՉw\h7~,ld߬gnYWvUyQolߎ@WKJڶ5`^2,Ye+rΨnTP?na끹\E)aNpǫc)R XAz{bMŁx~_6d 7Թ{?ntqq1WqzWt0lՑ{=$Kos Q7EӱJ;eORb#.R& K3hT7Ymy' [;Y7zJ*<%}|شS}3n%l!R%Gdu%d{.1ZNNH"5}i {l޽c䒳MjcY;^ӫ^X;ŵ.Ջޯ:ュB"l"kI LIV(yZ$|tӻAxzSGʅfy#:<z+$>k]@@Nde_N Ui;¦_*\-et1 ஗bսSѼq voCͽqH5t9ϟRF110n + 8Lk=72/fem0#~טq<8N%1RۃI) ]@=CxtWAEu+J?ں4Oj=uȡ!3Ka^;1j~  b]1Q F ?=Arh!fֽ1f,C\,*;ד7 B ^| lx`݌{qBC3akTtz>UAb v= q1{ekXv&.\6L;ǣzJeӾgs|c+o)QXs $D{ \$>?,\\S)zp}M&9+)*)FoVީfYR=9 L#ΒWBiǰwc@As v H!jkB+tIe=@)Odf, [PvMXm#tbʳ/Xk懯YȩSj`Ӱh)^r=̭Mu(4 J)8 ]{/kO=ۢ6h{ ]efE#N,}@6kVf6[Ƀ; 3.n[^M#WO{n7֘`w#2؆ݏ3t#fFƶ &RU4}N7]r*mbn==fF@p $E@ļV29ȹ@z֎~Ĩ 3nDovx[&ͻ2StϾ3zi FpPIյ_A#Wh'ȈMA)"^岙gNݜN/`n`;{Y<0}c(t 74nkݮ X ٨0LUz v ?O~{'E㪚jbp1t\N#Ll JJdo,'Qϻ30/¡c8u ,TVݤ|[ ($)T%oaIeR=NPuZ޼| ]9cx6* ȈMBld v0[Y9"7^FdqCv.-< / t]ܦ,5ʽ&Ƌm:-b' o? X=O[`w;ŖDG =DcC[A"HBtըdۊxd"QKɃ\&Og{;oD˱LLJEѤ7P2DDRl 2bS8TKFld4%StybYo@R I ${el|">< , 60?|m7@e'>Cb@ K>P5qӼ^禥M!=%o(ŘBQ 'D\ᥤ_QǓH3CwJ| ]5qHMBΥHƲ~dz%I ѧxzY@wꋁtܼ h=F avn@6В}DG LVMJhN"P#"zlI4/QRpaA(H3:øݛJV+yRKZ}Y$DĢr| 2RQ-!Ik GXpi!JD @s@Ǧ"Tr `;4 99:ǝW\)ӦKQn\>ӄXؙ MsաJ{pbe#"\bPNa1ɢSe;ݟ]ZQbMD)DOb]'A8Eh)uEf7d_Xf4 Dp@O~g2Gs|n-Q._W/(Sɽ;lyI[{z}`Z:k&Y/L{J {'r]x]]!^8p>Qei2 wɰyE{!Oqg%bX5ʆb-Oƶq -FM&ߡ w&)1`T!S9{@LD')H HAiE6ƺBN*HFnxvcCD ѓFel'8ǒ|MjH4 폇jɕ~Ӱm܉:^ϠUݦ?ݷ5 vZzDw8_zgEbڭ#yA+ŖYv6.!q$i ECGc^/Yz5&]qY]uX}:pYhmrem0Il j.e/m[>ܷ;yjJ\k뾯0Iq֞DG A=%Q$ Ѷ'K!B@})΀D+Qwr*' ]sm)u>Sc:pJv(&c;@r^H^<-~wC-Ek9Z f8`BTM0x틍xe盚6܁DRGqÂ!(,ѦgB t7bexԉ@ n,(^1+*f FeQȇY:"DO5$ KG<'|J~ƵB@8J?I V03v{;<ow;`zyC5@m5k )`ƹy0iw)\3(tkz\ @ QI!z,eeu(/44S<"ҒHTq˥W2c.,Uaa7M@ TX.ݠ4@z;ɕunyw<Md}hR!@%&~}>eD ² (rP+D$ F4ByRJt"z:"9̃_E}8 P6TD/)AF- n:X4aAF;5&SniJu7$<(Yc߼{p?R8MsN5(_W9}4bT)4Z빜,L0;)s@XmIFb+6"1"{$F$ӵO -DS+Dkg{Xix9"-D+h JR.YKr+Yf&cgmDTK㹰2)!<$sÉRRαDkj߼{2aR:uu fY'7_Wc16hY=ߏ9ss]ݏuucd>ˑ1w]ϵ2mN9_#y#*O,~f;B!C/#F^Puѕ9'ARߋ6bbwL9s#%=<%xis%B{W$@mhQwEP!L%00kÕB䍚:u.lsn/#+2BRR"ٺs[uBtrt5LO"Ȍ E E!@٣KPw}$4!S6S[r0qzrb Ue[SPȻK.T[X(N"Iħfp"aM3>EйA\U"m`bQ5MnThxxFrA["ؽL ~W UB?%hd5}P.@.Lo"Fvb\Sj&W?rjQmгV!"Bj #(yE7kU%E1Aj%${OiB`AbD,XLDRdWmֵ]/D]b]E:ߵ9"$P &km.{f ,2m#4 !P^ =6W%.mk]&ʗbFvt$+m+x3 q({~-;n]/s&'א_^7"L[$%#1*Rke-ڶ- %IDAT ն,ZJqxqP1%}&1Js]#4!P DJt15u& bQdb@ v^2rU"E[`9kfXW TDk$9!6TK+Z3:kziy9Y&8N4T;tRR E%TN⿗XL &O$Dr5X|dU 5GRt$S̫P)&Z{5W -Ť5PUN sHF8G`A / 8?P o~T mRYQ\%@hv1"O!$/޳+#j_AT X T 1Ih]1W&0E(0Hb)WWZ _^"$%@P^ "OvA%X(&㮖;|@0L"A`.L|QNjql]@*!8WT@G:DžENJ5$~J tۜ{ F{ 5ɢ򻊑K64D ٭Y K}Eͱ%DטI'yqAI… 2Ymĕa( .qbQQ`%p+&sba+WWo54L &}>7l.s%?9?P86bJ$)p8C36fad g|j{DRD)D?*r&e-5YyOwi#U7Xt\S9jVEhP\FY.m@Ã(p`GHC)cja_8[+\KԑK>lYEBIڙ:I jBx&$GI.wQ"@R/Hbύeq1 I8];F 䉿!8 ppWq=4 rHY= ~>"-W~s37T]ktPj[V1qQ!M!Vt )T#lOnyI# *FLVH 26yP?B-D atfKH)ťuhLȮ $ﱦb&h4,!@!D ~G*;/;|/ R4SM$U}\hLBxXGw$k<9B`dTԪU ujFFFn! q:4>?~}Oe]sacdglM*׆$*D >xdQ @S4^Ga!puVh߮ի.UXJX] G?O~C~^>BB<#]Y~Ԑ e9²ܫ$Of-ЬY3D{uuN:ϾׯDZ#G="SBq! 2.h0B(/xI;/Z>ء^T\ڠ_[Ymq]}qo.I&'X|9s!% d @o>xE/BŸ*/"T^ ~ 7(4'yyyXa.Ym#ViFV6%n8RaQ!:t #",˫p=~„ BNK"c4s͡RBxi!$׹IiO>aܛk5?ǰP\~sf(3GB"/>d|seڤ$d "#"8w;>}K*MvN"/>b.81hצgPE2tO'Ȑ=i$B!@Gq z`1#uʕ|2({` Яo?txWV{^?;w~ƍ`Q6{_aj=,+O!*&D ^|n'x(}}}}ŅE܍7 n%%4u >Csﯦ͚K.úb^[mjRgC @o}MWsUW6uSOÇ[>K'%%Ic̛=Ta՛d-((/8$ow2*AI@ s饋 x;#v([r%23 {5la6M"*`ҤI8S :e/buN22aM"&onvIENDB`assets/img/add-ons/salesforce-crm.png000064400000034374152331132460013575 0ustar00PNG  IHDR&H{ IDATx^]TwaJib!QDQQ1jcboKb4R ؐ*E@d{}wf޻=ݝfvʾ)}|"{{{!aF`\D@"bܜ`F@A _F``q 60#@ ZQFuV &dKݮhaAH !%L>˝F0x~AAOXنZƀSah4?ӢBt89Z!8=% % 'J_ ,#CJMXԂ6˲Ve.Ih/2(J#pqv$NOEw( /#eI`KI :PO[.NEȊaXprr3`:lQƒx~o 4od4;! 09qq,Fq݆fG IIFnM8Vo@~f#e:a*|nc[Y+SϊZ!hs@; O>Kdchzޕxr.L w7o&%`tG5,Y+^m d"P-'G"TDܩ_`W;Qx*:u C4xK u7Um%6X=^?+礇4n7L ƣ[B7}U%ǚn>z(ju*zs;ɟK7 Ƴ'"!ooyj>L c7=)KIqK@G!B`4\i6F\ B``˦T\𛗘I@|,)&ɘY)>)iSX=ݖD$t\yNdKqB5&Q+ xztJ 4vx@F ğ@wIrUyI>ǭ* âɜ'LwE &ӽXԜPi ~ <Q;rwY`vf.OE@TӗD}߄ٟP',I b$tj*/}2\6߁&#N0uJ@=c+{DsS?Nw h^t6S?.VkO" 92/LNx|3+L }ES->1xNIqύ^` ףɄa][_mkhd/PPϡ,mDA{sjPD1YM@oƻwB)庡x|w-JKMOșdE)uN.;) )a;#` 3)ӇSm ,7IBpX붨KR&5􂬢f#}''0/2ࡱ Ą$,VZu{UE[]X};i!:T; L*̏"⿶c>,OTלF2ّxkJ `?YL ~k:PWÏmxB.8+a.?Zͬ?+@؆:I#pxH˟ &+&c ]3cٴTDׂ ďejIF\KOMj[# NYq#~~0WrwU;ƭ*%~j?V>CvN2" #;q XHkL%Y#?ڦWM^V;0յO 4(jQ&_f/§e5rJp_E@G3ҹڈ H%Yd,EI)dFɉ?$#chaCn! l8?33#Ν<gp:sa(,-u2?;g 3p^6 )s1$3-g 2\S]RЙ@\Í[cnNdL6#,?4!Z j2Y{0W{=ch4X^%dci ^RD YC)_Cj  lpp- myh<:#-1x$oi`ESXm5W .D8L n ]:)|:xYxpB?-8 G#00T+Rް$7PWaUm D,Y#`toX 0fIFU~ay?UpLL 䓭-)*ZD^li>"5ki`Ze4 W^3tA QMׄ0O~~o-^em%6EIQ!Dǔ~VhFwǽ7\X_%IRBY3089PێQ@QX5= dweX [|}jieOOğGm4oc V| {zN{FǾH(" uJ,^3MIty3(~Z]Yz0L =XXB Iz Рnw學*m0";2ƒqaL헹/$ga¾徽#oHA9K!" ml<H򷭬g.9֣jsSq(V™@mf1yu!1V $LIQ,M_V{,Bxscүp7,>keJaTӉN^ǍGqJ =vC.ݟjE r3_ϭS Cwq5߾qSCiVzd,!L !I`g%EHt!N B\HqK]f yckA0/á?z-CTj0&1MZ$]Z$LxNI5@zQnQcˢ:ʯ`Jj6_ܽm)iՅА(Ud{[eN/!AćӠMBs ڻBl5Y$z3K0(zi2:L`Rg&(*v} 2T`-ZL5-d2}xL2Buȿ*{+4bnhUYGi8%i=܀W$\@|?EB̨[K[qem6@v@h)iaoSEKd@WiaPxHU3Ґylʁ:<D$LG:eFu0@VLuCclS~m0-/ zf2nӥÅANƂ=~Y҂swx.ɉg%#}UڊJQf+&' 7HX|CC |0^xF#&5P'_uE_/ 6pq1L 1k0@:B`JR(8rR CtU]2hS +s"dj.yu#:9"l.o5L ^4/ ìkgAi4=>r y2lN!0/3+r(INwt4#ZW|y>8ڈΆn&ǻ+BX㶣 .d 6 KZ]ok ydpl[SHyE: |^ڡ WdMN}isLfYriVviH3$t?1W55Ƀ, lpޅ&\y)Zca!Z\\M -:Fp- BXFsx@:J↡`gM(ř$sR]:qFAVMãc"6:Heb؎4Ưa$&Va:͊cqR2>2O#b uxD^OQ|2`_C"p :~j%u4+N"<; Wvz!y7ei+ELs7*M~$bjC;mʭ[G̓ <߱w^&N>ʭ[ޑFȲ@^[G W᩽HkaE6?k@||5czy( _& \kPdD`}U,paF(nAKg LEaY] -rQy@0:F=euIEXoå=Q+I׫sdiǩ+m$8'$`cŮbY:Y#lz>9\QC>CNMX8>X),Ca-P>[L2{kqscD,^JX~n}1fhk ,Yড v:X1}I.hC# ,q," vc#\ܜQ 3/x˫% |={ ζ8^[1Dx$:a3]5%7Y^g_D0;.&#?<"  s]A3f}j1$-Xsv%Knz$Pj<eM D?-:";[,p򞾂%GqR/ l >vUcaozLI` Kn?"lP9Q&T\I^.c7]O _uw:AUv REMv:+= kgv/6a HDWYW.F GI]SvT縿";Kv;k9\gvxcIO]}ZǻPp,Zuod18Wڈ$MXܷ7]$d`W$5Sw~WkUqdbȎ s, ɤc$⊥+BAz_+6b'EEB 8y󳏻}T]5'v&4h>)9;Kfei)]TKG@6Gpݗv :s6;P|f57gvf^82u6J3Z`:' 9ղ_1s:Ah~NR(^bC J4t^q!o`\a7ž =vQ0V,-9__?VJA%=fb9/zI`ŴM[{_HwKDP.p]e& cqr\L0v!Q:sĞ-^ DeT|(Eo-cr``P$޷hĠE*Hi" ^=?hy5{0GzQ (c`[.!(TPkΔ~hbxr>HVkrzDM{*h'FB=tTIH5% Xu{S̈́_vw+{9ĆW`};@Gnd\nBwbz;cziZ 7,\zH J_u_uƌ+F-lGqgΒ\I)qilPcx鯍hmfĕ[TZv DYPzKrZmؒwJ,c} &y:q|zBGYS:)k}OZc&\cVē;uhQkSa( BSp6{jH[| lDVׁV7t,flH/PNC7x0Sg0hIji\z}$SSqE^iI[78fCf2 <_y(M򪤯W(9rV9,IyMTE%rze E(3EI % ?%q3 fD]1IDATX*UL26]4S-2zG ސK>-"JO8XZAZ\'G)AXzh5a]A ^ͦzT{X|0SCb `GE 2MR89JThwu}#07'#ₕm@e=X׌JZ,kKRy'E*)FF+'OY u(n/)kf٫ 3ð3TZ U'EaX^9liQ u FJ ANF@,wΠswzGZMz#t,yёGyMm2:vqŕp:9 gD J~(oê&h3_ZP<(=Cc %1 qc<xb95GGE8y͏"Pu;fl!GIElU=Yr裁F2j}A U['?BpG(_0Tʣ47#͖~VXv48*&ְ9+ud윛#];b0=f+r"! P|>;r?N+£յ LL ^+}e,>bSҋЮ" % #<|U;U=wUx<>!ᄛ/L ċVn8mu⡝CR(K=#g{E˭\E@l n>L ckjFR,8,QDM&禅᭳S#'͸Aa(V}fa=#+uB" y ]hnc!059f j2C!sBj&UtMtF 5$9=s~YO2um!hc;](Z{Qv?C5Zܷڋ~Ӓ(WχR{r䵚<r U9 y UQtB JADN k6Jh1Ƞ-1'"NfZA)AܨO0 uf~*;0|@ˉF0x}_ŎW/ڀ30/+\)žێ ċ6DR9/Nf<@8ܫu=08p O!r {q@G'EPŹHE~.W[ RM&/$#mq.j]EyhFkqd~vWcocߊ+ ΢D_C@' %]Dž|M@ׇ ukyoby<"`tZp&bI҈k(^HONcʮTba ^l ާ09}0=aq(i7zY$G3d]GTd5:`75x*/XU*ci L^5s38G[5qr>(,^?3 X߷@|Foƺ"|^+*@"*>98AbxWU U`|zA:2";k>_y$Y`k`g؄0&ã% ,HX''PuSc|DŽ wd |4= cB8_fCO&2$Z]k8UQ aѼP W/a"g)t 薈$xp\<Dp->S]@|ܶo @0[Gѱd' GS&SQ8*v# FvEYH 1dvge&.>j!V Y@F ƼAQ݀I@|o\V?ćm䏪k5h5"O7hI) 0ˎ pɎ)oIufq;D|_1xc*t,D굨iP*# (mPlB3 4 \EZÃIzC\3Y2 `5SmNH_ vj rD^ >fU^L ~b4$pxgq?1Ϩ](73F E@Ȉʾ:]%r^VUJrvhMrsFaIp~`Q~WdTK[V?awHuv~0ʖtCkٯ}[%$ٹ~<_V$ qSW`q1l_&}xno-I?g|pJH3q4J[0{QlEFG[d[g=% q cF m|cA—%xi_*mUK̈́@Vfc\b*"Y#&G)uQI ڰ: w塣 :w*/F_6H20"ONH@lgM#VL iW"{e:o2!ш&L0ѕ`3Ąoȉ#-Bu-6NS$0&!oI)a>+sb rbعϳl0\zcGdPdr>m_3&%xkWHdBkk+Q[[LdeeydL 50m%^:XǷ,̫Rn+P&)@Jq8#%(3v}}=JJJpa#hmmIh#!!'|2R1bHaaaڵ 6l@ch-I/]F#-˃ wyfz6ŤjZh#6v&M^?Iz'Q8`r9U›_Pu/,DsSdYVUHbt:`РA7v,f>~j<40{=|w(++VJ~bB"/zT`X݇ D]<^-__GxB $s3zjd7`ߗa_u;~m2]BI@Ntv0Zat\0F' 撰[E;uMǠuO'QgƔ)S766?/o؀v=䓘8aڏ #/CsS}fBʜH,riT.n㚚h>۸MMM(qy;w.zwDF_}5^ TVUJlp͂}"0`2S~>kDh/BFZrJ|l=ZD\n';|֬]k"ysoq氣 @\t43B7ǔhH/NNN|>tO= .<*:,}睈NюǾ_[ocN,@ %D8+9[.M~ii^by] G'# Ƙ1cz [W_{qJnsH4j D OP=?TP9잗,o=Ƴ= ݔ1g,Hλ'Ƀ&O`2/&~90d7bUAq+KX7#fFAOYтc H߿zN<:Ǣų.\rл+;q.(qk!t}D%g&$ޱ\e[Ö?u(<HMMu[m@܂;Y"PlTzW}x ^>3ɭ_f~[`zxB|>OjE$?ǫ%&z ހ)k QBuH?9 M ;Ԯ畠;q?KjypYgיL ΠmBZ+B D8KXpRM r FlQ YYm.dBDD8vL0Oԧw{sd" 8H>?fIݣDyY\\nm~< 2321lP1ÆE8i2kIQV ''ᶑGt~ܱ#`D N4 ǎѣ(}L }"@y]Gw@lAX~^&%sYX0Yo:nٲ?OK:'W]uN4_; B>!@ͯG/$ph?VM,}Q`L{"FL AɂE`M;^[5]{% dFScq3q8k7i}vu=лi""1G+r4zjCSR{ECCBBBc;`b{?+VE&,ǁ:s*$G% h#pL0q@… u6GCA L8]tR=06VݛxTj޽Xv-v}\Y\gc_|3=چ ģpgk k򚱻mFcg*P9JJ禇aVV$ICjoe^unTu9.u#p̞5 ̙O9pi ƴ;_ҥشyWiGox\OGcqjjb9Vg@U 5 \( ZE"` FՋAGANXӧ+oÇ+[Φv˗.[_H8 @GL @B[9Aj)GwŋЮ~е^o>L Df ]b2CCCҋ/*q_z6KDhtv]wyU}&σ3ZcܹͰ'~ܳbĉj ^~>a+rK^=1jz0BXn.^σrRTn@EEEm`xǫCsrF;{}P8P$%%ٝ9)vcԨQZ!??+Ğ}{^Sdڵ_5vL mFgXv-^Hv2E)d!%KֿQ ȋ/JƍxglaaaxqJ--bJd,z=deey&L ^f5x󭷰lr>v}d!Λ6氿=n@>-ytv4:kbOEzW_m7>W_UvJz@<0"ʫ*g{Wr?#^Ê?6 xV4!/*`V"{gqM+W‹/ܣeC"<Ǒ7݄+Ϸ){7߀v!T(CSOa ;f0qIENDB`assets/img/add-ons/emma.png000064400000057113152331132460011603 0ustar00PNG  IHDR&H{ IDATx^]U۾gwbX)EPZDTAPP;DZiL^:\bak3;6s]^{>ZMM6ZTj3: D@" vQ Z h4#.<q!A~Q!)bCAxh4h…èmlRT'=kt?CVFM`"Iƶ@-(@% *E7(8QF|m4l͘`GBBðįs$nO J英Ao@fq@" xx|MI7Q-T|4k\Ql SRPUhѨ!& gv= qmӄS8Aٮab &d/y~,q_zCE^9v^V9{Pl#4q~GO{¹H\0S9D "ZV"7Ĕ`o񄿼~O1dLܼ0oD U(r\@ }{&OeE`o C⽦osf;pA{mPNU" YƒΦu{'*ogLDɢ>ٺ93VũtHAo+R <\%;ۡScLZoBzF&"ǒIB w'}£fJX:y\el{PaOdV%F'SJE̖ś VJE|iBo {Kd+yN k~v*̓-jUIv!Kbġgy`IJx ظ8wwČ[7CUfEDq*_4k"xUV@/p-RSjMߨGfQk1q!66jkqeҚqqqS*>~ת%`t1D4l jd SDB :?L̵۴hn ݇~8۟ܿxpDEG%i8LL.NN·QHak6y{GMJfhv-OQ;:!=:&]w²\2kR@<#@\½[S1oF=?"S...Wo[w? A!j[;`^4FS'Qo5İD&Pdx, dcy%""itLűyprtzg#Z݄m89g^f}6\h90 euB'jt._6D@"-@T*۾W$lZ-<\sQ{FG[n珙RyXdM꿆eJ/gcWRM%^&#(DF JT|k{ 9MX*jUdܺgARRɐ0 ӕEi_RٌS~'ۚJSmPi0ػ[/ͭA]" țZkK@,s=FۿgÛujeh_ {1͹hqTJSV/K^0renHNo[5­?׋UD#.{Eh TP֢b㞃 fVpfhTߢ9}884 m ONSV6ûN]ie@ 7}E]Ub66|.ؽr. zj8) W Ԩ}BIQ`~?q M PQZ*V>ob5"$̙;`h43cB?aUU˗$\'@(,/T#-?}"}>/u[f5L38IP%$hD_Occ}O!Y*aJkA>z%<ſ}>{ G&,9ٓZ*ZGN4OFbyת:YI$%@T* L}andvODF |Θ?a^xm88اCW2!}"Gm[aT߮"x1~t {V/@qBJ7L`H(Zu$[􍂣p*h}VOH(:rIƵE|hiؾlV*SR)4>phkB`Rߗ[τFA K`ՙ0D.J(mgz{aڒoIO.zH_HfoO"5!NS'#:jY -eaZ2zwC{|$/]GV4:ѩMRn288av10IJ0LH@>Rxg(_H:F$9$a ݹ5ΑED*$&HEbJ'O>MIȦaemdԹI;P4+}!ւ*ߓ BѱI4<{tx~j1<|9 gd]ެXh̡ؼ /.[3kY9mC|硟pڥI!`Zͯ_NːiɥxyZ%E hY6RpڻI V&BPEklB2!w%y q`v*z @kڬO#m!_v-O@\|&ĕ-QL m/})KB|| # B ހOҌeFg%/9*@bCBDAF]P;j7yk6#/Ԛ58&V lKJ1n(6} ӗ{fD?=jw{VC2CgIBD@"Qpo<ܷ;)K&[uk[+Eѓ@-$eIG5*/Ǟ#'67yεxqfux1/ksc OGg{(y<3sWdž)^h2ֱ$[53/1B%. j-T{M&^b-ϗqJ6@V}o :8ԺMO~#9&@Tv;޺th:;:Z%{? (iy`-\.gѼjJxs MJLf..fQ=qt27%URateosQhDAL`N4:zyû^}1_GLo*r:"nl]ɧWԍgaV  4z8 vn:agMM>#" m|<<<`cP8G^nBbBép-|,Ȭic#.88X'1z =hUߙH sTv<# (Xd0jaרQUˢ})ۭ8 /Z$;(Lb%6 rY[|bУ֓TiEW!O~wn#.,L)eDϏL Vg7#yZ '(]W;'“E\sc'J2LOk|{!Om>W>o51_SB|d hbc( >nS>MIo*>OhJ.{:W#+cE96̉{rZ(QWks mGG\ҥzMߝk6B yWacӻͬZ%[4hl@E(R u/ewW6aX0i4\'a=8x7RZ#Š^VC1܅(6Pz/r븻{7j+56EDFޤ5~ܛtfm,8y/ 4+UtUɢ>صr.~>7Oii‚Pi:Ւ},rEX*::Ff 9֭Y[g>73WK V^ehݭ;ۛ!t7ck?Յ搶ipi4hbuӼ&&zd-恐 ?K-sP?49$.woGKIE'eP<`HkpƿY3Wa#4k }kì'5+|JC|v  C.a\Z暕:9I Ml4? Ч*ۣ7ܨ٥m*ڎbpBͳFf j}A{xREsCCa_N 0+x8{y ggHJ>'.KB|!!"<[(ɰ6V#?dH{ʤ_} LtWDp*{\]Z]Y; Pe&qF׹q^>P9ME>$Mr%Z jV _GJ&X, jܼCi͸/E^ l@P5N5- C1 (K2'km_D$ƌFAX[O3bd yۂ]1;}- :BFoz]YZRePӞ ʬФڙts<ǵ "2'TjT|ySJ@ iPz $@?Q_ˢߨV QypZ\+U Q(ڹZgҜ Z-.Θtf0?K$%1yppwsEn&LЈC7QV1_dȲ>גڼŠcWn,Eěk(IyEA7j!r9-P!4m5E4wݾaFFQyH!?06# -766@S(Syp> j>L9mQҭ7>>b%U=:nKB^L-]Ԥ:!.MhwytQ1ijDvnt܄xqe2HCM ?g 7Q[gƄRwkN H<9ƃ(؊++& ou(5a=E<`Fӣuu,ERN}PAnx `U/띀<٘c 0h51Poż#A#E]Uᘍap&!C>6^Idfo"o V0[Ⱗ,[V䯛߮0)) Z\[3۴Zqc.cl 2gz|-<!J2o^' Ivwp.LUG5BL^N̍Ϳ3j9ePC'lїAӕ(?q)x.LgOqm~3X붺L\޲]~<3ctső` a-tMк& z!"Bnبg|)d\wcqC B ɔ&Z-DVK@{f7w3?uGF80yC͞urFcflLpѤN0wV56fC 1,-5zCΦugP<+,]5b}}|׽=;RC?9E@Ǐ鯧 +[3yfNkFsech9"@+( ڻWefmI5~=۶Ę~͎i7tw:~`=vv'RN|[VZ=MDA鏻eO-vJ~ޮ-YFNnQ:Y_Ifתh~iY瀯S}$&5YDn"75+Sz1- `SM 0ֆaV[Jp.Ϟfvi^R!rYċMefPl,o3'g(Sv,eub W:6* > Mn-D8TLr&ƈZtwYV&E~|i:e4ܸŹW g9a?LUƙ#VM o &M͚drۓ? MشðVsa:r"p<>٤p8`0 *32ϊƦ97)5|}b5>'%}H1VE+l"sn ;Ka9wW|m4:d9_Y (`tM*)iW: oyWٍiPH(~_ {!b6cJ'A{{;QqrҢhVRE}^OI/\g;[|p&}! 7x[򰙨P[Hk44G}5l X V+H;|@8E3KM;rdVǂ8OIZM<: .V z Py+%݉ 'Bi"h p}B7sҕDR91ܢAGP裹e}"m^G]tCC 2+LSnMu]gFcKIi_Bɶ&ri4W*W9(Fz!,ga"cF 0 veC"{rfa2e'ًU*XfAm34"\ g%_6ΐ1_9%7W}) ̨3Teˉ~M_" ju%kK"tFLXքs?@*3?jr6NN"E$\&6ɹ]iYFAS}HJrJG eO_ΞW$@xxRXGLm6 |dH7U:wH4llu?,mԈ~OoSѵЇ3Otj }oːE4A_${i>Cɑ,ibCI[v|TH~c7M >4 J%x6h`XF}a|cX"j8؛bJso ƔdBE#k9T%Kٍ`V&z6=Mzti~/T6~QNf&Sj?7J$q3AB oF7 02%aDz;щӖ}1m U+ҙyG>m&S U3Im  zrVHT̶דIRH,$UɛbvݱFDc5ĥ3SUCfYDgs1|$7ԔR6)4#}# SC+f4a>:uQEKq 9E~̚Asﲅ&tMG1kj]d n-)*I0 6I%@j\Y8qBD[W-e MtQkn+,[7!e(:uQ]wB~B$@8xGJ߮4팏f!.21:#? ́@6bHz72zyzz_߂CB1ujl?l觸q]6&>rZݽr.J+":=wbDS|*)e4{T3? |X igt|K>ZtFN]~>5IH(G6>``#Z U'FK#0)KcTLy`Ņ>7H; _~6)Ɗx5}iRP@W^Ii,u/ yC%&Fu|%K'o+{v!M_ 4Te!* 'wel) ?2 (c]pJ"{6Aڼ2( вqC<{٫6cg:>+߁%^6W?%Xsf/ux}HDquVЖ}'G?c쌅B`5W'~Os`ǡc}jUߗh-]6} 3%'2Y:sԪR:Iue{VEM}>_^y_qq^n_0G1'M6Z:ِ&ZK*@lDH K"~,X0YcNjNH(>Q1?iMy" ӘɄ$.LgPT"A-5 5FVTiAbk YNlP~Ĥ ! &;^ {Oh\CN~_rDŝ@VM'~?AFu7뻏Ĺ!޶Y#L1O/. '__O S-Y,9{t2sqƸ q??eth4iznaonpj*17 ˾oT=ybE a׊99+\~jaشD4o#tkGOk7E?Q6Tl]<=+v>vc 2E'PBaPP{­\s]fy );;}RrWD&;dHQuXẏ0f60!5N7};CT8 Qݮ#Q43C3r#v0b,?꼎3@*#$-#*M=sg mY}s(],r&*gXm(E??^Ї`fbarc/a\|L#Ãl6ptQl7U~<\]\Jm9EJƃGO@MߏaXϏŻ$diN6CWkug#Y>B (&]N%O»#X68 AP#5+sgs*ա3<<)4cId_dE>ÍUҿ0CuA.8hPyKWY~A+"Ҳ+GyJX]wn3˅g#DrFTژuE ;9gVBR5*ĖwvKn 7c?ʻm YEs |9.5%6:)#Js^ši.3]XmKQOETu#F'S  ЏOeؐ`ވ0S Z]Ё\Ph=Qemj'[7MjoEB&)3)@x1rmԊdp~<\D#8XeCD  ;TPSh4B,J0 (PSgvSU*`rc~TU6{Kh XOU/QQ4h(Dؾ_4 UA1mKgɔֶI3S%`m$X\;+I8d,8:n40:Up stb0RU-`hD-Pb- CZJKH洘G|ꚾ_ MY.@0iHs. MeYӞSRoPR'u7V[Gf=cKh1 !_YbNX=#_0YZۋ鏳Û^>]& 8}"}uu|.0['3oФF(r0f2ظV/2̓Đ{Ņ,V? ͻND(mrAJǶ9gzY燝'",x#7k IwWdjFSЏmYjZh ]Fع*%{Ϟx)?1|W,6]^WF#D濒<ط 6@%:óR[-bpu\ӑqZ vi,nf%IЏ\:{~|;{ OkpinhyE3CDkTLq3/b×?W)䍞\دըic\kºrNϡl? \ĘQ11(5zrXP Jp| /]_j5k8krRhFhkGXb9l^`N.?#ܼկ;WƗsanK* &y*ɱ`];d´scF:-nbу)JuNOt(B]:lz-" {n뾘O9| xtFtO^#&;k8*$Lչj'F)6չ:7"ljcSջ?K-9+R nE_ 3PJQ@=ܾq)w6ev:@.|$}߳GJA/#aztq`le$Uʟu%Z_R ΝTSHibYOJ `?~3^ced4Gܻ'?Z/5TX0WNUDs<;lmtWG,4,2oXj~Tp,ݸ Lcmp.(XpI> ҨO^2` 8_*\OrSi 0$|o/^Z0qu gZB`dЇ 6>UjaYe:ό /GMߍ&>Ayz|W/AaԫȋEGC!PÙ[8 Ms=Vշar30xKCȋ+U*`)&.nWfLA/Ǟ#'SїdV\ D@"` bZ i5 %:iFELQP1iwg#Y~&v:-c8&A" \1_-08ӗ'Gm0ݍf֊uظ`Ry-ٛ쵙J" 0ޔ;Cqώ^RylIoU_,2&:~N#gF3qqq"3=\s" oo$P(RP|F"#{0R[oXLjX>dD/SW$ҙa+6|fnoO ;cffR3;2b:"gȯ灜`$Q4(+--ѿwG>%8ّD@"U ߉}AYaO:ODaksTnJ#s};]ekT~Јj|麮ףۍ)Y,\sc-QB$1Βy0j5ui'h -H"B>2odO@ |Q* R[ l l.4a:4n*L5"acƒqXawpVE\B<ժL ׬/ݸ%Rfo7xo}n&_α8fo&j[3WD@"7u;Ϲ$!:dgfQ&o. BsW} -uㆂ1;@"M6"NK7y팸A!ڋF#XG6D@"@rHsMSzo)9 ht PENJp)U庑N6@`A:T$ƮUmAwr(!`(\[B-bR ߓD|.΂u %3py6GSMX=MΗ=Aٹf9D@"qr/Mt.޲@Kf=Pa5g#66VE15]Kou2wkZ$깪2{[{޲;U3i|)L 9ʱ$܇@ UIY2s #%tM^0|7<2*%()*.6[˔O/ }Y6ҔZ.cQ/&pwd`V/q!,y}bć&QvǦ_Biʉf-Z'8}o5D11Je=uΙ[wcX0i4ԨS2c0~T\`<y7 @״U(|N? ]; +UIM? 3'_X:A}Mu~2r<%@8iݪԉHȆySA`N6 _=GU6jQrR'gzl{r}R}1>0lH.D@" 0@ w yCJ딦ih#IN6ҩu[<8BW*Wz$9KcoG-K=BtU*\?lNw*۹MѤ[{7>tCwךX+ةOZPx{wwkH$/)yS$ mk*F}lು=eo0xL\u'USquC^}a$/X@ no\-S$1rX0i Y>mP[G' ?D@" ȥlnLgq-R ]pVм ?MvXGJ ˄ #@i<<~I'D4qptDNGǶ/$/f\#Q_Z۪DI/ӏJU" B D[ n]DzPYFư^ś_[8ݺ[$2FDFNOEWӃI$ " D@##`.\ m*DWʔnѸ^ ˜3ex,i&GoЛSՙϙQs3VCP 6\ac 8D߼wpq/Z^]z;>V &*&DE(H07{h۴Q0mc{Ibկr"P]{8,$q!51ш~Q7}?h %N5 ΰqp,[Ϋ`.S ;{ qOCmpB䜥sG \2MYO~9g SWdQ N-w74{:iJ.]f/^CTyΐa-[ó+Pmr:drD# >.ÓCpiEg P\BO@Ĺ?3ٯS:0GgK!@j5<ƣcGv5D%BJ@7u"$'hG|6?> '"0e'wB9 RH_G6r0Z=y}*4LX}ђpkֱ7E=H 6ۏ} |)gvb//IOGEu:dFnؠd¨Yԯ򥊣HYyPxX=\uW0rת-RpdNc!M֐+_n[ EKu}M{j5 b9[Hd_̧^JJj$O!W/DZmt OޞoRTqa*UQ5h{=5wC??+6.^bj=4i4qtUuFb~rU!DL~>%aW3miso]i\CTR:E`ɇ3K-@r*bCx<ϟ5GԶ2"F<gB 资HA0HQhJi9 S R-MHK(P*V iHdXn~/ZD^GuЄell~xlot>@ŷ:N)z\>uHV"!ҿ| :cBȺ蠦A 7|UKrd)ysAv rv>I鞲>^]9[G_1*4qqy OĿlmR7Qe{-L/XrY:\JD2md}FlZ{7r.(`e hlWN?EC sA"o|T$b=CCD!ꑟ0} (;g~TBH$8/{r.Kh1 K.0I/x_=y? #lbuh.5ȓݥH qG|D##@ G|t=I]]6NNuvm|+T& Kw|HzO!eg|.]W-D@  3xg EP@V|}|z}ЯOD8=yV[#9g#:6GB>#fAAxm[8ۛ\s&jQ NYփ YX"`=J*bÆMVѬU+89N8>EPV,ƍR 7ڵ3zV;"4($@."փ(rr~7-7blloOg>=`q~(Qxk{V~h*kР!ΙmԱo5wU^ghE-p`IENDB`assets/img/add-ons/file-uploads.png000064400000025204152331132460013244 0ustar00PNG  IHDR&H{ IDATx^Tmޫ""h@B,D%b)(͞h14izbLL1Q@1JvA)" HGS{,޻- }睙L{G8Bsz D$ $FD"` @ 8F D D8"@%"DD" #l"@H@"@#$ Q""@ >@ 8F D D8"@%"DD" #l"@H@"@#$ Q""@ >@@` Pfubb|Nx& +_@!a%@B%`{Qu!hEuX%Z@BBuu~v} 01?&E 'D~H@Ƨ#t>!D@hR!m :|c c"χw9ةGDr$ʔ  RZB47EM6RKQrףmзNM? E 1!"@<& !R R[4bg;vr/͓q|7 i.GEº7Ȓ Cب B]Fu߼iحoA1'1z 6a {\P<B4zѡ+ nf<7ʇ#O^ ԇm  4\g;F x5t+~ my.B琀h#9 X94o҅nTKQgcǻ@:t2ϼ{)P!ۣ$ .{ K6؀)?!6͛,x/ cCއ(o;L@]w![|I@\Km$'gSEl[*3T(~}B񦸰n_~Nu7m3!H᜔%vm$'gSQ76l ĺ7hIh[&W"bd#Z'$v F&q Fr|4eIDo >k.Ֆ7NY-0`2FK!RʊZ@De)U@w1cg .jQ?mM fB@c_@}aI Cɝk "$;YP=cIj1SD..5mz nܘ9$ 7ح\0y$v[}Lpjdr  $ ^О! H@3th_]<4VvpnUyA_C͐Ԭ$ A{! Ka݃fe ,m O'6j[|WZlJ[uk1(jZًvMbY$ Z`>Z߀& Μ2G6\A3vֈy=6O2׆TP΂A'q̓$$ @<4>0&Tb>EL0Ed봱$X;CC٘zʗ|I@`%q̓$$ @wElt+ցژ1ah&\<+0o#kkWL8$ y\$}LZ $67o㌈s"sw+;؋}ٍE8A fs{? Z VyT.9k"y8%~B= h$!b|N? 3ÙV^ɻGY Oy, h$!b6Q#6샼98R-SY$ v{QΏ5BkH@q"qɶCEP 7>z##{7Cճ|N_pY }iH@@@3LA v_(K94עJoo$ >}'+-d M٘n/\\'Wš)ufK,eb*RϫyߒK!Tk˔~9߅u뭼$ 6Y$ @- Jὕ{{xj0Qxxu/lT]D*PoYm3$ 5QckI@qJ !styƗ2hkwYoBӜ&ONc(B=Mx$ ΛJ>!B{8oJI_~GĆ-8o*C]7./% q)!bQ'ģ{{my;PJ"P4:Hl{t-:8l&CC٨^M"PׇVP]kMР"}MbhKK<[h;@6wKGS_%Ɏ~e [ف2b ӧBZ S〡ʗ`|>Ux~dSJ'@_|g[7 i0\jm:j |S. ׀K R2C+0l`W+kZUA=9,I@hi`(μVg?ci?_~}.N<[V 3ԏ }ic|!R=ơ'%Uzˍ|>c+]q?!%'v?6|5,W6"i^ep[>½_Բ'ތ1c ϼjrb#oRN) ]b {t@Hkkގ@竀7c!RGP5 ҅!~q8~–؝ ɚ&>v}qrF2(j :]uZX*_*#ɐ)шC BKoC@tP1g 4&SښWIP+oF2=',"7 eK .%[gƷ*3("o@rKedd|nuk$ 2 i]<9k^$q/߫>bw2% Օl_|,z) h UBq҄z>[mɏtRG|K:(~}K̕3t.O%ꌡ]Ӈ@>@y=ΕyBߒ㧀AoVYu9*Q)]I5w1d9KyC0g_Z@xMӠ.~PkSA] P=JN-0R%wmp',ϾrHBDY$=Ϥu}6ߴ.vS@"AjoKe2?mEoD#;!yJGjO49[K\!wn͚&!ϼ5u~~TV+Iv[Cjxaʴbs>Yki9uQ2Oby.؋=n/akj^lq7g i7# %!6riч<0>_ u zw 7ofW 5:]3 FbJ:)K~Ii/Xyw@:Jyz#zqh*,C6VP<{B퇘!:iP+lkKHmv~Eo]A>2@$ۿy:d"=1QWmRX-b\7> Dz.eZe?繀pR\~^_ߵʌIyGςavb/]+o/؁~1s猁A@ɽx:Wu}H@u3}]ӳ5@*6N@"ޅԤcjI1V qPھ ϸƮ9PbD4{Q%>(zˮ&(o^s(/V v:o_C_%tcw"`C߾dMYvCB })Jʒz Gw@Y$q) B!;To~ H鐚_^nmi %:lZMRIc[n}:UIg3jgeĆm0yrC-cfӳ}I~ b#?ux93 _@0v$0̀P%bòGU; uǡ-RrB]Pǁ"kAvK@VB4eC*L?u$_7R]qg DMtAq&E| eش"! 6ٚ{aFP=uȓDnx R!Ft/]t{JD@ { vKS,;u% Wp yUɣ˟DږYPݗ ș!PCHnDk6S 'mU v\!m$ ٛD]4QB]I5.MvB]45LCS4 6j2OZP舵k4H:%}3RoA[|@D h~d] H )#(`'>ıFՃ:4Ն \ 0R)\I@2!>g?.HDJsހ-#҇νuKM⅀{yyI@½2oۿ4s+iFm2YݱB(o21[O[ݡbBv\,Uw1NZg=t7M[!6vE֏L9孀dzKRW=me҅C2^h~'hk_D@xco)M;)غ~MaI@M mo2-pk.9{W6{ۿ ("RCV7 1υzNsQ8ԍ#[÷9筀 %wэE~*%t!5ʍws-v/_"ͻ);RR5Ć.P#M3#@j%rZ^W_ߙZm fMhUwy*0\,-.O~0[@x$w"r<~+*{B50= ;@2>`ǷI&4ACp#eOۈA;K[mxK曀( Q)@={y>ckz^v#TVo[{s$WW?u)?q^h佀pn?E҇\1Ù/|8m@N*ћ?y O:5>ر4U0$e8سQ(󟀾yl>%urԕB[k? _8ݒ/J |$ giV!>7P 1>Bsly\`Dz%<}lehJ@L3z:j m|~ &绵B4Mxc{ O"r󌔗Lg(zgͿz! Ow?1k7"F"晠#f1\D;SND!7C k/H#H_.B0k㻭uo E' 5~6g*Q׽}(#S2b{*^}\&gJlxp" 0myLlD@j43N㕣*(cD.XuŎOi6Gj횣z17z89-|94*,Xɒu jO'~ 9z6C>ŗFKsPҽq#7s_QXC5R8+)_V*N.XYBƈݶBVEg߮ZEs_ _}O5UF-\V3 Eu%!y92P>#~ݣ"fsQUy=?u3P?mŃ'  09R;ε/r,I^ T"@<#`HNr#ȳ#uPmy'@~foВc"@ׅj Wu3c (~cڂYH$$ EYzD 0Evvk/{78P uɯ`YႛJUe"~nDW npׇ! B;W|wPW<w% U{߻e@-b u Bu-6iOa,#B#(XO9RrH'3T~7]!u bu gZ 0vM*;\H@"["@rCJ{( Uo[i0,I*䴫QDxBL#-hQHشn w݋`]vl'VvNF6'="3X3wAb6yd`]X";u(;>>;vt.^aNv]I@r)c"@|!`h]j.! Ř0+|E=he vJA D!"lT D $ AP< EHD H)"@@ )F*"@ @eʃ"PH@QJD A D!"lT D $ AP< EHD H)"@@ )F*"@ @eʃ"PH@QJD A D!"lT D 'W [IENDB`assets/img/add-ons/agency-membership.png000064400000035744152331132460014271 0ustar00PNG  IHDR&H{ IDATx^]TE{rL" IDD0'1((5"(9袈a]W캺ŴOT$@$Mdr3=} ~}IW8WMU'e=\`FЉ D'b\`F/F`C0+1#0`F0!ظ#0F`C0+1#0`F0!ظ#0F`C0+1#0`F0!ظ#0F`C0+1#0`F0!ظ#0F`C0+1#0`F0!ظ#0@jnќ0c\p8p$ v #JI#2҉xHmeGT~YDjd :.J0f- 6)uUU\8ޭb6D$ UUpXDJ=jeGDZhaԋXbXlT\hxB@_Yv^cxCtGG-XTWmvprj [n }נ=rT).4ww\ik,GoܜpղKV 9."m_4mmSqehpVį{4b}ں5e6#O.!I 9X2?KsJsE՗[ Vgitqt-WIlzЉL!2߱-omLFq:)Gvg" D`٢,hx'X*{vb4ѭp]Dk6y9{mbMlKW+{UW@qE dX<_7ajAZM GZ.A\ٛU%` dM_6'"EP]m>'O $SR-Z$:څr.n 22^4$!G ϯMǶ-lŽ;%+#rj {Yf;X$=ӻ9ɆEUYJuQ~Vy0ຌ@#RBӧ5 ʂ9':S/ZXU)ۊSTs+ _Qn;ct]QȸX6͠48Pu#%t]^`s<{ILru{>:??v?" *o UeI ꢆsԛ/QM~q"}K@2f\ :,B d(,[(t3/T.CL+@nW,Qo(, G^5ޣYս|6G!o% E;tX%&ܨΛu~RRh@nJJ$s_^XҶ!iե[m "@KA dTWRR;!icGoCN7o0 -d+ bޢcO%r{%Wo\& :pJtʮVF뷼<diފdIu5}n.22~=e3 !mQV0CϨ{o'ӏUo*+VUI4C*~Y혳0 5!:AwdlxT)zhUoY%9ہ&HT5PaJ 'y!NKzoʟD*Fc2uU35Ƒp텲ISJg#!'B FԹ" |ȪGgw,{S ͕PF $gUԇڢLd+&ĄzPCv{|C0g7+!u[̔TKI76]m0.U(l=F1hrtt).)ENJkiRDWF >ܮ [T7&S;Ʋ. Uq*A 8_Jw WhF49?J`I4}6(,P'gW[ac4l?uۙjY>&'eZe{].|pJ0QĺڃSXT>&d4].DPl/;bN#G)O+C=PVay@i\"DJYuՔX4)P:Gc{A9CJk ;I ܁@(gWZ4V]{'~+ _Ȋ%qcp ԣ~(sڪk+ƈ몱62ihRI]qbdyD6!m".W_?MkԈ Bs<*M3KmD+k Ġ0J Vtj7&- &#mU@A7٢YSzl1/>?ǛSxS#G s8GyC2%|.i-&#x{G}ii̜6|' ~g@,zl@-x8l9eM:ٕ@4a'MB e9Mܬy˺T|Y6>rѳ9xV8zX=%@hctȗ#j՗[ߪܩU{QQ8>9FAf1믒i 4 Poj6 s/(ÕcUǢYB oԸr\k-,oayb@]3F(.#xaI?Hۖ$D %srɨr]0% 1"Ҹ̉@űbiR?9FI 6O Le}sD ^AR#3 eN@KoqPqJdQMhRO˧"h|H@s둭!n jBsBq:ybOŗ瞺L F:-F'_MN6w 6ijGTe*ҊE LxI&69OP{ 9''=ό_oI4*c?.P{4lQ;GѣOELl`:uڰ5Ro"QQ.qf%+ٗ ؊,_LE yL[kuʶ=cB?hTٱ=ϭIwH%` n=D@4̸ @sϤc6N,y䨮)ftbԇUct 4E=z>qPΪӆVˊ5vK %׵D ă="SA.v wu;nдd@Epٖ@ȑњxFG;a,'-ad·T~xBNgESѭ{p۾E|vs3i ݤZ;1#;bhTWY $mwާ AEWScAA~f B1.(J !0#`&qF` W#0!@ ƕFy\.2,c@rEוӝ]Mp9B$$8Ck RC+tZ^[{sc+(GR5%8$-ȴ#K zB|Sv()A 9Չ ᅴC;ڴ!9Ł]kкU3@EE._oCA~A5R~*W)a׳w59?pȥcV*wRG.ϣTNn2SR6'&9/.J Z._9Κ@[Հ2_P>F dO{XqT/PJvIعT6#ŕڔ>\ ީ='הsHnO >P; KLGfwvFT-)LQ1+է&{ؕi1r-F:4gB@Er^ѣX0K"G@oߞXyt 1Q1=.%3*1afќ m̸bu|fhZ*!G Ta-x. ?J@:w#ĵ:ԠCڀ;-2{X< ?* P.)waqoO>I81hwSSRaps1>ٔ"UWO:b)<=z.ʫWQmdִ6$UbJ ]{mˍ%$u}]?F"By|oظh1&Amջ) ^\mD*ole ÃkRZ~K71I?QK箵pD'~m:ۊ0[RږE|&﷓DyÅwmW"c.|9ɟE6?PB Vk%t&&2"`mL!9%\<*;cji{%J7_Im.,y$ɵ^h)@@\eRjo^Iŷ_?h%N.np.JBqK"`vѥB^< rDy߇ eahr?6)gSRor>RlCB7(;Xqn t3ط'`BS['k@N;W_uo͍@wa+q 9E;Մ.  бc-)8|Q2>y؋n`;VqsG,}Z;#3Kk+K*K&xο^XB?D ~t w(F"Bv>nU nM:~U\11D "3$=9*=Es^9Ƒ;.Ļo"-yicNJ; |)#4Sn0n4gWBY %L;)D~.J ή;p 19Ϭ hhjB@G뱠?=iS3ί@z ZۮiRcXHVa4b>aUO''/o$~jU+Z)}@W:*Q`BH.!A u ׌/zo%I"w"/zyȗ,k/W궓:\Y{ DD^*C9 sR75mb1N駞N<֯MsDT9?m뼿+yX;cB!Oe`/^-|Vn-4L RX9Ʌ5#뚪¢( Z#W]E p% DvLo:diUt.O@x(ș_uq^q4w uWd+_?FK6N?bAS"rm4ĤQ"qF ʯٍ_g&x=1?WNq} Uf.rݝ?-JKu?u>_TczaNΘv{n'( :Fju%קğ24mxm:Tx}@h ɮjE dD+ho\d =x XQD8M%Y8?0PWטb[0wFZ4>sP𯹮#$Nrs"d~` B?P2!C %!$݈@̾Tcvٝmzf@Ś']`@hzz5t3PXIAJ4fMuMʤ8 7V][ v" R3ر-0yUM(NQBXm?r\96(K(%u|2ArJh$R$ۊUGAoӧtJHt➩hΊ#GԪt[oT;Ue)DVdE+D olHW_FUOVj@. j QS鍺]RbJ˶%$;1A2#Rrp/. w\zG(V=}.kBz y|[ 1Q Ҟ [d RBK Rx(^<א2ab kjQsU둜"xsֹ3.0?u.@s-_"h~W@l+NQUoi 10- &6<F` &FaF!f0@#!H@s7#4@ZڌxFAr$Uw.:r޺ 11z?&qyF`BJo?r:-pj_ ܯ}v;e1A2@Yk,Ϗ͍DIIJQ^ʊpXTpbq"*.$%ّ@r2=`=ҖiCTJ_z^omk,JOM.nFJqŁqej5@q#PJh%w{'[:ںw+?yZϞqdvcEҵ%8x oJĞ]ٔ!Xu~VPOcE1' +߽+&J'[9يlNfAGDG;ѡXՈ8b%DSQ?Lt6膛0d+Ҟ@[aZ=?IĮѨ Q{% *Xө&1թf8ƹWm;﫢-bRqHl|5Fdi,˨Ș>wQt1HKZa<F ?Dl96[VB%yDvǺ3=m$"҅p%eʪ}9«/"77"!h9zl 9\7LL ! @@}~RB"C#C$,Ҥe,D}8Rîfʤ-q>9%s$-Ɇi3ܪF IDATA^ĸ<#8r8olH?tH^QI@)Kkw^x]Y1bnڷ0\*~5SOmƜa9hۇ0 iw{uQTNO6%Į5e$; p]ۯ;#Ը#Ќؽ+onHu҉V&O_c/&slʖ0#׌/FHhn֭IñyUX gG.EgbZPAnb; Y*cې5$DHT!,ik 7IMgvCQdۜDژł3FcbCv?zE4s#`hw_KDHo4УW I @๵iuoC&RF"۩U R $X>#"Pl`[W"V,~ lDFpEeҲOj};W8]\zO&߀Js^) Dteq9F (. %q=ro>e>Ҩ1b% !zSQ*wCGZ[/ᠹ B䃻〄hqMEgVaY\-(WRqɢjӧܛ˓Q=]Ms: pƍ~7V~D䣽ґCHqaۍVcr?*8~'QtGe\l,8w"6}d$|ݴ%@pkJ?Aԝ|TR94f#{; o@uxl|5%STi($UP 50ha!П)ʜJhVg\\h@ڧa7˲ .y lVZC4%B}zIE!kEÈ{0HŴMnЉ@~n[05o^B~)>$ fCT]1,~TkMI R:2iF@/<"; r6cRl:b UHt^BxF4P3xk^6ͻjsih^*c=qQF,YZOO[IJկA#7IGAQx'U'®!u -_UQ~<+9E_|I0zxZJǕMU ס$0PLi 5!yu}Y-_Ek:)W<ʼn58_5:w"%@u 8|( ?k7:Z9C'}O!߾E0LpZH*?N>aHqKkتD,r#=BNVtV.lHϰ!1 Jm/*^@9&qEF@?6ry&tUпG۪FAqsv lE6CrM[T]l$.UD6tbE5HO#!]T&r V>(фP3ko? @zjIOF,"B]jгw5ؑ@tLÑ쁆xqQpW'4GɕK1WiAw?QmР«7=rjΆL;WwkpDsAġ"U<(0i5_iGamgCUէiiv;Letޘ@"|qy3YG {{\(9 *2-"Y6 )&Ɖ>}0hpwcfL fm12cLTTm.#iٷO(E X )W`dJXS:\)ɑ@S1JkoG\Cdi,WI"2 D&$wP9yqDNYgUnEfoZR<v?Kkp׽͊4|/ѿf pH.-|B*drջ @|98WGiN\?@N,ȩ;.D-^&Л @a ֤1 FlFhy87X~*`F|ICG+&2Ը# nFT1OilZ2i.I` &1h Arow*C6e%&Dniؽ3FxJVoA7f"nzm#)jjv)$s l!L zW>gsm+?ߕtl`R}.覦$U+o?m4?ץb-o%s6p7wob&6}SUP,HO X6 ۶Jnb"Y+y;9ߵt\\8RS⑘Ą4"2҉pDEFa[p:]8Pc Guu1JJ PRRR5&o- TP= bWVVdt6J;L 3wr"!e{PS`#+  " >ͧ% +-:tHC>CVHIrCdD"~NVk5V+j+PXxEE8p`/99%AIM(aaao#UQ.29/Y&7#m0A0*F>$ѫ0(N-7a8lHINB8mpt :tGRR<Rag1٬(.)DIqڵwC~A*p/QT$MZ I[U,]sPx "Ap6:b!uaGTd$v= SCHIMCX4\NlV;z lنm۷.g EL?C\IV^&-JR h\PBbsҳӐ8FbBλ={FZz:""$Ә*+K_ǁyDњ"aY[o;6^&7wb#iسk<7eҊPK!318/FzEjm !8Ue8t7l)[>ZpQ A"7^}q׽!fiB6c,luz(* # p ZMmڹF_6C@fV#5:%س'e.T8F]2nA9)+fT "-X $䧈l.|YX[oݎp>W^1=zAD$"42d79zd?6mzS/Fx<"=$c3gWP3Udҗ~ӫT=jF[EР\VN᫯7aoȑ2Xz:̓\Vd%Պ,L ze DzEYU"BP׾f pHJث`ːs&@YY!ڼ ǎ#""{irbxxo!<i+KqȲW& 򋭰rHdǥ"w!`٨ @2Lvg~Ҫrz%n94Jg ~깅'Vfߢ(ϱ̝PՄς`ӫѹK&F`_`ƬDY™y;Y1mfh&Vd1{Eq{' 6 r0dh:S `;a@:vL1?m`sD]PL4b i>a,TVMX\ FD8uر;h 7Un?k^TUU!==CJ^l?5>+Qg :ӧ~lNzJ<~̸#F 7'KdI*STV^`DKBX]sR.^׿PT\\ o"#"0x L|/ڶkl7!Q??/O?4;z0nXf"#yXaa]GǮiSQɌyh rS5ci>eU)ⅳ0̋LfbʕLjz QӅĄ쭊1klϠ,7wz4Io'ɥX]^N,&ZoG`}*Mhz%99/>S%ԑBVƛoT$}dfe]-:~w5 2}ґ#1iPZ ܜC[PS#ʜԒdzĐVӷ*H)ͯb> [bzo2C߷$KEuOJO䶟i y)]ʰCdRS6VS |T9t:Xx11\b.L7uP_.C7a{\ ĄM|U<^{%0 jNFp:p]7b̘aʽkr`oo~ݷw}9JЩc<:SR+/_}WYavYy@ss_- ͟' >QX_dk==q{uC's:sgn$U?WN{  Z~0łȕvRzL A/nDE@.I-!t\ðI[QTrB|4m.5*h9_~9#JGlgq1x@j+1:aO:Ԑ pҠm|iTO?Jo@d7g$ra.xgu/).ƘkH ׎msraÆװvsnʾ+I+/Ӕ 9ꏙѨtVB2%XIENDB`assets/img/add-ons/insightly-crm.png000064400000053606152331132460013460 0ustar00PNG  IHDR&H{ IDATx^ Uǿה22g_"A*D2ERAS%?3d.cn{>﹧{]{ߵz[Vɓ# q䘿ssss  ~#xxxx$ oρD$M^=9999^$bssss <<<<q Dl7yxxxx@"xm&/@H/@99998H"<<<<{ssss I6 ~xxxx$ oρD$M^=9999^$bs 9Z҆H[ב6%TMiOer>ZHU7+mRS[ӷ?oW8PTc[AivK'\!4FH[$~TO^\K!I6@9Pe#k}F*k^Nh騎 =`2=WK$ sU#uκ6wH*>Eza+Uocew{4\mb^2PMCUƛO˛KdO.;aw2K1Z^(1\"]qI0sxsVzlXM:Ajt ӾBsՇkTjjU^yT bo*.ur+/yTxRd 7BwVo_y>w? }H}%& 7qH6et5&&Yn4^ -Y,o"}],q 4)+ժ#U)[ZI z8tϑ6"}^v_[]OjS:FUIo>iIN7V 42Y@% Rͥmc:Kh@hVk"~4&å/OBa.M•B^]Kn svޯ1\)l'L'\,1BZۜKti_n)@^WpҮ&Wkϒ>y++LTr,&dN'5*߯t [&i-ҍX Ppܹnxr͗d8P£Q;̫MdkN7IS.,XK"KxHKj?;q qvk ]rw Y4)ͨS}qr 4C[I]' >~Ф iRGcwh .]b,o?J -@H| JO;C^4x-wp߫sYۇIw83xTLWJWv:k\C%>\WZ4 wV MkJKͺH[-ۤ?67I K76RZ OvO(\t+]HrWhJJ}ʟK7u7mC(1 4YY@ X{B1amE9e6T]åK2t"4wHFzޱwٔ$k zI޷Kt{K BmG+B݅mټ[o=RX Yp6wC+~RQa7)t𡃮:I6؇ov')6]}|w/KrstDX !Tk5#@vG+ ;I{yQtiѱBf 4̓ 6zReMKCw\ޕ.?V‚ĝ٢yn_WgG`&J|/ik;>gK̪˴No++QqnM`.!uٲL[Ou$N> mO ąa} ײzm #Ld|in5.u F^ ns)qI``+ 憻Հn/͹*)Xf-]sa&V#;?Α72^y^GHH;B%p&tn`Zh~}u]J͑t;J?жjۑL%yғ9B#ѝ v3Mwvt tBNgyZc<܃A%?_c U!8jJfTsr,C?~|"`VzΐjVB FL Kޥv&+͵(W<{Ds*_C{\=oG 1 (Jʨrv񫟞-lQga˳(tDQhMpC[*M@Zp[љ޽6{Hjmw?,}Mp_eTBN{R5*gI7]l=>/ "x<}8bE$B9;Z!5 ׽^K3wKwG:$Qus$C}:t4e~#@XPڇ^8.]+UY98(#iߣP Wm(N*͓&K%fk sv[C5lcRix&8ڛOIWev,sr .קqM(W5in;o|!mMDє  L% ~]&lZ;aCnt~G3Guf9;.Pk*!zGsIu3 ~!/c鑉&&݉(Jq IM8Ҷ, a{ L7BV["nGK3hz ot l dTyk2 B.ARɰ+I|Ry6&Tb K%d !Ȥo%HiQ\ ˍGHT3E76I7[yÒ2khX5b UYĀE q# ,u'Σ& 5Y],7UN1| ^0vyNGlPMڦ TjG#@&k]T#D 0( E҃ð :ϱU6s4K7O;E-:)n!M%"^뤋&K&@c\3Q͋ >^ ZLcOn%Ɉ0'a$(uĕ+^ܤlFvK:eSsX4>|g>};vމQHo%⒩RSLletuÅe8u x2d魧ncY9Ka?{6>{[za*MIe,SyU~ 6>M:e鿑Dhہh 7)iĩM05_¢߼zΔCčmixE$c }>g=Cc݇{@]?7lo>6((Y{c vvo'zn{nwpKQkn!N9`oU+Y+Rͯ/UA[>_ye:OG'A|.`IGEo>%LԬ+f;$-.4\E esS΅t{lt5&ͳIӤ7<{V/q-ymCZ<OKwV:‰Ẇx{J*c¼~3}HG\}h#N3-QG/p%*wk]<RS!]HOGQlXd^5;0ġaMg njF߻Z; <.O ,'H^-q6BI͆otܩQ$4{4ʨͻk*CpG$N &'T{¨t6)P8ǡ%v|waJh f2j@t$s(dHq9!"s| .L3G"Yd$i]JDT mXXuji~xy4fw!ך$h _ֶ$.D uf!86;FjSi-5+1+hnM#|_žD Qqa6z}A%EH; 5L/jZRZTkVp 9A:uqRr 4yZtrPTʦ8JTlڻ8CZY`B^k|Qq8dOc4ڌ o>5E`ErS臶 =(p&v}θP8t{0ͤn!X(I$0ít8~Alv/x Vcp=tD#!'YFѰ%Mc-m@郍q A:BQ_UjGj~A2j]&]" ZX }Oΐ;OkyPToRvxX͓..*Ӎ|IF+}(MVH h>äDhnL_3f%VGG( <,bZƵ et#pţ. @(_1/VYKo5Cpu g |fk]<`Fqb% V yW6% Ow5(j 5&^.TM0I}6js5Ad+PV}$}2k5UR] bL" ^uaUΗDL㒪̷NL$Orسb;/;h3mpi_zHKhi ]/?n+k&Rj0L1ޟ yְ}ԏā 盚*W8V:iK@E1,M- aa]4tcsI p^ZltvYSYC $șW{R߇,'D "[$?Bt$|aŇLv]"{ ڡtAZnXSq(d sDK^}TLIE<.$m]n܅ Lc-x.'hcCh #bLX 5k x;sTͬA˧nhh?Wiѳq7 Ċ"4:S ǯsq&PnC9>:mͦgls$ HB"#oƖX g1l%+9WZs6Q˞!ꥇ1dF]Ս;yXQWjG/B_e`G+9l&v6ĥ)9^6Iڤ=kD@L;d›7+q\}hB4GQCl40[Bx1TF5&4M4n aB8\@~tI:43S%!ƒDx-2]Gj0&qj3#Ԕ8nKBhmJtM`|ۊ"#ڻ&XGKXL0Ѷ?baZK}gbuq& vC1#-Dܣ9nc2.(2KHupH>5.Q$̆ SL8"[`78h`tH&*[Bk=)cqw%qkм45i!}-'nKvmlfl_HUPJ<(R/sI7ܡ)QBẢҿ6\07V'}n ޷4i[sq?D$f8]Q>1_ Xl\Xd9 Idzs{2>Gw-`7-]bǧJDk\k]dIuLc- ]OMì<' \E.yO o4{]ry>=_kzviBWF zA=m@C:y7Knv޸jlX"qġG&\ĸq]`q*|uƲq!'n[}8c͜R SzTp\$Eܱn N:7-\S_53e4۳沟~ig)07pB0nt<4;{jwZb )iRh Z A+y>4}㴥BA6|yFǤsi!AL=xc?8Qq$ma2F,jb"j%FhTWS8.UzUM< :"ԐвCnЅk2]ΖMowBⰏHi& +iL^oqЃdakJИnN%`B=SΕ^񟷿\ڴ}VPA~&hyǸdPs ?n-i,.-ASz&4ONh\}Z( 4.{I8H0#L [9>mP7n"KA@%>ȏ@cݹXA+Q^p9,^\z#3EAIH(@("CgyJ'm#pCƷ . \}aauPRT/\P|#K?6b,O U4>B HLt[@=ȶ m,s!$8}KL4b AI.Ixs钩nM.VeOM2o'@1mx/@\V^K w ٠fvx.K#tk8EpxXp#c8$p{A!jִ]KP6*D.2>v!ۆ~d˸ˊcK̈́!Ƣ; zjzmI(Qn&k&XqAtb>Ķ\Zyw`WFISʥ'zpO7i.7xE̾ŵF)(H/J'Rm]W/ ]ظ| al%L*"m)@mm@l5ǐgTS՝6tNA[Z.uCG3%Η*A5~O9.: Sx'2^io7.-TSZ[|$5UK$sNl2,B'cBU[ pd[8@ ;1ҳbr.6y%*@hL&Kz-4,x- QC,£+7~}r H%< 74^.Gb?~@2#4=*ܩu٬`chA'(q_4EylPcS$ _vO8P-5l< Pv0{UkK80Zp!G',ZtT'nt1B*X\;WT͕hB(?I=jN"t?V`">xY7_HZ'0]ΒIU:LeSC o:-Xw8c*9+nlrRc[ntXY .|jsaU= h-|{핊n[y?S_`pF7*.̮܂>כuq)PDQ@~3]܆=.m2 5k1f^6V]ۀ~*)usߕs1.*Y$lc4Z-\:.YWLl.:[#X^diJk[Eؒ80)Q" gl)t)$.ŖJh`Aq8AmǥmL., uEgD%zJt"$ 8' QVC=!Nm/3t^bXNOL/g#JtCceJ т]ꇈCp}~OBйP뛈v5cړ]PiExۃa 7)TVž6'^fpl9WJ(hX 3(f,B 6?Omy I*J5wF.0}X\h邱``j6.#!bQ̊% Bq-2ob5Fg̛ xop6j҃ УI0}LKL}WqUcmɮP;9;SpPt+nnl0X-5x>E̦#qR/p 䊴NBA%AH} s -ϸG,64n,&@x,}6JTuSQI|b&E(3`΁8iE8.@ V7 {zЎq1RYaz#HS%u}IYbyOu{i45Kްɬ˳5 gJ;s$֞lC, b0c=},q&2H%vp`sUwiR}BM/V٥M@BA0}ZD}>G+2(fln>2@Y(? !Cc(D0pF]~TG:A &['|"̗ly&GEIȁ#r@q!s0fTbn9ƅG63E%=C+k8aLo$e4dd#dqK;ni7cVa/8"c͙jtu8bi $i($h:F]'[s{.Q&zZ\[,8` 5&}76-8Ti f%x!sBg&ﵦ'Ƃ[/ŎAtcXXSlR;t-`?5qŧ-2$Q*T]l2,t`FI0'-f7. kK[lm@ W \)\..x'+Wk)IVxz q_LI&Ą51l<M&aUVf9#Hޤ& fs)pDhdc>s8V35%z 8 hrEH!O[>p4*kRG@fT('M-)`a;hKӞ? IjiG볈KqF9>L~9X!.`6L\/?yT4~wJ5]U&ݒgHHhXq ==q-q]`Ͼ񾱙tvB(L^q<@ ' nێ6kfN\ksM(]. y%S<5-@ȰzNWl-*7ml3[p@'0 I%dRpp-*#-Nk2~\=A2H+zL@}x48hǭO&ڛbF<@44nQ!% A&I[l%LJ]c23K.9(JU׊. [:@9ڡ订$7_Iޤtۻqg{"MeU7l6yZ'J}' ORXWC(LsW:;Uthδ;p&{hIx!SP&"(+w_e )$4@hC=}t)K7^c,qF*`G1eUh)jiv}94\ N,&#qPHBd=$DrsG[ !1TŽLpӦ{J U ga$UWΗ & '`_|@LTAN~ x\\1RhT{Bxz:d^34d2:i;k03-S?me@6|̽4 ۘJlwȴ̑bFc?;b̠w#g7x%5XB1kX|@g7: I\f25E- @JJI{rQRzjAޗ 5d$W`Ub%-)ʖ{* ϡUH2a T:-PiQ@g9dxJ5IDAT^%|3CN'Y~R u ids 5ARPBRx}gL#{s !yNh.8 y ogқ,ޡ==ҏ0Caш?}Kza=AAYf̓w !S s&3~ÕlzH`F""0@}ey4|ܷXkn5@=&=;d;'q9 ~8I𛢻B =q`uDzڧ{/֜:(MR*p/ 48?\(={3=$s]쁠0pJnq| Q,h fR雏$@ mf%:I?nb4>(ReygM;ij*ATsȄ@I AYX pg-UZd@{ź Q8ZyCQ X{%FڈZ2=4+E'0(|n^Β9iW +,-O,.ڰ&8hq`SAϷPs;^((0~¸{iw k (yǟ셯%eͺ_8͚b 2>)`(TΨ„ Pv&}9 0e?nsqa&9>*B`$42yn>,46,ԒbeP+|"!}6V ;p9B|*#L'>< P =VX.x! '<$O2kZ%ǽqrip@#ŵ PA[?A<)bpUqwѠa`uDץAp*g3 hUmw7Ň{"2­ k3b˂a $7=H72 v ltK \hZfa p%>xAaN(k[3p]ܶ$ঢ}-1l@lt$)y _+V}ti&- S>+q.k|ǽ =Jl %+<%/@takr*rGӌ Te:Z爓*d;dSjMڻ:]i(0Śt D<3ӅEZ6TfTN_&ŕ"R>!${Z3'd0Uv6įjOna`R,Lp?-MS$OҾ%) ^]nz_1R6mNm[R6)P{">vW7-,I˦z`;]5)t!WŘH.j}%8kۼ}>t]}^9Q4W@w}`@Sn9@hLm_GyOF.06ľ‚sz<2/@Yr?7.3G0CwP3ToiJTi) ˲ YٓuPʄ9\Vq0x`kPXm4]^_E_ )(0Y5njձ|Ut)s[FM)7ԶԺ]iSYRI#XbIG2XnyH^VWb[Ү ŲoCɄ|9k o+@|@r J]>x532l_ {frx \i! h_%U^@!60_(HB 3K~JI$]Dz3N?.S`uiFٝm.NwȎA`̺@t#O?m {*{co8*px]pn"!w({a#GVII*|bi!`)Z2R@Kג6[J %,,6{,Y.~I^_.K!cciPA!i}չN @d6d3=ހPz*[&6ɤS{K(=cC}gS]nٺy~9 E!s 7K=PUKͪ[Jv~7}-#+ͩ[)(e}~]sT% )ʖx x ?dZYQԲtU+ˆpF<%/@ VHf,^*{#ӾٴtRmC3]\ߗH4k>7K>CMA3@:6hݡgdEqfҮ_פm$\6eT{ T'Jyˎ{!i\53 *!/ev!+uݤOy]ҩ/K}lISw̾@K66&6q؉ aq׸3MoIDsƚNb ݖeAD @&}b`3xjII~RwuNC/k(i}QvՐ& 5?,?Hߒ-O@HANpoNn}Tsdk0_Kw^z($.IN2(QnSlkpr=d݌2H,/]{Ch>@Xk:yLF.y gyZo4i;VFHv^"~.;1}OE}r,{ rGOMt҄ }Uv:`tC9BxrA o,[S]9:#@yD뤗.g uҵ[T>刅B2K7/gڦ$ġϡG٨ɶr6f$3$kuirS/ $mIݥ؄o|My-@f,ẓ =)P <ߔ^"̷-VGѝ5 i]XGdw=:[Pkq= l%.4j*!1;BS-}uiAC!u|$=ҿ6ե MP>wJZ3U1hro'uV^#Gx|tc7t%R (*nvt,Xo=ZӫBGJ'T\jbMf 6M<9ltrUw>%W+!uҨWʐclUM lS:zRl\QTH=WKcY%Lj y ]KUcb}>Xjަ4ҠiԾ[OV*JNJ[n]M}tkzǚ[ӡ0ۄdf0vf]ƫӿeeLsF{H_Wq7d2ܗ+1g"¥5r?G4j8< 54?I"^K]@OVldL$ӽ{8[OILR^WJM^q]I9o9P꼅mkb 9t+Db#L0"ŗfړ.zFZ7sʺ=e@(mVKɴ?D ?z=o0 /%tzJגWhU!R{ށI55yKB◥)# ubrTXN7&T|?IVuAtό`XadX,t dP1l:5X[n)]CjtH iu$lgLY\ƹ Z(1(7@H/-5(cҤH=be@<"t\B"Czu2ztX999Pa%;/QժUSvԡC>{*륗^ĉ5w\g!3:.M!o990drSu6mڨ:ek|W:u&L%KJ<]x:5yŁ !@A}Fԯ_?5iD#ZhQ̂YJl,P>}湰bρ( 3UXXN}={ٞ8ꫯ>ǫ:_y #˥ȂfґGxxx́r/@@zAt)#D?6l%@=L$+iʕ+cvw3cS\H/I999`8P>q #F(Xue8sL~i~DNf}w^h&_999ρP>XIENDB`assets/img/add-ons/webhooks.png000064400000046034152331132460012505 0ustar00PNG  IHDR+D,PzTXtRaw profile type exifxڭ[7Es b9|Ffs],[r=խLs?T޼ğ|}ϩOן!7^?n{`>s/PɅ>ύ|?~Qw:~W[ɒSHw-{/k Oj jy=kV+~,?B׷wvw{FmT=M-ޟrVy2W~lqѱM7'_ɞ ռGW^,S塞"k]xYoSj|[L\C,&\~[K~Vzc2e֩M} te/_c-m۳=N>@ԣ;]mn~o]tǮ?t?]:5^6vt3:Vj%zzDg Ce7ֻ˾=ZVʯ:D{uo?۠¨i ySG7Fca!ms*s U.iKYbq̷5.)ZV#\s kZ;U)UsYv3:&uKѽǬ,ddĆNi7Kzka Pe[>BM~ W71w[Y#Cϯ~w݈FAh`_E2xϚm==pCRf(.bϹ҅ Xb~ȕ|]f7yW2m ձܟ Qm$wz4epQx2s]u&Ҟ(uNtoΉL|E39rrA| qf@aۅ nk!Cc4>ƽuaէb@FYsƢ(zFE{rf T)C0nϘ3w gfhO(=b;͠1i3Nċ^ )墈[eMhhHA Q"gֵ#e+WA7O76?+/y/ķ>8.OX 9R\5h7u=ϳT,|& uHG^i9*S|լh݀NZt(.!`-Z1 ǔ픊ψ+P D9HN`ljS\YZ &PA~%8wH)db;|]}8\8|@I'`sjLp/$gI@а3V9ʠ 2xԎ腿 2"B=HGdž CV ܅![A ^ӿ 4$pA˿0 &A~G.]6̈<~>g\$"潺SIhث/P*# xؠ,V6v"#I@MGq-Q0Hq0'N{kz#V1D YM_nSn GIĂ@# ܷۜFP<'CQA$Nu;B/F-Jd7i(&Ţdcrq؅J Qu JDbylrü ߙ<:Oф?p @@"Y#$\po-pd"`5 9l\`3a_[}-r+aLNuzA~,PE܂ƨĨui2h?XK #.`0Ai8tdz7a?F~G&ɗ1#vJ1j9>La8 v<=a\`'h`B!ʂтlnM"Frt!PdMa"i+?n3^ WIvQh/ا)%%ܧ.sϏlf%:#V|D%5c .hH+F3 3&gubM 'IaPs2VzLX~{|*.2$RD}(PVf!!`$<,RD;DܗZ?%ԕ#LdlʏϞV}N=e~`6+pނ84k&ŁX O =xx&~4^[,kD{0^f}`U jH(gAMA abKGD pHYs.#.#x?vtIME  Q IDATxwx^uF;)RTe˒v\v۱yeNfK?vv]eɖdUK,j"$z//zJ\.H k h&@\׽'I"Ue"!ؔY,FP11(ԷceN7 Qi0۫*YBG@(9;'؇9Yv(5!OE55o,D |\MkJU~8!mϬbQ} bּ]KjK`d]PVRƗCD"YB 1JTM CbkBXS?8z=Ќbe",LJD"kCmSbb$근? 5ҠBh'r onwD <K] {DzD>ވ9h(6fd ~[.[n+D AvAC'\9ucT]1qQ*LԘ=0qA)"GD"kiSMǕ+J7+*O70VTCMfcI$Rha #\1tnLFVuc%])$Lߏ`8 ;9uv(#OIAdI?dI8nj N8kD[W%pHkغ_>>2yLUN\k:y U7i+'£h`S0(5?LS%Vn`'2θ'#K|Fi;Nmoy0؜u #|ș^=šf?<9O*V%o߈yuԌs>nIx/ m5-YiWcuVcW[RߗAwD *)6"kɍ֍RcUsdaHE'~xDÂނv+bГC".<=>֙gƖ mQɛ=줮7$"wemD D*Β[ g9ѓRmL]cz &炓ãap!knF3ƖJm1a c'/mV&'X}/ Q~Y|e=O~PFT/l0dN?ơ)U/3&y͡IUxuyu"Fnj D0,3}57 ԙ7VMa5P|neo1c2@Ohwmkqee7ew:],=IH mkXKUTل~rvo.hu(]Wi)f#:)۳{H8&zu@K/!78 iL*, ]\W(':0fV#'Ϫ=_sRɢZU V:j]$ܭ_9?TnIƖ {c'{v8SG'[XvSL,rM#c' 帽}r++bU3&˼C(N~'MՇ7DT'FC1T2dr\`~*ZhQ6ѹ E5ׄ WVg"arTEPBYeu5ٕ1Ywqك%Z\A6U`QCU“}N,rxMT1~MrfU2%6/pZk&*~!0{:S"C]C={ u)xLz,?f fԙqyEu𬈜'|j+8Uؑ?Pi7aXԉBh\e.6Sy !=[+c]UC8sj2K{tzMGPC,~Y4 )5g*NW%O^x/(}wɲqzUTb$k\mN2Cuz=5AItA!ri"ni^U8 PӦpcZ-YΝ|~"cmxp\mIFy^E d$%g(,E"@%"6^=ymNPuOUU>lCvlo1[*^P%_GjGra1+2'wntS/7PW*a, ?7c/|A -eڟ1ϑⲊmt.탗;FMWJ'kÕʹUVڀ Gֶi$2r=PYu LAb߀p.J[`I}c‚^FJ[*Nj 88qMOF> w2;\UBn %MqϪT|SXiP_0y}4&PIXe*D>b0RBo_u88vLyǂS/w şzj]ĸ7!lW@2TuSJՃgvyjbνR <_#D+{k«,ZyUAErBe1zqY SPpcdQMݑⓚe[Å0E؍UjA:f{a#/iv%\, 4WsE9獁ezw- 41F_˔| fC̊*<b<=Ѕq?UU%SCD Fޒ{s < WjMh^Fq "U׬'fh54.O|%3qh (]0Ȼ+}?2 >(-12/e q~WxlrqyL3#7Fv۴v.h"LheCJC1P ﷬f`Ņ6}sOGJX}G*5+1XD 'İۋáO o@\!k@BٚV9$b r*bЩ??<,ouZcJXG^t B6d={w7%?P1iJťoT(iU/RP.R]2Wwcf7Q}(+_j-P>KHecN 5F2]v{\m%J`uugwel:,v9ym xIYlsL/S20F ?41yWYOzNJpc Dm?Ue`q}ʸ#?Ő0kea?<>DjmU"T|]3Qae`^YIY_]W"PE@yoκo yoGT}3ɓLvU,RL>ք j#- ^KV<\^|w   S}g kUD?WNE[fF-F{  X{w]k x]9>An_~+/WWׇ]T@DȦPp!_?Bܷ}$:~lw';͈Fi'b]P AQ (ulH}K#/\V0(*ey(P:ŎW ?LX^zo6ͩ}`!`5Ϯa%/WQݜ ҄yUЊ F{DS~knQnKя6FemTcD :*$tRe6aDֵF=0AQWѴ+ h%Eњ&w'ali&3ųG5Kbr'93{sw!("S8 o(B2C m5q]7GfI-Z\I!,DVkƿjsOaH }!B>`2C1j%gv(+mvM)f$CVP@"]Rme a"- lEB#8xU& M\N@8}4;F+Yg:uԻwh|eeiQ ~5:Zh"?l)gz#ejS胫H'B`zkJfiqLjSgqgx. N3p =5h+}Jʌu~c)iVփCZbJt^ 0q3Ow"U(Yk饇1M’ɹ"a֦%d۪aV08C2l7SO}1r(,ѯV&ffU Liwk'w&NoLsa5g봫 ~!"y1/@MԤC~eE ^M͆']D;S1˝TM0WDH TH.eDzx i("&(5t:X]2j2 :]SIq("la?SFX(t3J 3n#Yz;;) 2 8L(e/d_}w\d\U.yRR,`CaXɚl[HqAS2JM N*iD`gI{o~=<5DY1[@դmM-ۺk!REDP]Pʥb>s^765cOtJ( +Xi2;#"rc5UIջRpioT5Iz5;\T458L &żǻGD#~ށLY,HW n{{+L@C_@vf(gp-boMP.>oKlj.’J ˲,UpB婈QʔT0$T \7UG0̰i܆˅b/4JJ TfN[,jwp>_UWF䍥⊤pDPC 3t{Vv zMV(V%/ Hf 5s'nP*37wͬk%P &UƚAX6?vg&"`BկKW+V1z^ѬE/h=ΘT!bR.NkxO7>~.4'o{:kpX\7Se}mmkС]i@.HY6bN:23*N\ R,6Yc0Mu ֋}l9CTye0wKmɥ?ԨFg q{؄ңʑ+CSDdDE"_ġXX.Cc:1IDAT]^ 52U!rc*n7;!PLm2B+ h9(,u7BNBU/*7nPk"Cm OxOe}uJUxΒ'֜p/yU`'eaݖ )h"bcCiqͲ havWtqtjx>]ϿŪ_\`\[pȱgN}ؔ/pevg6I;G+,j⻖Os/Qdl7kD@mNgZŒKS77mgc_^GgQ+R(}HjeT4NδՉ؟o4^}z~7VT]S.H͈3 E` +߾{5 ]z:փGpp 8#|#9};K#{_;fcҎϷ/-?ɂ Em.w/14?ZksۜW^\{Ri: Tmh#n`Nla9Y`OO;A+82ⱎoR,?K㎁3TDHy+{П׋P;|*x}n?Wġp}0-ZhǠ,f\WfmR,ms|j)o?z0gxT|i.CЙ!u[`n(ڸc 趝,>BKٝVl%PN HaoiO7+-6θ?g82rK"M̞ . }~'dW[ ͎۬4BA8~ˑ/kCf{Zy1c!u헆xPb`RQ3#tcGGBBP7'K8xum .0qa7@0>Q?fĠ Lf5A$Ęօպ{ Eb[k0 ק{FG o.7VHQWFx'd"` MKYT_M9p$=7TrQ KD*Q褨@O[Ȁht_(bWM=;'#FҐxX_V J44B-9_`ӊ5h-Y"5qÖ.ܕ.~P&}Z.>(я䞎.) PEtR~6[CØujqa~rl̾7uH|~=iX34V|{;SaΘ=cڐR$))Cf*@kpQv’(7Xn~(!&yjr9rEkQo.ņ9Ղ_>3X~yhŞ84ت_ J~,fp u䉨0M P6+OzzN!XȏFQ6#!%tP@@H,lBHR4G(Hɲ:fOq( t87u2Y(ttv\2(wb#5FTjã|+R 1l&+M Ts!`I+ܩEIo@C wY_r nY[`6A#P*bx7` wAaR uQJ-M[MeڹDR6O *pU6nty!Ug2*˞L 9$%/X t(O^2]y5. X <9$Ű[]TeoQP릩RI*|vfpr_OTXQ2d w c^Y5ՆV%Y):љo=ܩ_bѹ}a=9C,8;>7ԙ80̗H{;ǏiQVFIE>dI#U!ubq[e+N֋sC@%; i1\ݹƒQ/>:^qmQH|îd9 X .XextϺOw[1|_/~Rh^S'y&r/>>ns?<?UUvWW"=\ɠ*qqDpX ړO ">h\rKU`ey8"r^~+vC,gV-W;ә#Nd?kTo9=^C+irR^{{uƍ:38YۺZP2+vyGۗ>&>A}c~GtKWӘW:]ep$)Xa;/NAC~j}vh6>;m u'%42kWx>7OMl1zjߗ/l.FR Ѡ+]I)c -'V z)HAo++Y2i¨ºb}`4DySg4bNmA>1T/G>~};'|b j[Kc_XDqD(G"I$ٞwEYH]teOCⷎq@e*c_XVe%%ׁ"bB >վF]ώeHVaw߭7.J͔ߙsw{3ߡd,+a}} K3 ^5lRB oI};Kâæ8Qh4dvYI.6ro8_RA9(XUFnRGg8'@ 0grEᇇ_ R-g+++[@.Y[W`\S3wY-[ɹ*XfRZ}*Qk =[ό{^iL:  {;ߴXud +Vv>3HS*.ӮHD>R* YcrMPr>@S'cIj}c nּ!1-9qM)F2$A|ȶqݶ ZINAh1K:ý4<8 `=T\+u8G=:4-%ZSBYfIMe@SAxo?v}Ε;U )IҔ:LLD2Pm: }4nP: ~=6lĆnsq4A K3 X} %sw6&ICâd 4,FbpP?lHYaI$K/Оttuj жꭸi5ֆXp;y_o?L/An()X9 tz0up@وo.Fy-@{e+YPBY%HN?moSsb|K`Ӈ ˠli˴ `2~uJ D@0 W~~^mCxV7Gyl b_dwXt %V{A1YjK2?7šL,{U){:?٭R$y`xzov2 !!m:/W5X~3K(̕A> yvɂdmMLp![:!qș @+~[:4ߦ| 2A%,OM(m= 9f>mXٍaIHfQMAȞ@t R zT CUڟp +gRd]"ɱO&NC^ PA7Ͷ@tg LG t_TG.~geA DL?|?#VL0u3n:r5K D@GWފ@!}ƓdD2a7舼@@ $ ײMg>A Dr&5?EoUP.XV5P^%g,$<([;oN(˰ ce'1B Dr3xCK*z_V@u9&#`%v,dY}\j$`\SegK1)XdP%pJ { K[`I$'A@с#t1xAϝ><,d̼zZ!jTsP8,K"MG|1Dd@<ӶN s1IP"G+5JQ0puUUmmm}}}UU6DD뎌ttttuvvvvf2q|ߧs8{z"\e*)Xɼyu-v*c4T*pX4J*Ԩ<Q:ڽ{ <bQq,d^!b<`ӦK.dڵUx|l_m۽}}Gwڵk׮AsbPÒSߋ`b;oذ)Jq:Hss~vm IJ K"Y~h-<"&ɭ^{뭷\RUORU5JR/駟~熆*{:.u’H4xIG&UToߘuwwo{'xa\T|ڀ$5*iw}^QQ(4:kjjoƧ|W=|9Hiȧ .K"Ytb/~ /dl$ښ|36mַ9?NCRK&J_ "^}/^:j5Q.첿6o yDq֭_WE!bSS\p-/IR$/h֮PRR/<{]l頭.R$/=4T*u\]CC>Y]kaZ%KrXx=^p7<{ R$) s 3^u묙Vy˶O^属Y}ߟ} s!K’i WiN"-RVV6gG;:ntd[m_x!756qk֬AIkjjnGyd. ]򵱤`I_F6?áЖ.90<<>^OM eK]x2{SٱcG{{_:O,`̴|j{ H$WWp%]v /e߻op:Xd2&|kWeEcڛ-K"93htBQb+FFFbq\ ++*ko3&IENDB`assets/img/add-ons/cleverreach.png000064400000050611152331132460013143 0ustar00PNG  IHDR+D,zTXtRaw profile type exifx͙Y >W<A%h&˃G]5!>㫥)O:d$l,ތS{_ۻϪ _yyquB߯wB|}??sjϿoڿޔbjy\?%RYAugL}g{ҟOks)$}>Ͽ]0*+ޖkwV*%gSJ@=MVu=lqӱC7 ռWם7KlŋZ.lT-)--Zg==*uӵZ{oOȒX?|??~{9G1eb]%02shH?̃ d_`}S{5(,&W:$מ%'-Es,V^j+FrқZﱥѫT5.Z?Zޥk}%UtQ ZZiWQաSר>dc5ˬHX2cι7]\zq∵XfԆM[{)sƙgyvͻ.Xۯ\λw՟_w-kqk|9GXikt@YY E/t-h1:<~_[=ѺEhݧsov(mP0jE8h?g2{5 }Z9u6UNS7%N}EM:T-Oqd}tϻw-[ \x&{jZ_cX3]uWI{]}lyXQ,˱$mvZY{_ͼͰOs@L t L;udyu ).`\pg7fu+66;~}:8֓Xpa%xsʖiYbN!( /JE;g3J96ÆH~SA]< `gc47>Kc9e;9@t,|8~,kӑ etVqA w?aqq Bxmυbڏ=P99TLk)2;%ԡu{2uw]ȼemT?BCmA–52@-ݭGjq5;;wبT~hEHܝ"hYQ%-uP6Qkz:FYk5v2>jh5i=Om RUAXyb`>ԙ^ȭYݱl*,T w9E)%EݷbG>SJՠ ul3gB}9 WX}qWZ{ \2M)}P_ *`tD_D6.j&1>7PٜrѺI5}ڞw;Mk a;TS]kM)=[M|I9-Xn jm$tSsSv%~Z;yB>\.0e6'5}`\Rp G хtq !*hȪ" !(4k^yc␒ճdC䉴l3$臫) ` #sk TY`jp$Hak] SLyN,DN2]@[2ZtZK~4 2fnON! ʛ扶˜[l = 4k+R\Źa!`D7*.g qXDyFVE-eya*lїq%^H dg"4Ύdcz㎭i^#x̜LΨC)WFGJZ$5)݄^^5EPv`@n,T! .0 G@)'hƠoS #-ׁ1 -^==EA' 3jCQA8oCΘ&^@ G!6e#a n\J)tBmp %?R5b ,i8,&Jl Ji  +ތ &p`/^SlXtyN896; kvcgJ{$JaK w{HVvK?pyZpY84 gF$bӕ[qP䶄Vcٍ Y}(JьT>ln- NNxΎA06 jK(ӆ.7Lnv@H z9T:=lGOKQ`,ư"VII$*Dh:Fn ;h]fm& 1&57T_m7kRPbb# 6XRY#Ёʘ$q9;}@8 5?0@$X1q 4 :P$`7ǁEċoHĸ''MbHN:Q0t$G[0 {h$H&NyHFn ] QL&Onh*]7UGw17劣A}Ac*D b%)m !]3Lf=χ$ >=a]" 6-ی*H]d_#%(rՋHHc&V*td\I,wcv $7P/Gه'* 9ޑ1z:X0IDsA*20B(BeIqf SԎ# )=P7ʭsY c ,|֘XgKi1*&<25 P gr۝yI%0{Adz2b6KL[h9SZAM缇h"Ceώ%*}nֹcH7xOZIcpES$abDgd넀c* CKAVǏҋjRsh5 `}k2fzGq(pt8Diy c>w&yɤȏēŘCC ǎ %16 e&'~O0㵀hL7YɈp^8Rbѝø"HDC͞C̚ c I7bh1wX~BNP) = 1*uA2ܦE9쾏0ĽDXe YI'ɈxsIar,9I>u<P 퍧d& 0B@kmL!K?Pdvi JK* 9$N03㹻M#+01>)c 2X3!L^dL!Wܸ2 pȤ4 qH%U(rIe|})`Mx$SE4g#5R,8jDeaT o`b%,8IU14fQ#<'j" {8awBgjBD`YEiXQS12@:!$ĕk0_g pF 0 gkȊ5FsK$1,B<BYciv-31_ܘyf į3Y8tAg@:+"z7 )||L-9?4e1hE>4T , )QAJ1=vX N;}eJ_QxpzX/bY4žϊ?22S^C V%m6H 8+ eTzDҞNr1 $5Q!L";SC8 | iDVy~H>RhUЭL돸 sỸ3g<* 3cOfk9_cNtѢ{ˢ8r?.Lw'%gAMA abKGD pHYs.#.#x?vtIME $S IDATxy|Օ/~έnuvYeɶlٖy#cc dyoͼL%!ILIB$؁`xc]e[dz{zpꥺ{9$$$$.0y $$$$aIHHHH’%!!!! KBBBB$, IX$$$$aIHHHH’%!!! KBBBB$, IX$$$$$aIHHH’%!!!! KBBB$, IX$$$$$aIHHHH’%!!!! KBBB$, IX$$$$$aIHHHH’%!!!! KBBBB$, IX$$$$aIHHHH’%!!! KBBBB$, IX$$$$$aIHHH’%!!!! KBBB$, IX$$$$ qt Lx@Q!6 D Q8 ^)@te3 t*N2pf3Ӳ@@$D$d!ęEKKK0L*"\.UUUUu8C1 #Ǟ"pcEQZ^InԪAFHA#aifEX0V]jW6s8 .T ?!)%y<DI8e>ξMħ"$c}#w߭K:x(JnnرcΝ[VV)v2{m *|Q哉lCCYԣA}}['\_%mc%՜|f 9N9?y) C M"!v曟~^b"o"IS1E\`<%z{{8r暪*.O/|ȁ?jE Y`xh/Q1ID@H:z@89e"ҌS,qLdv9'v_Ёՠ2R":ŔE< '2Ȁ츐#ǏgIQc z#GXs$ ž濽е*&2ߑcwhp$!P5.gB@<Ъ[CzRꟻ/sc?~Ӻh? T P<DC#BwNd/$s""9x:QU7|SKG .B#&E#b7p@{co`ɟ"aQaV YwN7:AqAB}D"V AKh+i1u5ɉSEEE+Wlhh0^p)qyD.LFF 7K/*>x ?T% A UQP'D)TĬ ( " '""̜_8F򁌘I_+|+B@ r+_͹bpgw󄙌DV$"z# +]^:U 9?gn¢q`s$ vM_юnLEoE/IXqYhan~7ƒ@v7s Kіٺ-Gf'Fo;y{MӁa4?(ˮ*SK=zeĆBay(mmm|FbW^^bldF0_\\vOm|>@KKKooo(r:yyybNSIJJUDz1//oر.1_?_UC"c S !/";~|XH 0&"z<ر+_ʸqd<)SO'j }E@9Uw~ D0f ?0A$zɩ $ctX4M\|؜x`JduhnclƍT?~|߾}(&JSmwkooODǏg9(Gz54 D6,Ƹ-E 9$ "!>m 'P\^ 4 ̘bjK]]ݦM EˇzWT%bаo߾AEQo^RR`T`pA^^ޔ)SJKK TUx<FPի~T{?RŖ+++ʲp[[ɓ'=hC#Gر`ҲUUl"\iE\A~XzNL09-_œb"MDZ4kC*0mv'!3]mDhGﳲ7 0Mb"o؂\d>Lf"z+']Ο??kϙ3g噙W̜9ꫯ^vm`VUޚ:ujRզiSN%ꪫv[o1Ƅ9z'O4ӟdh 7,\0##6ҦN*z+Ǖy}?ޠI&-Zh֭k֬18w?c:c9;HL+9S gN3kAִKiG>^ֻAAd4\!&HS'՜3`FBXZk* X8L˫bz;?Ux}@H\Qz]~dշ̱8;+d˲ prg@qfx5NiN8'y 0[|C|o Q>R| ^ @dZzW5Dl_;' OO擉@:qBB"`IFkii  :;;^1fN3)mذA4 ~%qt._n*MO>kMNñbŊy)Xp{ ' xW H,CkX7t؂BXr_,ˠhJލb^ˠpKtPV^ne0zȓdt5HQUwv1ڲ0C^%'ס]ɣxkf92#n3{3fLtvv޽[p˗/O(r 78pwرtdqƍ? 6o,,-D'Ӑ3ή]jIu{Id+.ZhYmjj IH{^}v`+`3@tUY3 gIG;%ppְ|'AhRmL'q?4^S關Y6aQ8\#K.l#8wFkXL6aKȔe `[x}_=jY?)|N_utbBAI\w#Y# !gT6:npdYZ'[C1IDvt 6OG'mH`3~|8䯕hgTU-..^hd9r\sM ñt5kokkKaƈ|^b6yҼ\,rڴi* Ǝ16}#nmO{hh'`5=*gy͎\W=Z` J\b$aʒE,Ҵ[eg\Da@zDk]3ZR _J csU&"8]g)|>;`c\ᚻ#ɖ=i99P14V(@DG:gd&8 `\x[8.%U- d|Tg-K؋HbH.`+?.9vƘO:[oN{o8Sƍ4M cuH1EEEǏឦiu]8p8l2U=KUUUOEǷ^u['^~ڻ-TifH@c2&^=Kڳk ڥ5뫢&D)huiBL2d tYuM+,4M Q`;Α :9:Zvy43T`CL `$BًD[Ŀ[Tw25A LIw9e8yNl?@0,ׁ 2?ʶЕEB@Na qqlh`XFW2:裏Je¡7????h5//p\UU^RQ8 2 Z"~A.'N<{cȜ/D,**/<k{Iw3EsT2sƥspM0Oٮܮ" b F(a,1bx#綉KG?vVP#=`*ĉA"u67-mX!e{FY/Ҷdc3xNuD4dR0t*_ED+ pўD uImd_:#tHs0z|f8 cD: !?dڝbIБ-}85+^\|ӳwޝ;w,xV\C` B,!! J񆶶C6cr8s! 5GD\ctivL:,"x}孨*$5ّAg sS *3`0a$0n6۔(.ӔE<&¢x)IMeɄv# &L6_4(f̙Ö`Ьh~]bhD oN%+-=\cyyyñ94WwFgPG{cҥٕ]b BooZ޼TP*@Ƣ5z0 iN7Ռq #0𱟫ya$ K+~=Ff!:g,8#%b0Sa$e-%̆X]) |8Ny{b.ecAUNq,@&hvCR<,bw))DgOL8@(8MaM kD;2 XQQq׊\Dl7n6mZRe B1+ C %7[NZ*٤GdB4t E0GE@UY*( ~ݩ=tS'@QCu5ӸR~{I n;(iGt8PGkϢ5to0 eoB hnU0Gp7p dYST06rqth%cB{u*Qм`ɜ"]W~ٺc)ZfF @ezu U_WG֯hJf;qIɘҍ -7P"[[^aU9]" ^jGWլ7xp 'q,}D'ύo6fex өȮRCg$HA3uuuMMMeee.0dK__r\+fUYY<&+=q1#  򋡠zIQ"?)(WQ7b>/~#dlھUg LL=?+)M8mb'RT!^}QTh؏7/)(,,3':yUmll駺]T@]CrT`l^}cs0c!cM1=}$hP\Bș".YD sa#o6Q0lɓsss5Mgvv! (9rn&.Uݪ|Gb&e/ٜ1k qHhеșI6/T=o PEf@Fd\i#3]t~%0Fϴ~B&1g˭# I 2q} kz8ZZHUe Gm&L0'0ƶlْBopp7lLs+hhhHO]v~l|ހ 8jbWe#:pˀIv_7HW{i4h?!8ʃ?ן1.ۤPQm fa$,@7u4$^-Bhf|U2`M.%W53`Μىe[0+T52kұ}|F:>8 |ْ/U3bHIUȮ[2'#B ',W&(bo t 4 v}n;;;c ޺9GTVk 3bsGO{S6M4شi+RQ9Ubc&][[1p8\l+ng}UOHCUט)auxa?r^zypN5dʵ_,0fcAP0a3HAo9Lč W_ c G_G IT>W H , Eba@l}iC8QǷ?%47b !LG`_( B* "SFgA l۶mŖ¹sٳXuUQgy _Bee j`mm];&2̛봶 QUW_=Hyrc4#\XUtHd͞={ڵF:|׮]]wEds==Q@zW\=ZQęk^$"w՛6m*//rɓF ѣ{zzg2nޚѣG_pλN< gF.:#B2222\\U9Y/~W7&wG8M!oz~= lLVhd1c6rG1?ycYe]dj0$eMD98IKaw*^6|[5*,ɗֵ$g4BѨɩ6ٲe… ,Gӟ$W("fjkkgbIBt3bCEQvm=O=Ԑ"n_~w %eUU9>usppX$|g |>_WWWWd\ץ>So:@6dHDq@4tG~g+}~vM UԾ!ؑ9OG}tZ .X@DH8Q|XPޫ||+o@b K/i&"}n,;yC':DFFS7!`s+ne/>wԺ3砚mxdyEc$an":rcLk|8%Hl"<y(yyy<yp8l 6A2JKKK]$EQn۽qFJ;ϙ3n3Ѣ[/_>}7|SDUI E+va0Bq\rjv>[zfOf6h'`8AɂX4MSRȌe`fTfE8d㙮.M&##k]`Auu}1VԢٳg'?o޼m۶>|x``cnOu۸͡ /)_Գ¢|DO=Q@Y֗M⬙8.ki( K⃦i}}}DOhp8yvi'Sy^ S $E1*䜫ZXXE$aIS H/& Dy疿Dz}>if=PO7U*Ei$.JLc&0alaiI;%$MGHV,)4{oIB炶DuR?%q&(p`ۅ3.:  i36y*[ LIByvvv~~gخ%1\h600gLiHp!uyȉ GAay'2c=Lu2JODH[SqSR,((Q$, [Y&T8Â_% A2cXu]4MӴp8iA~xIK5hRTsYYYCU% Kbd<z^K*qqQwMN$#ј "Ob?Ņt2x>7&Mܥm^( 剙s8Pmo Y0H6=m8^r*ő~T'+M"B&-ivR:'I+㫉nN %q*q|Mb+耄TD{hPiMip b"UL*L.+77WT˫N\^p[: R$_Y4HT_AHݿ8}I3n@%q.*]R9IFZ4얔Vҫ4q_3 7WWH¥u8x@Ĺ``0888xDHQEsk41cǩ\vl!w޼5۝=$aIHI BB!bRTzL*ߒrIڐL4|O9S$.4{<JBn["Z +4i8bDn^v)IX.DBzb- i T Nc?A))Dt86MS$.J >O"!E s͘Tߐ8~LAԢ %aI| JuEb0U Tz*M.+ c0 s%ыfmdiIXe}P(B!Q)(&=h42X0fedd]('% KB(4M]x2f&T uAE{hO0!IZ%!1\fY2Ѡʨm7a#!U֒$aIHHH $, 3 dGBBtH%!!btuvzp8 esd*IWǏkTw] G0WLfffM0~zŴiSNV85)DD]ݛ?ܼ- ͑ Y wrPB  صsmjp$^_ a`E N:Dڵ]7#PiI?Iff$, ޞ 6}om@;+xH|!Κ1o=oΐ ^y՞>|/ f8?N KBB>>Xz"胤%xΞYyO*Hyܺu+囉vwW]vVSm%aIH\ª_|ѣ],w*⟄d*ou[2,/577?˧̒:< va$, f_^{- S9YXp(O6~ ij<?kHe"@t=y砌I&JH\z</ cHΨ"q*@}};w:dS3NEwhƴ铧N97ERaIH\}{`Kց SE +K`t~k_7o~'b* >NL02IX;zgVN Hc'؊@]TơQvK-eY$aIH\t>H)gco,0HM,|\VBj]&0[{vgHKB₃/O3Kx.92$,ikzJvd\hMFLј 5'dią"`65 Xf&dJ`d$ $3P6Uu:UΟ5ks$aIH\X8q3% dV˘kbm- [)JUVVNZ8jTި}MwIXB c0cXtǨ&blűHʈtP080:cmA!Ь,!%D330p~Jm۶vtwDRky]-]ׁ00dD[ 1Wq[H|Y"JH\kz[8_<1圻 N0,rvEUd: }{[{㵵uM'CPEdh/ƅo]7t#?% KB@mMmKg{<$68;v Ϛ;xLNn.X@Yt-q475ܵk F?O 7F w}oWg83$aIH|~A>ܼǥ>ecñleW_5abn*,UX8gݷ{x(&3RBDkG*%aIH|~߷s隣<)oeq˗^hL߈5겹̫?RƪU~i,y< NuٽgFeZB }?|`i@_^3,i{wK[ј좢Ewp@0iHD(k?x婪:)\IDATG$&p+IX矰E=/7/vޭ:uac}dIقM l%J4A412 rgIENDB`assets/img/add-ons/layout-styles.png000064400000021424152331132460013516 0ustar00PNG  IHDR&H{ IDATx^w|dU3L2ɤ޶w""OQԇlXSTPy >PH(bf7M2I}N6;~grd~G{ι|ϙTKaHHtpP :18 < HH 6F" @HH @ ac$   mHH 6F" @HH @ ac$   mHH 6F" @HH @ ac$   mHH 6F" @HH @ ac$   mHH 6F"C`.FS %w6x"!hD+\t~)\TRd?Et.\ L+g pkI*1܏+}p:uFLH7? P G1;@qc,X( LC@c\Hrb S f1. $9 1ӄ)3BizKIN@4a =%$'@P f0b@@(3M1CqI P &LǸ$( L@c\Hrb S f1. $9 1ӄ)3BizKIN@4a =%$'@P f0b@@(3M1CqI P &LǸ$( L@c\Hrb S f1. $9 1ӄ)3BizKIN@4a =%$'@P f0b@@(3M1CqI P &l@™Ye1?z̔Q2Uɦ;9Mc#S6i<2=d)-?ÒEj=^U,Tgd <5sӓ蚝j1X6~>5s &Fſȓ 9I<IChÁ-L\-<9X^134a )Z@̴>r}a\T)[S⥙2.!-}x68$܇Q6Lx[}6$w&({}6;Ea8ޑ֡HA> &I_;TAl)߄ti)օ_F9'3lBnZjS`!M/%(BiZ))/*Un?eG%gy dݘok.{vԬo>ԏ\4j5)S+צfLHS|V.Zxu7&Gu[b@`Ժ=gmۃD4voBS]DwϕŸN 6HTZW:]W`)l؏Ѱt i Dg(ln4גKu-( Dyt=rnf6Yم]>y pOydzڹ3QW="KfEt]s{gwzgKOkY= F,xIN!~Xް,:gS+k[s d_+ke GP f[ %x_~ff] }h›}8vxOcGw_I ./Us8txmp"Ca?Е}mD d)_] m#"8_% $bY~ɭw^$%q) L{J)|ЛW4I Β tE_+T~Pz|tp~zg: *,㿌Ò+P쒟*)ƫgFZZf_x!^ֶAlvJt5:^=e&K D|l)%g+W%|&fqb^m"gj:U+Oc~oS;e~;b'dqll^u v[E@:RB ?,%e0Љ[zZT+ +$ê D0;?h]`()u]Eҡ@gaͬR ZgCX£!u1ictnNkVNP fъ3װcṨ Vs;CEa./.QgUa.m}I6,l:Q3؅uؔd_z4̂/}D0;^;r qcIz+?{HZ\ Qk#JW@ޓ_Lc3u_§]aaZq-)p^+,\ UTmel78/ UJO.8A)Rӧ?W,v%b]Y/fڤѸbx+Z )f1#ݸQ(^*(E%f6=۠(D̃G̤[Ǣ#֬SBWK%:s8_"Ob9[族Eyj M7:;il'ѐjk ¹#bp{]7 +.|OO`пzr5.kޙnAxFٮ2tV #GśFWD<"[*Nb#H!.QxGV,[vY%qxO#6|}^PS3Zj( D(]__ bẍy~irj $*r킈@=Ե41aע R礨F v?ڧJԊ6#[POYbÊz-gW|I8:\S[2lh, oV D@_m@ c YwpU_ n)k@;Xv@'n) 0"@i.8~4R3_ΰV1,&$QwMئcS~k5VN1:6mD{K ^\< qlG} Z&DF/FZi=+r+qYQdvPha_<4( L㲭@NLUQa|0Mju4Qi֗TJ3Ë]icA .>`LSxejgv7kM/( L{@-Ƈ6[`eW)7.C6N]xv^zۡޯ OP FM$ӒOe@#"ʣ+Kl߲Sknڦ StU$B D4wjn@(=76ao8*w?@D7i*C}nٰhъ@*sMH tơ@(mGij@N3SH\UǷE "7b c/7A'658fIM>J.п-of}x.8.( L@v1(ߖ5\o_0ǘ[N)ķTYߋoT")UXU1 u|8ƭv}oA׊uB W[^<+ӿcW:o N7:KT~e}{M6GlLJtQv\5Dw4OMnSX"TmwHk^S+N/bw#R꺊IUh- Ia3돝J  bdv3g0e.\D S23{*Ryϊ0cexkn*q8${_@P]ģx?6,v?,-( J\Z_-n==# 78ݭ|e} ҔY(mE *oJ\(wQr(=.7<~4._6{aOo~Y-Ȣf[ښyp'{~k,2L8|M݌7MW# 0bt[hoV}k[xתZ^(yV} Xu_ASE^}ֶ/lNO~UF5- DѲXxW@^Z:URl_Qux'Tv~{lhd_ + dNjrnu㉯kÝǩjF1 0NW@\Xԏrȇ(<а*:>z d)v-l B}(3FV(07y6$[+J ; 4;Yn[Ѻu#@$?T4f\ۂƇt, ݈Z"FMl(2{joy? φxq&gfdpGL$A-0$͖*T"b\|hTZ"H4=Oөٹ8)Ӌ Cghhۋ);P m"5GN'w\=^<KDy|q7ܙ_1";pmuQJY.Y9SuNӽ-[ׇ@D hb8 uĘUq)/(m\YFA\k?-Nzx; .ͅm@nZbx_.gw:m*Q sSwOqa_uv]E2BĽJlׅ)8܏9#V+rpcq3 h LSv<4c6Dؠ@"سT `Sf6\(K8V3S N98M)tPYtjivq7;_2Ė/BA gÉ(z8 +f rWqR̢+4\xv6ddʕLϢ4zC욞'F +mAkR V_|ߔ=3$@FP F?LH (֘< ؇b@Q X J$.&H  $1\J%$@@, P H@ D@I $zS@cx  P WQ ^^b /pe$@ $@$)H({bz`.HoIDATt@tJ`P $p4 @bP 7U D/1'bygG=0$@:P :`%0(@LH 1(p՛*Ó XN ؅e*`.H@KLx~$+S%H  $pu$MŠ$@ @أ({sA$VR ˤICI WR z1< .\UPfy>28y xi) 1DN6!+TLjV~X {ҥSO%#-!o5Z6~K&6OJriHZi b4 NbEBXS}}CD R |(lꝋƠ#4"A +L̫WF #GD$rJ4"Á!oz+='$xW{.P>[6 }zO$"ې܂ @B@ڴܺ_̞̟Q|yO>yķ6$ 8#0S[OuLt}XE=O(%ZM$D"B -fNQ?7h8p; ,S 2oJDl4ho@r ݀y1ЬlIm/V$Eu@J"CX> (\j-gG+W[OyA.E$ȀKu@D MjY kV t\J=<1o+3H%  hFH+ PXEsŝ;p=>r?޿?ԨYaO@; 4A y"Ъpu.h k]K`%z&L@͊/;@% X)VHVtLjQcY[7`v;Ԫ?f7gH@BT*$1>кQ$ӭYKg`iUQ$p@JcZ}{믭Y"¶GźH8TMT C`Hi !!ʢ xUZؚ ۥTA y! &Ԫ ;:,YK$ 8! YB v)]HcUG.@1A@0A@$8RigQHXt(!D8B Gh.N@B  n' Ԭ 0$|H$H߁ 7_@BT,$!@BәӦwBSHhpZHW/OBRHH`J$H:4>Pع;:rPt逜9 iT4۷[B:SWREVBC <|$H֮{8|~ݼ3{ryWvfSM?,ZRV-xjfRC4)t#iT, hH<} `}\/(aQ෵_4|O޹c/?=ƉJmɉ@:?L Ð/L?2 ĽA\>XqS18J߼x p6Ӳ3XIkb`ȡjW9y@ ?ߡ -~Xdop?W}Lŋ@jkԖ Ȝ< ,ڃ8[] &2ĉ D51@> hA2\?(pㆹl Q{c~{OV!qRcr"<ǁԩU cvcSۤE l|e=aXư۝@T:_C $}z_UZ.q#p}$whi΅_hH ƉJɉ@G \O<:Clkfĥ D51@x2o.c*-/|!` Pa@-k ձ8Q11;uD-t9 R _ᅩ[E^:,s;G³pZ]橙 Īm_C0 Gw`Dy/ӷ0#*~!2fzTCҥ{zؽ8QH ĥ\i`[@@j ##,m:mxn=:Z}sͷCWTg7%E?Z;Nj:{9XM \ѪƑ8qdɢ>yغEMuy#IjE`j`v%+k2Ypwb,zl§@?fq  ^B %%x2rЮ=m\1"@`Mbt~|bE1j,=L > ̟Y C}>0WT\̯w+_>г 7#6S{O6$zpW'q[)kT͏!ŋ6leVR.Fz;|-pgZM fBժ<y0K$.]e| <̖-C{+@~ [ϳLuv c:uҫI3^eLvt[غ͵7ts灩SU4T.E~P ]2-`*RΌ^ڼ R>}>Q5C< yNq-eBj=A P&Uvx){{Am@2/>rU Ysuﮅ7KA,ow ̯zgGum2o;I {_OΊdbU')3ԬKa?\mN{w*T>vb$a@vLѯ9S\g =^4z|٫%0B wqjcfi^`A`Doc{& ~f4(f [U;1KҭygRE ߽q~|bql"Wo~ޅAĬ\fuse-h}#,ܣ:Qu@?`lRB QA !d!}xbc ^Ag"@uO뽜@ HtlA@D F0|O9kEB n;>`@t@ ќy=zƾt[G)_@Ԝƚj7m{X~ΊkKR?:v2˷ًݻ0Ƞ^2ÈyV[Jܺ ,[<=G%MqIĎ33ύHr<gv{Ok ] tgg>X`XbE11Mן 42I!v5JF ?qNs^ LgLq™Kyu1FtmBA#MuYlۮ]:/o|w-:ٳ: 4FKϡ%#hZLt>}MX~w65HFuO;" ' ;uRZ^6~l|03 F/?=ov_HHv*ʛ<ߠ"L$H sc] p!#o>$•@:rU(jT@ rm+W>㎤Bg?FU597(U8v57@u`.շ4#{}\;l vb}bH"+… 6:2B ЈͽQ%"@跁ׇ$jB hv<tl|(Wqg#('n?S=%Yixw_W @bJ )?s{8g$ǓAQ- 4*S#KNT7oQQ3>&P@VNNUl Tl@(LHW3=qJB@4@VyC{N7ݑkw0$OX!=9%;+9-x\ёr7zT c=qӾiĆe |r\`H!3f8 &B &g׌ɕ#NcOwrBE !H6'AN2nEe2wEduA9_*\>o.X[OYNΏ9g .5~v pg@^gr{Q5@ӋX@XK/FU%ӧ\:51GbcE;j2LB ]:S݌$aSm[JN@R pD(?~(\M1ùrp!coZw/dA $gUyỉ9T/0zkĞxV/5g߰y`XmH^rSq$U+FUOttxٲE}EJ ԝǑb4^FrŎKW:z;c2Yٕw΂ΉgNsw7yн]4#/-O&O3`ug d{șSg|H|>xkڵ?ݻ'ƣgs/wGS#7nh/ `}IK[׼oqF|U ׀QfՃ{Yrr^ѫ3Kc| .ID>q.םc85twC>/'% =1<ʢ_/H+;ի{^=7{7`ۅs>GiG|Η:"_x>[v qXhsE}\(ELiro`7T G7Z{q8po~c ˋKv ax[~Xd;;%#@h2hkP/7p9qwRz};c@8/h`;%2jոs` "@hț6o0vZ BB@"Uns!; dqʵ_•@8a_yյ%f[@f\7{Xѵ޽;'WZ.mscsba§i.tT Hk勤2@~xn`D Ďf$#\S.':GvBߌPY)WP&\Q3#eϢW[y8~ ۻwfK;\5*~S|@Ϟ#g 8yeб%͇j&FV@OF|yb~;y7ہc2zC9~۷ղΤ*R2/:eJ跐zPG$ʔ3h&Ԭ0c~l 8Zeq DsCj5@t6Ͷ0b@iIY IDAT oG2;{oNOZ7;ѻfB|X->S(T(RȑȔGW>]#{Գ0)({oC*WswȠAўrwQ8YabZ>+̗_C ;(vXfnL N{W.xԎ@ڵ&O% go yO> ̙3X4t o\@˕{ʗG{Pd<)\]a]<#\ɳ^[+1rs-] pN:k3WJһAzGXk=}K#dϪǽr!i&P.?viRwUͺ X없<6VdO CdP'a|1xYN0NOvʯSX&aE Q/oy/HW0&qK*IHQIH!N t(33bƾ x5!f+ZԸV;.:^m,o4&";7 Gs$G\% .If8NT.LyAkF9'v/p\pOս$Nv7.oPn*;-G%M chΛDoyqg@٦5_Te]o)@LJ^4BGэ޻1~]@?$s4p5` %p!`J@_K־B'/!32wՃ+֭S?6Z0`(ף+?5(ʄ ,j2 F8S sF`lZVe(FK bQg˶o$浳qEC8g΢̀j vGI5Z0Jı(q.t+ hs\>^֐7+Jy&τy1+~cGK?{C3_,\9fdVG|f7&HfX3v~oͻ&]W/1KOQ2f>S>,pd3խ]VzᨑU}tW,^;С= @RnX!h|& x9;q8~'v_%nؑ9p$cfBlt/U*J)xq_GPyuLјS q1]z2Y9McLӳ)cwF XcHٳˢq$cF_;wPeػr̎I%K y$THQ@LC_gNS'$P~.R }6cϙf>U⊗w#hY$P;{oPFa]mU.S?Ǐ˅LE[@0߳NƩƹXmˑҙ)ѳZ-O31W.cH ƇЯreMK)r2Q:)mس-Nd).P%큯憤B þ'SF Xk%w7m2!g΀*Y o(Vx߾X+ݥ30}Hx" #÷߳e z)"Gǫ .h o#**voE㮩LRGK`TV>=ZN$\HႢ-i;  ?b1r C4^RWË#)t#-#[ Xh W*lv޺\9hEĦIj _}t~!t0:,r*F7?0%׹K8pAE7+KH@ѫWPvk7$b$i0t:MM:.Klɴ)C( |d1`pw KS.ك ´OϣΙ3~ \A^ uM`r`ηO ؋6)O<$ P!{b:l{y v/CQ);?ie.]@'QUzUvZ 9ӫ!iC8Vj%ȣ@wÂ@hӡv-4:U:m@EDz@HlQW={B ;,dMΜ^7P,/MyQb%.^ YRBtH6 ҦIT)S!eʔ}6͛u qw8m:dUDL8)8<ț> xix ZqѷamXH#[`ABhTj6l2e"SI۷qv>?~ :ucǥKBRivk.GcEK۷Ӂ7N)g ` htxv}@(c[Ԯ2U"ǽPqsظyiĔ>>֬tJC *=h+[O^}@ u2ع+,GO drH.!ԩ |HCǝ0Hwn_5kwDӓᵢ @@@eBLCxS@F\ a^<@iH kY?o̙D׸12`oۍKvR̝9J*?J "oIR'S4zU~S;tDG7xl[_N-%LH_W!<UI&A #Rp!̉eZ…ѹkWu"k)R 1ީsʓA 29:oIZx7I8ܻo~Vfu ׮(/jI! @ܓyE=bRy :Hkct_Zٟ5y/`J!@2B d210ꖵj[o#<9%Zk dS={qK삀 R"f<HYat^x+h+!w "(M__}8rʒ:wڵ;t(|0(q&)ⱐ@p \H <֠O-Խ;mKx qx֭Zx,^Q'!!]b Kޓ y΁cN@KpVD;RP$@Hde\x\9KM[[naʕر};GElxjƍ?p;>ժVEmL~g4YkL?ٸey_2 @C $2@L(^+Jo/F*'/^Ġ^޽oݻwNo3˖NUTmywSϞ^߅m;UH&A@H@.Y1ޙhΝ;xWc~޽z w3!HSLsܰA ~ [R۶y;v4 (*E $Q"XPW =r+V`Q\={62eʤ\?Oʕn\[Xfn:1b"e% q'.]т:w9Tt ;xЫI'!!Q%c ):5XDxiΉ*˗3J̯7m gjܹȞ=R4i^ux : (,B !FngIENDB`assets/img/add-ons/user-management.png000064400000035330152331132460013751 0ustar00PNG  IHDR&H{ IDATx^]E6 "Y1bVH4 ƻ {wz9DPPT" (&L9v{ggzvgܩzު/iqq@,D]b5F` &ə ԔE&XlzThG'8ک*F -;[޸0 ˒FJ!a'=XT]JGK)U&ϓRdPBP|H]x`*k*7ҷM%"Y7"(:麢eT^g)'YqֳnD_7?T+A|ve!">|E !12UpoKQq{[2x nA^W`SilAp#yl}QU3xa6t }\hX+0B Di qSX:>f_x &s+6-wb: U_Kኌ0Hk7qN|A^LX4@`XH^y|=ml qg0Hg'/QhPH쭂֒2b1  닖Z}p.`X$Bp]G DE A!4?raie4AAN 0 n2 Kn*YI&?%&oгwѿK Đ('<JK/v%TDu->I#iHx2J>“ Ĺ_55_ #GO}u&1LMyo*;|2ه0H e;fAW,&GXXPa-0>6z入2-铆BE3 tKɫT!1mlF%f *xBĆ$Lv=6{3`Ò;6E̱k]4>8c=ߗKRkIRH4MJNEd2z=Ʃ!1tO&Mg`joy*eHՁIЩ9ˬ#hI7G Gt݂L s[k7c& ,셃fQImEzQUqy(b&' M0HAҜd81,M"}N5Ϥq؃ivʉ= +OZV̥I1!7hؕͽ-]M?XZO+c H71[Ô1aO/x4L (A ##]$%k>xVxdiqփҦFy1ԫ4tctRP^=K=XҤ4%iG5U6F`D.NEӒ9:WY4y<=C{fFh^V_G@$ೃ@pҼ:$nHuW ^'gQz+" ۊY ddi{J,P^|&U5_ff˴ģib(L_V )A@E48miU*L PV\ ht5Ut[ lAo~KRitӐ sT#Bɔ/;WlRY,N`Q}(QD*БQ}`:dBw"]G_0$%LnOX@YnB1C fI]ч3V7ƽsgOΣ7| "tx7BmU@d49if iTnmvF$ ~foT{|}Рo p(}he͗l"?3U`өho6P"Ƚ73wУ6Z}3DCqP9+EGEv ߺEh$o&EG>Hx; DbuM 0}:gOO)wRNOU|@mB&*M4pi/>:=@ov/lа4C'v z]rA<$oE3d<䲤cE9+SU@dJ EjXUtOjA~ &QEpwPH:.H!Y۳jmk&ڂH_EςÓ-W"U[ EŠo H@0 ;3Υ"s$.]ꭴf4Ԗ*; $P7&Aӓak2}= n ܒ&zV?kn4LeO2i1V2H +Qr`D&ݒv&!O~֙6dXHaFM^c Zx'+[O Ńg;]@&' |A%I,& |M ʐ’)54V8L>k+]k۝ Db! &twhsd˪{9%x;}uvuKO=Y9xO6gw-i®U#ʤnL"=O(),[8SKL11ѥG[')ke @G0"_Os85`v`̍fg0'D:;LՇh\e%fRt O(?LP= .wԹ,oeA|/W@O7X=B~OIM#(*YЃ77'NT-!wPiRA&*!j5тȗځ[K^, O.dDc3upDvnk;'<֛vyA /dR‘4%(mo.YD2f-:u!=&Tq"- eki@%%}wjXJ %"yt{qsafz(JF?;ޞ[x_KV5nAlޜ 칊nn sco%Ҫ镚/8 GJn lr ȔJxLU꤇ф#"„& /J9b=BhNItB0f;ZKVyҶEHUh[K^7T%l.s($(*ifK^\~qQ2L ,fw{rCߐr %ƘJ kI o mn(Zf*7{wRwA=+9 MzXWŸ2XKK3.02xCWƥoli}}W_ <:Y^ @$o[Q%уYWlAg+>2"8>3BMmruM4e\y8yAY"Qo y-#n鏔KMdMāxFq= XaJ80^V"::,oy_ 1MigH[ oć~"4j E ,nvQgNT$\JL4B""+c1F7@(t3?4 /suz:!y@]成 o)I֓ٓ7˂PwX85nNkZsp8˵EK}8Oj]6i<`=L宭1|urp)lmRuTt:\)ᇁ뭂)SGЌdjuH!_oLL oֳ+56`Ӑq nбAbFZVnU^ 2=haI@/k@o VzP_t} r/I[X."*JVU5oU:QFd1 ²Ќ( afKTe[)q]2]-S₣ n7j~/"}&oZb K,eclna6=a'=¸6+%}THu@ !SẔ錸L5L,TxFOѧeI+>h?>D~pHP $D| !>5iuBQFz.pZGjwoigѱ1CDE[گ뻫ߐ>^J4azȚ@`2SW}Jl3d{b~n|5`-]C5W7i!(DB&Z]]IzOsn_^K Ve ȿa, K?K4XwR.r(4;ڤ6WmY5XY |*iݯf ҉ګȩ:Ç<5ixwq p c7Ĉ 78;߀ 9܃@0ǙI8IOj j[T<^t)2S4YWK֦?Ld1eF32苀_קJɛA)]C_5{}zH=3Y8Yg76Br2KhHx\"ttң ;pEF%` xTOO:Z)}@t//R"w2 4g%9LCvo3xu;fwYkհr9|*aۖ#!B _em'>qxz.Dxu!bÓo՛{Qn# 9aXiaB'@z/ l5L v840߭^0A_mg1& =˵BaYO&K `oxvepn> ` Ȥ7 D qᑹ43xJ Pf/:i[S>T)׬EL&bQa ‚D\dCpݚ{HU^9̪E BUdV+|1@+hqȥk*]T!?8˦|ZR)t6tRp `n[RėA ';mTA(yop/,ׂ,|yaɔOpߑ\T^GHfRDlҥZ D $aq'>T8I6vPE{j=mtIX|G` Na ׌Gl"rĞZz[ԘhBEQaѼpD&Š!aU@Go3[=6 JE̊#DEG=mlAo~;Sj w )!2{WHuff&S+3{)7,ہ[q/jγh] C<#r)"8Gާ!g8D k$C yX6rO=I쾍(#)ݽ]^Íi_W"~IDATn{kyWd+P ۨLO`r0\!|6^D΍;Tl:V ٯr뫤q)\m " )!$pǖpL>tx V|!6ĄQNclBcʚ/ųu{OtPdȣvsC2rƴ3 Ldڴvu5:Zi}ݏBwV.}"9)'qD/}ֆ@,^G#?hMʟv-e&(pS e'kW ֩o8%^_v>S/ʰD7-8wO6eeUp3* QbC!h6wA8\.ު:0 ]/ YC!zSDMV/NyƗ"n2M qa+)6D?Y ?\D(W~X-h[›tTqIAgO",dNq (Xsനg+6= DfW T["Cweg)\Ḫ+Z*F妴3Dl0/2ߕ;Gu{#ST [D[s+>"Ho<)A %m5tM' X&Q ܞv6O|!Q4`ӛYHwB e^DյEK OL2h."q*}O.SN0 aEVόhDT񴂲Q޵AJޡiDQ])zS>Uѕ]K G: cA {$ /]SڹblL-mtA.^/iIg}ֽY rhwƜ %TQ|eQT OAxς -uy:g AZ@@T|wxةUc^n'KYvdky{=&7ROSbۊzHK'SMůJ8?)yF"Fk"W9Șa+Abs~uv)6{~G o¶*:42Ct A'/pz@nָ1P7FH5Fdv;ͫA_6ސCUJt=:xj.Jctn R+v69pRB4xMJ3I]CGk9I ?3M˱(K>)r3{c}*9O`+ORNS㆛6p;9o 78)蕅3S6Xvzt]*٫. 6]-mr  __R ? \QU7 )i*K% o-y~qTO/^.nnޯQ_@:T!>T.mYxF@>:DL̰{a;*0rě`Xs")a\p$={oWcyȯ-eB( NAd2G0* NG8\U)O ˺ISZExw7f5c3sht:hҮyTT9" 'Ŵe+(Q<— Ձv0az/Qh^jp8S$瞷Đ`h.@>;Jޠ[ Gcz@>Njw4oHݫcDJJ$umR]sY-hEnC%n,|ӂB*KkFX '2xS:M{]ˋHPK "CqHlNp=5?@F Nt_4r"Zӈ@?2*ciZ%:5(8Z 4a5]@ \nAj0C!<siNNo<$B:zϊ;iWQ"c*G;hhxDy(GFѝz9>W}_-ZoP>v쑾` ~^FF[쑙b|N!<{jk5*}Qjd9?lD6z}-^q7<`8AjiD 3#h=X=^"(L.8!H- +-3>\rp$M։8\GFgۯ Q򧲧89Wmc"ÕQ)xPF# ,N6,kEK Ze(Vl-ȠPZ7IOn{PX=1uŦJ}K%ޢBtOuD AJQHψ=N= )Ï&+71NDU,,W]fPc]v+uBLS dK.d`ׯզh>̡fСId7S5]j鄰C,ppRS9~M 8͏Sz|THwyV㴉>V&$"mxnߝ9^8)ŕlo*Nw>-q S|&gӉUOЎ_ke'6nJiE=M .r&@?] d@]|M 3 #bOm}@d7 o׃t{{kBGWyDUuz$N"bqvq}ٔ/mC~M FEJ^wr&}SJfh f867TIݑ3'^%n(G K "H NCxT㛒8&%bNw(!14)`Kė?CօM",&_0rqUU='{EQ?[iY>aƵwAiP%9rG Y8Yע,5AͺmYWP:I,K)8 V:Zj8e-@z:`c5 :L K0+(2I'O'Cц1n>!27ъˌ䒄Q4M="Wct):jbu7T0ρr|%)L F+9_ ] ]Ƞa|W%Bz2*u=]mxG Ӆɱ7z^:0cz[2ս@DqOL6rR,#ZǪ>n,^II܉Jq3AE[E,-WLNٯgZ wVy#ԸOGGCR<"  )^YV9b@Ȱt!tdo"ց]&uTd^Գ%D;Yb+!.Rw(Qoo~C *7 1+GEuUBgMty QĘU=>WqìUMf7ʈ\Gƹ}NЗVA!1P OxFb}zp 5ܽ3%'2Zaa|P'S;Wy2s鈨Mr^aP¥wq"N~9.Jtmx`麞0z/pnʧy[T!s':SdvtN|Z}\rM?ׄK9uHIњZDHM\Su!YUq:=3b3ܑq-do"m b}4-U%s[QoͼI +Xah}@u+ZEj"",vuo! v h͒(.v k0_ֆ<]?6(hvrk 6a qeX`# tSIomW/cđ=?ek '}YAcm*CbW'Rpx$Hgn. {KW7Jh -Hl0 ~|yĕ%VI[5]STLa Șa}a{3}#2>~H> m%D]ACFG h B/l@O1 ]GB$B37WsԘӜ0ը H) H/pr;WkczO Nud&a isRN#PH''yζ'+>$:$<"-{ JdP]+RVVKK?#^A$u}%6)' ey0nbt7Ȅ(L eKtd2AX#"6 &_[B!sUh^UBϫ|iC ]VdFuܧejDwR;H1W)\NT[>2*j06`fv\ O&m#BK"du6&? f~܂` b5n0#@L F`,!b 6n0#k`FL `F#0L F`,!b 6n0#k`FL `F#0L F`,!b 6n0#k`FL `F#0L F`,!b 6n0#k`FL `F#0L F`,!b 6n0#k`FL `F#0L F`,!b 6n0#k`FL `F#0L F`,!b 6n0#k`FL `F#0L F`,!b 6n0#k`FL `F#0L F`,!b 6n0#k`FL `F#0L F`,!Qo컠aIENDB`assets/img/add-ons/paypal-express.png000064400000040122152331132460013631 0ustar00PNG  IHDR&H{ IDATx^]T@C@,,",.Awwwmefvw̛7u?뮾=󪻺V8d( BN)b'bB@!PQ_B@!pe@M=P(ʀB@!P82 R( e@w@!P(B@`S) 2 ;P(! C B@P( P!C B@! ( C(l!B@!PD} B!q6B@!P( B@!ʀ8zH!P(QB@!pe@M=P(ʀB@!fR'+w~xY+wbᦿ/ #e@TQ菀OZ,… 27o7y{TXF5 {)"jr3Gh3F[[{UPM@!>~N$~l)a#dѳ=<7tM)uFB\_e$?A߹S/flE ʀx*)D`Q25\zLj\Oe@M@ukpߧP7E0t*<7ʀb @ |pX E~m 3Ɏecl>TGjoԾڝ(޽dž(nLlwF^^GWV= H40 w_z&a=N!ahZ B3 жU$X;w(άue@T*\*|m&{M;(os縮 vtנؿKdX1T UaI]5EѺB@!A-+{rnC6ǻ\D:DH]>V<='ѳҫ!Af*skŝ [jp ;zT5%k"Z}739*l pjkwPtX(fF݇_e@F\PXv.H;fp}kRbX]Bެ81bӄ.Ȕ u^n\W] 5B`,6},݊ou>fȘ%rx! |l2]4nS+tUD7@ Ek;EJ6WߢjWqD781Eºi=+v]PV,"X]Gyt5>H(Wc9:ʀVp? p}k0x8Y]$Dimu(as}> wX?mWD8"?ToZל#Q=|A̝/!fȸ;ޗwP>s3~מ8Mi~<ywGu3T ^SM!j 7\{?qZC g@77WovqQ:xQcX jw#ar?^N* 35 #4 ŋ?:ʝG0}u˙AT;u ľ߼ŕU#3m%&.M܁F:> زz4,aڀ0)Zc毇bj1ɗ9 Oyc\KI<@XqgX8ir.<<^z/>~kȉ)O, C!pS 3Vbğk 5Պbx7nыŕ ҭuh98GCCdr g@6>MpMi>xzRֽ8|22/)MZ&S|Zzzi1օw[~A>=qy{ºŴ頟Ջ i9ap߻R g@vN<~t圃Ar62˝c>:;0NQ2>3P0[ZCb܃,iSȦlAa/Se@;dg|..5wP q Mxޣ.P6#v.uw>e:x]W> wFoȐZG'ЭeD' tNPMP=f% yK0`r 2+َIna)]퐸6\_3 }|&7>DR퍨&ZV)q]jjF']dtS'YwѰآ5wF4 e@xԪ0V Y/:Gç_#~}q~Jg/_ je"/._>&M5Q9k$3n4kN;YΈ ܳq0zҒ-h;-]Y}qn9y^8wf5@hH[ENc]zod(".oAwl.‡C<вrΞfdW;~cvWCTPԢb32~ił^"4jaǧg%sb!~ckIޙ}4~l<]ًWp#!'vEQ:h<&2A<,]2F٫.0WWBO`[3gfe.)=>U1tt6yhP"'#^~4+ j"ٌ_]w|IEz*ƈS"&GODl0}E:o)s3Zƶ>G:m>MOɎSK?&~6oކ9Y;[ݾD dI5c;w7^hv,>O`|g $s@3*0{Ol c@CpM\7,E/\"S&F_Ӡh9O7LZ˷¥~ 8|!|K˔ȼ)y"/7vʑ`LXaSfs&bRblmNJ C%]rD^S1-p;V<*inP#w</=U5 i3_So cL1ȶ@e=txt3ocA#+9l!6CgFY3?7]*7fh&Ȯg i;SUbl:j-8p0&p񝌙L^Ѡ\>MӨoR "ɅiG&7_H_`yçPˠˋ}HZ*w֞7x[}&i˷[X, ;NkM^z)?3GV X(9Ot@$)_{Mm+`CԷiNvۍp>KB|ջQwßƀ%͇`]]:͟%H[=8wQZmI^/*)_Y鎩zk=<$'50b'+}:$5عni&6ws\B?R44\kZ/Ӛp3G;ar[x##WB40ZϮh-Χ a@s% 4k,Al"i+u [NOwLv\/H,nV=e(ϢI&ZΟ['"FTy 8 WI3"|44=lW5.&uO|9qf2Ӣ_ ɑӗVoY3 mJuH+I/zD we %7,)\9kvv/mQty>Smf~!/KjsC^B}Q0mi򵃧s*4hZn%L4_|nd |7X˔^а|>'Cga_2K:7gD\uvp6%ڠąR$V0EC{z/T'X1ZrgvMa6R%BiRm]]:-(զj}#`V6{5xuGlD롳[KjlV[xXpBՑ<`R(rMk2wX 2MIUm5w z LN bWf;[ wضiT-+"Z_[w>)oHCiz!"$tȤh,zH4ruqnobhVlx?Ԛ]D;$^hA^:6>X|`b֓g/ Cv7~~#Xd֒)w_zf͍LWVDIG\YۏΐLL_)`g-7֎u!"hK)J$Oڒˇi>s8v~u:ReJ^( lv"0A&t!џh!!4 %10T9 7L)=\HT'G[+6R:OFQJT]X hQ =%/_-TKb~ lɩ A`h5CGgs-k9|u䇶N\yYkơ/K!BM¯5h)9tAT4F_V;#:1̖QR<9WW"46 M?^vSZh,nqwMܙUǴba\`XoiO_F; 5`m պ E-Rx\,+gEyink:h:&/L>Ԣu5$3<yN{URc`ġ=UmZ]O.nl@\<]=/Z٬:߶dTZhWax+P&~k}fR^Y %o-Y(ʴn ʊ:B@K,?aۤ)\H IDATO ŽkhV 2{b5"Vt&4̖>ݘ8|: =nw6p{Ů)k?@Z-*ٕy1#٘v[#LF]-qf='9-dԛkL"Iz.Ğy-n(b4/ɖɇ(R&U1Wgr{Z$db2ٞrD:93K[ teIPWրn(6>IE7(X=m /xie5lT'm&YXm,_#1tdmHO*~-B:N6Z15&} iLl xqRT.4X'ň:y77$amB#ʶs۹ "G|BEKr fX]|0kkhB@:IEM*])[!LEzCm-."il!z}N4yב}K/eF{)#ODA2X+ ~_ [ |VnIWs,S2i?|F&K0k[}?{:qxۆx Bce1猶772HJNq7+t]=vK6cseV1Ynᔪ !7!Ѫ#t7 q͖:RFxN82y3Y5>z > ٫v wٱ`O[.u`W˷WE|| ,Zg4ۑ3WO]P,pc7Soee[#.L=QxC75A':3w4pNʨ5 M3j Rw]:./iS@Sv9#8 d6X|ZخNB^ s ,tapM.a#3|̖kx;fd`h X܍QdX8-IcZms P`VT/Lt\̐i; +.~uEX_D&SmCd )]ꖁOk9뀑 5tR?q`[6_-m0Ex;bx8L]q0nCq Ùmq&NqivNrHV$xGW]}$g s8k#FqɩQBzLR!OE8}FRE/"u)tK67$M2 9=%}ÁaJR (s@3)z% kY8e;f` R$hQktwR}Xa޺WFe@ 2/0&nUCnf>y23P 0ʻT-;YwÍyZ`P@ё N KX*XT+At!0a;l|NΩ NƔ?K|5i=h_^aQj`$Jc~qׄ%N?53>amJ_ 'OcDA)"GB's7 ':s5v=z+bU0aHRT+F$+i%)+UV50LeŤ bc>묲6*#)ky`KH2@)ALB^"§="…'Ow > \fk9>]gӧL2h{HEhHaz4;Y7N2ٜAa35q𿗑ɠ`D< -mpruz,v4*o2 M::LLҾFY~؀hqH.FbΜV)J#j䈢0_iw e, HkY# ]R;{ᒹ3"MA2l8svL~X mS3{7pj @CvھM;z ߈HX2ř)L43S&g=DVh.uʊ^2kXo˙VoO{ނ5[6y\Pɀѣt+}Lb9K\u/ݼo 5Zs\2˘A1*„nEdŎh_j[ټw%NÉ>dVI )˚7r1.$49 4J&wCqKD̜Ams #70UIST06t>n %) 60dQ$tLlV<ӗn,DQK\OsR$;j~hbҒ-o$lj, wߕ:E?UUb\x4nJaYZGv>M|# kp}y +?}f֦J /d - K˂\+]֟Kl{?ܺy2zs9r22-gѶ  5q9:Fh7gme;R hi7>x*H?k{ڼW{򰶛'vElj=0Bo-ƈNLZYӯC2z =L^z'w#_.ntu4)1/`q-jlw e`,mc X@(a"G$nB+Y )yBB|^|#( ˳v/, eyY81b9ugc0գg&٫z֥4*Q3xፗWH76ynkR 2Vtz4h3k.3 }k;3y 荟S' gH[+xB1IH MZ⷟S pn|zV8٫w\_*GwN閗5uрXsՕ*\>2~h- M8Ot~j}dDyb7QH$vn?\ƿ^ -ֽGSZQ#}/r̥h _lJXKzG~iȎj˳z|g 2TJq婔Skơ~ټODu *?VR g kŋm4Yq%~vz RACw!qsfH2i1~#O=K=0!ZcLYxQKXqch J^D`z#,ū׈UحBڻS>a\b,r׮=}8[ z6.+Iq.5Xt06πt WtKjT֌/}0sINzR|1+,牄6bVyqgL9ےFbZv&25lStm+}BYoFcfĔ5\Iv?H6fE8FdƨsaD0Ʉ"㏟U: 6g^PU-7 n"sR7® }qT͊U=ك2 !mh2[h˗Yklgs7D'f5x@߾y~ǿo m/޴[ܲH4xPk0#<|gL<U}|s G4p2Ϭtp1+Aqֽ]3]hc; Ɛ=3:,ay^=iDR]bHńnQ}d%'OW!~*ʜ t}'΋=%V\ECX(k fl=>H?v0XXxnK/|O`-æ]- uB8'X@nWoފ |; # I*NwL!kASk9~wkjjO;:st[l;2[i`W4jbq1zw߳QyW;3W07wʝbgoF`_L ~X =oS+.5Z >bO?dT5 Kb|}ܘQq1pDh5dіA5c: s!6 #/S3?)nngƼѰkqpPcCf˾]*ibFewdJ2 XhA.={#Y֎KO7bD}3"qt| 1 F[# ~h` !<%@ɳ 4O*24~*wߥSf^HS IJ$N2~y`ވN&,st-ނJ`tS3sn X9JΨ9ݻ?e9LY.V}#ʀbANuJiQΜdTE-܈CT{[ił2g$z7cW T*M$1Yw*qꊟ lQ | ja'?șE/n1IBWՑӗ|aϥ!3ZU) {9ɘA|@Fk*g]ۍ9-5f˹QA9c.L$q(iAіCqKZQt@@@`Ω=<@?W,kŝse3݁ևW u7hVc{]ʀ = kcWxHJj87=iT8:Ī" "@!!6E" v & &/mL5PP$l_$Ȃju,Up>}ݩ>t@@@VC(< cl:hQj9v[ QtE=l)6 /HiO?:fc_uS 6 ~iQRj6sPsJiv5cX ^ºNxxʀxZ)M.Gac;k3*8'.[]=(d@Uw OF ?&C81tgSQXJ< e@& ~vxϞ=JUUo>e~K0<$sB0S}Б< @9v >="BwM0:jԨޑ#Gb 'bÊq\(׬Yc_|=1ƀQ3 hy>L,cRJC|={:x@m4Ǔ*(B4MCcKƷLĉy%(!$aud`~.*(:SfY,b1q @ ݻ_&˲Dqh~!qsNrr HMMÇGۇۇ%x~`#.*BJu Н8k֬%%(77ɢ(3%&Қ=w;+++[WZ%b1EbAghfx=+ڶmV՟׈k={72 ݽ{/]Ty~a!ıE3BƘ`+oƢI&N3pXHD6^~Օ)c'B3H)III z&9}7S k׬YaYfYDrȲ ,wkƌ9Ғl+Vt tŝ|re7ׇB\sM͏L@b0 jwWUE6oZ%Q̕$0b«׫3fsss5j#Y[9hǿ}/|)liZ4Mz=8L@b֭['mhj656rv%IPҿF4r%ĉʘ1cLKK+q$*i=|y۶mC---ݠ(ME<ۖXb( J t:'rvyqmiiibsڵk&+X,Smř]]]R81}9rͦx/񏷎7\`\TO?p Yu3sCͻB+g2Ͽ=o>`!$, fS!CU<ʔ3θX_mK]׵_yeS*i vT%ru5_ycw]& Cj+Vl饗REQO~@U>INq8w$BӴHUUՁ'z*1dJt]W̟~wd׺Z3> EQzeڵ_z _o` b~t:7_w)3gLw:ξoVgI}>L͖tq0^I&U=qc0\"`PYbqF-f8cH/1~c455!q}"z+Vhy]9f9*)j{̢(fb28ȲUUհdb*[9A`%aY8%---2cYfYF ˋ/v]H1%Ҧ\]|qWwx <=7ncjaժU4!XCF:B7o6kL-?? ѼUQ{}_0%X* g̘?~:Byd:Աdbaa P#j!,ᬬGٜ׾zϋ/(mٲ%d2Y9B$7oށuW.q˃ar N+Ze˖$Ax&XHxΟ;vH ?7ސ2\95=^rI 7ܐ#IR,& 'y<ڵk_^| HUTt]<ۮ*:mڴ4;^4? Fu(Ju^zeK|2Ѳdɒ˖644SJĈ!!&I7n\ӵ\9b|3Ν;=쳅yK! ׹SIŻyߟ;w&B&Fp8Bϝ}M70*?K/婚<TkǏG e& 4M~61Ne9Fx$!*b?QV^~q#"UUu>k_bEBK{HŋYYTUa ;p}}Djk`+$ٳrvU1 4x7tSKss(rz8#fyopφ ȷkG{{{O5B g$:P]}wy'WqVU&oRjMMM#е>PM;v=w0 7Dz7n}嗃rDf&oeiZylBkII lQV,KB&( ! gjl{k5~%MӲ'q+\+--/"y69%e"*vX-h-B"[nϛ7/k *K,Zt e0{R,Kd„ =-\?~| ڋ/^x $IN<0CƎwoV'MT p-p ݧlٲ%0kA`7zRRR… c^}Yu!Q=OK/ ^}U(===d{y1np0[H(X0~E` ]{omIId@>f( [)B]o8s'{-r˲lc` _9s:_U{v5gEQ@/\hdAWQWZOs>?]$6(/7vlkKqq*Y=˗/wL& ܉a=SK/Ԏ( ʫywM:A,^`D_vL4e=矗BWJ)PJ ;.b._lI,L< cxE@4PdYn=zz)ܬYҨ5k6eYҜ`0O8dY]9;i$ujEE# --e6"ѱ+뺋y 1B!Boo3gr~ziӦ9.))hS8I4ȮYg !#-d0?^wqǬ&TƘb34!,BH7M !$VHE$j61BHv\iSrfy,\rOKM@ 0x 7m)" =J1>Z1 ),,LlȨRmTihĈ0⵵k^]Y9M1g02!!fCIqsqq53+K$999`nNNfS˙{ <3,lt0 1ba("#n[t$IL<&n(((p$%%l6f}}?w[e?u䊢ȶ3R ~/,,4\^VVt:KJJl4%%% PG*-o}`ڵ6H(B0 t̳p8j99bVVJOO&Ir@|04e{iDIlG~ A((l7n)''qTiMMIIMr:{BN0̵y^u5Id0&}@oJJ JvPJJwѤVb ,Ñ|E̮*/~ѤiکM 4 4MP( #HQa!1bRAr8Cy1U=zt˟,!7x tҥKvbӃZ~HKdX,.=Z,..6}V#}ĉ'N4PpSMMtA*ٙDxYq(&7cIDAT24M!_`<)%eǎ'NLV{aݗ]~9LcDln  @H9A`VB$I2WUU%*9 t_B^KEL B(RFIvv6e<#=-s8nc6{ ,!-=`8 O~? ա:hllpccrJĪlAۛqFx8gXHkxS !̈Q$jUǍ˕EFrY$77\|P "Kр4:HKKBuYgqOAWiUV)_mdmmn6wt`L`0(;{Fq HS}mR6i LA)hRZTTd;Ə'L@RRRa]~͛a.Iآb1 N;S5_@~{=TtflΚ6 UTT.߁uutǎ}Hc^z6oڤ 0Y8DGqʕޏ B lcΜ9y=EWU߿磏?ڵ+; !UU2EE]4Y85xwBBhQ $;;F0fy$ ,^֭_okiic)'a[TV wԨl]w;<WQqN*-dƌ8;;cb 2yfa׮]\ooMӴ#قM wi[nYi^Eyv 2m]>)pŽt4̛7,Ikx !55(//O?&rrrl6%cX`޽uq۶oz{{VsDŽ8q8].1L ]X*x׃ ^].K.89p8ƈE%//rrr)S+++o8v&"A8Yv9s$|rܹeYFes;Cfq,̈D"Z{{w.$;  ,ZIL@F$=k2IX;0B-pɧ]fMdb}~g.8QK%Kbx|EJJJ^|Q{Gll#yn=Vowqg7着JhW<ɓ?l?d_A)I ??__`9sJF<xbϧ~jojjَ(r饗v)Ip$rpفfg9 .%%%1`;/6mڴ%Kxf ݳGIIIL@YreRFI;N.яȑ#ٮqFBzG8 n?+:tHlii&%%fDľVNRB^z%X/0Fc7v@^|yw== AC:GmA%9!e]]],4̻w݇=\& r8.h#Ft뺞%Z{7(JB^5MK lto X(w':-Zdhu$jfO0LHXYY rYidddhwuq%p6-sGNNw˛BJ"z#!zkؘ W,25JyYp8ī*ej hp60LM65,[7ioozzzDD"p)EѣGD8~AΟ;7_rEX%$w֦f"釢(tY|PLKKcməgz=DZca߾}Ɇa$\X1ZZ[tMs&…+KgΜ{MV Iri/N3Hu2{[ a]uqDpP~_Mă Mv7v(qnݺYytx<\k[NaSOnVn3`0s9} 7fs06%fgWwza%ȺCon -ϝ"H{"5kd%~WOO-=Bwy'3` *…^O*:@`{" HlNsC}& PL0^z e!UUEQp}}U ocDzV bXğH<AۍDb RUw^9s,@cɱ]qf)Zދ1/=$-[)[ol 1\3fH3f̈ 6nx'bZvqAQJJ +e0orrrvu=EQM$ FsKfQSN@(Zԩ ePC1PJ~sB 'L8@j"[rbt]' ϏnmP}Yu8!G]z6# p͵BssIy=[Hȑ#IYYNOWWWΝ;?I p!a@A~8&6Ȋ>c $ v< 98|0u]`N^xx!쫮lq444D}(3++R%LpQm̤8aqBqX-Q`p7!  D{x%JhB;6 b]AN$ !E'BTUCׁ1DpBcc[ދ IENDB`assets/img/add-ons/recurly.png000064400000033006152331132460012344 0ustar00PNG  IHDR&H{ IDATx^tT2^ @B ʇ(tj)tQAP Ci( i˷ A̹dzr3Si0&I@"'gL 0 &p [8`L `L 031& &p [8`L `L 031& &p [8`L `L 031& &p [8`L `L 031& &p [8`L `L 031& &p [8`L `L 031& &p [8`L `L 031& &p [8`L `L 031& &p [8`L `L 031& &p [8`L xx 88v;RԡP  J%?~`Y DnfCU W0D ])8Ɉh•`3օWB@*% `LX@DVaBRxQEDZ%T0-vl;㿜ëqDZDON@`qsjÆ Jy.F)igu66 > ! 1s^"Ho^/"IoFQh?=+Gfnj&0Z?ڒsd0ҥ'_W+G} 0$hܹ\Iz&4<. 0VF(É`ZJω| `_ʣQFyOǴ.q]4JW%2 <5*Vw3.b.D>΀. ڢk nقoōTx6we<, .͘h›j͏L [>-ܐGX@rP`I*_H XJgwo[PTP*ӷzx &Z3ZM,Mi$ H_Pl!YI,848! % P#_<(rqTrBrOLYKEDVpb`.__*$ޠUCsvGYeX}. v= B及›ffU߮VÚ!84HV=8:Ⳇq/`X,$N!O~/6ҟ$ylf ;z劈dy*>qjy6&E[d}\'}BǠ`Fj i˕kah% #>_J5JN8/N#+'f"-W. >[xSUMt j8ayLH?Z.C7`h pdƎ2yX@ʩY@)ьڢB+]=s@u[*2 QUMz}49w_x$pNd` , 'BD#Ey -f?ys u->z4v?(P{ŠaPąhm6mAzy N9Z@6r!Wވz.wW p/ ;R'*KX1ghl Ny D ׿X9psV?•qB& H"9Z@)4H*=6 [~ FlG`x8NZCf| $MUvCm&5+M8g21o2b(m1a1XQhҩH9yLm;-/J8!$"*$cyԉt+o|rܿx®[V:HxxL`>t݇+L@ lN4%Q^j+-Av'/cR9Se6XP+h<H65fW`&), ) YM6*K!08P!&q`X#R:u l _wxq,1flf;&HSxGPm~)^rzsH|hٝK ϴY|* XBQyi? OuW]m =':mW^͎#cЅY$ ~e_߰yoP&7& ՊBUQ"(Z4Sh&VHs.&<"Mi % 0%ZPڑRR+FE$ťT8[Rt0jգ7pb['!0(JҥJ"wsJ7^_,zE㩔GPF+e"Axx?g#Rß=8)%'{8u=|/ H}bH4QN'D[FnM)9Įa,D"﫵|w]uVUZG aDP*q]q[ %"j $L(Zpi~aGq\RBLm+j )zm5 \PKB OŃsnGzALS xgn"B?o`\Si=6iRbDYnŐZ` 85-#[? &X6n w~MjE]|z= GV6iCXHus)0&񻖨R[m&]é\CŬ>Kpz9jwQ5X,|l o&>BKHxGپwznƩ| fRSD$&bXY8KI"Еhٯ4a?X@zLJW NJ"ߚ#E_:|:#m̵70v*c~Th^\pߞ )rj9bmO |=j OD`;#@ݶ ;` )$Z}">\VWŏ?8ct, =AwUAػ`@}k:h|n Z i#_qZ]t0G'+6/.>d0cߚ]'ߖ~F}%T iN8dv%88A.މ>P0duoOΘwW ,:6JJC7N`n+,\xH";lv;4Zy.*i-au&nL+E&ZA2Zj){B\F7sEQTV}4:>>Nrdj׽V)) #ٙ8=) d(rZ'V|Aږ!:= Wbdo WvrZL!f yǿfo'LBTmoz5Lh6I|b Rcئ C;/uN). |d TV^6:Ղ;yR@Ș^a)tV`+$m9d軪/*TןoC[! dpg%{@Qe#wiɛ0ߎQ>A|W ᓙ^ P$wG; ߵ̓nf|'W ۽d&c]@܆ sf>~y{R@t!"]bJqqUq[PcwrƊsk, NʨD&#7Rցyqrk(Vѓ>+nBI^cVLc>vN<"CQBqΗKV[i2pg!Ml<]eAk clOx.&{f IћS=_@}?ǒ>kn0h'cՠ7`dHiL:쳂lH=4(A0xT>U}dp;% B F:n5[xhm->\Nلc{OJtGM#N Otjk Y#kN ˱-k ܻ*[,$e)cw}g;Fvه?4mbe.(!h vM0r9SZCbz,mnK[T鑽'0ByGX6q6nʗɩeo0aL1fiFi[.`#'5K΋N/G]%cq)t.gJ5t>_񩰭p4a'4:ߚ#x(! H%cVb. )8*C RlpӍ6ӓ\J-&4 qs>\th4aQDA(֜d lNq|* wini9Lc ~7h|B% ڦZw<`L{uJ^ۚBRoLFDEܹ~cMҬ[$2~ }k*]x(`qX0m'F֛ LĎk΀p◳QIrUk::" tzU >Cl{n™l<*EW9T`EݎYBu-8߽-t`_Tv3q]YmB t('Y5l3BhyUP)^3+]竕zyWg FX@|D@=t l:[oWU!}Nُ(O8øXm 28GI^Gx91wNUW{>G (\<#NUwSy>B(ZJ5e:}2"4趰- `i/Ǟ^/4*&n R$ |ҍ˹Rm!/D) wfا8(Ok;7|՚ hBOՆ!UgċW@-m͠xƬƾeʎK遂 1* HE=JRUyR;a? &ӽ, qP Faab܂mSjЋ.Lo?1ZQW5pleYiB}AÎ aT)O JQ   Z?W %bPQZAY ~z69/ĘO"cd G:%{MqMQաnKY@rmV= bf_tckؐO?3]r0Hebڐr\*M/<:맼G¡o~:3, 5ânP\U=+ #6}T!feoX7vj!m! DZ )^xq\4ݪjbcj!ךjbSr۪/ ȿ ~ͻcYu[XODRYHޏړqF^Tv}œW09/Ty6MBtn؎޲/K|4@CP2큂č&6Mhi$unlZ! ȋF{Obv{>2nFtENK1=Y +b1xCODvyT<W cw Kpr9(թ߽`yTGxP YKdM~-2uK{;hTk{-CL*4ON'/Aoţ^=_1#Nb۠T({YY@TF!-.?ʻϣ. q Zg`!vBUD, ( ME6bQ?f10Zdoiu֢ ޼h6}aI0bAB3D$gȏ9;H, (NY]@T*N%$$bPzlSkbŠB2 QB  h1|goD59Y I!W@ķ>%SVJxo!$sOw@tUjWJ2G!-f ޹aҨ`)F3)/en.]IM@vEW ěc~O&WfZ םs\ڇvѷYLL+jCFϡxy{iҜ"yb2h\tm;; m""mHFom2Z Ǩ͟e ?gMNNbF1l%۶Hyp̐sFY_BM z;T%yn1w`B^7R >xǓV1?d'ۍ.~ a)<{wK]sy~AVѽd'Ie!'@) HeS z&)7ʁB}!lGaw ` 퓦g1cnȢ4T/Ç`j¡Rhۈbd ;B x+Z,:BDJ*OG-g%{Ҵ.Җk|T\eIBF:gfHР|s2v=~Cm#Iq$:H˻"@n0J8MgUz.o2KSo:ŭwg\t+$@nlMm^6 X@|H@)d7"乴>|߾=/tGxtQ=1'w>\ @Vr^jo$AUsCR8|7c:VO3:~!\CeLj}l.z/=4 H#8%h0aԛa1; MeGoy$l[ztFjt ɂJC~;<[to;pti霊~j<xkXCTzyԞiJʴ4dUQ J0w-6<\łJn_ 4F Hu 7O܃6Pس.j;A}y|{>H'g΀86}Q;ZZ 84&;Ɋ裣`([Mez82T|P%'bqK.!6yGr}4EJq0[8$$tJU"o܈z>/ F/BQ':݊Wo!zF\>qO1F F%,PVU# "()(- +l14¹KzF) ӝBfhC4ܴ<*׭ OfƅCqhQz1c;)V;4Jh&WɈdDchC6f-=Ĕ*+$otZ6f<'+CZf6XFnuW߸t _֟T X@ttx}<:2xS/DmY֏ݞjDȉX@rb;{@ҷ" G\ yqw2o8Qhۗ?KG`نm/? 1cOaFEb;j 0$ ;8L=.uO6;|kn`l8c#9/ Hs~c&BHT0)X G]X/zߗ dCF F ˷՛3$s~'>;@&P*(VPk,+N‰$, <It0(_5>j!8,Hys:.o>, ǹrǭ޾2h8iY o0x9Y, 90$v| ڢǚJw|k)o=4*AWeYK/(!fy w;X)Ӱ `>FBhC0tc/ܢJU؅#/[;} Ai@LWqC@ @A2>Km?uxxax*(re6BMX6z 9{ f*Y@AdLmfME]ɃgOHe`]gdq͈S0&(U:dbj5M89l7ށOKd5$%fɢm VfQz?Zg͢HلT2yQ.EA/ ܾr -PiTPĮ&25rXXFUFXXPh=J$ <-~64v4?JW!AxXfXTPd\EOfڨ㊙ ҍ$:IB7c*NKUI7rqixuZPAmWK_ *N8}U4-_!1&"-$y%(Ͱ+l~6-eU񸣻8[Q"T}e. 0& l% H_FU"슧y66F#”#Ea'/W^5~`E [Hm& Gf=*0CBBq#dL,\&υ|S7eL B$gC}|PN!}9y9-`LS%%*>!\(PJ5EB˪8L d>/ $Wnl GĒpq~>j=93`L@O ǥSl8dXFO=L? 0&|Z@}|֌ uXQ4oiBgp@"BpWI~Y&)"xruAFrb# 0_"3bTq6lJKj d#"eY٫*t P># ON@mנlKҶ?L 0@'V$]t X WgL + t\<:iR(ߔJ%T*oF< ĞT`L 2]@ GT!wdnȟQQ@ɗG@"1!7q5ܸ~z^*OxMT 'M5{{ `L x@ cDaXjQHTjx(VBB/.=nܼbp1ܻO O=tD|EO0&F S;N%pg4H4 %ʕ{ 6D՗"2O4{㉋ǹ _k.d2!""o4j& :׶Rkhllv k֭3gVՆ<6<}U qf&duVahݪ56jp/Wlƾ}`;-6Ω& n_Iq m۴A69ҨVE6nysX6u*7 0gdU 8zg?ݖヿ5^<<<nݒm)PaHGn `9@ ܐ1mT,uB{歛D$1%r7gL d\ <ma@toҤɨT)빸^|1Ft\e 0&2M@NA tjSǎh׮Pz_L1baccb/rx@OIepu AsWaľ}ȱ#HV[):o` Wv1& dX& $$h8p 6ifRի۷N{뉋 qe_@/WD4ۿ?/ )WAPoHLҀa 5}pȳ͎ HKT۴All3eRT,EPp`ܹC bXqAL xO mM l5l ]Mg%RhQ#Gk5=… ڵ+ 2gw(Ut9s]wFqyc1&Zl}NIENDB`assets/img/add-ons/convertkit.png000064400000027614152331132460013057 0ustar00PNG  IHDR&H{ pHYs  tIME0l,s IDATxwxTUǿޙIf2$@`DDł콬u]+b(łAE'@zBzLcP23<<<̝;{vrq:Ja5A/5A8@M@AA$ A AABA$ A AABAA$ AABAA$ A AABA$ A AABAA$ AABAA$ A AABA$ A AABAA$ AABAA$ A AABA$ A AABAA AABA&sz f  asHG8f/ƌ"A t|Tb45}MfPh1@FA@@8sEE<8&$-XuߥUP)D,? n2j hIx\,b"ml|shݕc 9}j|{~ _ǚC rᣙC1%9z+A$ z^ 4,֧WA` 20i?T H@졐 xw7]%*X7q,2 ?W0?wgC.:tYBć3bG ^9s퇠3JxXw&⃻br瀏JrxPV#FjԣYOIDMbl\\ヹW B| , 5dwʔna*#X46ܥ;_eajm1->*9Oǜ0<\zӫPbQ4zߝ`3q l;^й=:+4ptf vCk0aΊL71 NzsE#S/*Ps<&(ƃWGzCUYp9CqPo OѡPȺn"n(}yXsRsz*}s,*w VC.2HX(Ds=QPj Ps2+աEo" *w&ϏB&2媰~%Ҋ:. )ix [ *s*PTPvLdvUw]yr,~m0%%R٢2J F,l’_QTz΋.&$CnɬFu ,n"nH :6AdUmct7epy]5bGv-DYk΁p5<{dž#Uж dè(/̻"C0JJ)IP*̂7qq0_7uIȹprdX1;|l+ªz:0.!^vշx &΁hCr LsEY9udwż+y0OO~/ ,A<Eؼ+q-$ƻ3XuHU;D?,aF{IQ! !Bcs,qHB3- Dz቉z*`+ ;w{߻OBv]?¿7;%( qm`Wn&$1>1֡|p|>s˒47|#~:Bě#w9(a,/ C[< &/N ǿ"V.2,QiaGv](0폏ݣC\iv3kN0I!^nX>;9ήx-ϙ=:M_l{e }2,'w(gA(̾<̮i;`eT'\bҮ D̀L/i/:b.Zkn,n~/ xo{D8 G<C0$ٵYtAA1aL[ 7##᫒wJ6>4㺰ם֋yʫbsVchCWU4#"Fj96<4 rvs1-ӓ3Ǯo) p0<Nȯ3(c e5+ '4{f`KV Xxq c' ԶoWڊq/O0so*?FEz!׊-^n}VC!֑0x3\6iݡ ևRu R;%δg]6O^٩U0pJ_z߷k&<8RlEnCKl0qc|kwmHGMs!q ~ ~lw%4xiIV ?91|JNE }Z2?Mf,IOPOyY{.RzY6]ZI;.7JxH3[j(0+hevel& CB Ni#MwiYxDQֳbCZo^@pKpQ`6[ XGYWEYMuF>Y?N6kog T 4om-?6A`懵77~k j"×sxǬKݥXg-@a#Rvh5Rb|z8n/ `_=OJ`Gv<D aLi/ ; ss*e+OTE T~ʨFL,/әOtoȭlͩAoMC3a DH/j PRjH%|Ds؄psj m1.y'|fReuqÀı#3>= v=&2{y7QJӗIQ95ߴksH`e% U@ac^GZasNݐʾQ67L4k5lɪbF| e͖ R8k?5"FkT[p^ ~f_JOBj[c+[]тͤn|x<79,pOlxp$w pi]e`{ix@Zv̩l9gڡ~=I∳f(qtb+Ss۞/ ǿZmYMDH=]r/&#!XUYx}SU 3j&Bxg'E Nh'VQUfoi?X9;cPN IJ/}T7e'0*{Դ3ttSS-YZ2,((a^M.:ۊ> Um6d;3~./xw{N;"6MheK5g$ܿ<<2|>+ ̇kVT 35.dwo'DPPc}6ڥvDmx j>Zcվ 7Kݪ$Y_ÑJh g/c@m/ZV_?$q[ͶW_D4:6ht&&r7c(v 57!8MB ?Ǘߝu\kC0*ҳ6I> 0{ru{%=fԔvٜ>U`K&KXO>9 ̰Qyw{v]f؜ @M.2q ol.ݿk޿4 ?=cy<;9_=ukFDxb͂Tӗ%{??T.9)F&=RX6+ ol.*' vX9;7s0I&0<3) OO:g裔aP|a ^UZXD<$ SS~jž^u T$7wLDª][3Ώ2aa$+.ceH K?6a!Q`xo{vv$l~"|JsZ0/N.l[V3B`yPVN7ĴapyEqɯ%N2kUZjsOh-KyWu,|57G91sJH#Ͻ[\Kz,21ѽzϏ^=.- :e{,KSbw=c4H)|vņ-z OBeS F 1ggc'֏ѲfL^|-NƬMv؏;+GJ1ys҄swK!~:Z+2ksuP+xpq=CŢW6t܋isրlgIDAT;S@7<@K _tk6ck{q'G'K[`ޛe4f2_1݃_йBz,* Spv~/; }V}I0xlֺ3Jxw{{Vk/WgO h{Ȼc@fY3\cb+]nkz MOWOYr_LJÕSדB1gm9+Z]9u5qJ\狑jDcr(]l@u-8Rڌkp\$q4c1* 0:>PZF=NViSZ[{Q+!J¼jCGZ#Qd)x2T:ws!ܬ,֐|k ބÕ?c|Bl "24Ф3-W؀sPhk>-zwmQb-KpPLM@| 9\PEV+¡B2Q[ #8nq+A!?ehj5b *j?ѩhЁۑؘQ_߇W(/D(.I(!Zmٵf}?)bAOuG9^9y(q<&[v|vR4fC[ق>='&FnY/FcѩqGP8ݾ=N8t O򼜰 m5^ٞSX &c M1X4.b@A*iK Q!ep{\KZb?3/\__(aWY ,Pon5gm+7bpz"gpVZ \9!0]4$|^DAA(0ʎœL+ 9ͪ 5AABAA$ A AAA$ A AABAA AABAA$ A AAA$ A AABAA ADos0&7L ``ay\k~qo \, ফ\`{bI$!?g`\̠wm:r 7B`d!2" IP@hdhuGDž+ud^iS;9Atr8OM:ĜChAwOMBJ6A4iH9ɏ$SB ADpVUh0b dOm:2U$V|- A4 *wܵ8,%̀I@A> =A![ƜJFa(It͙C+?߀KkdaW8t[ wmyqzlB ;{9"VçةQ4iH@ŁXDHfToZdDPvUa`Y. ס&R\XAXAnh_½-GŰ<:i1YMWuGQmhOqy vCGS"OFVAhFxG~ܶ4ܳ>x2cYZ'U6 ZXAXFQ *wY<\uIe.ξ? 9K!3jpan: !DlBpf-dF $Al)sFB{PпbF]c/Շ\j5r5jwPx˭>' 6C@X' 34÷@ҥ!$ 1#l'| 88s{6">nDWueF@OЄ1DzA @R *!#%-]ZBnN,!* jlc.q# roh=/\.BBI!&s&s%];`\`ңEFЪàsQ VL^I@bՇnA.LLQ# M^ z B2`)%O d $]@ +|gZ!0Րy@p $H@bµ$5F',6j.CW,n`mZ10  *M1j3(eBeR S5ADZ@HNԔ.&!My3[iȅE< 2 9FF&9n&rIBiY8dE2 1>Z- `L$ 1poWC6$Akba0T*X$''#&&AAw穯GMM ,梮z",DO;AD|EshZZ:|8ƍT׷yyy8tmߎ(oc#_ W A ɀw ="s 43&LgcYY6mތukע 2YO8U8&&2T$ 10l<ܕ:s$ jL2SNEdd4[;v[[hyP \x6$ (?CP8=1#G@mm->P(+QVý zu\jpE.9c֭4iSg5kp饗Z.9<@(I@hʇ`_9F#ƍk] o&†:\n? Ο/û> \躇Z$,\2<< 4IDATx1pF7)3^t~3"!ռWHrt嫒"Kѥ IL\1cfr~jCKoCIIb[޽SP."9 9 9 9 9 9 9 9 9 9 9 zbNJH␔Ǯ艘b1r>]9Vu>b֕hs,V@tcit4 !b>#W nqq_Wǖ*;6Vn&vKzF,)-i:XH[&v4l-]ׯi:DP$FL!6vͼ||}^NI˾gjVVq9vùT@粸ч@N хxR!KD[ߣמJdu :z}>עjfLU9qӜs;RSK7lnm[ڈ6^r^=Y.+=˲.~sO6a[(Zɸ2G܋~B} ڛ#y{ OP"H{ *rUH6<-rai{0L["}V]9)iE6Y,?FμC ei@6^}܋)b"N*=G1mXgo$y?X>9e瞱FstTzPSuSr(VX"8TVURJg^+K?GtLR7F{C܋o)ܧ{[Ht¦v~n~LY8elnLu>$.=9t* R@'-%q.FAR^8FEd`< dQ]9Øp@s7oK5UcbY@7q>橲bWDʡ -WIJh:*ɚGri)TAdwGͦ68Qi%NGkI.b`:mLq>Q+ >km1O&= P-D,CĢĚUӦTqʹeWNjk>M4&E}-=sN'eL1Y=1&HPEdLX($ K,"vLCzC{q8s1{y>ۜ2Afhsj0cғsuyӈe! 3$M?Izv?Sz12V41e݀RB;Ѻ4'ݘRLK-y1׃=XWT끐!!A,K'DR1}3RN9_ ,?h[bG~;Lt}@sb'TqzρKX: tvI;͞U@ܼ!Yn/mp&RJN^9I*P,,FNC-=gAOr L`E1ӀNSD[,2Z1u՟{NQhUqLrLF6r欘=; =ƆR\+^ೄbjv !PS|?Eҳx%h=3mXqݎ\w2YFUNߙ=&r !ᅈe*ޒ,i18ipG)wk.f% CK iH2aYFd-1+QB]uWr5ǜr( __NhJn̞Gs~Mzc#WzJ>wpWUM_ytjy^NCTϖv"40?;}n`ԭi2}s?ӨEKPqj 籾(bD{0"l78"%VU餐e=g n@jqZUi|bkiE˘4vT׭}KRn#bIQvc$qR$#~|YOݜ<@%Ek⢔zЕy\oĒ*te޹ '7C}+I{ˇ 0+9-AfIE1?7YWSus٤+Թ}O9э=51NY:SLwG*/IfE!iJK {${|ŜQ>rIܔEW(hO>yf1aˋamIoskq7.s"&׼qbɬ;7駈I]h^)Wx\ EgghIu/e9gOu޿Y?ʌ-Urd ^f%,$MQTN@Q$*WlJkyeN7kO7nո _vu2&ΉsٷQxu9>?z5S#LX^%4nέL"{5kܴU 0IL'怾P]37CEN*5qeek4zSO;SVD78o^o=-MPBs;wHk-/J׿۷on(hXvW,ҋieKkC8Q\!j-Vd`œާ֒2j6n5kEWYfyc\׻Z!+~Ww dU Z6=ļ1b L,\5]lk)Мbר`clXB%<דh?ī7O!OS~)kޜFO=|csjʧH]9k=һ_*mpuy9TX6jjryi^4c5"@t'%!x6SZLq\%]Ԩ瓘rC61ryq1*1@ROݻ7qy*al/zl{M*7IJHTsV:?HݜP_>e/93zm4`l\*t٬+NWIsX !1P?iJQc "5t: PIJOk~i./3&1hoGVqJX͎}fj:y[g|0C:ey Dhnxe|qӪNOkXBvƛA5ύGclyʍ'qc” b.1:\/{Z=;*w2 K\UpЧ2^4$שU饋#0eW9tP% [31U)$1Hx%5`6",,αqtj`O?i^.數_| /n~vv6Pn>ݝ,[Ƶ`=PFsg7>\\p1WWS!_ Ր0 zU5˲eꤹmLv%Ğߓ ?9'(x1u®1LTӖkt[(Y|z!~sz(E+"#lH|tb S|U6餸괂_'w\-QYm-1|Qgq*TS$e|n j@4krJ.B^҃.).{Ԡg?8QnfSfit%)GsSO 9xZ݊LQ,̺t0,jyۺ|z `Rclƪ":+ _7r2Y\$?4T@,) lǐvrӿE7O"mU9򺖤Qڎ'_o"Dk-GʽIEWs;K7K>uTs܈CK4TR|:!Z sޝˋR)] $\uB9Ct*BA IJL~fs-DdT=1/.mnV;R`΄h(4~_WKےYa/i}vyQdy !R>$- mق~b d)-iXr*i 3DI`cC2w)]@rbYtVvXWbY-˹{npm,JrJ4˄ ֍5<9R^ dEiD!A7xO1C9ʙZH#@nD / #ԝܧK,ceE_rv+Lg9~R=Aqr`USDyb.P]dZ?%H Pw< IaqpwHHy O<3pSB>*Rsj X-$J<9bz"EXI,Qp9=5|eMჺH޽O>U<^~޾}5ylJc YH޻wo:M1=?.%s%kqC[U:Ebr(7Lg "O?MԌ"w~;2g=z#% C0Z(A(ļHm򗩜/ons\dÇKcpGfS꺓F҂KmY r@+ cO)_$QDe?5.iA@߹{깐 4yZ0Lp |rYj"n 3u#'* &[]R^l_990)ٔ^jLOHO?\!"="U"bn[D,W-e!O &"ĢQ;X4Mq,92S)01)l').css({ position: 'absolute', left: '-9999px', top: '-9999px', fontSize: '200px' }).text('mmmmmmmmmwwwwwww').appendTo(document.body); var originalWidth = $tester.css('fontFamily', testFontName).width(); var width = $tester.css('fontFamily', fontName + ',' + testFontName).width(); $tester.remove(); return originalWidth !== width; }; var userAgent = navigator.userAgent; var isMSIE = /MSIE|Trident/i.test(userAgent); var browserVersion; if (isMSIE) { var matches = /MSIE (\d+[.]\d+)/.exec(userAgent); if (matches) { browserVersion = parseFloat(matches[1]); } matches = /Trident\/.*rv:([0-9]{1,}[\.0-9]{0,})/.exec(userAgent); if (matches) { browserVersion = parseFloat(matches[1]); } } /** * @class core.agent * * Object which check platform and agent * * @singleton * @alternateClassName agent */ var agent = { isMac: navigator.appVersion.indexOf('Mac') > -1, isMSIE: isMSIE, isFF: /firefox/i.test(userAgent), isWebkit: /webkit/i.test(userAgent), isSafari: /safari/i.test(userAgent), browserVersion: browserVersion, jqueryVersion: parseFloat($.fn.jquery), isSupportAmd: isSupportAmd, hasCodeMirror: isSupportAmd ? require.specified('codemirror') : !!window.CodeMirror, isFontInstalled: isFontInstalled, isW3CRangeSupport: !!document.createRange }; var NBSP_CHAR = String.fromCharCode(160); var ZERO_WIDTH_NBSP_CHAR = '\ufeff'; /** * @class core.dom * * Dom functions * * @singleton * @alternateClassName dom */ var dom = (function () { /** * @method isEditable * * returns whether node is `note-editable` or not. * * @param {Node} node * @return {Boolean} */ var isEditable = function (node) { return node && $(node).hasClass('note-editable'); }; /** * @method isControlSizing * * returns whether node is `note-control-sizing` or not. * * @param {Node} node * @return {Boolean} */ var isControlSizing = function (node) { return node && $(node).hasClass('note-control-sizing'); }; /** * @method makePredByNodeName * * returns predicate which judge whether nodeName is same * * @param {String} nodeName * @return {Function} */ var makePredByNodeName = function (nodeName) { nodeName = nodeName.toUpperCase(); return function (node) { return node && node.nodeName.toUpperCase() === nodeName; }; }; /** * @method isText * * * * @param {Node} node * @return {Boolean} true if node's type is text(3) */ var isText = function (node) { return node && node.nodeType === 3; }; /** * @method isElement * * * * @param {Node} node * @return {Boolean} true if node's type is element(1) */ var isElement = function (node) { return node && node.nodeType === 1; }; /** * ex) br, col, embed, hr, img, input, ... * @see http://www.w3.org/html/wg/drafts/html/master/syntax.html#void-elements */ var isVoid = function (node) { return node && /^BR|^IMG|^HR|^IFRAME|^BUTTON/.test(node.nodeName.toUpperCase()); }; var isPara = function (node) { if (isEditable(node)) { return false; } // Chrome(v31.0), FF(v25.0.1) use DIV for paragraph return node && /^DIV|^P|^LI|^H[1-7]/.test(node.nodeName.toUpperCase()); }; var isHeading = function (node) { return node && /^H[1-7]/.test(node.nodeName.toUpperCase()); }; var isPre = makePredByNodeName('PRE'); var isLi = makePredByNodeName('LI'); var isPurePara = function (node) { return isPara(node) && !isLi(node); }; var isTable = makePredByNodeName('TABLE'); var isInline = function (node) { return !isBodyContainer(node) && !isList(node) && !isHr(node) && !isPara(node) && !isTable(node) && !isBlockquote(node); }; var isList = function (node) { return node && /^UL|^OL/.test(node.nodeName.toUpperCase()); }; var isHr = makePredByNodeName('HR'); var isCell = function (node) { return node && /^TD|^TH/.test(node.nodeName.toUpperCase()); }; var isBlockquote = makePredByNodeName('BLOCKQUOTE'); var isBodyContainer = function (node) { return isCell(node) || isBlockquote(node) || isEditable(node); }; var isAnchor = makePredByNodeName('A'); var isParaInline = function (node) { return isInline(node) && !!ancestor(node, isPara); }; var isBodyInline = function (node) { return isInline(node) && !ancestor(node, isPara); }; var isBody = makePredByNodeName('BODY'); /** * returns whether nodeB is closest sibling of nodeA * * @param {Node} nodeA * @param {Node} nodeB * @return {Boolean} */ var isClosestSibling = function (nodeA, nodeB) { return nodeA.nextSibling === nodeB || nodeA.previousSibling === nodeB; }; /** * returns array of closest siblings with node * * @param {Node} node * @param {function} [pred] - predicate function * @return {Node[]} */ var withClosestSiblings = function (node, pred) { pred = pred || func.ok; var siblings = []; if (node.previousSibling && pred(node.previousSibling)) { siblings.push(node.previousSibling); } siblings.push(node); if (node.nextSibling && pred(node.nextSibling)) { siblings.push(node.nextSibling); } return siblings; }; /** * blank HTML for cursor position * - [workaround] old IE only works with   * - [workaround] IE11 and other browser works with bogus br */ var blankHTML = agent.isMSIE && agent.browserVersion < 11 ? ' ' : '
    '; /** * @method nodeLength * * returns #text's text size or element's childNodes size * * @param {Node} node */ var nodeLength = function (node) { if (isText(node)) { return node.nodeValue.length; } return node.childNodes.length; }; /** * returns whether node is empty or not. * * @param {Node} node * @return {Boolean} */ var isEmpty = function (node) { var len = nodeLength(node); if (len === 0) { return true; } else if (!isText(node) && len === 1 && node.innerHTML === blankHTML) { // ex)


    ,
    return true; } else if (list.all(node.childNodes, isText) && node.innerHTML === '') { // ex)

    , return true; } return false; }; /** * padding blankHTML if node is empty (for cursor position) */ var paddingBlankHTML = function (node) { if (!isVoid(node) && !nodeLength(node)) { node.innerHTML = blankHTML; } }; /** * find nearest ancestor predicate hit * * @param {Node} node * @param {Function} pred - predicate function */ var ancestor = function (node, pred) { while (node) { if (pred(node)) { return node; } if (isEditable(node)) { break; } node = node.parentNode; } return null; }; /** * find nearest ancestor only single child blood line and predicate hit * * @param {Node} node * @param {Function} pred - predicate function */ var singleChildAncestor = function (node, pred) { node = node.parentNode; while (node) { if (nodeLength(node) !== 1) { break; } if (pred(node)) { return node; } if (isEditable(node)) { break; } node = node.parentNode; } return null; }; /** * returns new array of ancestor nodes (until predicate hit). * * @param {Node} node * @param {Function} [optional] pred - predicate function */ var listAncestor = function (node, pred) { pred = pred || func.fail; var ancestors = []; ancestor(node, function (el) { if (!isEditable(el)) { ancestors.push(el); } return pred(el); }); return ancestors; }; /** * find farthest ancestor predicate hit */ var lastAncestor = function (node, pred) { var ancestors = listAncestor(node); return list.last(ancestors.filter(pred)); }; /** * returns common ancestor node between two nodes. * * @param {Node} nodeA * @param {Node} nodeB */ var commonAncestor = function (nodeA, nodeB) { var ancestors = listAncestor(nodeA); for (var n = nodeB; n; n = n.parentNode) { if ($.inArray(n, ancestors) > -1) { return n; } } return null; // difference document area }; /** * listing all previous siblings (until predicate hit). * * @param {Node} node * @param {Function} [optional] pred - predicate function */ var listPrev = function (node, pred) { pred = pred || func.fail; var nodes = []; while (node) { if (pred(node)) { break; } nodes.push(node); node = node.previousSibling; } return nodes; }; /** * listing next siblings (until predicate hit). * * @param {Node} node * @param {Function} [pred] - predicate function */ var listNext = function (node, pred) { pred = pred || func.fail; var nodes = []; while (node) { if (pred(node)) { break; } nodes.push(node); node = node.nextSibling; } return nodes; }; /** * listing descendant nodes * * @param {Node} node * @param {Function} [pred] - predicate function */ var listDescendant = function (node, pred) { var descendents = []; pred = pred || func.ok; // start DFS(depth first search) with node (function fnWalk(current) { if (node !== current && pred(current)) { descendents.push(current); } for (var idx = 0, len = current.childNodes.length; idx < len; idx++) { fnWalk(current.childNodes[idx]); } })(node); return descendents; }; /** * wrap node with new tag. * * @param {Node} node * @param {Node} tagName of wrapper * @return {Node} - wrapper */ var wrap = function (node, wrapperName) { var parent = node.parentNode; var wrapper = $('<' + wrapperName + '>')[0]; parent.insertBefore(wrapper, node); wrapper.appendChild(node); return wrapper; }; /** * insert node after preceding * * @param {Node} node * @param {Node} preceding - predicate function */ var insertAfter = function (node, preceding) { var next = preceding.nextSibling, parent = preceding.parentNode; if (next) { parent.insertBefore(node, next); } else { parent.appendChild(node); } return node; }; /** * append elements. * * @param {Node} node * @param {Collection} aChild */ var appendChildNodes = function (node, aChild) { $.each(aChild, function (idx, child) { node.appendChild(child); }); return node; }; /** * returns whether boundaryPoint is left edge or not. * * @param {BoundaryPoint} point * @return {Boolean} */ var isLeftEdgePoint = function (point) { return point.offset === 0; }; /** * returns whether boundaryPoint is right edge or not. * * @param {BoundaryPoint} point * @return {Boolean} */ var isRightEdgePoint = function (point) { return point.offset === nodeLength(point.node); }; /** * returns whether boundaryPoint is edge or not. * * @param {BoundaryPoint} point * @return {Boolean} */ var isEdgePoint = function (point) { return isLeftEdgePoint(point) || isRightEdgePoint(point); }; /** * returns wheter node is left edge of ancestor or not. * * @param {Node} node * @param {Node} ancestor * @return {Boolean} */ var isLeftEdgeOf = function (node, ancestor) { while (node && node !== ancestor) { if (position(node) !== 0) { return false; } node = node.parentNode; } return true; }; /** * returns whether node is right edge of ancestor or not. * * @param {Node} node * @param {Node} ancestor * @return {Boolean} */ var isRightEdgeOf = function (node, ancestor) { while (node && node !== ancestor) { if (position(node) !== nodeLength(node.parentNode) - 1) { return false; } node = node.parentNode; } return true; }; /** * returns whether point is left edge of ancestor or not. * @param {BoundaryPoint} point * @param {Node} ancestor * @return {Boolean} */ var isLeftEdgePointOf = function (point, ancestor) { return isLeftEdgePoint(point) && isLeftEdgeOf(point.node, ancestor); }; /** * returns whether point is right edge of ancestor or not. * @param {BoundaryPoint} point * @param {Node} ancestor * @return {Boolean} */ var isRightEdgePointOf = function (point, ancestor) { return isRightEdgePoint(point) && isRightEdgeOf(point.node, ancestor); }; /** * returns offset from parent. * * @param {Node} node */ var position = function (node) { var offset = 0; while ((node = node.previousSibling)) { offset += 1; } return offset; }; var hasChildren = function (node) { return !!(node && node.childNodes && node.childNodes.length); }; /** * returns previous boundaryPoint * * @param {BoundaryPoint} point * @param {Boolean} isSkipInnerOffset * @return {BoundaryPoint} */ var prevPoint = function (point, isSkipInnerOffset) { var node, offset; if (point.offset === 0) { if (isEditable(point.node)) { return null; } node = point.node.parentNode; offset = position(point.node); } else if (hasChildren(point.node)) { node = point.node.childNodes[point.offset - 1]; offset = nodeLength(node); } else { node = point.node; offset = isSkipInnerOffset ? 0 : point.offset - 1; } return { node: node, offset: offset }; }; /** * returns next boundaryPoint * * @param {BoundaryPoint} point * @param {Boolean} isSkipInnerOffset * @return {BoundaryPoint} */ var nextPoint = function (point, isSkipInnerOffset) { var node, offset; if (nodeLength(point.node) === point.offset) { if (isEditable(point.node)) { return null; } node = point.node.parentNode; offset = position(point.node) + 1; } else if (hasChildren(point.node)) { node = point.node.childNodes[point.offset]; offset = 0; } else { node = point.node; offset = isSkipInnerOffset ? nodeLength(point.node) : point.offset + 1; } return { node: node, offset: offset }; }; /** * returns whether pointA and pointB is same or not. * * @param {BoundaryPoint} pointA * @param {BoundaryPoint} pointB * @return {Boolean} */ var isSamePoint = function (pointA, pointB) { return pointA.node === pointB.node && pointA.offset === pointB.offset; }; /** * returns whether point is visible (can set cursor) or not. * * @param {BoundaryPoint} point * @return {Boolean} */ var isVisiblePoint = function (point) { if (isText(point.node) || !hasChildren(point.node) || isEmpty(point.node)) { return true; } var leftNode = point.node.childNodes[point.offset - 1]; var rightNode = point.node.childNodes[point.offset]; if ((!leftNode || isVoid(leftNode)) && (!rightNode || isVoid(rightNode))) { return true; } return false; }; /** * @method prevPointUtil * * @param {BoundaryPoint} point * @param {Function} pred * @return {BoundaryPoint} */ var prevPointUntil = function (point, pred) { while (point) { if (pred(point)) { return point; } point = prevPoint(point); } return null; }; /** * @method nextPointUntil * * @param {BoundaryPoint} point * @param {Function} pred * @return {BoundaryPoint} */ var nextPointUntil = function (point, pred) { while (point) { if (pred(point)) { return point; } point = nextPoint(point); } return null; }; /** * returns whether point has character or not. * * @param {Point} point * @return {Boolean} */ var isCharPoint = function (point) { if (!isText(point.node)) { return false; } var ch = point.node.nodeValue.charAt(point.offset - 1); return ch && (ch !== ' ' && ch !== NBSP_CHAR); }; /** * @method walkPoint * * @param {BoundaryPoint} startPoint * @param {BoundaryPoint} endPoint * @param {Function} handler * @param {Boolean} isSkipInnerOffset */ var walkPoint = function (startPoint, endPoint, handler, isSkipInnerOffset) { var point = startPoint; while (point) { handler(point); if (isSamePoint(point, endPoint)) { break; } var isSkipOffset = isSkipInnerOffset && startPoint.node !== point.node && endPoint.node !== point.node; point = nextPoint(point, isSkipOffset); } }; /** * @method makeOffsetPath * * return offsetPath(array of offset) from ancestor * * @param {Node} ancestor - ancestor node * @param {Node} node */ var makeOffsetPath = function (ancestor, node) { var ancestors = listAncestor(node, func.eq(ancestor)); return ancestors.map(position).reverse(); }; /** * @method fromOffsetPath * * return element from offsetPath(array of offset) * * @param {Node} ancestor - ancestor node * @param {array} offsets - offsetPath */ var fromOffsetPath = function (ancestor, offsets) { var current = ancestor; for (var i = 0, len = offsets.length; i < len; i++) { if (current.childNodes.length <= offsets[i]) { current = current.childNodes[current.childNodes.length - 1]; } else { current = current.childNodes[offsets[i]]; } } return current; }; /** * @method splitNode * * split element or #text * * @param {BoundaryPoint} point * @param {Object} [options] * @param {Boolean} [options.isSkipPaddingBlankHTML] - default: false * @param {Boolean} [options.isNotSplitEdgePoint] - default: false * @return {Node} right node of boundaryPoint */ var splitNode = function (point, options) { var isSkipPaddingBlankHTML = options && options.isSkipPaddingBlankHTML; var isNotSplitEdgePoint = options && options.isNotSplitEdgePoint; // edge case if (isEdgePoint(point) && (isText(point.node) || isNotSplitEdgePoint)) { if (isLeftEdgePoint(point)) { return point.node; } else if (isRightEdgePoint(point)) { return point.node.nextSibling; } } // split #text if (isText(point.node)) { return point.node.splitText(point.offset); } else { var childNode = point.node.childNodes[point.offset]; var clone = insertAfter(point.node.cloneNode(false), point.node); appendChildNodes(clone, listNext(childNode)); if (!isSkipPaddingBlankHTML) { paddingBlankHTML(point.node); paddingBlankHTML(clone); } return clone; } }; /** * @method splitTree * * split tree by point * * @param {Node} root - split root * @param {BoundaryPoint} point * @param {Object} [options] * @param {Boolean} [options.isSkipPaddingBlankHTML] - default: false * @param {Boolean} [options.isNotSplitEdgePoint] - default: false * @return {Node} right node of boundaryPoint */ var splitTree = function (root, point, options) { // ex) [#text, ,

    ] var ancestors = listAncestor(point.node, func.eq(root)); if (!ancestors.length) { return null; } else if (ancestors.length === 1) { return splitNode(point, options); } return ancestors.reduce(function (node, parent) { if (node === point.node) { node = splitNode(point, options); } return splitNode({ node: parent, offset: node ? dom.position(node) : nodeLength(parent) }, options); }); }; /** * split point * * @param {Point} point * @param {Boolean} isInline * @return {Object} */ var splitPoint = function (point, isInline) { // find splitRoot, container // - inline: splitRoot is a child of paragraph // - block: splitRoot is a child of bodyContainer var pred = isInline ? isPara : isBodyContainer; var ancestors = listAncestor(point.node, pred); var topAncestor = list.last(ancestors) || point.node; var splitRoot, container; if (pred(topAncestor)) { splitRoot = ancestors[ancestors.length - 2]; container = topAncestor; } else { splitRoot = topAncestor; container = splitRoot.parentNode; } // if splitRoot is exists, split with splitTree var pivot = splitRoot && splitTree(splitRoot, point, { isSkipPaddingBlankHTML: isInline, isNotSplitEdgePoint: isInline }); // if container is point.node, find pivot with point.offset if (!pivot && container === point.node) { pivot = point.node.childNodes[point.offset]; } return { rightNode: pivot, container: container }; }; var create = function (nodeName) { return document.createElement(nodeName); }; var createText = function (text) { return document.createTextNode(text); }; /** * @method remove * * remove node, (isRemoveChild: remove child or not) * * @param {Node} node * @param {Boolean} isRemoveChild */ var remove = function (node, isRemoveChild) { if (!node || !node.parentNode) { return; } if (node.removeNode) { return node.removeNode(isRemoveChild); } var parent = node.parentNode; if (!isRemoveChild) { var nodes = []; var i, len; for (i = 0, len = node.childNodes.length; i < len; i++) { nodes.push(node.childNodes[i]); } for (i = 0, len = nodes.length; i < len; i++) { parent.insertBefore(nodes[i], node); } } parent.removeChild(node); }; /** * @method removeWhile * * @param {Node} node * @param {Function} pred */ var removeWhile = function (node, pred) { while (node) { if (isEditable(node) || !pred(node)) { break; } var parent = node.parentNode; remove(node); node = parent; } }; /** * @method replace * * replace node with provided nodeName * * @param {Node} node * @param {String} nodeName * @return {Node} - new node */ var replace = function (node, nodeName) { if (node.nodeName.toUpperCase() === nodeName.toUpperCase()) { return node; } var newNode = create(nodeName); if (node.style.cssText) { newNode.style.cssText = node.style.cssText; } appendChildNodes(newNode, list.from(node.childNodes)); insertAfter(newNode, node); remove(node); return newNode; }; var isTextarea = makePredByNodeName('TEXTAREA'); /** * @param {jQuery} $node * @param {Boolean} [stripLinebreaks] - default: false */ var value = function ($node, stripLinebreaks) { var val = isTextarea($node[0]) ? $node.val() : $node.html(); if (stripLinebreaks) { return val.replace(/[\n\r]/g, ''); } return val; }; /** * @method html * * get the HTML contents of node * * @param {jQuery} $node * @param {Boolean} [isNewlineOnBlock] */ var html = function ($node, isNewlineOnBlock) { var markup = value($node); if (isNewlineOnBlock) { var regexTag = /<(\/?)(\b(?!!)[^>\s]*)(.*?)(\s*\/?>)/g; markup = markup.replace(regexTag, function (match, endSlash, name) { name = name.toUpperCase(); var isEndOfInlineContainer = /^DIV|^TD|^TH|^P|^LI|^H[1-7]/.test(name) && !!endSlash; var isBlockNode = /^BLOCKQUOTE|^TABLE|^TBODY|^TR|^HR|^UL|^OL/.test(name); return match + ((isEndOfInlineContainer || isBlockNode) ? '\n' : ''); }); markup = $.trim(markup); } return markup; }; var posFromPlaceholder = function (placeholder) { var $placeholder = $(placeholder); var pos = $placeholder.offset(); var height = $placeholder.outerHeight(true); // include margin return { left: pos.left, top: pos.top + height }; }; var attachEvents = function ($node, events) { Object.keys(events).forEach(function (key) { $node.on(key, events[key]); }); }; var detachEvents = function ($node, events) { Object.keys(events).forEach(function (key) { $node.off(key, events[key]); }); }; return { /** @property {String} NBSP_CHAR */ NBSP_CHAR: NBSP_CHAR, /** @property {String} ZERO_WIDTH_NBSP_CHAR */ ZERO_WIDTH_NBSP_CHAR: ZERO_WIDTH_NBSP_CHAR, /** @property {String} blank */ blank: blankHTML, /** @property {String} emptyPara */ emptyPara: '

    ' + blankHTML + '

    ', makePredByNodeName: makePredByNodeName, isEditable: isEditable, isControlSizing: isControlSizing, isText: isText, isElement: isElement, isVoid: isVoid, isPara: isPara, isPurePara: isPurePara, isHeading: isHeading, isInline: isInline, isBlock: func.not(isInline), isBodyInline: isBodyInline, isBody: isBody, isParaInline: isParaInline, isPre: isPre, isList: isList, isTable: isTable, isCell: isCell, isBlockquote: isBlockquote, isBodyContainer: isBodyContainer, isAnchor: isAnchor, isDiv: makePredByNodeName('DIV'), isLi: isLi, isBR: makePredByNodeName('BR'), isSpan: makePredByNodeName('SPAN'), isB: makePredByNodeName('B'), isU: makePredByNodeName('U'), isS: makePredByNodeName('S'), isI: makePredByNodeName('I'), isImg: makePredByNodeName('IMG'), isTextarea: isTextarea, isEmpty: isEmpty, isEmptyAnchor: func.and(isAnchor, isEmpty), isClosestSibling: isClosestSibling, withClosestSiblings: withClosestSiblings, nodeLength: nodeLength, isLeftEdgePoint: isLeftEdgePoint, isRightEdgePoint: isRightEdgePoint, isEdgePoint: isEdgePoint, isLeftEdgeOf: isLeftEdgeOf, isRightEdgeOf: isRightEdgeOf, isLeftEdgePointOf: isLeftEdgePointOf, isRightEdgePointOf: isRightEdgePointOf, prevPoint: prevPoint, nextPoint: nextPoint, isSamePoint: isSamePoint, isVisiblePoint: isVisiblePoint, prevPointUntil: prevPointUntil, nextPointUntil: nextPointUntil, isCharPoint: isCharPoint, walkPoint: walkPoint, ancestor: ancestor, singleChildAncestor: singleChildAncestor, listAncestor: listAncestor, lastAncestor: lastAncestor, listNext: listNext, listPrev: listPrev, listDescendant: listDescendant, commonAncestor: commonAncestor, wrap: wrap, insertAfter: insertAfter, appendChildNodes: appendChildNodes, position: position, hasChildren: hasChildren, makeOffsetPath: makeOffsetPath, fromOffsetPath: fromOffsetPath, splitTree: splitTree, splitPoint: splitPoint, create: create, createText: createText, remove: remove, removeWhile: removeWhile, replace: replace, html: html, value: value, posFromPlaceholder: posFromPlaceholder, attachEvents: attachEvents, detachEvents: detachEvents }; })(); /** * @param {jQuery} $note * @param {Object} options * @return {Context} */ var Context = function ($note, options) { var self = this; var ui = $.summernote.ui; this.memos = {}; this.modules = {}; this.layoutInfo = {}; this.options = options; /** * create layout and initialize modules and other resources */ this.initialize = function () { this.layoutInfo = ui.createLayout($note, options); this._initialize(); $note.hide(); return this; }; /** * destroy modules and other resources and remove layout */ this.destroy = function () { this._destroy(); $note.removeData('summernote'); ui.removeLayout($note, this.layoutInfo); }; /** * destory modules and other resources and initialize it again */ this.reset = function () { this.code(dom.emptyPara); this._destroy(); this._initialize(); }; this._initialize = function () { // add optional buttons var buttons = $.extend({}, this.options.buttons); Object.keys(buttons).forEach(function (key) { self.memo('button.' + key, buttons[key]); }); var modules = $.extend({}, this.options.modules, $.summernote.plugins || {}); // add and initialize modules Object.keys(modules).forEach(function (key) { self.module(key, modules[key], true); }); Object.keys(this.modules).forEach(function (key) { self.initializeModule(key); }); }; this._destroy = function () { // destroy modules with reversed order Object.keys(this.modules).reverse().forEach(function (key) { self.removeModule(key); }); Object.keys(this.memos).forEach(function (key) { self.removeMemo(key); }); }; this.code = function (html) { var isActivated = this.invoke('codeview.isActivated'); if (html === undefined) { this.invoke('codeview.sync'); return isActivated ? this.layoutInfo.codable.val() : this.layoutInfo.editable.html(); } else { if (isActivated) { this.layoutInfo.codable.val(html); } else { this.layoutInfo.editable.html(html); } $note.val(html); this.triggerEvent('change', html); } }; this.isDisabled = function () { return this.layoutInfo.editable.attr('contenteditable') === 'false'; }; this.enable = function () { this.layoutInfo.editable.attr('contenteditable', true); this.invoke('toolbar.activate', true); }; this.disable = function () { // close codeview if codeview is opend if (this.invoke('codeview.isActivated')) { this.invoke('codeview.deactivate'); } this.layoutInfo.editable.attr('contenteditable', false); this.invoke('toolbar.deactivate', true); }; this.triggerEvent = function () { var namespace = list.head(arguments); var args = list.tail(list.from(arguments)); var callback = this.options.callbacks[func.namespaceToCamel(namespace, 'on')]; if (callback) { callback.apply($note[0], args); } $note.trigger('summernote.' + namespace, args); }; this.initializeModule = function (key) { var module = this.modules[key]; module.shouldInitialize = module.shouldInitialize || func.ok; if (!module.shouldInitialize()) { return; } // initialize module if (module.initialize) { module.initialize(); } // attach events if (module.events) { dom.attachEvents($note, module.events); } }; this.module = function (key, ModuleClass, withoutIntialize) { if (arguments.length === 1) { return this.modules[key]; } this.modules[key] = new ModuleClass(this); if (!withoutIntialize) { this.initializeModule(key); } }; this.removeModule = function (key) { var module = this.modules[key]; if (module.shouldInitialize()) { if (module.events) { dom.detachEvents($note, module.events); } if (module.destroy) { module.destroy(); } } delete this.modules[key]; }; this.memo = function (key, obj) { if (arguments.length === 1) { return this.memos[key]; } this.memos[key] = obj; }; this.removeMemo = function (key) { if (this.memos[key] && this.memos[key].destroy) { this.memos[key].destroy(); } delete this.memos[key]; }; this.createInvokeHandler = function (namespace, value) { return function (event) { event.preventDefault(); self.invoke(namespace, value || $(event.target).data('value') || $(event.currentTarget).data('value')); }; }; this.invoke = function () { var namespace = list.head(arguments); var args = list.tail(list.from(arguments)); var splits = namespace.split('.'); var hasSeparator = splits.length > 1; var moduleName = hasSeparator && list.head(splits); var methodName = hasSeparator ? list.last(splits) : list.head(splits); var module = this.modules[moduleName || 'editor']; if (!moduleName && this[methodName]) { return this[methodName].apply(this, args); } else if (module && module[methodName] && module.shouldInitialize()) { return module[methodName].apply(module, args); } }; return this.initialize(); }; $.summernote = $.summernote || { lang: {} }; $.fn.extend({ /** * Summernote API * * @param {Object|String} * @return {this} */ summernote: function () { var type = $.type(list.head(arguments)); var isExternalAPICalled = type === 'string'; var hasInitOptions = type === 'object'; var options = hasInitOptions ? list.head(arguments) : {}; options = $.extend({}, $.summernote.options, options); options.langInfo = $.extend(true, {}, $.summernote.lang['en-US'], $.summernote.lang[options.lang]); this.each(function (idx, note) { var $note = $(note); if (!$note.data('summernote')) { var context = new Context($note, options); $note.data('summernote', context); $note.data('summernote').triggerEvent('init', context.layoutInfo); } }); var $note = this.first(); if ($note.length) { var context = $note.data('summernote'); if (isExternalAPICalled) { return context.invoke.apply(context, list.from(arguments)); } else if (options.focus) { context.invoke('editor.focus'); } } return this; } }); var Renderer = function (markup, children, options, callback) { this.render = function ($parent) { var $node = $(markup); if (options && options.contents) { $node.html(options.contents); } if (options && options.className) { $node.addClass(options.className); } if (options && options.data) { $.each(options.data, function (k, v) { $node.attr('data-' + k, v); }); } if (options && options.click) { $node.on('click', options.click); } if (children) { var $container = $node.find('.note-children-container'); children.forEach(function (child) { child.render($container.length ? $container : $node); }); } if (callback) { callback($node, options); } if (options && options.callback) { options.callback($node); } if ($parent) { $parent.append($node); } return $node; }; }; var renderer = { create: function (markup, callback) { return function () { var children = $.isArray(arguments[0]) ? arguments[0] : []; var options = typeof arguments[1] === 'object' ? arguments[1] : arguments[0]; if (options && options.children) { children = options.children; } return new Renderer(markup, children, options, callback); }; } }; var editor = renderer.create('
    '); var toolbar = renderer.create('
    '); var editingArea = renderer.create('
    '); var codable = renderer.create(' includes/Templates/fields-tel.html000064400000001271152331132460013227 0ustar00 includes/Templates/formtemplate-enquiry.nff000064400000032243152331132460015200 0ustar00{"settings":{"objectType":"Form Setting","editActive":true,"title":"Enquiry","show_title":0,"clear_complete":1,"hide_complete":1,"default_label_pos":"above","wrapper_class":"","element_class":"","key":"","add_submit":1,"currency":"","unique_field_error":"A form with this value has already been submitted.","logged_in":false,"not_logged_in_msg":"","sub_limit_msg":"The form has reached its submission limit.","calculations":[],"formContentData":["firstname_1523908368154","lastname_1523908369534","email_1523908522614","phone_1523908588264","occupation_1523908435932","enquiry_type_1523908495090","details_1523908537286","may_we_contact_you_1523908579864","best_time_to_call_1523908689926","submit_1523908548082"],"drawerDisabled":false},"fields":[{"objectType":"Field","objectDomain":"fields","editActive":false,"order":1,"label":"First Name","type":"firstname","key":"firstname_1523908368154","label_pos":"default","required":1,"default":"","placeholder":"","container_class":"one-half first","element_class":"","admin_label":"","help_text":"","custom_name_attribute":"fname"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":2,"label":"Last Name","type":"lastname","key":"lastname_1523908369534","label_pos":"default","required":1,"default":"","placeholder":"","container_class":"one-half second","element_class":"","admin_label":"","help_text":"","custom_name_attribute":"lname","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":3,"label":"Email","type":"email","key":"email_1523908522614","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"","element_class":"","admin_label":"","help_text":"","custom_name_attribute":"email"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":4,"label":"Phone","type":"phone","key":"phone_1523908588264","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"phone"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":5,"label":"Occupation","type":"listradio","key":"occupation_1523908435932","label_pos":"default","required":1,"options":[{"errors":[],"max_options":0,"label":"Choice 1","value":"choice1","calc":"","selected":0,"order":0,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true},{"errors":[],"max_options":0,"label":"Choice 2","value":"choice2","calc":"","selected":0,"order":1,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true},{"errors":[],"max_options":0,"label":"Choice 3","value":"choice3","calc":"","selected":0,"order":2,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true}],"container_class":"","element_class":"","admin_label":"","help_text":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":6,"type":"listselect","label":"Enquiry Type","key":"enquiry_type_1523908495090","label_pos":"default","required":1,"options":[{"errors":[],"max_options":0,"label":"Choice 1","value":"choice1","calc":"","selected":0,"order":0,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true},{"errors":[],"max_options":0,"label":"Choice 2","value":"choice2","calc":"","selected":0,"order":1,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true},{"errors":[],"max_options":0,"label":"Choice 3","value":"choice3","calc":"","selected":0,"order":2,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true}],"container_class":"","element_class":"","admin_label":"","help_text":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":7,"label":"Details","type":"textarea","key":"details_1523908537286","label_pos":"default","required":1,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","textarea_rte":"","disable_rte_mobile":"","textarea_media":""},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":8,"type":"checkbox","label":"May We Contact You?","key":"may_we_contact_you_1523908579864","label_pos":"right","required":false,"container_class":"","element_class":"","manual_key":false,"admin_label":"","help_text":"","default_value":"unchecked","checked_value":"Checked","unchecked_value":"Unchecked","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":9,"label":"Best Time to Call","type":"listselect","key":"best_time_to_call_1523908689926","label_pos":"default","required":false,"options":[{"errors":[],"max_options":0,"label":"Morning","value":"morning","calc":"","selected":0,"order":0,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true},{"errors":[],"max_options":0,"label":"Afternoon","value":"afternoon","calc":"","selected":0,"order":1,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true},{"errors":[],"max_options":0,"label":"Evening","value":"evening","calc":"","selected":0,"order":2,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}},"manual_value":true}],"container_class":"","element_class":"","admin_label":"","help_text":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":10,"type":"submit","label":"Submit","processing_label":"Processing","container_class":"","element_class":"","key":"submit_1523908548082"}],"actions":[{"title":null,"key":null,"type":"save","active":"1","created_at":"2018-04-16 19:55:48","objectType":"Action","objectDomain":"actions","editActive":"","label":"Store Submission","order":"3","payment_gateways":"","payment_total":"0","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"{fields_table}","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":"","redirect_url":""},{"title":null,"key":null,"type":"successmessage","active":"1","created_at":"2018-04-16 19:55:48","objectType":"Action","objectDomain":"actions","editActive":"","label":"Success Message","message":"Your form has been successfully submitted.","order":"1","payment_gateways":"","payment_total":"0","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"{fields_table}","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":"","redirect_url":"","success_msg":"Your form has been successfully submitted."},{"title":null,"key":null,"type":"email","active":"1","created_at":"2018-04-16 19:55:48","objectType":"Action","objectDomain":"actions","editActive":"","label":"Admin Email","order":"2","payment_gateways":"","payment_total":"0","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"{fields_table}","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":""}]}includes/Templates/app-after-form.html000064400000000127152331132460014016 0ustar00includes/Templates/ui-nf-drawer-buttons.html.php000064400000000474152331132460015765 0ustar00
    includes/Templates/admin-menu-new-form.html.php000064400000122023152331132460015546 0ustar00
    includes/Templates/admin-menu-all-forms-column-title.html.php000064400000001517152331132460020326 0ustar00
    | | | |
    includes/Templates/fields-file.html000064400000002007152331132460013360 0ustar00 includes/Templates/formtemplate-quoterequest.nff000064400000744521152331132460016263 0ustar00{"settings":{"title":"Quote Request Form","key":"","created_at":"2016-04-18 14:54:49","objectType":"Form Setting","editActive":"","show_title":"1","clear_complete":"1","hide_complete":"1","currency":"usd","wrapper_class":"","element_class":"","add_submit":"0","logged_in":"","not_logged_in_msg":"","sub_limit_number":"","sub_limit_msg":"","fieldContentsData":""},"fields":[{"label":"Tell us about your project","key":"tell_us_about_your_project","parent_id":"10","type":"html","created_at":"2016-04-18 14:54:49","objectType":"Field","objectDomain":"fields","editActive":"","default":"

    Tell us about your project...<\/h3>","container_class":"","element_class":"","order":"1"},{"label":"Phone","key":"textbox","parent_id":"10","type":"textbox","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","placeholder":"","default":"","container_class":"one-half","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_message":"Character(s) left","manual_key":"","disable_input":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","disable_browser_autocomplete":"","mask":"","custom_mask":"","order":"10"},{"label":"Address","key":"address","parent_id":"10","type":"address","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","placeholder":"","default":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_message":"Character(s) left","manual_key":"","disable_input":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","disable_browser_autocomplete":"","mask":"","custom_mask":"","order":"11"},{"label":"City","key":"city","parent_id":"10","type":"city","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","placeholder":"","default":"","container_class":"two-fourths first","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_message":"Character(s) left","manual_key":"","disable_input":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","disable_browser_autocomplete":"","mask":"","custom_mask":"","order":"12"},{"label":"State","key":"liststate","parent_id":"10","type":"liststate","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","options":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"California","value":"CA","calc":"","selected":"0","order":"4","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"Alabama","value":"AL","calc":"","selected":"0","order":"0"},{"label":"Alaska","value":"AK","calc":"","selected":"0","order":"1"},{"label":"Arizona","value":"AZ","calc":"","selected":"0","order":"2"},{"label":"Arkansas","value":"AR","calc":"","selected":"0","order":"3"},{"label":"California","value":"CA","calc":"","selected":"0","order":"4"},{"label":"Colorado","value":"CO","calc":"","selected":"0","order":"5"},{"label":"Connecticut","value":"CT","calc":"","selected":"0","order":"6"},{"label":"Delaware","value":"DE","calc":"","selected":"0","order":"7"},{"label":"Florida","value":"FL","calc":"","selected":"0","order":"8"},{"label":"Georgia","value":"GA","calc":"","selected":"0","order":"9"},{"label":"Hawaii","value":"HI","calc":"","selected":"0","order":"10"},{"label":"Idaho","value":"ID","calc":"","selected":"0","order":"11"},{"label":"Illinois","value":"IL","calc":"","selected":"0","order":"12"},{"label":"Indiana","value":"IN","calc":"","selected":"0","order":"13"},{"label":"Iowa","value":"IA","calc":"","selected":"0","order":"14"},{"label":"Kansas","value":"KS","calc":"","selected":"0","order":"15"},{"label":"Kentucky","value":"KY","calc":"","selected":"0","order":"16"},{"label":"Louisiana","value":"LA","calc":"","selected":"0","order":"17"},{"label":"Maine","value":"ME","calc":"","selected":"0","order":"18"},{"label":"Maryland","value":"MD","calc":"","selected":"0","order":"19"},{"label":"Massachusetts","value":"MA","calc":"","selected":"0","order":"20"},{"label":"Michigan","value":"MI","calc":"","selected":"0","order":"21"},{"label":"Minnesota","value":"MN","calc":"","selected":"0","order":"22"},{"label":"Mississippi","value":"MS","calc":"","selected":"0","order":"23"},{"label":"Missouri","value":"MO","calc":"","selected":"0","order":"24"},{"label":"Montana","value":"MT","calc":"","selected":"0","order":"25"},{"label":"Nebraska","value":"NE","calc":"","selected":"0","order":"26"},{"label":"Nevada","value":"NV","calc":"","selected":"0","order":"27"},{"label":"New Hampshire","value":"NH","calc":"","selected":"0","order":"28"},{"label":"New Jersey","value":"NJ","calc":"","selected":"0","order":"29"},{"label":"New Mexico","value":"NM","calc":"","selected":"0","order":"30"},{"label":"New York","value":"NY","calc":"","selected":"0","order":"31"},{"label":"North Carolina","value":"NC","calc":"","selected":"0","order":"32"},{"label":"North Dakota","value":"ND","calc":"","selected":"0","order":"33"},{"label":"Ohio","value":"OH","calc":"","selected":"0","order":"34"},{"label":"Oklahoma","value":"OK","calc":"","selected":"0","order":"35"},{"label":"Oregon","value":"OR","calc":"","selected":"0","order":"36"},{"label":"Pennsylvania","value":"PA","calc":"","selected":"0","order":"37"},{"label":"Rhode Island","value":"RI","calc":"","selected":"0","order":"38"},{"label":"South Carolina","value":"SC","calc":"","selected":"0","order":"39"},{"label":"South Dakota","value":"SD","calc":"","selected":"0","order":"40"},{"label":"Tennessee","value":"TN","calc":"","selected":"0","order":"41"},{"label":"Texas","value":"TX","calc":"","selected":"0","order":"42"},{"label":"Utah","value":"UT","calc":"","selected":"0","order":"43"},{"label":"Vermont","value":"VT","calc":"","selected":"0","order":"44"},{"label":"Virginia","value":"VA","calc":"","selected":"0","order":"45"},{"label":"Washington","value":"WA","calc":"","selected":"0","order":"46"},{"label":"West Virginia","value":"WV","calc":"","selected":"0","order":"47"},{"label":"Wisconsin","value":"WI","calc":"","selected":"0","order":"48"},{"label":"Wyoming","value":"WY","calc":"","selected":"0","order":"49"},{"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":"0","order":"50"},{"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":"0","order":"51"},{"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":"0","order":"52"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}}],"container_class":"one-fourth","element_class":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","order":"13"},{"label":"Zip","key":"zip","parent_id":"10","type":"zip","created_at":"2016-04-18 14:54:51","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","placeholder":"","default":"","container_class":"one-fourth","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_message":"Character(s) left","manual_key":"","disable_input":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","disable_browser_autocomplete":"","mask":"","custom_mask":"","order":"14"},{"label":"Submit","key":"submit","parent_id":"10","type":"submit","created_at":"2016-04-18 14:54:51","objectType":"Field","objectDomain":"fields","editActive":"","processing_label":"Processing","container_class":"","element_class":"","order":"15"},{"label":"What services may we assist you with?","key":"what_services_may_we_assist_you_with","parent_id":"10","type":"listradio","created_at":"2016-04-18 14:54:49","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"1","options":[{"label":"Consultation","value":"consultation","calc":"","selected":"0","order":"0","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"One","value":"one","calc":"","selected":"0","order":"0"},{"label":"Two","value":"two","calc":"","selected":"0","order":"1"},{"label":"Three","value":"three","calc":"","selected":"0","order":"2"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Development","value":"development","calc":"","selected":"0","order":"1","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"One","value":"one","calc":"","selected":"0","order":"0"},{"label":"Two","value":"two","calc":"","selected":"0","order":"1"},{"label":"Three","value":"three","calc":"","selected":"0","order":"2"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"label":"Design","value":"design","calc":"","selected":"0","order":"2","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"One","value":"one","calc":"","selected":"0","order":"0"},{"label":"Two","value":"two","calc":"","selected":"0","order":"1"},{"label":"Three","value":"three","calc":"","selected":"0","order":"2"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}},{"order":"3","new":"","options":[],"label":"Support","value":"support","calc":"","selected":"0","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"One","value":"one","calc":"","selected":"0","order":"0"},{"label":"Two","value":"two","calc":"","selected":"0","order":"1"},{"label":"Three","value":"three","calc":"","selected":"0","order":"2"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""}}],"container_class":"one-half first","element_class":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","order":"2"},{"label":"How urgent is this project","key":"how_urgent_is_this_project","parent_id":"10","type":"listselect","created_at":"2016-04-18 14:54:49","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"1","options":[{"label":"Low","value":"low","calc":"","selected":"0","order":"0","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"One","value":"one","calc":"","selected":"0","order":"0"},{"label":"Two","value":"two","calc":"","selected":"0","order":"1"},{"label":"Three","value":"three","calc":"","selected":"0","order":"2"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""},"manual_value":"1"},{"label":"Medium","value":"medium","calc":"","selected":"0","order":"1","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"One","value":"one","calc":"","selected":"0","order":"0"},{"label":"Two","value":"two","calc":"","selected":"0","order":"1"},{"label":"Three","value":"three","calc":"","selected":"0","order":"2"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""},"manual_value":"1"},{"label":"High","value":"high","calc":"","selected":"0","order":"2","errors":[],"settingModel":{"name":"options","type":"option-repeater","label":"Options Add New<\/a>","width":"full","group":"primary","value":[{"label":"One","value":"one","calc":"","selected":"0","order":"0"},{"label":"Two","value":"two","calc":"","selected":"0","order":"1"},{"label":"Three","value":"three","calc":"","selected":"0","order":"2"}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":"0"}},"settings":"","hide_merge_tags":"","error":""},"manual_value":"1"}],"container_class":"one-half","element_class":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","order":"3"},{"label":"Due Date","key":"due_date","parent_id":"10","type":"date","created_at":"2016-04-18 14:54:49","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","container_class":"one-half","element_class":"","manual_key":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","date_default":"","date_format":"DD\/MM\/YYYY","order":"4"},{"label":"Describe your project","key":"describe_your_project","parent_id":"10","type":"textarea","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"1","placeholder":"","default":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_message":"Character(s) left","manual_key":"","disable_input":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","disable_browser_autocomplete":"","textarea_rte":"","disable_rte_mobile":"","textarea_media":"","order":"5"},{"label":"Tell us about you","key":"tell_us_about_you","parent_id":"10","type":"html","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","default":"

    Tell us about you...<\/h3>","container_class":"","element_class":"","order":"6"},{"label":"First Name","key":"firstname","parent_id":"10","type":"firstname","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","default":"","placeholder":"","container_class":"one-half first","element_class":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","order":"7"},{"label":"Last Name","key":"lastname","parent_id":"10","type":"lastname","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","default":"","placeholder":"","container_class":"one-half","element_class":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","order":"8"},{"label":"Email","key":"email","parent_id":"10","type":"email","created_at":"2016-04-18 14:54:50","objectType":"Field","objectDomain":"fields","editActive":"","label_pos":"above","required":"","default":"","placeholder":"","container_class":"one-half first","element_class":"","admin_label":"","help_text":"","desc_text":"","desc_pos":"","order":"9"}],"actions":[{"title":"","key":"","type":"email","active":"1","created_at":"2016-04-18 14:54:51","label":"Admin Email","to":"{system:admin_email}","subject":"Ninja Forms Submission","message":"{field:all_fields}","order":"2","objectType":"Action","objectDomain":"actions","editActive":"","payment_gateways":"","tag":"","email_subject":"","email_message":"","from_name":"","from_address":"","reply_to":"","email_format":"html","cc":"","bcc":"","attach_csv":""},{"title":"","key":"","type":"save","active":"1","created_at":"2016-04-18 14:54:51","label":"Store Submission","order":"3","objectType":"Action","objectDomain":"actions","editActive":"","payment_gateways":"","tag":"","to":"","email_subject":"","email_message":"","from_name":"","from_address":"","reply_to":"","email_format":"html","cc":"","bcc":"","attach_csv":"","redirect_url":""},{"title":"","key":"","type":"successmessage","active":"1","created_at":"2016-04-18 14:54:51","label":"Success Message","message":"Your form has been successfully submitted.","order":"1","objectType":"Action","objectDomain":"actions","editActive":"","payment_gateways":"","tag":"","to":"","email_subject":"","email_message":"","from_name":"","from_address":"","reply_to":"","email_format":"html","cc":"","bcc":"","attach_csv":"","redirect_url":"","success_msg":""}]} includes/Templates/fields-listselect--builder.html000064400000001306152331132460016316 0ustar00 includes/Templates/fields-listselect.html000064400000001345152331132460014620 0ustar00 includes/Templates/display-noscript-message.html.php000064400000000143152331132460016710 0ustar00includes/Templates/fields-label--builder.html000064400000000700152331132460015217 0ustar00 includes/Templates/field-null.html000064400000000077152331132460013235 0ustar00includes/Templates/field-input-limit.html000064400000000256152331132460014535 0ustar00includes/Templates/admin-menu-import-export.html.php000064400000002414152331132460016646 0ustar00

    includes/Templates/admin-metaboxes-calcs.html.php000064400000000714152331132460016126 0ustar00
      $contents ):?>
    • RAW: ' . $contents[ 'raw' ]); echo( '
      PARSED: ' . $contents[ 'parsed' ]); } ?>
    includes/Templates/fields-submit.html000064400000000356152331132460013751 0ustar00includes/Templates/admin-menu-system-status.html.php000064400000007657152331132460016700 0ustar00

    To Get Help:


    $value ): ?>
    :
    includes/Templates/admin-menu-all-forms.html.php000064400000001134152331132460015707 0ustar00

    Forms

    display(); ?>
    form()->get_forms(); foreach( $forms as $form ){ echo "
    ";
                    var_dump( $form->get_settings() );
                    echo "
    "; } } ?>
    includes/Templates/fields-color.html000064400000000472152331132460013563 0ustar00 includes/Templates/fields-starrating.html000064400000000742152331132460014623 0ustar00 includes/Templates/fields-zip.html000064400000001310152331132460013237 0ustar00 includes/Templates/fields-wrap-no-label.html000064400000000546152331132460015107 0ustar00 includes/Templates/fields-firstname.html000064400000001535152331132460014436 0ustar00 includes/Templates/fields-input.html000064400000000714152331132460013603 0ustar00 includes/Templates/app-before-field.html000064400000000136152331132460014277 0ustar00includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php000064400000002424152331132460023742 0ustar00
    • get_setting( 'label' ); ?>
    includes/Templates/form-error.html000064400000000212152331132460013263 0ustar00includes/Templates/fields-product.html000064400000002573152331132460014131 0ustar00 includes/Templates/admin-notice.html.php000064400000000132152331132460014327 0ustar00

    includes/Templates/admin-menu-subs-filter.html.php000064400000003006152331132460016252 0ustar00
      $title ): ?>
    includes/Templates/fields-email.html000064400000001337152331132460013535 0ustar00 includes/Templates/admin-notice-form-import.html.php000064400000000451152331132460016604 0ustar00

    includes/Templates/fields-label.html000064400000000727152331132460013527 0ustar00 includes/Templates/admin-menu-dashboard.html.php000064400000026263152331132460015754 0ustar00
    includes/Templates/fields-tax.html000064400000000456152331132460013243 0ustar00 includes/Templates/app-before-fields.html000064400000000271152331132460014462 0ustar00includes/Templates/NewFormTemplates.html.php000064400000001002152331132460015211 0ustar00

    ', '' ); ?>

    v
    includes/Templates/formtemplate-contactform.nff000064400000031551152331132460016024 0ustar00{"settings":{"title":"Contact Me","key":"","created_at":"2016-08-24 16:39:20","default_label_pos":"above","conditions":[],"objectType":"Form Setting","editActive":"","show_title":"1","clear_complete":"1","hide_complete":"1","wrapper_class":"","element_class":"","add_submit":"1","logged_in":"","not_logged_in_msg":"","sub_limit_number":"","sub_limit_msg":"","calculations":[],"formContentData":[{"order":"0","cells":[{"order":"0","fields":["name"],"width":"100"}]},{"order":"1","cells":[{"order":"0","fields":["email"],"width":"100"}]},{"order":"2","cells":[{"order":"0","fields":["message"],"width":"100"}]},{"order":"3","cells":[{"order":"0","fields":["submit"],"width":"100"}]}],"container_styles_background-color":"","container_styles_border":"","container_styles_border-style":"","container_styles_border-color":"","container_styles_color":"","container_styles_height":"","container_styles_width":"","container_styles_font-size":"","container_styles_margin":"","container_styles_padding":"","container_styles_display":"","container_styles_float":"","container_styles_show_advanced_css":"0","container_styles_advanced":"","title_styles_background-color":"","title_styles_border":"","title_styles_border-style":"","title_styles_border-color":"","title_styles_color":"","title_styles_height":"","title_styles_width":"","title_styles_font-size":"","title_styles_margin":"","title_styles_padding":"","title_styles_display":"","title_styles_float":"","title_styles_show_advanced_css":"0","title_styles_advanced":"","row_styles_background-color":"","row_styles_border":"","row_styles_border-style":"","row_styles_border-color":"","row_styles_color":"","row_styles_height":"","row_styles_width":"","row_styles_font-size":"","row_styles_margin":"","row_styles_padding":"","row_styles_display":"","row_styles_show_advanced_css":"0","row_styles_advanced":"","row-odd_styles_background-color":"","row-odd_styles_border":"","row-odd_styles_border-style":"","row-odd_styles_border-color":"","row-odd_styles_color":"","row-odd_styles_height":"","row-odd_styles_width":"","row-odd_styles_font-size":"","row-odd_styles_margin":"","row-odd_styles_padding":"","row-odd_styles_display":"","row-odd_styles_show_advanced_css":"0","row-odd_styles_advanced":"","success-msg_styles_background-color":"","success-msg_styles_border":"","success-msg_styles_border-style":"","success-msg_styles_border-color":"","success-msg_styles_color":"","success-msg_styles_height":"","success-msg_styles_width":"","success-msg_styles_font-size":"","success-msg_styles_margin":"","success-msg_styles_padding":"","success-msg_styles_display":"","success-msg_styles_show_advanced_css":"0","success-msg_styles_advanced":"","error_msg_styles_background-color":"","error_msg_styles_border":"","error_msg_styles_border-style":"","error_msg_styles_border-color":"","error_msg_styles_color":"","error_msg_styles_height":"","error_msg_styles_width":"","error_msg_styles_font-size":"","error_msg_styles_margin":"","error_msg_styles_padding":"","error_msg_styles_display":"","error_msg_styles_show_advanced_css":"0","error_msg_styles_advanced":""},"fields":[{"label":"Name","key":"name","parent_id":"1","type":"textbox","created_at":"2016-08-24 16:39:20","label_pos":"above","required":"1","order":"1","placeholder":"","default":"","wrapper_class":"","element_class":"","objectType":"Field","objectDomain":"fields","editActive":"","container_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":"","disable_input":"","admin_label":"","help_text":"","desc_text":"","disable_browser_autocomplete":"","mask":"","custom_mask":"","wrap_styles_background-color":"","wrap_styles_border":"","wrap_styles_border-style":"","wrap_styles_border-color":"","wrap_styles_color":"","wrap_styles_height":"","wrap_styles_width":"","wrap_styles_font-size":"","wrap_styles_margin":"","wrap_styles_padding":"","wrap_styles_display":"","wrap_styles_float":"","wrap_styles_show_advanced_css":"0","wrap_styles_advanced":"","label_styles_background-color":"","label_styles_border":"","label_styles_border-style":"","label_styles_border-color":"","label_styles_color":"","label_styles_height":"","label_styles_width":"","label_styles_font-size":"","label_styles_margin":"","label_styles_padding":"","label_styles_display":"","label_styles_float":"","label_styles_show_advanced_css":"0","label_styles_advanced":"","element_styles_background-color":"","element_styles_border":"","element_styles_border-style":"","element_styles_border-color":"","element_styles_color":"","element_styles_height":"","element_styles_width":"","element_styles_font-size":"","element_styles_margin":"","element_styles_padding":"","element_styles_display":"","element_styles_float":"","element_styles_show_advanced_css":"0","element_styles_advanced":"","cellcid":"c3277"},{"label":"Email","key":"email","parent_id":"1","type":"email","created_at":"2016-08-24 16:39:20","label_pos":"above","required":"1","order":"2","placeholder":"","default":"","wrapper_class":"","element_class":"","objectType":"Field","objectDomain":"fields","editActive":"","container_class":"","admin_label":"","help_text":"","desc_text":"","wrap_styles_background-color":"","wrap_styles_border":"","wrap_styles_border-style":"","wrap_styles_border-color":"","wrap_styles_color":"","wrap_styles_height":"","wrap_styles_width":"","wrap_styles_font-size":"","wrap_styles_margin":"","wrap_styles_padding":"","wrap_styles_display":"","wrap_styles_float":"","wrap_styles_show_advanced_css":"0","wrap_styles_advanced":"","label_styles_background-color":"","label_styles_border":"","label_styles_border-style":"","label_styles_border-color":"","label_styles_color":"","label_styles_height":"","label_styles_width":"","label_styles_font-size":"","label_styles_margin":"","label_styles_padding":"","label_styles_display":"","label_styles_float":"","label_styles_show_advanced_css":"0","label_styles_advanced":"","element_styles_background-color":"","element_styles_border":"","element_styles_border-style":"","element_styles_border-color":"","element_styles_color":"","element_styles_height":"","element_styles_width":"","element_styles_font-size":"","element_styles_margin":"","element_styles_padding":"","element_styles_display":"","element_styles_float":"","element_styles_show_advanced_css":"0","element_styles_advanced":"","cellcid":"c3281"},{"label":"Message","key":"message","parent_id":"1","type":"textarea","created_at":"2016-08-24 16:39:20","label_pos":"above","required":"1","order":"3","placeholder":"","default":"","wrapper_class":"","element_class":"","objectType":"Field","objectDomain":"fields","editActive":"","container_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":"","disable_input":"","admin_label":"","help_text":"","desc_text":"","disable_browser_autocomplete":"","textarea_rte":"","disable_rte_mobile":"","textarea_media":"","wrap_styles_background-color":"","wrap_styles_border":"","wrap_styles_border-style":"","wrap_styles_border-color":"","wrap_styles_color":"","wrap_styles_height":"","wrap_styles_width":"","wrap_styles_font-size":"","wrap_styles_margin":"","wrap_styles_padding":"","wrap_styles_display":"","wrap_styles_float":"","wrap_styles_show_advanced_css":"0","wrap_styles_advanced":"","label_styles_background-color":"","label_styles_border":"","label_styles_border-style":"","label_styles_border-color":"","label_styles_color":"","label_styles_height":"","label_styles_width":"","label_styles_font-size":"","label_styles_margin":"","label_styles_padding":"","label_styles_display":"","label_styles_float":"","label_styles_show_advanced_css":"0","label_styles_advanced":"","element_styles_background-color":"","element_styles_border":"","element_styles_border-style":"","element_styles_border-color":"","element_styles_color":"","element_styles_height":"","element_styles_width":"","element_styles_font-size":"","element_styles_margin":"","element_styles_padding":"","element_styles_display":"","element_styles_float":"","element_styles_show_advanced_css":"0","element_styles_advanced":"","cellcid":"c3284"},{"label":"Submit","key":"submit","parent_id":"1","type":"submit","created_at":"2016-08-24 16:39:20","processing_label":"Processing","order":"5","objectType":"Field","objectDomain":"fields","editActive":"","container_class":"","element_class":"","wrap_styles_background-color":"","wrap_styles_border":"","wrap_styles_border-style":"","wrap_styles_border-color":"","wrap_styles_color":"","wrap_styles_height":"","wrap_styles_width":"","wrap_styles_font-size":"","wrap_styles_margin":"","wrap_styles_padding":"","wrap_styles_display":"","wrap_styles_float":"","wrap_styles_show_advanced_css":"0","wrap_styles_advanced":"","label_styles_background-color":"","label_styles_border":"","label_styles_border-style":"","label_styles_border-color":"","label_styles_color":"","label_styles_height":"","label_styles_width":"","label_styles_font-size":"","label_styles_margin":"","label_styles_padding":"","label_styles_display":"","label_styles_float":"","label_styles_show_advanced_css":"0","label_styles_advanced":"","element_styles_background-color":"","element_styles_border":"","element_styles_border-style":"","element_styles_border-color":"","element_styles_color":"","element_styles_height":"","element_styles_width":"","element_styles_font-size":"","element_styles_margin":"","element_styles_padding":"","element_styles_display":"","element_styles_float":"","element_styles_show_advanced_css":"0","element_styles_advanced":"","submit_element_hover_styles_background-color":"","submit_element_hover_styles_border":"","submit_element_hover_styles_border-style":"","submit_element_hover_styles_border-color":"","submit_element_hover_styles_color":"","submit_element_hover_styles_height":"","submit_element_hover_styles_width":"","submit_element_hover_styles_font-size":"","submit_element_hover_styles_margin":"","submit_element_hover_styles_padding":"","submit_element_hover_styles_display":"","submit_element_hover_styles_float":"","submit_element_hover_styles_show_advanced_css":"0","submit_element_hover_styles_advanced":"","cellcid":"c3287"}],"actions":[{"title":"","key":"","type":"save","active":"1","created_at":"2016-08-24 16:39:20","label":"Store Submission","objectType":"Action","objectDomain":"actions","editActive":"","conditions":{"collapsed":"","process":"1","connector":"all","when":[{"connector":"AND","key":"","comparator":"","value":"","type":"field","modelType":"when"}],"then":[{"key":"","trigger":"","value":"","type":"field","modelType":"then"}],"else":[]},"payment_gateways":"","payment_total":"","tag":"","to":"","email_subject":"","email_message":"","from_name":"","from_address":"","reply_to":"","email_format":"html","cc":"","bcc":"","attach_csv":"","redirect_url":"","email_message_plain":""},{"title":"","key":"","type":"email","active":"1","created_at":"2016-08-24 16:39:20","label":"Email Confirmation","to":"{field:email}","subject":"This is an email action.","message":"Hello, Ninja Forms!","objectType":"Action","objectDomain":"actions","editActive":"","conditions":{"collapsed":"","process":"1","connector":"all","when":[],"then":[{"key":"","trigger":"","value":"","type":"field","modelType":"then"}],"else":[]},"payment_gateways":"","payment_total":"","tag":"","email_subject":"Submission Confirmation ","email_message":"

    {all_fields_table}
    <\/p>","from_name":"","from_address":"","reply_to":"","email_format":"html","cc":"","bcc":"","attach_csv":"","email_message_plain":""},{"title":"","key":"","type":"email","active":"1","created_at":"2016-08-24 16:47:39","objectType":"Action","objectDomain":"actions","editActive":"","label":"Email Notification","conditions":{"collapsed":"","process":"1","connector":"all","when":[{"connector":"AND","key":"","comparator":"","value":"","type":"field","modelType":"when"}],"then":[{"key":"","trigger":"","value":"","type":"field","modelType":"then"}],"else":[]},"payment_gateways":"","payment_total":"","tag":"","to":"{system:admin_email}","email_subject":"New message from {field:name}","email_message":"

    {field:message}<\/p>

    -{field:name} ( {field:email} )<\/p>","from_name":"","from_address":"","reply_to":"{field:email}","email_format":"html","cc":"","bcc":"","attach_csv":"0","email_message_plain":""},{"title":"","key":"","type":"successmessage","active":"1","created_at":"2016-08-24 16:39:20","label":"Success Message","message":"Thank you {field:name} for filling out my form!","objectType":"Action","objectDomain":"actions","editActive":"","conditions":{"collapsed":"","process":"1","connector":"all","when":[{"connector":"AND","key":"","comparator":"","value":"","type":"field","modelType":"when"}],"then":[{"key":"","trigger":"","value":"","type":"field","modelType":"then"}],"else":[]},"payment_gateways":"","payment_total":"","tag":"","to":"","email_subject":"","email_message":"","from_name":"","from_address":"","reply_to":"","email_format":"html","cc":"","bcc":"","attach_csv":"","redirect_url":"","success_msg":"

    Form submitted successfully.<\/p>

    A confirmation email was sent to {field:email}.<\/p>","email_message_plain":""}]}includes/Templates/wpcli-header-art.txt000064400000002056152331132460014204 0ustar00 .,` `'++++++++++++, '+++++, .+++++++++++++++++++' :+++++++. '++++++++++++++++++++++++` `++++++++ ;++++++++++++++++++++++++++++ '+++++++++` +++++++++++++++++++++++++++++++++++++++++++ `+++++++++++++++++++++++++++++++++++++++++++' `++++++++++++++++++++++++++++++++++++++` +++++++++++++++++++++++++++++++++++++; '+++++++++++++, ;+++++++++++++` ,++++++++++ .++++++++++ '+++++++` '+++++++` +++++++ ;++++++: ,++++++ ', ': '++++++ :+++++' +++: +++; ++++++ _ _ _ _ ______ | \ | |(_) (_) | ____| | \| | _ _ __ _ __ _ | |__ ___ _ __ _ __ ___ ___ | . ` || || '_ \ | | / _` | | __|/ _ \ | '__|| '_ ` _ \ / __| | |\ || || | | || || (_| | | | | (_) || | | | | | | |\__ \ |_| \_||_||_| |_|| | \__,_| |_| \___/ |_| |_| |_| |_||___/ _/ | |__/includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php000064400000001772152331132460023740 0ustar00

    includes/Templates/field-before.html000064400000000136152331132460013521 0ustar00includes/Templates/field-layout.html000064400000000526152331132460013577 0ustar00 includes/Templates/admin-metabox-import-export-forms-export.html.php000064400000006163152331132460022011 0ustar00
    includes/Templates/fields-repeater.html000064400000001331152331132460014247 0ustar00 includes/Templates/fields-wrap.html000064400000001343152331132460013414 0ustar00 includes/Templates/form-hp.html000064400000000426152331132460012550 0ustar00 includes/Templates/fields-password.html000064400000001102152331132460014276 0ustar00 includes/Templates/fields-button.html000064400000000335152331132460013756 0ustar00includes/Templates/formtemplate-deletedata.nff000064400000016545152331132460015607 0ustar00{"settings":{"objectType":"Form Setting","editActive":false,"title":"Delete Data Request","show_title":1,"clear_complete":1,"hide_complete":1,"default_label_pos":"above","wrapper_class":"","element_class":"","key":"","add_submit":0,"currency":"","unique_field_error":"A form with this value has already been submitted.","logged_in":false,"not_logged_in_msg":"","sub_limit_msg":"The form has reached its submission limit.","calculations":[],"container_styles_show_advanced_css":0,"title_styles_show_advanced_css":0,"row_styles_show_advanced_css":0,"row-odd_styles_show_advanced_css":0,"success-msg_styles_show_advanced_css":0,"error_msg_styles_show_advanced_css":0,"save_progress_allow_multiple":false,"save_progress_table_legend":"Load saved progress","save_progress_table_columns":[{"errors":[],"max_options":0,"label":"Column Title","field":"{field}","order":0,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"save_progress_table_columns","type":"option-repeater","label":"Save Table Columns Add New<\/a>","width":"full","group":"primary","columns":{"field":{"header":"Field Key","default":""}},"value":[{"label":"Column Title","field":"{field}","order":0}],"tmpl_row":"tmpl-nf-save-progress-table-columns-repeater-row"}}],"conditions":[],"mp_breadcrumb":1,"mp_progress_bar":1,"mp_display_titles":0,"breadcrumb_container_styles_show_advanced_css":0,"breadcrumb_buttons_styles_show_advanced_css":0,"breadcrumb_button_hover_styles_show_advanced_css":0,"breadcrumb_active_button_styles_show_advanced_css":0,"progress_bar_container_styles_show_advanced_css":0,"progress_bar_fill_styles_show_advanced_css":0,"part_titles_styles_show_advanced_css":0,"navigation_container_styles_show_advanced_css":0,"previous_button_styles_show_advanced_css":0,"next_button_styles_show_advanced_css":0,"navigation_hover_styles_show_advanced_css":0,"formContentData":["html_1526653696048","email_1526653697888","submit_1526653702241"],"created_at":"2018-05-22 14:49:42"},"fields":[{"objectType":"Field","objectDomain":"fields","editActive":false,"order":999,"type":"html","label":"HTML","default":"

    Submit this form to request personal data deletion from the site administrator.<\/p>","container_class":"","element_class":"","wrap_styles_show_advanced_css":0,"label_styles_show_advanced_css":0,"element_styles_show_advanced_css":0,"key":"html_1526653696048","cellcid":"c4613","drawerDisabled":false,"created_at":"2018-05-22 14:49:42"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":999,"type":"email","label":"Email","key":"email_1526653697888","label_pos":"default","required":1,"default":"{wp:user_email}","placeholder":"","container_class":"","element_class":"","admin_label":"","help_text":"","custom_name_attribute":"email","wrap_styles_show_advanced_css":0,"label_styles_show_advanced_css":0,"element_styles_show_advanced_css":0,"cellcid":"c4698","drawerDisabled":false,"created_at":"2018-05-22 14:49:42"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":999,"type":"submit","label":"Submit","processing_label":"Processing","container_class":"","element_class":"","key":"submit_1526653702241","wrap_styles_show_advanced_css":0,"element_styles_show_advanced_css":0,"submit_element_hover_styles_show_advanced_css":0,"cellcid":"c4771","created_at":"2018-05-22 14:49:42"}],"actions":[{"title":null,"key":null,"type":"save","active":"1","created_at":"2018-05-22 14:49:43","objectType":"Action","objectDomain":"actions","editActive":"","label":"Store Submission","order":"3","conditions":{"collapsed":false,"process":1,"connector":"all","when":[{"connector":"AND","key":"","comparator":"","value":"","type":"field","modelType":"when"}],"then":[{"key":"","trigger":"","value":"","type":"field","modelType":"then"}],"else":[]},"message":"This action allows users to make a request to receive an export of all of their data on your site. This is in accordance to the GDPR and other privacy regulations.","payment_gateways":"","payment_total":"0","ppe_details":"","api_keys":"To edit your API keys, click here<\/a>.","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"{fields_table}","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":"","redirect_url":""},{"title":null,"key":null,"type":"successmessage","active":"1","created_at":"2018-05-22 14:49:43","objectType":"Action","objectDomain":"actions","editActive":"","label":"Success Message","message":"Your form has been successfully submitted.","order":"1","conditions":{"collapsed":false,"process":1,"connector":"all","when":[{"connector":"AND","key":"","comparator":"","value":"","type":"field","modelType":"when"}],"then":[{"key":"","trigger":"","value":"","type":"field","modelType":"then"}],"else":[]},"payment_gateways":"","payment_total":"0","ppe_details":"","api_keys":"To edit your API keys, click here<\/a>.","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"{fields_table}","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":"","redirect_url":"","success_msg":"Your form has been successfully submitted."},{"title":null,"key":null,"type":"deletedatarequest","active":"1","created_at":"2018-05-22 14:49:43","objectType":"Action","objectDomain":"actions","editActive":"","label":"Delete Data Request","conditions":{"collapsed":false,"process":1,"connector":"all","when":[{"connector":"AND","key":"","comparator":"","value":"","type":"field","modelType":"when"}],"then":[{"key":"","trigger":"","value":"","type":"field","modelType":"then"}],"else":[]},"email":"{field:email_1526653697888}","message":"This action adds users to WordPress' personal data delete tool, allowing admins to comply with the GDPR and other privacy regulations from the site's front end.","payment_gateways":"","payment_total":"0","ppe_details":"","api_keys":"To edit your API keys, click here<\/a>.","tag":"","drawerDisabled":""},{"title":null,"key":null,"type":"email","active":"1","created_at":"2018-05-22 14:49:43","objectType":"Action","objectDomain":"actions","editActive":"","label":"Admin Email","order":"2","conditions":{"collapsed":false,"process":1,"connector":"all","when":[{"connector":"AND","key":"","comparator":"","value":"","type":"field","modelType":"when"}],"then":[{"key":"","trigger":"","value":"","type":"field","modelType":"then"}],"else":[]},"message":"This action allows users to make a request that their data on your site be erased. This is in accordance to the GDPR and other privacy regulations.","payment_gateways":"","payment_total":"0","ppe_details":"","api_keys":"To edit your API keys, click here<\/a>.","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"

    {field:email_1526653697888} has requested all data you have collected from them be deleted on {wp:site_url}. <\/p>","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":"","drawerDisabled":""}]}includes/Templates/formtemplate-jobapplication.nff000064400000160420152331132460016501 0ustar00{"settings":{"objectType":"Form Setting","editActive":true,"title":"Job Application","show_title":0,"clear_complete":1,"hide_complete":1,"default_label_pos":"above","wrapper_class":"","element_class":"","key":"","add_submit":1,"currency":"","unique_field_error":"A form with this value has already been submitted.","logged_in":false,"not_logged_in_msg":"","sub_limit_msg":"The form has reached its submission limit.","calculations":[],"formContentData":["personal_info_1523911398130","firstname_1523911360962","lastname_1523911357220","email_1523911364558","phone_1523911366932","address_1523911369006","address_1523911370832","city_1523911372094","us_state_1524662288192","zip_1523911383214","work_history_1524662305920","previous_job_title_1524662326660","date_previous_job_started_1524662355642","date_previous_job_ended_1524662377906","previous_job_description_1524662418586","references_1524662638006","name_1_1524662751528","phone_1_1524662753690","name_2_1524662757464","phone_2_1524662760390","name_3_1524662792540","phone_3_1524662795284","submit_1523911429754"],"drawerDisabled":false},"fields":[{"objectType":"Field","objectDomain":"fields","editActive":false,"order":1,"label":"Personal Info","type":"html","default":"

    Personal Information<\/h3>","container_class":"","element_class":"","key":"personal_info_1523911398130","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":2,"label":"First Name","type":"firstname","key":"firstname_1523911360962","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"one-half first","element_class":"","admin_label":"","help_text":"","custom_name_attribute":"fname"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":3,"label":"Last Name","type":"lastname","key":"lastname_1523911357220","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"one-half second","element_class":"","admin_label":"","help_text":"","custom_name_attribute":"lname"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":4,"label":"Email","type":"email","key":"email_1523911364558","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"","element_class":"","admin_label":"","help_text":"","custom_name_attribute":"email"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":5,"label":"Phone","type":"phone","key":"phone_1523911366932","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"phone"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":6,"label":"Address","type":"address","key":"address_1523911369006","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"address"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":7,"label":"Address","type":"address","key":"address_1523911370832","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"address"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":8,"label":"City","type":"city","key":"city_1523911372094","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"one-third first","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"city"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":9,"label":"US State","type":"liststate","key":"us_state_1524662288192","label_pos":"default","required":false,"options":[{"errors":[],"max_options":0,"label":"Alabama","value":"AL","calc":"","selected":0,"order":0,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Alaska","value":"AK","calc":"","selected":0,"order":1,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Arizona","value":"AZ","calc":"","selected":0,"order":2,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Arkansas","value":"AR","calc":"","selected":0,"order":3,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"California","value":"CA","calc":"","selected":0,"order":4,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Colorado","value":"CO","calc":"","selected":0,"order":5,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Connecticut","value":"CT","calc":"","selected":0,"order":6,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Delaware","value":"DE","calc":"","selected":0,"order":7,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Florida","value":"FL","calc":"","selected":0,"order":8,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Georgia","value":"GA","calc":"","selected":0,"order":9,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Hawaii","value":"HI","calc":"","selected":0,"order":10,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Idaho","value":"ID","calc":"","selected":0,"order":11,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Illinois","value":"IL","calc":"","selected":0,"order":12,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Indiana","value":"IN","calc":"","selected":0,"order":13,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Iowa","value":"IA","calc":"","selected":0,"order":14,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Kansas","value":"KS","calc":"","selected":0,"order":15,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Kentucky","value":"KY","calc":"","selected":0,"order":16,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Louisiana","value":"LA","calc":"","selected":0,"order":17,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Maine","value":"ME","calc":"","selected":0,"order":18,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Maryland","value":"MD","calc":"","selected":0,"order":19,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Massachusetts","value":"MA","calc":"","selected":0,"order":20,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Michigan","value":"MI","calc":"","selected":0,"order":21,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Minnesota","value":"MN","calc":"","selected":0,"order":22,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Mississippi","value":"MS","calc":"","selected":0,"order":23,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Missouri","value":"MO","calc":"","selected":0,"order":24,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Montana","value":"MT","calc":"","selected":0,"order":25,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Nebraska","value":"NE","calc":"","selected":0,"order":26,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Nevada","value":"NV","calc":"","selected":0,"order":27,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"New Hampshire","value":"NH","calc":"","selected":0,"order":28,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"New Jersey","value":"NJ","calc":"","selected":0,"order":29,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"New Mexico","value":"NM","calc":"","selected":0,"order":30,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"New York","value":"NY","calc":"","selected":0,"order":31,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"North Carolina","value":"NC","calc":"","selected":0,"order":32,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"North Dakota","value":"ND","calc":"","selected":0,"order":33,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Ohio","value":"OH","calc":"","selected":0,"order":34,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Oklahoma","value":"OK","calc":"","selected":0,"order":35,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Oregon","value":"OR","calc":"","selected":0,"order":36,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Pennsylvania","value":"PA","calc":"","selected":0,"order":37,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Rhode Island","value":"RI","calc":"","selected":0,"order":38,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"South Carolina","value":"SC","calc":"","selected":0,"order":39,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"South Dakota","value":"SD","calc":"","selected":0,"order":40,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Tennessee","value":"TN","calc":"","selected":0,"order":41,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Texas","value":"TX","calc":"","selected":0,"order":42,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Utah","value":"UT","calc":"","selected":0,"order":43,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Vermont","value":"VT","calc":"","selected":0,"order":44,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Virginia","value":"VA","calc":"","selected":0,"order":45,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Washington","value":"WA","calc":"","selected":0,"order":46,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"West Virginia","value":"WV","calc":"","selected":0,"order":47,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Wisconsin","value":"WI","calc":"","selected":0,"order":48,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Wyoming","value":"WY","calc":"","selected":0,"order":49,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Washington DC","value":"DC","calc":"","selected":0,"order":50,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST","value":"AE","calc":"","selected":0,"order":51,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"ARMED FORCES AMERICA (EXCEPT CANADA)","value":"AA","calc":"","selected":0,"order":52,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"ARMED FORCES PACIFIC","value":"AP","calc":"","selected":0,"order":53,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options Add New<\/a> <\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<\/span>","default":0}}}}],"container_class":"one-third second","element_class":"","admin_label":"","help_text":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":10,"label":"Zip","type":"zip","key":"zip_1523911383214","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"one-third third","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"zip","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":11,"label":"Work History","type":"html","default":"

    Work History
    <\/h3>","container_class":"","element_class":"","key":"work_history_1524662305920","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":12,"label":"Previous Job Title","type":"textbox","key":"previous_job_title_1524662326660","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":13,"type":"date","label":"Date Previous Job Started","key":"date_previous_job_started_1524662355642","label_pos":"default","required":false,"placeholder":"","container_class":"one-half first","element_class":"","manual_key":false,"admin_label":"","help_text":"","date_format":"default","year_range_start":"","year_range_end":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":14,"label":"Date Previous Job Ended","type":"date","key":"date_previous_job_ended_1524662377906","label_pos":"default","required":false,"placeholder":"","container_class":"one-half","element_class":"","manual_key":false,"admin_label":"","help_text":"","date_format":"default","year_range_start":"","year_range_end":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":15,"label":"Previous Job Description","type":"textarea","key":"previous_job_description_1524662418586","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","textarea_rte":"","disable_rte_mobile":"","textarea_media":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":16,"label":"References","type":"html","default":"

    References
    <\/h3>","container_class":"","element_class":"","key":"references_1524662638006","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":17,"label":"Name 1","type":"textbox","key":"name_1_1524662751528","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"two-thirds first","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":18,"label":"Phone 1","type":"phone","key":"phone_1_1524662753690","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"one-third","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"phone","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":19,"label":"Name 2","type":"textbox","key":"name_2_1524662757464","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"two-thirds first","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":20,"label":"Phone 2","type":"phone","key":"phone_2_1524662760390","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"one-third","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"phone","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":21,"label":"Name 3","type":"textbox","key":"name_3_1524662792540","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"two-thirds first","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":22,"label":"Phone 3","type":"phone","key":"phone_3_1524662795284","label_pos":"default","required":false,"default":"","placeholder":"","container_class":"one-third","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","mask":"","custom_mask":"","custom_name_attribute":"phone","drawerDisabled":false},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":23,"type":"submit","label":"Submit","processing_label":"Processing","container_class":"","element_class":"","key":"submit_1523911429754"}],"actions":[{"title":null,"key":null,"type":"save","active":"1","created_at":"2018-04-16 20:43:50","objectType":"Action","objectDomain":"actions","editActive":"","label":"Store Submission","order":"3","payment_gateways":"","payment_total":"0","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"{fields_table}","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":"","redirect_url":""},{"title":null,"key":null,"type":"successmessage","active":"1","created_at":"2018-04-16 20:43:50","objectType":"Action","objectDomain":"actions","editActive":"","label":"Success Message","message":"Your form has been successfully submitted.","order":"1","payment_gateways":"","payment_total":"0","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"{fields_table}","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":"","redirect_url":"","success_msg":"Thank you for your application! We will be in touch soon.
    ","drawerDisabled":""},{"title":null,"key":null,"type":"email","active":"1","created_at":"2018-04-16 20:43:50","objectType":"Action","objectDomain":"actions","editActive":"","label":"Admin Email","order":"2","payment_gateways":"","payment_total":"0","tag":"","to":"{wp:admin_email}","reply_to":"","email_subject":"Ninja Forms Submission","email_message":"{fields_table}","email_message_plain":"","from_name":"","from_address":"","email_format":"html","cc":"","bcc":""}]}includes/Templates/ui-item-controls.html.php000064400000001251152331132460015175 0ustar00
    includes/Templates/admin-menu-settings.html.php000064400000013375152331132460015665 0ustar00

    $error ): ?> " . esc_html__( 'Fix it.', 'ninja-forms' ) . ''; ?> 'error', 'message' => $message ) ); ?> $settings ) : ?>

    $setting ) : ?>
    "; break; case 'password' : echo ""; break; case 'checkbox' : $checked = ( $setting[ 'value' ] ) ? 'checked' : ''; echo ""; echo ""; break; case 'select' : echo ""; break; } if( isset( $setting[ 'desc' ] ) ) { echo "

    " . $setting[ 'desc' ] . "

    "; } ?> $error ){ echo "

    $error

    "; } } ?>
    ">
    includes/Templates/field-after.html000064400000000727152331132460013366 0ustar00 includes/Templates/admin-metabox-append-a-form.html.php000064400000000577152331132460017146 0ustar00includes/Templates/app-layout.html000064400000001016152331132460013267 0ustar00 includes/Templates/display-form-container.html.php000064400000002004152331132460016346 0ustar00 form( $form_id )->get()->get_setting( 'wrapper_class' ); $wrapper_class = ( ! empty( $form_wrap ) ) ? ' ' . Ninja_Forms()->form( $form_id )->get()->get_setting( 'wrapper_class' ) : ''; ?>
    includes/Templates/fields-terms.html000064400000000647152331132460013603 0ustar00 includes/Templates/fields-city.html000064400000001350152331132460013411 0ustar00 includes/Templates/admin-menu-forms.html.php000064400000020276152331132460015151 0ustar00
    ' . esc_html__( 'Field', 'ninja-forms' ) . '
    '; } ?>

    includes/Templates/form-layout.html000064400000000377152331132460013463 0ustar00includes/Templates/fields-lastname.html000064400000001541152331132460014247 0ustar00 includes/MergeTags/Fields.php000064400000057773152331132460012172 0ustar00title = esc_html__('Fields', 'ninja-forms'); $this->merge_tags = Ninja_Forms()->config('MergeTagsFields'); if (defined('DOING_AJAX') && DOING_AJAX) { $this->merge_tags = array_merge($this->merge_tags, Ninja_Forms()->config('MergeTagsFieldsAJAX')); } add_filter('ninja_forms_calc_setting', array($this, 'pre_parse_calc_settings'), 9); //add_filter( 'ninja_forms_calc_setting', array( $this, 'calc_replace' ) ); } public function __call($name, $arguments) { if (isset($arguments[0]['calc'])) { return $this->merge_tags[$name]['calc_value']; } if ($this->use_safe && isset($this->merge_tags[$name]['safe_value'])) { return $this->merge_tags[$name]['safe_value']; } return $this->merge_tags[$name]['field_value']; } public function all_fields() { if (is_rtl()) { $return = ''; } else { $return = '
    '; } $hidden_field_types = array('html', 'submit', 'password', 'passwordconfirm'); foreach ($this->get_fields_sorted() as $field) { if (!isset($field['type'])) continue; if (in_array($field['type'], array_values($hidden_field_types))) continue; $field['value'] = apply_filters('ninja_forms_merge_tag_value_' . $field['type'], $field['value'], $field); if (is_array($field['value'])) $field['value'] = implode(', ', $field['value']); $field = $this->maybe_sanitize($field); // Check if field is fieldset repeater, if not, go standard if ('repeater' !== $field['type']) { $return .= ''; } else { // Handle fieldset repeater $return .= $this->generateFieldsetTableRows($field); } } $return .= '
    ' . apply_filters('ninja_forms_merge_label', $field['label'], $field, $this->form_id) . ':' . $field['value'] . '
    '; return $return; } public function all_fields_table() { if (is_rtl()) { $return = ''; } else { $return = '
    '; } $hidden_field_types = array('submit', 'password', 'passwordconfirm'); $list_fields_types = array('listcheckbox', 'listmultiselect', 'listradio', 'listselect'); foreach ($this->get_fields_sorted() as $field) { if (!isset($field['type'])) continue; // Skip specific field types. if (in_array($field['type'], array_values($hidden_field_types))) continue; $field['value'] = apply_filters('ninja_forms_merge_tag_value_' . $field['type'], $field['value'], $field); // Check to see if the type is a list field and if it is... if (in_array($field['type'], array_values($list_fields_types))) { // If we have a comma separated value... if (strpos($field['value'], ',')) { // ...build the value back into an array. $field['value'] = explode(',', $field['value']); } // ...then set the value equal to the field label. $field['value'] = $this->get_list_labels($field); } if (is_array($field['value']) && $field['type'] !== "repeater") $field['value'] = implode(', ', $field['value']); $field = $this->maybe_sanitize($field); // Check if field is fieldset repeater, if not, go standard if ('repeater' !== $field['type']) { $return .= ''; } else { // Handle fieldset repeater $return .= $this->generateFieldsetTableRows($field); } } $return .= '
    ' . apply_filters('ninja_forms_merge_label', $field['label'], $field, $this->form_id) . ':' . $field['value'] . '
    '; return $return; } public function fields_table() { if (is_rtl()) { $return = ''; } else { $return = '
    '; } $hidden_field_types = array('html', 'submit', 'password', 'passwordconfirm', 'hidden'); $list_fields_types = array('listcheckbox', 'listmultiselect', 'listradio', 'listselect'); foreach ($this->get_fields_sorted() as $field) { if (!isset($field['type'])) continue; // Skip specific field types. if (in_array($field['type'], array_values($hidden_field_types))) continue; // TODO: Skip hidden fields, ie conditionally hidden. if (isset($field['visible']) && false === $field['visible']) continue; // Check to see if the type is a list field and if it is... if (in_array($field['type'], array_values($list_fields_types))) { // If we have a comma separated value... if (strpos($field['value'], ',')) { // ...build the value back into an array. $field['value'] = explode(',', $field['value']); } // ...then set the value equal to the field label. $field['value'] = $this->get_list_labels($field); } $field['value'] = apply_filters('ninja_forms_merge_tag_value_' . $field['type'], $field['value'], $field); // Skip fields without values. if (!$field['value']) continue; if (is_array($field['value']) && $field['type'] !== "repeater") $field['value'] = implode(', ', $field['value']); $field = $this->maybe_sanitize($field); // Check if field is fieldset repeater, if not, go standard if ('repeater' !== $field['type']) { $return .= ''; } else { // Handle fieldset repeater $return .= $this->generateFieldsetTableRows($field); } } $return .= '
    ' . apply_filters('ninja_forms_merge_label', $field['label'], $field, $this->form_id) . ':' . $field['value'] . '
    '; return $return; } // TODO: Is this being used? public function all_field_plain() { $return = ''; foreach ($this->get_fields_sorted() as $field) { $field['value'] = apply_filters('ninja_forms_merge_tag_value_' . $field['type'], $field['value'], $field); if (is_array($field['value'])) $field['value'] = implode(', ', $field['value']); $field = $this->maybe_sanitize($field); $return .= $field['label'] . ': ' . $field['value'] . "\r\n"; } return $return; } public function add_field($field) { // set boolean check for isRepetater field type $isRepeater = isset($field['settings']['type']) && isset($field['key']) && 'repeater' === $field['settings']['type'] ? true : false; $hidden_field_types = apply_filters('nf_sub_hidden_field_types', array()); if ( in_array($field['type'], $hidden_field_types) && 'html' != $field['type'] // Specifically allow the HTML field in merge tags. && 'password' != $field['type'] // Specifically allow the Password field in merge tags for actions, ie User Management ) return; $field_id = $field['id']; $callback = 'field_' . $field_id; $list_fields_types = array('listcheckbox', 'listmultiselect', 'listradio', 'listselect'); if (is_array($field['value']) && $field['type'] !== "repeater") $field['value'] = implode(',', $field['value']); $field['value'] = $this->stripShortcodesMaybeFieldset($field_id,$field['value']); $this->merge_tags['all_fields']['fields'][$field_id] = $field; //Set value of repeater fieldset or leave normal value $field_value = $isRepeater ? '' . $this->generateFieldsetTableRows($field) . '
    ' : $field['value']; $value = apply_filters('ninja_forms_merge_tag_value_' . $field['type'], $field_value, $field); $safe = apply_filters( 'ninja_forms_get_html_safe_fields', array('html') ); $sanitize = (!in_array($field['type'], $safe)); $this->add($callback, $field['id'], '{field:' . $field['id'] . '}', $value, false, $sanitize); if (isset($field['key'])) { $field_key = $field['key']; //Set calc value of repeater fieldset or leave normal value $field_calc_value = $isRepeater ? $this->addRepeaterCalcValue( $field ) : $field['value']; $calc_value = apply_filters('ninja_forms_merge_tag_calc_value_' . $field['type'], $field_calc_value, $field); // Add Field Key Callback $callback = 'field_' . $field_key; $this->add($callback, $field_key, '{field:' . $field_key . '}', $value, $calc_value, $sanitize); // Add Field by Key for All Fields $this->merge_tags['all_fields_by_key']['fields'][$field_key] = $field; // Add Field Calc Callabck if ('' == $calc_value) $calc_value = '0'; $callback = 'field_' . $field_key . '_calc'; $this->add($callback, $field_key, '{field:' . $field_key . ':calc}', $calc_value, $calc_value, $sanitize); /* * Adds the ability to add :label to list field merge tags * this will cause the label to be displayed on the front end * instead of the value. * * @since 3.3.3 */ // Check to see if the type is a list field and if it is... if (in_array($field['type'], array_values($list_fields_types))) { // If we have a comma separated value... if (strpos($field['value'], ',')) { // ...build the value back into an array. $field['value'] = explode(',', $field['value']); } // ...then set the value equal to the field label. $field['value'] = $this->get_list_labels($field); // If we have multiple values in from the list field... if (is_array($field['value'])) { // ...convert our values into an array. $field['value'] = implode(', ', $field['value']); } // Set callback and add this merge tag. $callback = 'field_' . $field_key . '_label'; $this->add($callback, $field_key, '{field:' . $field_key . ':label}', $field['value']); } } // Call repeter-specific call backs if($isRepeater){ $this->addFieldsetRepeaterCallbacks($field,$sanitize); } } /** * Generate repeater fieldset calc value based on the number of fieldsets filled by the user * * @param array $field Array of field information * @return int of the number of fieldsets used */ protected function addRepeaterCalcValue( $field ) { $fieldsets = []; if( isset($field['value']) && is_array($field['value']) ){ foreach( $field['value'] as $fieldset_field_index => $fieldset_field ){ if( ($pos = strpos($fieldset_field['id'], "_")) !== false){ $fieldset_number = substr($fieldset_field['id'], $pos + 1); if(!in_array($fieldset_number,$fieldsets)){ array_push($fieldsets, $fieldset_number); } } else { $fieldsets = [0]; } } } return count( $fieldsets ); } /** * Generate fieldset-specific outputs * * @param array $field Array of field information * @param bool $sanitize * @return void */ protected function addFieldsetRepeaterCallbacks( $field, $sanitize) { $field_key = $field['key']; // Create merge tag for table output $tableBase = 'table'; $tableCallback = 'field_' . $field_key.'_'.$tableBase; $tableTag = '{field:' . $field_key .':'.$tableBase. '}'; $tableValue = '' . $this->generateFieldsetTableRows($field) . '
    '; $this->add($tableCallback, $field_key, $tableTag, $tableValue, false, $sanitize); } /** * Generate merge tag output for fieldset repeater table values * * @param array $field Array of field information * @return void */ protected function generateFieldsetTableRows($field) { $outgoingValue = ''; $list_fields_types = array('listcheckbox', 'listmultiselect', 'listradio', 'listselect'); // Handle fieldset repeater $array = Ninja_Forms()->fieldsetRepeater->extractSubmissions($field['id'], $field['value'], $field['settings']); // Iterate submission indexes (each repeated fieldset in the submission) foreach ($array as $submissionIndex => $fieldsetArray) { $outgoingValue .= 'Repeated Fieldset #:' . $submissionIndex . ''; // Iterate each field within a submission index foreach ($fieldsetArray as $fieldsetFieldId => $submissionValueArray) { // Check to see if the type is a list field and if it is... if (in_array($submissionValueArray['type'], array_values($list_fields_types))) { // implode the value if is_array if (is_array($submissionValueArray['value'])) { $submissionValueArray['value'] = implode(', ', $submissionValueArray['value']); } } $outgoingValue .= '' . apply_filters('ninja_forms_merge_label', $submissionValueArray['label'], $field, $this->form_id) . ':' . $submissionValueArray['value'] . ''; } } return $outgoingValue; } /** * Get List Labels * Accepts a field loops over options, compares field values and returns the labels. * @since 3.2.22 * * @param $field array * @return array - label of the option. */ public function get_list_labels($field) { // Build our array to store our labels. $labels = array(); // Loop over our options... $field['options'] = apply_filters('ninja_forms_render_options', $field['options'], $field); $field['options'] = apply_filters('ninja_forms_render_options_' . $field['type'], $field['options'], $field); $field['options'] = apply_filters('ninja_forms_localize_list_labels', $field['options'], $field, $this->form_id); if (empty($field['options'])) { return $field['value']; } foreach ($field['options'] as $options) { // ...checks to see if our list has multiple values. if (is_array($field['value'])) { // Loop over our values... foreach ($field['value'] as $value) { // ...See if our values match... if ($options['value'] == $value) { // if they do build an array of the labels. $labels[] = $options['label']; } } // Otherwise if we are dealing with a single value, then... } elseif ($field['value'] == $options['value']) { // ...Set the label. $labels = $options['label']; } } return $labels; } /** * Add a callback value to the merge tags array * * Keyed on callback string, contains an array with tag, value, optional * calc_value, sanitize boolean * * @param $callback * @param $id * @param $tag * @param $value * @param bool $calc_value * @param bool $sanitize */ public function add($callback, $id, $tag, $value, $calc_value = false, $sanitize = true) { $this->merge_tags[$callback] = array( 'id' => $id, 'tag' => $tag, 'callback' => $callback, 'field_value' => $value, 'calc_value' => ($calc_value === false) ? $value : $calc_value, ); if ($sanitize) { // $id is field admin key $this->merge_tags[$callback]['safe_value'] = $this->stripTagsMaybeFieldset($id,$value); } } public function set_form_id($form_id) { $this->form_id = $form_id; } public function maybe_sanitize($field) { $safe = apply_filters( 'ninja_forms_get_html_safe_fields', array('html') ); if (!in_array($field['type'], $safe) && $this->use_safe) { $field['value'] = $this->stripTagsMaybeFieldset($field['id'],$field['value']); } return $field; } /** * Strip shortcodes in value * * @param int|string $id * @param mixed $incoming Incoming value * @return mixed */ protected function stripShortcodesMaybeFieldset( $id,$incoming) { $type = $this->determineFieldType($id); if('repeater'===$type) { $outgoing = $incoming; // Iterate each repeater value foreach($incoming as $fieldsetFieldId=>$fieldsetFieldSubmissionValue ){ // ensure key 'value' is set if(is_array($fieldsetFieldSubmissionValue)&& isset($fieldsetFieldSubmissionValue['value'])){ // If value is array (e.g. listcheckbox), then strip each // individual value if(is_array($fieldsetFieldSubmissionValue['value'])){ $outgoing[$fieldsetFieldId]['value']=array_map('strip_shortcodes',$fieldsetFieldSubmissionValue['value']); }else{ // If value is not array, strip shortcode $outgoing[$fieldsetFieldId]['value']=strip_shortcodes($fieldsetFieldSubmissionValue['value']); } }else{ // fallback strip shortcodes (all repeater values should be // array so this should not fire) $outgoing[$fieldsetFieldId]['value']=strip_shortcodes($incoming[$fieldsetFieldId]['value']); } } }else{ // Strip shortcodes for non-repeater values $outgoing = strip_shortcodes($incoming); } return $outgoing; } /** * Strip tags in value * * @param int|string $id * @param mixed $incoming * @return mixed */ protected function stripTagsMaybeFieldset( $id,$incoming) { $type = $this->determineFieldType($id); if('repeater'===$type) { // Iterate each repeater value $outgoing = $incoming; if(is_array($incoming)){ foreach($incoming as $fieldsetFieldId=>$fieldsetFieldSubmissionValue ){ // ensure key 'value' is set if(is_array($fieldsetFieldSubmissionValue)&& isset($fieldsetFieldSubmissionValue['value'])){ // If value is array (e.g. listcheckbox), then strip each // individual value if(is_array($fieldsetFieldSubmissionValue['value'])){ // If value is not array, strip tag $outgoing[$fieldsetFieldId]['value']=array_map('strip_tags',$fieldsetFieldSubmissionValue['value']); }else{ // If value is not array, strip shortcode $outgoing[$fieldsetFieldId]['value']=strip_tags($fieldsetFieldSubmissionValue['value']); } }else{ // fallback strip tag (all repeater values should be // array so this should not fire) $outgoing[$fieldsetFieldId]['value']=strip_tags($incoming[$fieldsetFieldId]['value']); } } } }else{ // Strip tags for non-repeater values if(is_array($incoming)){ $outgoing = array_map('strip_tags',$incoming); }else{ $outgoing = strip_tags($incoming); } } return $outgoing; } /** * Determine the field type given a field id or key * * @param string $id * @return string */ protected function determineFieldType($id) { $type = ''; if($id === (int) $id){ $type = Ninja_Forms()->form()->field($id)->get()->get_setting('type'); }else{ foreach( $this->merge_tags['all_fields']['fields'] as $field){ if( isset($field['key']) && $field['key'] == $id && isset($field['type']) ){ $type = $field['type']; break; } } } return $type; } private function get_fields_sorted() { $fields = $this->merge_tags['all_fields']['fields']; // Filterable Sorting for Add-ons (ie Layout and Multi-Part ). if (has_filter('ninja_forms_get_fields_sorted')) { $fields_by_key = $this->merge_tags['all_fields_by_key']['fields']; $fields = apply_filters('ninja_forms_get_fields_sorted', array(), $fields, $fields_by_key, $this->form_id); } else { // Default Sorting by Field Order. uasort($fields, array($this, 'sort_fields')); } return $fields; } public static function sort_fields($a, $b) { if ($a['order'] == $b['order']) { return 0; } return ($a['order'] < $b['order']) ? -1 : 1; } public function calc_replace($subject) { if (is_array($subject)) { foreach ($subject as $i => $s) { $subject[$i] = $this->replace($s); } return $subject; } //print_r($subject); preg_match_all("/{(.*?)}/", $subject, $matches); if (empty($matches[0])) return $subject; foreach ($this->merge_tags as $merge_tag) { if (!in_array($merge_tag['tag'], $matches[0])) continue; if (!isset($merge_tag['callback'])) continue; //print_r($merge_tag); //echo( ' = ' ); $replace = (is_callable(array($this, $merge_tag['callback']))) ? $this->{$merge_tag['callback']}(array('calc' => true)) : '0'; //print_r($replace); //echo(' myspace '); if ('' == $replace) $replace = '0'; $subject = str_replace($merge_tag['tag'], $replace, $subject); } return $subject; } /* |-------------------------------------------------------------------------- | Calculations |-------------------------------------------------------------------------- | Force {field:...:calc} in this context of calculations. | Example: {field:list} -> {field:list:calc} | When parsing the {field:...:calc} tag, if no calc value is found then the value will be used. | TODO: This makes explicit list field "values" inaccessible in calculations. */ public function pre_parse_calc_settings($eq) { return preg_replace_callback( '/{field:([a-z0-9]|_|-)*}/', array($this, 'force_field_calc_tags'), $eq ); } private function force_field_calc_tags($matches) { return str_replace('}', ':calc}', $matches[0]); } } // END CLASS NF_MergeTags_Fields includes/MergeTags/WP.php000064400000012714152331132460011274 0ustar00title = esc_html__( 'WordPress', 'ninja-forms' ); $this->merge_tags = Ninja_Forms()->config( 'MergeTagsWP' ); } /** * Custom replace() method for custom post meta or user meta. * @param string|array $subject * @return string */ public function replace( $subject ) { // Recursively replace merge tags. if( is_array( $subject ) ){ foreach( $subject as $i => $s ){ $subject[ $i ] = $this->replace( $s ); } return $subject; } /** * Replace Custom Post Meta * {post_meta:foo} --> meta key is 'foo' */ preg_match_all( "/{post_meta:(.*?)}/", $subject, $post_meta_matches ); if( ! empty( $post_meta_matches[0] ) ) { /** * $matches[0][$i] merge tag match {post_meta:foo} * $matches[1][$i] captured meta key foo */ foreach( $post_meta_matches[0] as $i => $search ) { $meta_key = $post_meta_matches[1][$i]; $meta_value = get_post_meta( $this->post_id(), $meta_key, true ); if ( '' != $meta_value ) { $subject = str_replace( $search, $meta_value, $subject ); } else { $subject = str_replace( $search, '', $subject ); } } } /** * Replace Custom User Meta * {user_meta:foo} --> meta key is 'foo' */ $user_id = get_current_user_id(); preg_match_all( "/{user_meta:(.*?)}/", $subject, $user_meta_matches ); // if user is logged in and we have user_meta merge tags if( ! empty( $user_meta_matches[0] ) && $user_id != 0 ) { /** * $matches[0][$i] merge tag match {user_meta:foo} * $matches[1][$i] captured meta key foo */ foreach( $user_meta_matches[0] as $i => $search ) { $meta_key = $user_meta_matches[1][$i]; $meta_value = get_user_meta( $user_id, $meta_key, /* $single */ true ); $subject = str_replace( $search, $meta_value, $subject ); } // if a user is not logged in, but there are user_meta merge tags } elseif ( ! empty( $user_meta_matches[0] ) && $user_id == 0 ) { $subject = ''; } return parent::replace( $subject ); } protected function post_id() { global $post; if ( is_admin() && defined( 'DOING_AJAX' ) && DOING_AJAX ) { // If we are doing AJAX, use the referer to get the Post ID. $post_id = url_to_postid( wp_get_referer() ); } elseif( $post ) { $post_id = $post->ID; } else { return false; // No Post ID found. } return $post_id; } protected function post_title() { $post_id = $this->post_id(); if( ! $post_id ) return; $post = get_post( $post_id ); return ( $post ) ? $post->post_title : ''; } protected function post_url() { $post_id = $this->post_id(); if( ! $post_id ) return; $post = get_post( $post_id ); return ( $post ) ? get_permalink( $post->ID ) : ''; } protected function post_author() { $post_id = $this->post_id(); if( ! $post_id ) return; $post = get_post( $post_id ); if( ! $post ) return ''; $author = get_user_by( 'id', $post->post_author); return $author->display_name; } protected function post_author_email() { $post_id = $this->post_id(); if( ! $post_id ) return; $post = get_post( $post_id ); if( ! $post ) return ''; $author = get_user_by( 'id', $post->post_author ); return $author->user_email; } protected function user_id() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->ID : ''; } protected function user_first_name() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->user_firstname : ''; } protected function user_last_name() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->user_lastname : ''; } protected function user_display_name() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->display_name : ''; } protected function user_username() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->user_nicename : ''; } protected function user_email() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->user_email : ''; } protected function user_url() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->user_url : ''; } protected function admin_email() { return get_option( 'admin_email' ); } protected function site_title() { return get_bloginfo( 'name' ); } protected function site_url() { return get_bloginfo( 'url' ); } } // END CLASS NF_MergeTags_System includes/MergeTags/Deprecated.php000064400000007217152331132460013010 0ustar00merge_tags = Ninja_Forms()->config( 'MergeTagsDeprecated' ); } protected function post_id() { global $post; if ( is_admin() && defined( 'DOING_AJAX' ) && DOING_AJAX ) { // If we are doing AJAX, use the referer to get the Post ID. $post_id = url_to_postid( wp_get_referer() ); } elseif( $post ) { $post_id = $post->ID; } else { return false; // No Post ID found. } return $post_id; } protected function post_title() { $post_id = $this->post_id(); if( ! $post_id ) return; $post = get_post( $post_id ); return ( $post ) ? $post->post_title : ''; } protected function post_url() { $post_id = $this->post_id(); if( ! $post_id ) return; $post = get_post( $post_id ); return ( $post ) ? get_permalink( $post->ID ) : ''; } protected function post_author() { $post_id = $this->post_id(); if( ! $post_id ) return; $post = get_post( $post_id ); if( ! $post ) return ''; $author = get_user_by( 'id', $post->post_author); return $author->display_name; } protected function post_author_email() { $post_id = $this->post_id(); if( ! $post_id ) return; $post = get_post( $post_id ); if( ! $post ) return ''; $author = get_user_by( 'id', $post->post_author ); return $author->user_email; } protected function user_id() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->ID : ''; } protected function user_first_name() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->user_firstname : ''; } protected function user_last_name() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->user_lastname : ''; } protected function user_display_name() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->display_name : ''; } protected function user_email() { $current_user = wp_get_current_user(); return ( $current_user ) ? $current_user->user_email : ''; } protected function admin_email() { return get_option( 'admin_email' ); } protected function site_title() { return get_bloginfo( 'name' ); } protected function site_url() { return get_bloginfo( 'url' ); } protected function system_date() { $format = Ninja_Forms()->get_setting( 'date_format' ); if ( empty( $format ) ) { $format = 'Y/m/d'; } return date( $format, time() ); } protected function system_ip() { $ip = '127.0.0.1'; if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) { //check ip from share internet $ip = $_SERVER['HTTP_CLIENT_IP']; } elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { //to check ip is pass from proxy $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; } elseif( ! empty( $_SERVER['REMOTE_ADDR'] ) ) { $ip = $_SERVER['REMOTE_ADDR']; } return apply_filters( 'ninja_forms-get_ip', apply_filters( 'nf_get_ip', $ip ) ); } } // END CLASS NF_MergeTags_System includes/MergeTags/Form.php000064400000004640152331132460011650 0ustar00title = esc_html__( 'Form', 'ninja-forms' ); $this->merge_tags = Ninja_Forms()->config( 'MergeTagsForm' ); add_action( 'ninja_forms_save_sub', array( $this, 'setSubSeq' ) ); // Gets the form ID. add_action( 'nf_get_form_id', array( $this, 'set_form_id' ), 15, 1 ); } /** * @return mixed */ public function getSubSeq() { return $this->sub_seq; } /** * @param mixed $sub_seq */ public function setSubSeq( $sub_id ) { $submission = Ninja_Forms()->form()->sub( $sub_id )->get(); $this->sub_seq = $submission->get_seq_num(); } /** * Getter method for the form_id. * * @return void */ public function get_form_id() { return $this->form_id; } /** * Getter method for the form title. * * @return void */ public function get_form_title() { return $this->form_title; } /** * Setter method for the form_id and callback for the nf_get_form_id action. * @since 3.2.2 * * @param string $form_id The ID of the current form. * @return void */ public function set_form_id( $form_id ) { $this->form_id = $form_id; } /** * Setter method for the form_title * * @param string $form_title The title of the current form. * @return void */ public function set_form_title( $form_title ) { $this->form_title = $form_title; } /** * Gets a count of the form submissions and callback for the sub_count merge tag setting. * @since 3.2.2 * * @return array|int Count of the form submissions. */ public function get_sub_count() { global $wpdb; // Query the database for the total amount of submissions for a form. $query = "SELECT DISTINCT( COUNT( wpp.id ) ) AS sub_count FROM `" . $wpdb->prefix . "posts` wpp JOIN `" . $wpdb->prefix . "postmeta` wpm ON wpp.id = wpm.post_id WHERE wpm.meta_key = '_form_id' AND wpm.meta_value = %s"; $count = $wpdb->get_results( $wpdb->prepare( $query, $this->form_id ) ); return $count[ 0 ]->sub_count; } } // END CLASS NF_MergeTags_Form includes/MergeTags/Other.php000064400000006634152331132460012033 0ustar00title = esc_html__( 'Other', 'ninja-forms' ); $this->merge_tags = Ninja_Forms()->config( 'MergeTagsOther' ); add_action( 'init', array( $this, 'init' ) ); } public function replace( $subject ) { $subject = parent::replace( $subject ); if (is_string($subject)) { preg_match_all("/{querystring:(.*?)}/", $subject, $matches ); } if ( ! isset( $matches ) || ! is_array( $matches ) ) return $subject; /** * $matches[0][$i] merge tag match {post_meta:foo} * $matches[1][$i] captured meta key foo */ foreach( $matches[0] as $i => $search ){ // Replace unused querystring merge tags. $subject = str_replace( $matches[0][$i], '', $subject ); } return $subject; } public function init() { if( is_admin() ) { if( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) return; $url_query = parse_url( wp_get_referer(), PHP_URL_QUERY ); parse_str( $url_query, $variables ); } else { $variables = $_GET; } if( ! is_array( $variables ) ) return; foreach( $variables as $key => $value ){ if ( is_array( $value ) ) { $value = wp_kses_post_deep( $value ); $value = map_deep( $value, 'esc_attr' ); } else { $value = wp_kses_post( $value ); $value = esc_attr( $value ); } $this->set_merge_tags( $key, $value ); } } public function __call($name, $arguments) { return $this->merge_tags[ $name ][ 'value' ]; } public function set_merge_tags( $key, $value ) { $callback = ( is_numeric( $key ) ) ? 'querystring_' . $key : $key; $this->merge_tags[ $callback ] = array( 'id' => $key, 'tag' => "{querystring:" . $key . "}", 'callback' => $callback, 'value' => $value ); $this->merge_tags[ $callback . '_deprecated' ] = array( 'id' => $key, 'tag' => "{" . $key . "}", 'callback' => $callback, 'value' => $value ); } protected function system_date() { $format = Ninja_Forms()->get_setting( 'date_format' ); if ( empty( $format ) ) { $format = 'Y/m/d'; } return date( $format, time() ); } protected function system_time() { return date_i18n( get_option( 'time_format' ), current_time( 'timestamp' ) ); } protected function user_ip() { $ip = '127.0.0.1'; if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) { //check ip from share internet $ip = $_SERVER['HTTP_CLIENT_IP']; } elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { //to check ip is pass from proxy $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; } elseif( ! empty( $_SERVER['REMOTE_ADDR'] ) ) { $ip = $_SERVER['REMOTE_ADDR']; } return apply_filters( 'ninja_forms-get_ip', apply_filters( 'nf_get_ip', $ip ) ); } } // END CLASS NF_MergeTags_Other includes/MergeTags/Calcs.php000064400000004440152331132460011770 0ustar00title = esc_html__( 'Calculations', 'ninja-forms' ); add_filter( 'ninja_forms_calc_setting', array( $this, 'replace' ) ); } public function __call($name, $arguments) { return $this->merge_tags[ $name ][ 'calc_value' ]; } public function set_merge_tags( $key, $value, $round = 2 , $dec = '.', $sep = ',') { $callback = ( is_numeric( $key ) ) ? 'calc_' . $key : $key; try { $locale = new stdClass(); $locale->number_format = array( 'thousands_sep' => $sep, 'decimal_point' => $dec ); $handler = new NF_Handlers_LocaleNumberFormatting($locale); $eq = $handler->locale_decode_equation($value); $calculated_value = Ninja_Forms()->eos()->solve( $eq ); } catch( Exception $e ){ $calculated_value = FALSE; } $this->merge_tags[ $callback ] = array( 'id' => $key, 'tag' => "{calc:$key}", 'callback' => $callback, 'calc_value' => number_format( $calculated_value, $round, '.', '' ) ); $callback .= '2'; $this->merge_tags[ $callback ] = array( 'id' => $key, 'tag' => "{calc:$key:2}", 'callback' => $callback, 'calc_value' => number_format( $calculated_value, 2, '.', '' ) ); } public function get_calc_value( $key ) { return $this->merge_tags[ $key ][ 'calc_value' ]; } // @TODO: $round is no longer necessary in this context. public function get_formatted_calc_value( $key, $round = 2, $dec = '.', $sep = ',') { $locale = new stdClass(); $locale->number_format = array( 'thousands_sep' => $sep, 'decimal_point' => $dec ); $handler = new NF_Handlers_LocaleNumberFormatting($locale); return $handler->locale_encode_number( $this->merge_tags[ $key ][ 'calc_value' ] ); } } // END CLASS NF_MergeTags_Calcs includes/MergeTags/System.php000064400000001262152331132460012226 0ustar00title = esc_html__( 'System', 'ninja-forms' ); $this->merge_tags = Ninja_Forms()->config( 'MergeTagsSystem' ); } protected function admin_email() { return get_option( 'admin_email' ); } protected function site_title() { return get_bloginfo( 'name' ); } protected function site_url() { return get_bloginfo( 'url' ); } } // END CLASS NF_MergeTags_System includes/EmailTelemetry.php000064400000011676152331132460012020 0ustar00is_opted_in = $opted_in; } /** * @hook phpmailer_init The last action before the email is sent. */ public function setup() { if( $this->is_opted_in ) { /** * @link https://codex.wordpress.org/Plugin_API/Action_Reference/phpmailer_init */ // Stop collecting data. // add_action( 'phpmailer_init', array( $this, 'update_metrics' ) ); // Stop scheduling new events. // add_action( 'wp', array( $this, 'maybe_schedule_push' ) ); // Leave this function registered for now to avoid throwing a cron error. add_action( 'nf_email_telemetry_push', array( $this, 'push_telemetry' ) ); } } /** * @NOTE No need to return $phpmailer as it is passed in by reference (aka Output Parameter). */ public function update_metrics(&$phpmailer) { $send_count_metric = NF_Telemetry_MetricFactory::create( 'CountMetric', 'nf_email_send_count' ); $send_count_metric->increment(); $sent_with_attachments = NF_Telemetry_MetricFactory::create( 'CountMetric', 'nf_email_with_attachment_count' ); if( $phpmailer->attachmentExists() ) $sent_with_attachments->increment(); $to_count = count( $phpmailer->getToAddresses() ); $to_count_metric = NF_Telemetry_MetricFactory::create( 'CountMetric', 'nf_email_to_count' ); $to_count_metric->increment( $to_count ); $cc_count = count( $phpmailer->getCcAddresses() ); $cc_count_metric = NF_Telemetry_MetricFactory::create( 'CountMetric', 'nf_email_cc_count' ); $cc_count_metric->increment( $cc_count ); $bcc_count = count( $phpmailer->getBccAddresses() ); $bcc_count_metric = NF_Telemetry_MetricFactory::create( 'CountMetric', 'nf_email_bcc_count' ); $bcc_count_metric->increment( $bcc_count ); $to_max_metric = NF_Telemetry_MetricFactory::create( 'MaxMetric', 'nf_email_to_max' ); $to_max_metric->update( $to_count ); $cc_max_metric = NF_Telemetry_MetricFactory::create( 'MaxMetric', 'nf_email_cc_max' ); $cc_max_metric->update( $cc_count ); $bcc_max_metric = NF_Telemetry_MetricFactory::create( 'MaxMetric', 'nf_email_bcc_max' ); $bcc_max_metric->update( $bcc_count ); $recipient_max_metric = NF_Telemetry_MetricFactory::create( 'MaxMetric', 'nf_email_recipient_max' ); $recipient_max_metric->update( count( $phpmailer->getAllRecipientAddresses() ) ); $attachment_count = count( $phpmailer->getAttachments() ); $attachment_count_metric = NF_Telemetry_MetricFactory::create( 'CountMetric', 'nf_email_attachment_count' ); $attachment_count_metric->increment( $attachment_count ); $attachment_filesize_count_metric = NF_Telemetry_MetricFactory::create( 'CountMetric', 'nf_email_attachment_filesize_count' ); $attachment_filesize_max_metric = NF_Telemetry_MetricFactory::create( 'MaxMetric', 'nf_email_attachment_filesize_max' ); foreach( $phpmailer->getAttachments() as $attachment ) { $filename = $attachment[0]; if( $filesize = filesize( $filename ) ){ $attachment_filesize_count_metric->increment( $filesize ); $attachment_filesize_max_metric->update( $filesize ); } } } public function maybe_schedule_push() { if ( ! wp_next_scheduled( 'nf_email_telemetry_push' ) ) { wp_schedule_event( current_time( 'timestamp' ), 'nf-weekly', 'nf_email_telemetry_push' ); } } public function push_telemetry() { // (Deprecated) Exit without doing anything. return false; $metrics = array( 'nf_email_send_count', 'nf_email_with_attachment_count', 'nf_email_to_count', 'nf_email_to_max', 'nf_email_cc_count', 'nf_email_cc_max', 'nf_email_bcc_count', 'nf_email_bcc_max', 'nf_email_recipient_max', 'nf_email_attachment_count', 'nf_email_attachment_filesize_count', 'nf_email_attachment_filesize_max', ); $telemetry_data = array(); foreach( $metrics as $metric ) { $repository = new NF_Telemetry_MetricRepository( $metric, $default = 0 ); $telemetry_data[ $metric ] = $repository->get(); $repository->save( 0 ); } Ninja_Forms()->dispatcher()->send( 'wpsend_stats', $telemetry_data ); } } includes/Fields/HTML.php000064400000002355152331132460011042 0ustar00_settings[ 'label' ][ 'width' ] = 'full'; $this->_settings[ 'default' ][ 'group' ] = 'primary'; $this->_settings[ 'default' ][ 'type' ] = 'rte'; $this->_settings[ 'default' ][ 'use_merge_tags' ] = array( 'include' => array( 'calcs' ), 'exclude' => array( 'form', 'fields' ), ); $this->_nicename = esc_html__( 'HTML', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/ListMultiSelect.php000064400000003726152331132460013367 0ustar00_nicename = esc_html__( 'Multi-Select', 'ninja-forms' ); add_filter( 'ninja_forms_merge_tag_calc_value_' . $this->_type, array( $this, 'get_calc_value' ), 10, 2 ); } public function admin_form_element( $id, $value ) { $field = Ninja_Forms()->form()->get_field( $id ); $field_options = $field->get_setting( 'options' ); $field_options = apply_filters( 'ninja_forms_render_options', $field_options, $field->get_settings() ); $field_options = apply_filters( 'ninja_forms_render_options_' . $this->_type, $field_options, $field->get_settings() ); $options = ''; foreach( $field_options as $option ){ $selected = ( is_array( $value ) && in_array( $option[ 'value' ], $value ) ) ? "selected" : ''; $options .= ""; } return ""; } public function get_calc_value( $value, $field ) { $selected = explode( ',', $value ); $value = 0; if( isset( $field[ 'options' ] ) ) { foreach ($field['options'] as $option ) { if( ! isset( $option[ 'value' ] ) || ! in_array( $option[ 'value' ], $selected ) || ! isset( $option[ 'calc' ] ) ) continue; $value += $option[ 'calc' ]; } } return $value; } } includes/Fields/Textbox.php000064400000002464152331132460011734 0ustar00_nicename = esc_html__( 'Single Line Text', 'ninja-forms' ); add_filter( 'ninja_forms_subs_export_field_value_' . $this->_name, array( $this, 'filter_csv_value' ), 10, 2 ); } public function filter_csv_value( $field_value, $field ) { /* * sanitize this in case someone tries to inject data that runs in * Excel and similar apps * */ if( 0 < strlen( $field_value ) ) { $first_char = substr( $field_value, 0, 1 ); if( in_array( $first_char, array( '=', '@', '+', '-' ) ) ) { return "'" . $field_value; } } return $field_value; } } includes/Fields/Terms.php000064400000014371152331132460011371 0ustar00_nicename = esc_html__( 'Terms List', 'ninja-forms' ); // If we are on the ninja-forms page... // OR we're looking at nf_sub post types... // OR we're editing a single post... if ( ( ! empty( $_GET[ 'page' ] ) && 'ninja-forms' == $_GET[ 'page' ] ) || ( ! empty( $_GET[ 'post_type' ] ) && 'nf_sub' == $_GET[ 'post_type' ] ) || isset( $_GET[ 'post' ] ) ) { // Initiate the termslist. add_action( 'admin_init', array( $this, 'init_settings' ) ); } add_filter( 'ninja_forms_display_field', array( $this, 'active_taxonomy_field_check' ) ); add_filter( 'ninja_forms_localize_field_' . $this->_type, array( $this, 'add_term_options' ) ); add_filter( 'ninja_forms_localize_field_' . $this->_type . '_preview', array( $this, 'add_term_options' ) ); add_filter( 'ninja_forms_merge_tag_value_' . $this->_type, array( $this, 'merge_tag_value' ), 10, 2 ); $this->_settings[ 'options' ][ 'group' ] = ''; } public function process( $field, $data ) { return $data; } public function init_settings() { $term_settings = array(); $taxonomies = get_taxonomies( array( 'public' => true ), 'objects' ); foreach( $taxonomies as $name => $taxonomy ){ $tax_term_settings = array(); if( in_array( $name, $this->_excluded_taxonomies ) ) continue; $this->_settings[ 'taxonomy' ][ 'options' ][] = array( 'label' => $taxonomy->labels->name, 'value' => $name ); $terms = get_terms( $name, array( 'hide_empty' => false ) ); foreach( $terms as $term ){ // Check the slug instead of term_id to ensure we ONLY remove 'uncategorized'. if( 'uncategorized' == $term->slug ) continue; $tax_term_settings[] = array( 'name' => 'taxonomy_term_' . $term->term_id, 'type' => 'toggle', 'label' => $term->name . ' (' . $term->count .')', 'width' => 'one-third', 'deps' => array( 'taxonomy' => $name ), ); } if( empty( $tax_term_settings ) ){ $tax_term_settings[] = array( 'name' => $name . '_no_terms', 'type' => 'html', 'width' => 'full', 'value' => sprintf( esc_html__( 'No available terms for this taxonomy. %sAdd a term%s', 'ninja-forms' ), '', '' ), 'deps' => array( 'taxonomy' => $name ) ); } $term_settings = array_merge( $term_settings, $tax_term_settings ); } $term_settings[] = array( 'name' => '_no_taxonomy', 'type' => 'html', 'width' => 'full', 'value' => esc_html__( 'No taxonomy selected.', 'ninja-forms' ), 'deps' => array( 'taxonomy' => '' ) ); $this->_settings[ 'taxonomy_terms' ] = array( 'name' => 'taxonomy_terms', 'type' => 'fieldset', 'label' => esc_html__( 'Available Terms', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'settings' => $term_settings ); } public function active_taxonomy_field_check( $field ) { if( $this->_type != $field->get_setting( 'type' ) ) return $field; $taxonomy = $field->get_setting( 'taxonomy' ); if( ! taxonomy_exists( $taxonomy ) ) return FALSE; return $field; } public function add_term_options( $field ) { $settings = ( is_object( $field ) ) ? $field->get_settings() : $field[ 'settings' ]; $settings[ 'options' ] = array(); if( isset( $settings[ 'taxonomy' ] ) && $settings[ 'taxonomy' ] ){ $terms = get_terms( $settings[ 'taxonomy' ], array( 'hide_empty' => false ) ); if( ! is_wp_error( $terms ) ){ foreach( $terms as $term ) { if( ! isset( $settings[ 'taxonomy_term_' . $term->term_id ] ) ) continue; if( ! $settings[ 'taxonomy_term_' . $term->term_id ] ) continue; $settings['options'][] = array( 'label' => $term->name, 'value' => $term->term_id, 'calc' => '', 'selected' => 0, 'order' => 0 ); } } } if( is_object( $field ) ) { $field->update_settings( $settings ); } else { $field[ 'settings' ] = $settings; } return $field; } public function merge_tag_value( $value, $field ) { $terms = explode( ',', $value ); if( ! is_array( $terms ) ) { $term = get_term_by( 'id', $value, $field[ 'taxonomy' ] ); if( $term ) { return $term->name; } else { return $value; } } $term_names = array(); foreach( $terms as $term_id ){ $term = get_term_by( 'id', $term_id, $field[ 'taxonomy' ] ); $term_names[] = ( $term ) ? $term->name : $term_id; // If the term is `false`, fallback to the term_id. } return implode( ',', $term_names ); } public function get_parent_type() { return 'listcheckbox'; } } includes/Fields/StarRating.php000064400000001425152331132460012351 0ustar00_settings['number_of_stars']['group'] = 'primary'; $this->_nicename = esc_html__( 'Star Rating', 'ninja-forms' ); } } includes/Fields/ListRadio.php000064400000001777152331132460012177 0ustar00_nicename = esc_html__( 'Radio List', 'ninja-forms' ); add_filter( 'ninja_forms_merge_tag_calc_value_' . $this->_type, array( $this, 'get_calc_value' ), 10, 2 ); } public function get_calc_value( $value, $field ) { if( isset( $field[ 'options' ] ) ) { foreach ($field['options'] as $option ) { if( ! isset( $option[ 'value' ] ) || $value != $option[ 'value' ] || ! isset( $option[ 'calc' ] ) ) continue; $value = $option[ 'calc' ]; } } return $value; } } includes/Fields/CreditCardFullName.php000064400000001536152331132460013726 0ustar00_nicename = esc_html__( 'Credit Card Full Name', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/Password.php000064400000001436152331132460012077 0ustar00_nicename = esc_html__( 'Password', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); add_filter( 'ninja_forms_csv_ignore_fields', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/Note.php000064400000002776152331132460011212 0ustar00_settings[ 'value_mirror' ] = array( 'name' => 'value_mirror', 'type' => 'html', 'label' => esc_html__( 'HTML', 'ninja-forms'), 'width' => 'full', 'group' => 'primary', 'mirror' => 'default', ); $this->_settings[ 'label' ][ 'width' ] = 'full'; $this->_settings[ 'label' ][ 'group' ] = 'advanced'; $this->_settings[ 'default' ][ 'type' ] = 'rte'; $this->_settings[ 'default' ][ 'group' ] = 'advanced'; $this->_settings[ 'value_mirror' ][ 'value' ] = $this->_settings[ 'default' ][ 'value' ] = esc_html__( 'Note text can be edited in the note field\'s advanced settings below.' ); $this->_nicename = esc_html__( 'Note', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/Unknown.php000064400000005527152331132460011741 0ustar00_nicename = esc_html__( 'Unknown', 'ninja-forms' ); $this->_settings[ 'message' ] = array( 'name' => 'message', 'type' => 'html', 'label' => '', 'width' => 'full', 'group' => 'primary', ); $this->_settings[ 'label' ][ 'group' ] = ''; unset( $this->_settings[ 'default' ] ); // TODO: Seeing an error when removing default form the $_settings_only property, so just unsetting it here for now. add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } public function validate( $field, $data ) { return array(); // Return empty array with no errors. } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } public static function create( $field ) { $unknown = Ninja_Forms()->form()->field()->get(); if( is_object( $field ) ){ $unknown->update_settings(array( 'id' => $field->get_id(), 'label' => $field->get_setting( 'label' ), 'order' => $field->get_setting( 'order' ), 'key' => $field->get_setting( 'key' ), 'type' => 'unknown', 'message' => sprintf( esc_html__( 'Field type "%s" not found.', 'ninja-forms' ), $field->get_setting( 'type' ) ) )); } elseif( isset( $field[ 'settings' ] ) ){ $unknown->update_settings(array( 'id' => $field[ 'id' ], 'label' => $field[ 'settings' ][ 'label' ], 'order' => $field[ 'settings' ][ 'order' ], 'key' => $field[ 'settings' ][ 'key' ], 'type' => 'unknown', 'message' => sprintf( esc_html__( 'Field type "%s" not found.', 'ninja-forms' ), $field[ 'settings' ][ 'type' ] ) )); } else { $unknown->update_settings(array( 'id' => $field[ 'id' ], 'label' => $field[ 'label' ], 'order' => $field[ 'order' ], 'key' => $field[ 'key' ], 'type' => 'unknown', 'message' => sprintf( esc_html__( 'Field type "%s" not found.', 'ninja-forms' ), $field[ 'type' ] ) )); } return $unknown; } } includes/Fields/hr.php000064400000001566152331132460010712 0ustar00_settings[ 'classes' ][ 'group' ] = 'primary'; $this->_nicename = esc_html__( 'Divider', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); unset( $this->_settings[ 'classes' ][ 'settings' ][ 'wrapper '] ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/Total.php000064400000002267152331132460011363 0ustar00_nicename = esc_html__( 'Total', 'ninja-forms' ); } public function process( $total, $data ) { $subtotal = 0; foreach( $data[ 'fields' ] as $key => $field ){ if( isset ( $field[ 'type' ] ) && 'shipping' == $field[ 'type' ] ){ $subtotal += $field[ 'shipping_cost' ]; } } if( isset( $data[ 'product_totals' ] ) ){ foreach( $data[ 'product_totals' ] as $product_total ){ $subtotal += $product_total; } } $data[ 'new_total' ] = number_format( $subtotal, 2 ); return $data; } } includes/Fields/Hidden.php000064400000001721152331132460011465 0ustar00 array( 'calculations' ) ); $this->_settings[ 'label' ][ 'width' ] = 'full'; $this->_settings[ 'default' ][ 'group' ] = 'primary'; $this->_settings[ 'default' ][ 'user_merge_tags' ] = $use_merge_tags; $this->_nicename = esc_html__( 'Hidden', 'ninja-forms' ); } } includes/Fields/Checkbox.php000064400000014652152331132460012027 0ustar00_nicename = esc_html__( 'Single Checkbox', 'ninja-forms' ); $this->_settings[ 'label_pos' ][ 'value' ] = 'right'; add_filter( 'ninja_forms_custom_columns', array( $this, 'custom_columns' ), 10, 2 ); add_filter( 'ninja_forms_merge_tag_value_' . $this->_name, array( $this, 'filter_merge_tag_value' ), 10, 2 ); add_filter( 'ninja_forms_merge_tag_calc_value_' . $this->_name, array( $this, 'filter_merge_tag_value_calc' ), 10, 2 ); add_filter( 'ninja_forms_subs_export_field_value_' . $this->_type, array( $this, 'export_value' ), 10, 2 ); } /** * Admin Form Element * Display the checkbox on the edit submissions area. * @since 3.0 * * @param $id Field ID. * @param $value Field value. * @return string HTML used for display of checkbox. */ public function admin_form_element( $id, $value ) { // If the checkboxes value is 1 or on... if( 'on' == $value || 1 == $value ) { // ...this variable to checked. $checked = 'checked'; } else { // ...else leave the variable empty. $checked = ''; } // Return HTML to be output to the submission edit page. return " "; } /** * Custom Columns * Creates what is displayed in the columns on the submissions page. * @since 3.0 *nf_subs_export_pre_value * @param $value checkbox value * @param $field field model. * @return $value string|void */ public function custom_columns( $value, $field ) { // If the field type is equal to checkbox... if( 'checkbox' == $field->get_setting( 'type' ) ) { // Backwards compatibility check for the new checked value setting. if( null == $field->get_setting( 'checked_value' ) && 1 == $value || 'on' == $value ) { return esc_html__( 'Checked', 'ninja-forms' ); } elseif( null == $field->get_setting( 'unchecked_value' ) && 0 == $value ) { return esc_html__( 'Unchecked', 'ninja-forms'); } // If the field value is set to 1.... if( 1 == $value || 'on' == $value ) { // Set the value to the checked value setting. $value = $field->get_setting( 'checked_value' ); } // Unless we've somehow gotten the display value in here... elseif ( $field->get_setting( 'checked_value' ) != $value ) { // Set the value to the unchecked value setting. $value = $field->get_setting( 'unchecked_value' ); } } return $value; } /** * Filter Merge Tag Value * This is what provides the merge tag with the fields value. * @since 3.0 * * @param $value Field value * @param $field field model * @return string|void */ public function filter_merge_tag_value( $value, $field ) { // If value is true, return checked value setting. if( $value ) return $field[ 'settings' ][ 'checked_value' ]; // Else return unchecked value setting. return $field[ 'settings' ][ 'unchecked_value' ];; } /** * Filter Merge Tag Value Calc * Provides the calculation value when the merge tag is used. * @since 3.0 * * @param $value checkbox value * @param $field field model * @return $field */ public function filter_merge_tag_value_calc( $value, $field ) { // If value is equal to 1... if ( 1 == $value ) { // ...return the checked calc value of the field model. return $field[ 'checked_calc_value' ]; } else { // ...else return the unchecked calc value of the field model. return $field[ 'unchecked_calc_value' ]; } } /** * Export Value * Determines the value to send to submission export. * @since 3.0 * * @param $value checkbox field value * @param $field checkbox field model * @return string|void */ public function export_value( $value, $field ) { // @TODO: Why were these values translated in the first place? // If value is equal to checked or unchecked return the value if ( __( 'checked', 'ninja-forms' ) == $value || __( 'unchecked', 'ninja-forms' ) == $value ) return $value; // Creating settings variables for our check. if( is_array( $field ) ) { // The email action sends teh field variable as an array $checked_setting = $field[ 'setting' ][ 'checked_value' ]; $unchecked_setting = $field[ 'setting' ][ 'unchecked_value' ]; } else { $checked_setting = $field->get_setting( 'checked_value' ); $unchecked_setting = $field->get_setting( 'unchecked_value' ); } // If the the value and check to see if we have checked and unchecked settings... if ( ( 1 == $value || 'on' == $value ) && ! empty( $checked_setting ) ) { // ...if we do return checked setting return $checked_setting; } elseif ( 0 == $value && ! empty( $unchecked_setting ) ) { // ...else return unchecked setting. return $unchecked_setting; /* * These checks are for checkbox fields that were created before version 3.2.7. */ } elseif ( 1 == $value || 'on' == $value ) { return esc_html__( 'checked', 'ninja-forms' ); } elseif ( 0 == $value ) { return esc_html__( 'unchecked', 'ninja-forms' ); } } } includes/Fields/FirstName.php000064400000002211152331132460012155 0ustar00_nicename = esc_html__( 'First Name', 'ninja-forms' ); $this->_settings[ 'custom_name_attribute' ][ 'value' ] = 'fname'; $this->_settings[ 'personally_identifiable' ][ 'value' ] = '1'; } public function filter_default_value( $default_value, $field_class, $settings ) { if( ! isset( $settings[ 'default_type' ] ) || 'user-meta' != $settings[ 'default_type' ] || $this->_name != $field_class->get_name()) return $default_value; $current_user = wp_get_current_user(); if( $current_user ){ $default_value = $current_user->user_firstname; } return $default_value; } } includes/Fields/Date.php000064400000003123152331132460011145 0ustar00_nicename = esc_html__( 'Date', 'ninja-forms' ); } public function process( $field, $data ) { return $data; } private function get_format( $format ) { $lookup = array( 'MM/DD/YYYY' => esc_html__( 'm/d/Y', 'ninja-forms' ), 'MM-DD-YYYY' => esc_html__( 'm-d-Y', 'ninja-forms' ), 'MM.DD.YYYY' => esc_html__( 'm.d.Y', 'ninja-forms' ), 'DD/MM/YYYY' => esc_html__( 'm/d/Y', 'ninja-forms' ), 'DD-MM-YYYY' => esc_html__( 'd-m-Y', 'ninja-forms' ), 'DD.MM.YYYY' => esc_html__( 'd.m.Y', 'ninja-forms' ), 'YYYY-MM-DD' => esc_html__( 'Y-m-d', 'ninja-forms' ), 'YYYY/MM/DD' => esc_html__( 'Y/m/d', 'ninja-forms' ), 'YYYY.MM.DD' => esc_html__( 'Y.m.d', 'ninja-forms' ), 'dddd, MMMM D YYYY' => esc_html__( 'l, F d Y', 'ninja-forms' ), ); return ( isset( $lookup[ $format ] ) ) ? $lookup[ $format ] : $format; } } includes/Fields/Recaptcha.php000064400000006031152331132460012163 0ustar00_nicename = esc_html__( 'Recaptcha', 'ninja-forms' ); $this->_settings[ 'size '] = array( 'name' => 'size', 'type' => 'select', 'label' => esc_html__( 'Visibility', 'ninja-forms' ), 'options' => array( array( 'label' => esc_html__( 'Visible', 'ninja-forms' ), 'value' => 'visible' ), array( 'label' => esc_html__( 'Invisible', 'ninja-forms' ), 'value' => 'invisible' ), ), 'width' => 'one-half', 'group' => 'primary', 'value' => 'visible', 'help' => esc_html__( 'Select whether to display a "I\'m not a robot" field or to detect if the user is a robot in the background.', 'ninja-forms' ), ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } public function localize_settings( $settings, $form ) { $settings['site_key'] = Ninja_Forms()->get_setting( 'recaptcha_site_key' ); $settings['theme'] = Ninja_Forms()->get_setting( 'recaptcha_theme' ); $settings['theme'] = ( $settings['theme'] ) ? $settings['theme'] : 'light'; $settings['lang'] = Ninja_Forms()->get_setting( 'recaptcha_lang' ); return $settings; } public function validate( $field, $data ) { if ( empty( $field['value'] ) ) { return esc_html__( 'Please complete the recaptcha', 'ninja-forms' ); } $secret_key = Ninja_Forms()->get_setting( 'recaptcha_secret_key' ); $url = 'https://www.google.com/recaptcha/api/siteverify?secret=' . $secret_key . '&response='.sanitize_text_field( $field['value'] ); $resp = wp_remote_get( esc_url_raw( $url ) ); if ( !is_wp_error( $resp ) ) { $body = wp_remote_retrieve_body( $resp ); $response = json_decode( $body ); if ( $response->success === false ) { if ( !empty( $response->{'error-codes'} ) && $response->{'error-codes'} != 'missing-input-response' ) { return array( esc_html__( 'Please make sure you have entered your Site & Secret keys correctly', 'ninja-forms' ) ); }else { return array( esc_html__( 'Captcha mismatch. Please enter the correct value in captcha field', 'ninja-forms' ) ); } } } } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/ListSelect.php000064400000002044152331132460012344 0ustar00_nicename = esc_html__( 'Select', 'ninja-forms' ); add_filter( 'ninja_forms_merge_tag_calc_value_' . $this->_type, array( $this, 'get_calc_value' ), 10, 2 ); } public function get_calc_value( $value, $field ) { if( isset( $field[ 'options' ] ) ) { foreach ($field['options'] as $option ) { if( ! isset( $option[ 'value' ] ) || $value != $option[ 'value' ] || ! isset( $option[ 'calc' ] ) ) continue; return $option[ 'calc' ]; } } return $value; } } includes/Fields/CreditCard.php000064400000001112152331132460012270 0ustar00_nicename = esc_html__( 'Credit Card', 'ninja-forms' ); } } includes/Fields/Phone.php000064400000001161152331132460011341 0ustar00_nicename = esc_html__( 'Phone', 'ninja-forms' ); $this->_settings[ 'custom_name_attribute' ][ 'value' ] = 'phone'; $this->_settings[ 'personally_identifiable' ][ 'value' ] = '1'; } } includes/Fields/Product.php000064400000017612152331132460011720 0ustar00_nicename = esc_html__( 'Product', 'ninja-forms' ); $this->_settings[ 'product_price' ][ 'width' ] = 'full'; add_filter( 'ninja_forms_merge_tag_value_product', array( $this, 'merge_tag_value' ), 10, 2 ); add_filter( 'ninja_forms_custom_columns', array( $this, 'custom_columns' ), 10, 3 ); add_filter( 'ninja_forms_merge_tag_calc_value_product', array( $this, 'merge_tag_value' ), 10, 2 ); add_filter( 'ninja_forms_localize_field_' . $this->_name, array( $this, 'filter_required_setting' ) ); add_filter( 'ninja_forms_localize_field_' . $this->_name . '_preview', array( $this, 'filter_required_setting' ) ); } public function process( $product, $data ) { $related = array(); foreach( $data[ 'fields' ] as $key => $field ){ if( ! isset ( $field[ 'type' ] ) || ! in_array( $field[ 'type' ], $this->processing_fields ) ) continue; $type = $field[ 'type' ]; if( ! isset( $field[ 'product_assignment' ] ) ) continue; if( $product[ 'id' ] != $field[ 'product_assignment' ] ) continue; $related[ $type ] = &$data[ 'fields' ][ $key ]; // Assign by reference } //TODO: Does not work in non-English locales $total = str_replace( array( ',', '$' ), '', $product[ 'product_price' ] ); $total = floatval( $total ); if( isset( $related[ 'quantity' ][ 'value' ] ) && $related[ 'quantity' ][ 'value' ] ){ $total = $total * $related[ 'quantity' ][ 'value' ]; } elseif( $product[ 'product_use_quantity'] && $product[ 'value' ] ){ $total = $total * $product[ 'value' ]; } if( isset( $related[ 'modifier' ] ) ){ //TODO: Handle multiple modifiers. } $data[ 'product_totals' ][] = number_format( $total, 2 ); $data[ 'extra' ][ 'product_fields' ][ $product[ 'id' ] ][ 'product_price' ] = $product[ 'settings' ][ 'product_price' ]; return $data; } /** * Validate * * @param $field * @param $data * @return array $errors */ public function validate( $field, $data ) { $errors = array(); if( isset( $field[ 'product_use_quantity' ] ) && 1 == $field[ 'product_use_quantity' ] ){ // Required check. if( isset( $field['required'] ) && 1 == $field['required'] && ! trim( $field['value'] ) ){ $errors[] = 'Field is required.'; } } return $errors; } public function filter_required_setting( $field ) { if( ! isset( $field[ 'settings' ][ 'product_use_quantity' ] ) || 1 != $field[ 'settings' ][ 'product_use_quantity' ] ) { $field[ 'settings' ][ 'required' ] = 0; } return $field; } public function merge_tag_value( $value, $field ) { // TODO: Replaced this to fix English locales. // Other locales are still broken and will need to be addressed in refactor. // $product_price = preg_replace ('/[^\d,\.]/', '', $field[ 'product_price' ] ); $product_price = str_replace( array( ',', '$' ), '', $field[ 'product_price' ] ); $product_quantity = ( isset( $field[ 'product_use_quantity' ] ) && 1 == $field[ 'product_use_quantity' ] ) ? $value : 1; return number_format( $product_price * $product_quantity, 2 ); } public function custom_columns( $value, $field, $sub_id ) { if ( ! $field->get_setting( 'product_use_quantity' ) ) return $value; if ( 0 == absint( $_REQUEST[ 'form_id' ] ) ) return $value; $form_id = absint( $_REQUEST[ 'form_id' ] ); /* * Check to see if we have a stored "price" setting for this field. * This lets us track what the value was when the user submitted so that total isn't incorrect if the user changes the price after a submission. */ $sub = Ninja_Forms()->form()->get_sub( $sub_id ); $product_fields = $sub->get_extra_value( 'product_fields' ); if( is_array( $product_fields ) && isset ( $product_fields[ $field->get_id() ] ) ) { $price = $product_fields[ $field->get_id() ][ 'product_price' ]; } else { $price = $field->get_setting( 'product_price' ); } /* * Get our currency marker setting. First, we check the form, then plugin settings. */ $currency = Ninja_Forms()->form( $form_id )->get()->get_setting( 'currency' ); if ( empty( $currency ) ) { /* * Check our plugin currency. */ $currency = Ninja_Forms()->get_setting( 'currency' ); } $currency_symbols = Ninja_Forms::config( 'CurrencySymbol' ); $currency_symbol = html_entity_decode( $currency_symbols[ $currency ] ); // @todo Update to use the locale of the form. global $wp_locale; $price = str_replace( array( $wp_locale->number_format[ 'thousands_sep' ], $currency_symbol ), '', $price ); $price = floatval( $price ); $value = intval( $value ); $total = number_format_i18n( $price * $value, 2 ); $output = $currency_symbol . $total . ' ( ' . $value . ' ) '; return $output; } public function admin_form_element( $id, $value ) { $form_id = get_post_meta( absint( $_GET[ 'post' ] ), '_form_id', true ); $field = Ninja_Forms()->form( $form_id )->get_field( $id ); /* * Check to see if we have a stored "price" setting for this field. * This lets us track what the value was when the user submitted so that total isn't incorrect if the user changes the price after a submission. */ $sub = Ninja_Forms()->form()->get_sub( absint( $_REQUEST[ 'post' ] ) ); $product_fields = $sub->get_extra_value( 'product_fields' ); if( is_array( $product_fields ) && isset ( $product_fields[ $id ] ) ) { $price = $product_fields[ $id ][ 'product_price' ]; } else { $price = $field->get_setting( 'product_price' ); } /* * Get our currency marker setting. First, we check the form, then plugin settings. */ $currency = Ninja_Forms()->form( $form_id )->get()->get_setting( 'currency' ); if ( empty( $currency ) ) { /* * Check our plugin currency. */ $currency = Ninja_Forms()->get_setting( 'currency' ); } $currency_symbols = Ninja_Forms::config( 'CurrencySymbol' ); $currency_symbol = html_entity_decode( $currency_symbols[ $currency ] ); // @todo Update to use the locale of the form. global $wp_locale; $price = str_replace( array( $wp_locale->number_format[ 'thousands_sep' ], $currency_symbol ), '', $price ); $price = floatval( $price ); $value = intval( $value ); $total = number_format_i18n( $price * $value, 2 ); $price = number_format_i18n( $price, 2 ); return "Price: " . $currency_symbol . $price . " X Quantity: = " . $currency_symbol . $total; } } includes/Fields/PasswordConfirm.php000064400000004514152331132460013415 0ustar00_nicename = esc_html__( 'Password Confirm', 'ninja-forms' ); $this->_settings[ 'confirm_field' ][ 'value' ] = esc_attr__( 'password', 'ninja-forms' ); $this->_settings[ 'confirm_field' ][ 'field_types' ] = array( 'password' ); $this->_settings[ 'confirm_field' ][ 'field_value_format' ] = 'key'; add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); add_filter( 'ninja_forms_csv_ignore_fields', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } public function validate( $field, $data ) { $errors = parent::validate( $field, $data ); $password_fields = $this->get_password_fields( $data ); if( ! is_array( $password_fields ) || empty( $password_fields ) ) return $errors; foreach( $password_fields as $password_field ){ if( $this->is_matching_values( $field, $password_field ) ) continue; $errors[] = $this->get_error_message(); } return $errors; } private function get_password_fields( $data ) { $password_fields = array(); foreach( $data[ 'fields' ] as $field ){ if( 'password' != $field[ 'type' ] ) continue; $password_fields[] = $field; } return $password_fields; } private function is_matching_values( $a, $b ) { return $a[ 'value' ] === $b[ 'value' ]; } private function get_error_message() { if( $this->_error_message ) return $this->_error_message; $error_message = esc_html__( 'Passwords do not match', 'ninja-forms' ); $error_message = apply_filters( 'ninja_forms_password_confirm_mismatch', $error_message ); return $this->_error_message = $error_message; } } includes/Fields/Number.php000064400000001273152331132460011524 0ustar00_nicename = esc_html__( 'Number', 'ninja-forms' ); } public function get_parent_type() { return parent::get_type(); } } includes/Fields/City.php000064400000001123152331132460011176 0ustar00_nicename = esc_html__( 'City', 'ninja-forms' ); $this->_settings[ 'custom_name_attribute' ][ 'value' ] = 'city'; } } includes/Fields/CreditCardNumber.php000064400000001540152331132460013446 0ustar00_nicename = esc_html__( 'Credit Card Number', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/CreditCardExpiration.php000064400000001746152331132460014350 0ustar00_nicename = esc_html__( 'Credit Card Expiration', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); $this->_settings[ 'mask' ] = array( 'name' => 'mask', 'value' => '99/9999', ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/Repeater.php000064400000017430152331132460012045 0ustar00_nicename = esc_html__( 'Repeatable Fieldset', 'ninja-forms' ); add_filter( 'ninja_forms_localize_field_settings_repeater', array( $this, 'display_filter' ), 10, 2 ); add_filter( 'ninja_forms_custom_columns', array( $this, 'custom_columns' ), 10, 2 ); } public function display_filter( $field, $form ) { if ( empty ( $field[ 'fields' ] ) ) return $field; foreach( $field[ 'fields' ] as &$settings ) { $field_type = $settings[ 'type' ]; if( ! is_string( $field_type ) ) continue; if( ! isset( Ninja_Forms()->fields[ $field_type ] ) ) { $unknown_field = NF_Fields_Unknown::create( $field ); $field = array( 'settings' => $unknown_field->get_settings(), 'id' => $unknown_field->get_id() ); $field_type = $settings[ 'type' ]; } $field = apply_filters('ninja_forms_localize_fields', $field); $field = apply_filters('ninja_forms_localize_field_' . $field_type, $field); $field_class = Ninja_Forms()->fields[$field_type]; if (NF_Display_Render::$use_test_values) { $field[ 'value' ] = $field_class->get_test_value(); } // Hide the label on invisible reCAPTCHA fields if ( 'recaptcha' === $field[ 'type' ] && 'invisible' === $field[ 'size' ] ) { $field[ 'settings' ][ 'label_pos' ] = 'hidden'; } // Copy field ID into the field settings array for use in localized data. $field[ 'settings' ] = []; $field[ 'settings' ][ 'id' ] = $field[ 'id' ]; /* * TODO: For backwards compatibility, run the original action, get contents from the output buffer, and return the contents through the filter. Also display a PHP Notice for a deprecate filter. */ $display_before = apply_filters( 'ninja_forms_display_before_field_type_' . $field[ 'type' ], '' ); $display_before = apply_filters( 'ninja_forms_display_before_field_key_' . $field[ 'key' ], $display_before ); $field[ 'beforeField' ] = $display_before; $display_after = apply_filters( 'ninja_forms_display_after_field_type_' . $field[ 'type' ], '' ); $display_after = apply_filters( 'ninja_forms_display_after_field_key_' . $field[ 'key' ], $display_after ); $field[ 'afterField' ] = $display_after; $templates = $field_class->get_templates(); if (!array($templates)) { $templates = array($templates); } foreach ($templates as $template) { NF_Display_Render::load_template('fields-' . $template); } $settings['value'] = ''; foreach ($settings as $key => $setting) { if (is_numeric($setting) && 'custom_mask' != $key ) $settings[$key] = floatval($setting); } if( ! isset( $settings[ 'label_pos' ] ) || "default" === $settings[ 'label_pos' ] ){ $settings[ 'label_pos' ] = is_object($form) ? $form->get_setting( 'default_label_pos' ) : $settings[ 'label_pos' ]; } $settings[ 'parentType' ] = $field_class->get_parent_type(); if( 'list' == $settings[ 'parentType' ] && isset( $settings[ 'options' ] ) && is_array( $settings[ 'options' ] ) ){ $settings[ 'options' ] = apply_filters( 'ninja_forms_render_options', $settings[ 'options' ], $settings ); $settings[ 'options' ] = apply_filters( 'ninja_forms_render_options_' . $field_type, $settings[ 'options' ], $settings ); } $default_value = ( isset( $settings[ 'default' ] ) ) ? $settings[ 'default' ] : null; $default_value = apply_filters('ninja_forms_render_default_value', $default_value, $field_type, $settings); if ( $default_value ) { $default_value = preg_replace( '/{[^}]}/', '', $default_value ); if ($default_value) { $settings['value'] = $default_value; if( ! is_array( $default_value ) ) { ob_start(); do_shortcode( $settings['value'] ); $ob = ob_get_clean(); if( ! $ob ) { $settings['value'] = do_shortcode( $settings['value'] ); } } } } $settings['element_templates'] = $templates; $settings['old_classname'] = $field_class->get_old_classname(); $settings['wrap_template'] = $field_class->get_wrap_template(); $settings = apply_filters( 'ninja_forms_localize_field_settings_' . $field_type, $settings, $form ); } return $field; } public function admin_form_element( $id, $value ) { $fieldSettings = Ninja_Forms()->form()->field($id)->get_settings(); $extractedSubmissionData = Ninja_Forms()->fieldsetRepeater->extractSubmissions($id,$value,$fieldSettings); $return =''; foreach($extractedSubmissionData as $index=> $indexedSubmission){ $return .= '
    Repeated Fieldset #'.$index.'
    '; foreach($indexedSubmission as $submissionValueArray){ $fieldsetFieldSubmissionValue = $submissionValueArray['value']; if(is_array($fieldsetFieldSubmissionValue)){ $fieldsetFieldSubmissionValue=implode(', ',$fieldsetFieldSubmissionValue); } $return.=''.$submissionValueArray['label'].' '; } } return $return; } /** * Custom Columns * Creates what is displayed in the columns on the submissions page. * @since 3.4.34 * nf_subs_export_pre_value * @param $value checkbox value * @param $field field model. * @return $value string|void */ public function custom_columns( $value, $field ) { // If the field type is equal to Repeater... if( 'repeater' == $field->get_setting( 'type' ) ) { // Get Child Fields $fields = $field->get_setting( 'fields' ); foreach($fields as $child_field ){ // If the field type is equal to checkbox... if($child_field['type'] === "checkbox"){ //Get set readable values $checked = !empty($child_field['checked_value']) ? $child_field['checked_value'] : esc_html__( 'Checked', 'ninja-forms'); $unchecked = !empty($child_field['unchecked_value']) ? $child_field['unchecked_value'] : esc_html__( 'Unchecked', 'ninja-forms'); // Replace occurences $value = str_replace("1", $checked, $value); $value = str_replace("0", $unchecked, $value); } } } return $value; } } includes/Fields/Zip.php000064400000001142152331132460011031 0ustar00_nicename = esc_html__('Zip', 'ninja-forms'); $this->_settings[ 'custom_name_attribute' ][ 'value' ] = 'zip'; } } includes/Fields/Submit.php000064400000001551152331132460011536 0ustar00_nicename = esc_html__( 'Submit', 'ninja-forms' ); $this->_settings[ 'label' ][ 'width' ] = 'full'; add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/Address.php000064400000001266152331132460011663 0ustar00_nicename = esc_html__( 'Address', 'ninja-forms' ); $this->_settings[ 'custom_name_attribute' ][ 'value' ] = 'address'; $this->_settings[ 'personally_identifiable' ][ 'value' ] = '1'; } } includes/Fields/ListState.php000064400000002600152331132460012203 0ustar00_nicename = esc_html__( 'US States', 'ninja-forms' ); $this->_settings[ 'options' ][ 'value' ] = $this->get_options(); } private function get_options() { $order = 0; $options = array(); // Option to have no state selected by default. $options[] = array( 'label' => '- ' . esc_html__( 'Select State', 'ninja-forms' ) . ' -', 'value' => '', 'calc' => '', 'selected' => 0, 'order' => $order, ); $order++; foreach( Ninja_Forms()->config( 'StateList' ) as $label => $value ){ $options[] = array( 'label' => $label, 'value' => $value, 'calc' => '', 'selected' => 0, 'order' => $order ); $order++; } return $options; } }includes/Fields/Color.php000064400000001157152331132460011353 0ustar00_settings = $this->load_settings( // array( 'label', 'label_pos', 'required', 'classes' ) // ); // $this->_nicename = __( 'Color', 'ninja-forms' ); // } // } includes/Fields/Textarea.php000064400000003613152331132460012051 0ustar00_nicename = esc_html__( 'Paragraph Text', 'ninja-forms' ); $this->_settings[ 'default' ][ 'type' ] = 'textarea'; $this->_settings[ 'placeholder' ][ 'type' ] = 'textarea'; add_filter( 'ninja_forms_subs_export_field_value_' . $this->_name, array( $this, 'filter_csv_value' ), 10, 2 ); } public function admin_form_element( $id, $value ) { return ""; } public function filter_csv_value( $field_value, $field ) { /* * sanitize this in case someone tries to inject data that runs in * Excel and similar apps * */ if( 0 < strlen($field_value ) ) { $first_char = substr( $field_value, 0, 1 ); if( in_array( $first_char, array( '=', '@', '+', '-' ) ) ) { return "'" . $field_value; } } return $field_value; } } includes/Fields/LastName.php000064400000002201152331132460011770 0ustar00_nicename = esc_html__( 'Last Name', 'ninja-forms' ); $this->_settings[ 'custom_name_attribute' ][ 'value' ] = 'lname'; $this->_settings[ 'personally_identifiable' ][ 'value' ] = '1'; } public function filter_default_value( $default_value, $field_class, $settings ) { if( ! isset( $settings[ 'default_type' ] ) || 'user-meta' != $settings[ 'default_type' ] || $this->_name != $field_class->get_name()) return $default_value; $current_user = wp_get_current_user(); if( $current_user ){ $default_value = $current_user->user_lastname; } return $default_value; } } includes/Fields/CreditCardCVC.php000064400000001466152331132460012640 0ustar00_nicename = esc_html__( 'Credit Card CVC', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/ListImage.php000064400000012347152331132460012156 0ustar00_nicename = esc_html__('Select Image', 'ninja-forms'); add_filter('ninja_forms_merge_tag_calc_value_' . $this->_type, [$this, 'get_calc_value'], 10, 2); add_filter('ninja_forms_localize_field_listimage', [$this,'localizeField'], 10, 2); add_filter('ninja_forms_localize_field_listimage_preview', [$this,'localizeField'], 10, 2); } public function admin_form_element($id, $value) { $form_id = get_post_meta(absint($_GET['post']), '_form_id', true); $field = Ninja_Forms()->form($form_id)->get_field($id); $settings = $field->get_settings(); $multi_select = $field->get_setting('allow_multi_select'); $options = $field->get_setting('image_options'); $options = apply_filters('ninja_forms_render_options', $options, $settings); $options = apply_filters('ninja_forms_render_options_' . $this->_type, $options, $settings); $list = ''; foreach ($options as $option) { $checked = ''; $type = ''; if ($multi_select === 1 || is_array($value)) { $type = 'checkbox'; } else { $type = 'radio'; } if (is_array($value) && in_array($option['value'], $value)) { $checked = "checked"; } elseif ($value === $option['value']) { $checked = 'checked'; } $list .= "
  • "; } return "
      $list
    "; } /* * Appropriate output for a column cell in submissions list. */ public function custom_columns( $value, $field ) { if( $this->_name != $field->get_setting( 'type' ) ) return $value; //Consider & to be the same as the & values in database in a selectbox saved value: if( ! is_array( $value ) ) $value = array( htmlspecialchars_decode($value) ); $settings = $field->get_settings(); $options = $field->get_setting( 'image_options' ); $options = apply_filters( 'ninja_forms_render_options', $options, $settings ); $options = apply_filters( 'ninja_forms_render_options_' . $field->get_setting( 'type' ), $options, $settings ); $output = ''; if( ! empty( $options ) ) { foreach ($options as $option) { if ( ! in_array( $option[ 'value' ], $value ) ) continue; $output .= esc_html( $option[ 'label' ] ) . "
    "; } } return $output; } public function get_calc_value($value, $field) { $selected = explode( ',', $value ); $value = 0; if (isset($field['image_options'])) { foreach ($field['image_options'] as $option) { if( ! isset( $option[ 'value' ] ) || ! in_array( $option[ 'value' ], $selected ) || ! isset( $option[ 'calc' ] ) || ! is_numeric( $option[ 'calc' ] )) continue; $value += $option[ 'calc' ]; } } return $value; } public function localizeField($field) { foreach ($field['settings']['image_options'] as $index => $img) { if (isset($img['image_id']) && is_numeric($img['image_id'])) { $post = get_post(intval($img['image_id'])); if ($post) { $img_alt = get_post_meta($img['image_id'], '_wp_attachment_image_alt'); $field['settings']['image_options'][$index]['img_title'] = $post->post_title; if (is_array($img_alt) && ! empty($img_alt)) { $field['settings']['image_options'][$index]['alt_text'] = $img_alt[0]; } else { $field['settings']['image_options'][$index]['alt_text'] = ''; } } else { $field['settings']['image_options'][$index]['image'] = Ninja_forms::$url . 'assets/img/no-image-available-icon-6.jpg'; $field['settings']['image_options'][$index]['img_title'] = ''; $field['settings']['image_options'][$index]['alt_text'] = ''; } } else { $field['settings']['image_options'][$index]['image'] = Ninja_forms::$url . 'assets/img/no-image-available-icon-6.jpg'; $field['settings']['image_options'][$index]['img_title'] = ''; $field['settings']['image_options'][$index]['alt_text'] = ''; } } return $field; } } includes/Fields/Address2.php000064400000001231152331132460011735 0ustar00_nicename = esc_html__( 'Address 2', 'ninja-forms' ); $this->_settings[ 'custom_name_attribute' ][ 'value' ] = 'address'; $this->_settings[ 'personally_identifiable' ][ 'value' ] = '1'; } } includes/Fields/Confirm.php000064400000002014152331132460011663 0ustar00_nicename = esc_html__( 'Confirm', 'ninja-forms' ); $this->_settings[ 'confirm_field' ][ 'field_value_format' ] = 'key'; add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } public function validate( $field, $data ) { if( false ){ $errors[] = esc_html__( 'Fields do not match.', 'ninja-forms' ); } return $errors; } } includes/Fields/Shipping.php000064400000005005152331132460012052 0ustar00_nicename = esc_html__( 'Shipping', 'ninja-forms' ); add_filter( 'ninja-forms-field-settings-groups', array( $this, 'add_setting_group' ) ); add_filter( 'ninja_forms_merge_tag_value_shipping', array( $this, 'merge_tag_value' ), 10, 2 ); } public function add_setting_group( $groups ) { $groups[ 'advanced_shipping' ] = array( 'id' => 'advanced_shipping', 'label' => esc_html__( 'Advanced Shipping', 'ninja-forms' ), ); return $groups; } public function admin_form_element( $id, $value ) { $field = Ninja_Forms()->form()->get_field( $id ); $value = $field->get_setting( 'shipping_cost' ); switch( $field->get_setting( 'shipping_type' ) ){ case 'single': return ""; case 'select': $options = ''; foreach( $field->get_setting( 'shipping_options' ) as $option ){ $selected = ( $value == $option[ 'value' ] ) ? "selected" : ''; $options .= ""; } return ""; default: return ""; } } public function merge_tag_value( $value, $field ) { if( isset( $field[ 'shipping_type' ] ) ){ switch( $field[ 'shipping_type' ] ){ case 'single': $value = $field[ 'shipping_cost' ]; break; case 'select': $value = $field[ 'shipping_options' ]; break; } } $value = preg_replace ('/[^\d,\.]/', '', $value ); return $value; } } includes/Fields/Spam.php000064400000003505152331132460011174 0ustar00_nicename = esc_html__( 'Anti-Spam', 'ninja-forms' ); // Rename Label setting to Question $this->_settings[ 'label' ][ 'label' ] = esc_html__( 'Question', 'ninja-forms' ); $this->_settings[ 'label_pos' ][ 'label' ] = esc_html__( 'Question Position', 'ninja-forms' ); // Manually set Field Key and stop tracking. $this->_settings[ 'key' ][ 'value' ] = 'spam'; $this->_settings[ 'manual_key' ][ 'value' ] = TRUE; // Default Required setting to TRUE and hide setting. $this->_settings[ 'required' ][ 'value' ] = 1; $this->_settings[ 'required' ][ 'group' ] = ''; add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } /** * Validate * * @param $field * @param $data * @return array $errors */ public function validate( $field, $data ) { $errors = parent::validate( $field, $data ); if( ( isset( $field[ 'spam_answer' ] ) && isset( $field[ 'value' ] ) ) && ( $field[ 'spam_answer' ] != $field[ 'value' ] ) ){ $errors = esc_html__( 'Incorrect Answer', 'ninja-forms' ); } return $errors; } public function get_parent_type() { return 'spam'; } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/TimedSubmit.php000064400000001046152331132460012520 0ustar00_nicename = __( 'Timed Submit', 'ninja-forms' ); // } //} includes/Fields/Email.php000064400000002735152331132460011327 0ustar00_nicename = esc_html__( 'Email', 'ninja-forms' ); $this->_settings[ 'custom_name_attribute' ][ 'value' ] = 'email'; $this->_settings[ 'personally_identifiable' ][ 'value' ] = '1'; } public function validate( $field, $data ) { if ( ! empty( $field['value'] ) && ! filter_var( $field['value'], FILTER_VALIDATE_EMAIL ) ) { return esc_html__('Please enter a valid email address.', 'ninja-forms'); } } public function filter_default_value( $default_value, $field_class, $settings ) { if( ! isset( $settings[ 'default_type' ] ) || 'user-meta' != $settings[ 'default_type' ] || $this->_name != $field_class->get_name()) return $default_value; $current_user = wp_get_current_user(); if( $current_user ){ $default_value = $current_user->user_email; } return $default_value; } } includes/Fields/ListCountry.php000064400000011554152331132460012576 0ustar00_nicename = esc_html__( 'Country', 'ninja-forms' ); $this->_settings[ 'options' ][ 'group' ] = ''; // $this->_settings[ 'options' ][ 'value' ] = $this->get_options(); $this->_settings[ 'default' ] = array( 'name' => 'default', 'type' => 'select', 'label' => esc_html__( 'Default Value', 'ninja-forms' ), 'options' => $this->get_default_value_options(), 'width' => 'one-half', 'group' => 'primary', 'value' => 'US', ); add_filter( 'ninja_forms_custom_columns', array( $this, 'custom_columns' ), 10, 2 ); add_filter( 'ninja_forms_render_options_' . $this->_type, array( $this, 'filter_options' ), 10, 2 ); add_filter( 'ninja_forms_subs_export_field_value_' . $this->_name, array( $this, 'filter_csv_value' ), 10, 2 ); } public function custom_columns( $value, $field ) { if( $this->_name != $field->get_setting( 'type' ) ) return $value; foreach( Ninja_Forms()->config( 'CountryList' ) as $country => $abbr ){ if( $value == $abbr ) return $country; } return $value; } public function filter_options( $options, $settings ) { $default_value = ( isset( $settings[ 'default' ] ) ) ? $settings[ 'default' ] : ''; $options = $this->get_options(); // Overwrite the default list options. foreach( $options as $key => $option ){ if( $default_value != $option[ 'value' ] ) continue; $options[ $key ][ 'selected' ] = 1; } usort( $options, array($this,'sort_options_by_label') ); return $options; } private function sort_options_by_label( $option_a, $option_b ) { return strcasecmp( $option_a['label'], $option_b['label'] ); } public function filter_options_preview( $field_settings ) { $field_settings[ 'settings' ][ 'options' ] = $this->get_options(); foreach( $field_settings[ 'settings' ][ 'options' ] as $key => $option ){ if( $field_settings[ 'settings' ][ 'default' ] != $option[ 'value' ] ) continue; $field_settings[ 'settings' ][ 'options' ][ $key ][ 'selected' ] = 1; } return $field_settings; } public function admin_form_element( $id, $value ) { $field = Ninja_Forms()->form()->get_field( $id ); $options = $this->get_options(); $options = apply_filters( 'ninja_forms_render_options', $options, $field->get_settings() ); $options = apply_filters( 'ninja_forms_render_options_' . $this->_type, $options, $field->get_settings() ); ob_start(); echo ""; return ob_get_clean(); } private function get_default_value_options() { $options = array(); // Option to have no default country $options[] = array( 'label' => '- ' . esc_html__( 'Select Country', 'ninja-forms' ) . ' -', 'value' => '' ); foreach( Ninja_Forms()->config( 'CountryList' ) as $label => $value ){ $options[] = array( 'label' => $label, 'value' => $value, ); } return $options; } private function get_options() { $order = 0; $options = array(); // option to have no default country selected $options[] = array( 'label' => '- ' . esc_html__( 'Select Country', 'ninja-forms' ) . ' -', 'value' => '', 'calc' => '', 'selected' => 0, 'order' => $order, ); $order++; foreach( Ninja_Forms()->config( 'CountryList' ) as $label => $value ){ $options[] = array( 'label' => $label, 'value' => $value, 'calc' => '', 'selected' => 0, 'order' => $order ); $order++; } return $options; } public function filter_csv_value( $field_value, $field ) { $lookup = array_flip( Ninja_Forms()->config( 'CountryList' ) ); if( isset( $lookup[ $field_value ] ) ) $field_value = $lookup[ $field_value ]; return $field_value; } } includes/Fields/ListCheckbox.php000064400000004134152331132460012655 0ustar00_nicename = esc_html__( 'Checkbox List', 'ninja-forms' ); add_filter( 'ninja_forms_merge_tag_calc_value_' . $this->_type, array( $this, 'get_calc_value' ), 10, 2 ); } public function admin_form_element( $id, $value ) { $form_id = get_post_meta( absint( $_GET[ 'post' ] ), '_form_id', true ); $field = Ninja_Forms()->form( $form_id )->get_field( $id ); $settings = $field->get_settings(); $options = $field->get_setting( 'options' ); $options = apply_filters( 'ninja_forms_render_options', $options, $settings ); $options = apply_filters( 'ninja_forms_render_options_' . $this->_type, $options, $settings ); $list = ''; foreach( $options as $option ){ $checked = ''; if( is_array( $value ) && in_array( $option[ 'value' ], $value ) ) $checked = "checked"; $list .= "
  • "; } return "
      $list
    "; } public function get_calc_value( $value, $field ) { $selected = explode( ',', $value ); $value = 0; if( isset( $field[ 'options' ] ) ) { foreach ($field['options'] as $option ) { if( ! isset( $option[ 'value' ] ) || ! in_array( $option[ 'value' ], $selected ) || ! isset( $option[ 'calc' ] ) || ! is_numeric( $option[ 'calc' ] )) continue; $value += $option[ 'calc' ]; } } return $value; } } includes/Fields/CreditCardZip.php000064400000001433152331132460012761 0ustar00_nicename = esc_html__( 'Credit Card Zip', 'ninja-forms' ); add_filter( 'nf_sub_hidden_field_types', array( $this, 'hide_field_type' ) ); } function hide_field_type( $field_types ) { $field_types[] = $this->_name; return $field_types; } } includes/Fields/Button.php000064400000001057152331132460011547 0ustar00_settings[ 'label' ][ 'width' ] = 'full'; $this->_nicename = esc_html__( 'Button', 'ninja-forms' ); } } includes/Fields/Quantity.php000064400000001261152331132460012107 0ustar00_nicename = esc_html__( 'Quantity', 'ninja-forms' ); } } includes/Fields/ListModifier.php000064400000000737152331132460012672 0ustar00_nicename = __( 'Modifier', 'ninja-forms' ); // } //} includes/Helper.php000064400000040576152331132460010316 0ustar00 $value) { $workArray[] = $value; } $returnString = ''; # Initialize return string $arraySize = count( $workArray ); # Get size of array for ( $i=0; $i<$arraySize; $i++ ) { // Nested array, process nest item if ( is_array( $workArray[$i] ) ) { $returnString .= self::str_putcsv( $workArray[$i], $delimiter, $enclosure, $terminator ); } else { switch ( gettype( $workArray[$i] ) ) { // Manually set some strings case "NULL": $_spFormat = ''; break; case "boolean": $_spFormat = ($workArray[$i] == true) ? 'true': 'false'; break; // Make sure sprintf has a good datatype to work with case "integer": $_spFormat = '%i'; break; case "double": $_spFormat = '%0.2f'; break; case "string": $_spFormat = '%s'; $workArray[$i] = str_replace("$enclosure", "$enclosure$enclosure", $workArray[$i]); break; // Unknown or invalid items for a csv - note: the datatype of array is already handled above, assuming the data is nested case "object": case "resource": default: $_spFormat = ''; break; } $returnString .= sprintf('%2$s'.$_spFormat.'%2$s', $workArray[$i], $enclosure); $returnString .= ($i < ($arraySize-1)) ? $delimiter : $terminator; } } // Done the workload, return the output information return $returnString; } public static function get_query_string( $key, $default = FALSE ) { if( ! isset( $_GET[ $key ] ) ) return $default; $value = self::htmlspecialchars( $_GET[ $key ] ); if( is_array( $value ) ) $value = reset( $value ); return $value; } public static function sanitize_text_field( $data ) { if( is_array( $data ) ){ return array_map( array( 'self', 'sanitize_text_field' ), $data ); } return sanitize_text_field( $data ); } public static function get_plugin_version( $plugin ) { $plugins = get_plugins(); if( ! isset( $plugins[ $plugin ] ) ) return false; return $plugins[ $plugin ][ 'Version' ]; } public static function is_func_disabled( $function ) { if( ! function_exists( $function ) ) return true; $disabled = explode( ',', ini_get( 'disable_functions' ) ); return in_array( $function, $disabled ); } public static function maybe_unserialize( $original ) { // Repalcement for https://codex.wordpress.org/Function_Reference/maybe_unserialize if ( is_serialized( $original ) ){ // Ported with php5.2 support from https://magp.ie/2014/08/13/php-unserialize-string-after-non-utf8-characters-stripped-out/ $parsed = preg_replace_callback( '!s:(\d+):"(.*?)";!s', array( 'self', 'parse_utf8_serialized' ), $original ); $parsed = @unserialize( $parsed ); return ( $parsed ) ? $parsed : unserialize( $original ); // Fallback if parse error. } return $original; } /** * Function to fetch our cache from the upgrades table (if it exists there). * * @param $id (int) The form ID. * * @since 3.3.7 */ public static function get_nf_cache( $id ) { // See if we have the data in our table already. global $wpdb; $sql = "SELECT cache FROM `{$wpdb->prefix}nf3_upgrades` WHERE id = " . intval( $id ); $result = $wpdb->get_results( $sql, 'ARRAY_A' ); // If so... if ( ! empty( $result ) ) { // Unserialize the result. $value = WPN_Helper::maybe_unserialize( $result[ 0 ][ 'cache' ] ); // Return it. return $value; } // Otherwise... (We don't have the data.) else { // Get it from the options table. return get_option( 'nf_form_' . $id ); } } /** * Function to insert or update our cache in the upgrades table (if it exists). * * @param $id (int) The form ID. * @param $data (string) The form cache. * @param $stage (int) The target stage of this update. Default to the current max stage. * * @since 3.3.7 * @updated 3.4.0 */ public static function update_nf_cache( $id, $data, $stage = 0 ) { $stage = ( $stage ) ? $stage : WPN_Helper::get_stage(); // Serialize our data. $cache = serialize( $data ); global $wpdb; // See if we've already got a record. $sql = "SELECT id FROM `{$wpdb->prefix}nf3_upgrades` WHERE id = " . intval( $id ); $result = $wpdb->get_results( $sql, 'ARRAY_A' ); // If we don't already have the data... if ( empty( $result ) ) { // Insert it. $sql = $wpdb->prepare( "INSERT INTO `{$wpdb->prefix}nf3_upgrades` (id, cache, stage) VALUES (%d, %s, %s)", intval( $id ), $cache, intval( $stage ) ); } // Otherwise... (We do have the data.) else { // Update the existing record. $sql = $wpdb->prepare( "UPDATE `{$wpdb->prefix}nf3_upgrades` SET cache = %s, stage = %d WHERE id = %d", $cache, intval( $stage ), intval( $id ) ); } $wpdb->query( $sql ); } /** * Function to retrieve our upgrade stage. * Remove this after the cache has been resolved. * * @return int * * @since 3.4.0 */ public static function get_stage() { $ver = Ninja_Forms::$db_version; $stack = explode( '.', $ver ); return intval( array_pop( $stack ) ); } /** * Function to build our form cache from the table. * * @param $id (int) The form ID. * @since 3.3.18 * @return $form_cache Array of form data. * @updated 3.4.0 */ public static function build_nf_cache( $id ) { $form = Ninja_Forms()->form( $id )->get(); $form_cache = array( 'id' => $id, 'fields' => array(), 'actions' => array(), 'settings' => $form->get_settings(), ); $fields = Ninja_Forms()->form( $id )->get_fields(); foreach( $fields as $field ){ // If the field is set. if ( ! is_null( $field ) && ! empty( $field ) ) { array_push( $form_cache[ 'fields' ], array( 'settings' => $field->get_settings(), 'id' => $field->get_id() ) ); } } $actions = Ninja_Forms()->form( $id )->get_actions(); foreach( $actions as $action ){ // If the action is set. if ( ! is_null( $action ) && ! empty( $action ) ) { array_push( $form_cache[ 'actions' ], array( 'settings' => $action->get_settings(), 'id' => $action->get_id() ) ); } } WPN_Helper::update_nf_cache( $id, $form_cache ); return $form_cache; } /** * Function to delete our cache. * * @param $id (int) The form ID. * * @since 3.3.7 */ public static function delete_nf_cache( $id ) { global $wpdb; $sql = "DELETE FROM `{$wpdb->prefix}nf3_upgrades` WHERE id = " . intval( $id ); $wpdb->query( $sql ); delete_option( 'nf_form_' . intval( $id ) ); } private static function parse_utf8_serialized( $matches ) { if ( isset( $matches[2] ) ){ return 's:'.strlen($matches[2]).':"'.$matches[2].'";'; } } /** * This funtion gets/creates the Ninja Forms gate keeper( a random integer * between 1 and 100 ). We will use this number when deciding whether a * particular install is eligible for an upgrade or whatever else we decide * to use it for * * @return int $zuul * * @since 3.4.0 */ public static function get_zuul() { $zuul = get_option( 'ninja_forms_zuul', -1 ); if( -1 === $zuul ) { $zuul = rand( 1, 100 ); update_option( 'ninja_forms_zuul', $zuul, false ); } return $zuul; } /** * This function will return true/false based on an option( ninja_forms_zuul ) * and a threshold that we set. We can use this to limit updates * * @param $threshold * * @return bool * * @since 3.4.0 */ public static function gated_release( $threshold = 0 ) { $gatekeeper = $threshold >= self::get_zuul(); $gatekeeper = apply_filters( 'ninja_forms_gatekeeper', $gatekeeper ); return $gatekeeper; } /** * Is Maintenance * * Checks the upgrades table to see if the form the user is viewing * is under maintenance mode. * * @since 3.4.0 * * @param $form_id - The ID of the form we are checking. * * @return boolean */ public static function form_in_maintenance( $form_id ) { global $wpdb; $db_version = get_option( 'ninja_forms_db_version' ); if( ! $db_version ) return false; // Exit early if the column doesn't exist. if( version_compare( '1.3', $db_version, '>' ) ) return false; // Get our maintenance value from the DB and return it at the zero position. $maintenance = $wpdb->get_row( "SELECT `maintenance` FROM `{$wpdb->prefix}nf3_upgrades` WHERE `id` = {$form_id}", 'ARRAY_A' ); /* * If maintenance isn't empty and basic on maintenance's value * return a boolean value. */ if( ! empty( $maintenance ) && 1 == $maintenance[ 'maintenance' ] ) { return true; } else { return false; } } /** * This function either put all forms in maintenance mode or remove maintenance * mode for all forms. Depending on the input parameters * * @since 3.4.0 * * @param $mode - Default 0 ( Take all forms out of maintenance mode ) */ public static function set_forms_maintenance_mode( $mode = 0 ) { global $wpdb; // default is 0, so if we get passed bad data, just use 0 if( ! in_array( $mode, array( 0, 1 ) ) ) { $mode = 0; } // set maintenance flag to $mode (0 or 1) $sql = $wpdb->prepare( "UPDATE `{$wpdb->prefix}nf3_upgrades` SET " . "maintenance = %d", intval( $mode ) ); $wpdb->query( $sql ); } /** * We'll use to determine if we need to use the form cache or not. This will * be used for all users not on the newest version of the database * * @return boolean */ public static function use_cache() { return true; $cache_mode = intval( get_option('ninja_forms_cache_mode') ); // if we've already decided to use the cache return true and exit. if( 0 < $cache_mode ) return true; $db_version = get_option('ninja_forms_db_version'); // If not in cache mode, get the db version and return true if we aren't at a certain threshold version-wise if( ! $db_version || version_compare($db_version, '1.4', '<' )) { return true; } $finished_updates = get_option( 'ninja_forms_required_updates', false ); // make sure we've run the lastest update to reconcile db with cache field values if( $finished_updates && !isset( $finished_updates[ 'CacheFieldReconcilliation' ] ) ) { return true; } return false; } } // End Class WPN_Helper includes/Admin/AllFormsTable.php000064400000021402152331132460012601 0ustar00 esc_html__( 'Form', 'ninja-forms' ), //singular name of the listed records 'plural' => esc_html__( 'Forms', 'ninja-forms' ), //plural name of the listed records 'ajax' => false //should this table support ajax? ) ); } public function no_items() { esc_html_e( 'No forms found.', 'ninja-forms' ); } /** * Prepare the items for the table to process * * @return Void */ public function prepare_items() { wp_enqueue_script( 'nf-all-forms', Ninja_Forms::$url . 'assets/js/all-forms.js' ); wp_localize_script( 'nf-all-forms', 'nfi18n', array( 'confirm_delete' => esc_html__( 'Really Delete This Form? This will remove all fields and submission data. Recovery is not possible.', 'ninja-forms' ), ) ); $columns = $this->get_columns(); $hidden = $this->get_hidden_columns(); $sortable = $this->get_sortable_columns(); $data = $this->table_data(); usort( $data, array( &$this, 'sort_data' ) ); $perPage = 20; $currentPage = $this->get_pagenum(); $totalItems = count($data); $this->set_pagination_args( array( 'total_items' => $totalItems, 'per_page' => $perPage ) ); $data = array_slice($data,(($currentPage-1)*$perPage),$perPage); $this->_column_headers = array($columns, $hidden, $sortable); $this->items = $data; } /** * Override the parent columns method. Defines the columns to use in your listing table * * @return Array */ public function get_columns() { $columns = array( 'cb' => '', 'title' => esc_html__( 'Form Title', 'ninja-forms' ), 'shortcode' => esc_html__( 'Shortcode', 'ninja-forms' ), 'date' => esc_html__( 'Created', 'ninja-forms' ) ); return $columns; } /** * Define which columns are hidden * * @return Array */ public function get_hidden_columns() { return array(); } /** * Define the sortable columns * * @return Array */ public function get_sortable_columns() { return array( 'title' => array( esc_attr__( 'title', 'ninja-forms' ), TRUE ), 'date' => array( esc_attr__( 'date', 'ninja-forms' ), TRUE ), ); } /** * Get the table data * * @return Array */ private function table_data() { $data = array(); $forms = Ninja_Forms()->form()->get_forms(); foreach( $forms as $form ){ $data[] = array( 'id' => $form->get_id(), 'title' => $form->get_setting( 'title' ), 'shortcode' => apply_filters ( 'ninja_forms_form_list_shortcode','[ninja_form id=' . $form->get_id() . ']', $form->get_id() ), 'date' => $form->get_setting( 'created_at' ) ); } return $data; } /** * Define what data to show on each column of the table * * @param Array $item Data * @param String $column_name - Current column name * * @return Mixed */ public function column_default( $item, $column_name ) { switch( $column_name ) { case 'title': case 'shortcode': case 'date': return $item[ $column_name ]; default: return print_r( $item, true ) ; } } /** * Allows you to sort the data by the variables set in the $_GET * * @return Mixed */ private function sort_data( $a, $b ) { // Set defaults $orderby = 'id'; $order = 'asc'; // If orderby is set, use this as the sort column if(!empty($_GET['orderby'])) { $orderby = WPN_Helper::sanitize_text_field($_GET['orderby']); } // If order is set use this as the order if(!empty($_GET['order'])) { $order = WPN_Helper::sanitize_text_field($_GET['order']); } $result = strnatcmp( $a[$orderby], $b[$orderby] ); if($order === 'asc') { return $result; } return -$result; } function column_cb( $item ) { return sprintf( '', $item['id'] ); } function column_title( $item ) { $title = $item[ 'title' ]; $edit_url = add_query_arg( 'form_id', $item[ 'id' ], admin_url( 'admin.php?page=ninja-forms') ); $delete_url = add_query_arg( array( 'action' => 'delete', 'id' => $item[ 'id' ], '_wpnonce' => wp_create_nonce( 'nf_delete_form' ))); $duplicate_url = add_query_arg( array( 'action' => 'duplicate', 'id' => $item[ 'id' ], '_wpnonce' => wp_create_nonce( 'nf_duplicate_form' ))); $preview_url = add_query_arg( 'nf_preview_form', $item[ 'id' ], site_url() ); $submissions_url = add_query_arg( 'form_id', $item[ 'id' ], admin_url( 'edit.php?post_status=all&post_type=nf_sub') ); $form = Ninja_Forms()->form( $item[ 'id' ] )->get(); $locked = $form->get_setting( 'lock' ); Ninja_Forms::template( 'admin-menu-all-forms-column-title.html.php', compact( 'title', 'edit_url', 'delete_url', 'duplicate_url', 'preview_url', 'submissions_url', 'locked' ) ); } public function single_row( $item ) { $form = Ninja_Forms()->form( $item[ 'id' ] )->get(); echo ''; $this->single_row_columns( $item ); echo ''; } /** * Returns an associative array containing the bulk action * * @return array */ public function get_bulk_actions() { $actions = array( 'bulk-delete' => esc_html__( 'Delete', 'ninja-forms' ) ); return $actions; } public static function process_bulk_action() { if( ! isset( $_GET[ 'page' ] ) || 'ninja-forms' != $_GET[ 'page' ] ) return; if ( isset( $_REQUEST[ 'action' ] ) && 'duplicate' === $_REQUEST[ 'action' ] ) { // In our file that handles the request, verify the nonce. $nonce = esc_attr( $_REQUEST['_wpnonce'] ); if ( ! wp_verify_nonce( $nonce, 'nf_duplicate_form' ) ) { die( esc_html__( 'Go get a life, script kiddies', 'ninja-forms' ) ); } else { NF_Database_Models_Form::duplicate( absint( $_GET['id'] ) ); } wp_redirect( admin_url( 'admin.php?page=ninja-forms' ) ); exit; } if ( isset( $_REQUEST[ 'action' ] ) && 'delete' === $_REQUEST[ 'action' ] ) { // In our file that handles the request, verify the nonce. $nonce = esc_attr( $_REQUEST['_wpnonce'] ); if ( ! wp_verify_nonce( $nonce, 'nf_delete_form' ) ) { die( esc_html__( 'Go get a life, script kiddies', 'ninja-forms' ) ); } else { self::delete_item( absint( $_GET['id'] ) ); } wp_redirect( admin_url( 'admin.php?page=ninja-forms' ) ); exit; } // If the delete bulk action is triggered if ( ( isset( $_POST['action'] ) && $_POST['action'] == 'bulk-delete' ) || ( isset( $_POST['action2'] ) && $_POST['action2'] == 'bulk-delete' ) ) { // In our file that handles the request, verify the nonce. $nonce = esc_attr( $_REQUEST['_wpnonce'] ); if ( ! wp_verify_nonce( $nonce, 'bulk-forms' ) ) { die( esc_html__( 'Go get a life, script kiddies', 'ninja-forms' ) ); } if( isset( $_POST[ 'bulk-delete' ] ) ) { $delete_ids = esc_sql($_POST['bulk-delete']); // loop over the array of record IDs and delete them foreach ($delete_ids as $id) { self::delete_item(absint($id)); } } wp_redirect( admin_url( 'admin.php?page=ninja-forms' ) ); exit; } } public static function delete_item( $id ) { $form = Ninja_Forms()->form( $id )->get(); $form->delete(); } } // END CLASS NF_Admin_AllFormsTable includes/Admin/AddFormModal.php000064400000013003152331132460012401 0ustar00 span.nf-insert-form { color:#888; font: 400 18px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: inline-block; width: 18px; height: 18px; vertical-align: text-top; margin: 0 2px 0 0; } .ui-autocomplete li { white-space: normal; } '; $html .= ' ' . esc_html__( 'Add Form', 'ninja-forms' ) . ''; wp_enqueue_script( 'nf-combobox', Ninja_Forms::$url . 'assets/js/lib/combobox.min.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-button', 'jquery-ui-autocomplete' ) ); wp_enqueue_script( 'jBox', Ninja_Forms::$url . 'assets/js/lib/jBox.min.js', array( 'jquery' ) ); wp_enqueue_style( 'jBox', Ninja_Forms::$url . 'assets/css/jBox.css' ); // wp_enqueue_style( 'jquery-smoothness', NINJA_FORMS_URL .'css/smoothness/jquery-smoothness.css' ); ?> esc_html__( 'Ninja Forms Submission Data', 'ninja-forms' ), 'callback' => array( $this, 'plugin_user_data_exporter' ), ); return $exporters; } /** * Register eraser for Plugin user data. * * @param array $erasers * * @return array */ function plugin_register_erasers( $erasers = array() ) { $erasers[] = array( 'eraser_friendly_name' => esc_html__( 'Ninja Forms Submissions Data', 'ninja-forms' ), 'callback' => array( $this, 'plugin_user_data_eraser' ), ); return $erasers; } /** * Adds Ninja Forms Submission data to the default HTML export file that * WordPress creates on converted request * * @param $email_address * @param int $page * * @return array */ function plugin_user_data_exporter( $email_address, $page = 1 ) { $export_items = array(); // get the user $this->user = get_user_by( 'email', $email_address ); $this->request_email = $email_address; if( $this->user && $this->user->ID ) { $item_id = "ninja-forms-" . $this->user->ID; } else { $item_id = "ninja-forms"; } $group_id = 'ninja-forms'; $group_label = esc_html__( 'Ninja Forms Submission Data', 'ninja-forms' ); $subs = $this->get_related_subs( $email_address ); foreach($subs as $sub) { $data = array(); // get the field values from postmeta $sub_meta = get_post_meta( $sub->ID ); // make sure we have a form submission if ( isset( $sub_meta[ '_form_id' ] ) ) { $form = Ninja_Forms()->form( $sub_meta[ '_form_id' ][ 0 ] ) ->get(); $fields = Ninja_Forms()->form( $sub_meta[ '_form_id' ][ 0 ] ) ->get_fields(); foreach ( $fields as $field_id => $field ) { // we don't care about submit, hr, divider, html fields if ( ! in_array( $field->get_setting( 'type' ), $this->ignored_field_types ) ) { // make sure there is a value if ( isset( $sub_meta[ '_field_' . $field_id ] ) ) { //multi-value fields may need to be unserialized if( in_array( $field->get_setting( 'type' ), array( 'listcheckbox', 'listmultiselect' ) ) ){ //implode the unserialized array $value = implode( ',', maybe_unserialize( $sub_meta[ '_field_' . $field_id ][ 0 ] ) ); } else { $value = $sub_meta[ '_field_' . $field_id ][ 0 ]; } // Add label/value pairs to data array $data[] = array( 'name' => $field->get_setting( 'label' ), 'value' => $value ); } } } // Add this group of items to the exporters data array. $export_items[] = array( 'group_id' => $group_id . '-' . $sub->ID, 'group_label' => $group_label . '-' . $form->get_setting( 'title' ), 'item_id' => $item_id . '-' . $sub->ID, 'data' => $data, ); } } // Returns an array of exported items for this pass, but also a boolean whether this exporter is finished. //If not it will be called again with $page increased by 1. return array( 'data' => $export_items, 'done' => true, ); } /** * Eraser for Plugin user data. This will completely erase all Ninja Form * submission data for the user when converted by the admin. * * @param $email_address * @param int $page * * @return array */ function plugin_user_data_eraser( $email_address, $page = 1 ) { if ( empty( $email_address ) ) { return array( 'items_removed' => false, 'items_retained' => false, 'messages' => array(), 'done' => true, ); } // get the user $this->user = get_user_by( 'email', $email_address ); $this->request_email = $email_address; if (!isset($_REQUEST['id']) || empty($_REQUEST['id'])) { return array(); } $request_id = absint($_REQUEST[ 'id' ]); $make_anonymous = get_post_meta( $request_id, 'nf_anonymize_data', true); $messages = array(); $items_removed = false; $items_retained = false; $subs = $this->get_related_subs( $email_address ); if( 0 < sizeof( $subs ) ) { $items_removed = true; } if( '1' != $make_anonymous ) { $this->delete_submissions( $subs ); $items_removed = true; } else { $this->anonymize_submissions( $subs, $email_address ); } /** * Returns an array of exported items for this pass, but also a boolean * whether this exporter is finished. * If not it will be called again with $page increased by 1. * */ return array( 'items_removed' => $items_removed, 'items_retained' => $items_retained, 'messages' => $messages, 'done' => true, ); } /** * Retrieve all submissions related(by author id or email address) to the * given email address * * @param $email_address * * @return array */ private function get_related_subs( $email_address ) { // array if subs where user is author $logged_in_subs = array(); if ( $this->user && $this->user->ID ) { // get submission ids the old-fashioned way if user is author $logged_in_subs = get_posts( array( 'author' => $this->user->ID, 'post_type' => 'nf_sub', 'posts_per_page' => - 1, 'fields' => 'ids' ) ); } // get submission ids where email address is a field value $anon_sub_ids = $this->get_subs_by_email( $email_address ); // merge anonymous and author submissions ids and get unique $sub_ids = array_unique( array_merge( $logged_in_subs, $anon_sub_ids ) ); // return empty array if $sub_ids is empty if( 1 > count( $sub_ids ) ) { return array(); } // get post objects related to the email address return get_posts( array( 'include' => implode(',', $sub_ids), 'post_type' => 'nf_sub', 'posts_per_page' => -1, ) ); } /** * Get submission ids where the submission has the give email address as * data * * @param $email_address * * @return array */ private function get_subs_by_email( $email_address ) { global $wpdb; // query to find any submission with our requester's email as value $anon_subs_query = "SELECT DISTINCT(m.post_id) FROM `" . $wpdb->prefix . "postmeta` m JOIN `" . $wpdb->prefix . "posts` p ON p.id = m.post_id WHERE m.meta_value = '" . $email_address . "' AND p.post_type = 'nf_sub'"; $anon_subs = $wpdb->get_results( $anon_subs_query ); $sub_id_array = array(); // let's get the integer value of those submission ids if( 0 < sizeof( $anon_subs ) ) { foreach( $anon_subs as $sub ) { $sub_id_array[] = intval( $sub->post_id ); } } return $sub_id_array; } /** * Delete Submissions * * @param $subs */ private function delete_submissions( $subs ) { if( 0 < sizeof( $subs ) ) { // iterate and delete the submissions foreach($subs as $sub) { wp_delete_post( $sub->ID, true ); } } } /** * This will (redact) personal data and anonymize submissions * * @param $subs */ private function anonymize_submissions( $subs ) { $form_id_array = array(); $submitter_field = ''; if( 0 < sizeof( $subs ) ) { $anonymize_data = false; foreach( $subs as $sub ) { // get the form id $form_id = get_post_meta( $sub->ID, '_form_id', true ); $form = Ninja_Forms()->form( $form_id ); /* * Do we have a use, if so does the post(submission) author * match the user. If so, then anonymize */ if( $this->user && $this->user->ID && $sub->post_author == $this->user->ID ) { $anonymize_data = true; } else { /* * Otherwise, does the submitter email for the submission * equal the email for the request */ $form_submitter_email = ''; if( in_array( $form_id, array_keys( $form_id_array ) ) ) { /* * if we already have the submitter field key, no * need to iterate over the actions again */ $submitter_field = $form_id_array[ $form_id ]; } else { $actions = $form->get_actions(); if ( 0 < sizeof( $actions ) ) { foreach ( $actions as $action ) { // we only care about the save action if ( 'save' == $action->get_setting( 'type' ) && null != $action->get_setting( 'submitter_email' ) && '' != $action->get_setting( 'submitter_email' ) ) { // get the submitter field $submitter_field = $action->get_setting( 'submitter_email' ); /* * Add the form id and submitter field to * this array so we don't have to load * the form again if we have multiple * submissions for the same form */ $form_id_array[ $form_id ] = $submitter_field; break; } } } } /* * If the submitter field is not empty, then let's * get the value given in the form submission for * that field */ if ( '' != $submitter_field ) { $fields = $form->get_fields(); foreach ( $fields as $field ) { $key = $field->get_setting( 'key' ); // we only care about email fields if ( 'email' == $field->get_setting( 'type' ) && $submitter_field == $key ) { // if we have a match, get the value $form_submitter_email = get_post_meta( $sub->ID, '_field_' . $field->get_id(), true ); break; } } } // if form submitter email matches requester's email if( $form_submitter_email === $this->request_email ) { $anonymize_data = true; } } if( $anonymize_data ) { // anonymize the actual submitted for values $this->anonymize_fields($sub, $form->get_fields() ); } } } } /** * This will anonymize personally identifiable fields and anonymize * submissions submitted by the user with the provided email address * * @param $sub * @param $fields */ private function anonymize_fields( $sub, $fields ) { foreach( $fields as $field ) { $type = $field->get_setting( 'type' ); // ignore fields that aren't saved if( ! in_array( $type, $this->ignored_field_types ) ) { $is_personal = $field->get_setting( 'personally_identifiable' ); /** * If this is personally identifiable, redact it */ if( null != $is_personal && '1' == $is_personal ) { $field_id = $field->get_id(); // make sure we have that field saved. $field_value = get_post_meta( $sub->ID, '_field_' . $field_id, true ); if( '' != $field_value ) { update_post_meta( $sub->ID, '_field_' . $field_id, '(redacted)' ); } } } } // Remove the author id if the the email address belongs to the author if( $this->user && $this->user->ID && $this->user->ID == $sub->post_author ) { wp_update_post( array( 'ID' => $sub->ID, 'post_author' => 0 ) ); } } }includes/Admin/Notices.php000064400000030111152331132460011513 0ustar00nf_admin_notice() ) { return false; } foreach ( $admin_notices as $slug => $admin_notice ) { if ( isset ( $admin_notice[ 'ignore_spam' ] ) && true == $admin_notice[ 'ignore_spam' ] ) { $ignore_spam = true; } else { $ignore_spam = false; } // Call for spam protection if ( ! $ignore_spam && $this->anti_notice_spam() ) { continue; } // Check for proper page to display on if ( isset( $admin_notices[ $slug ][ 'pages' ] ) && is_array( $admin_notices[ $slug ][ 'pages' ] ) || isset( $admin_notices[ $slug ][ 'blacklist' ] ) && is_array( $admin_notices[ $slug ][ 'blacklist' ] ) ) { if( ( isset( $admin_notices[ $slug ][ 'blacklist' ] ) && $this->admin_notice_pages_blacklist( $admin_notices[ $slug ][ 'blacklist' ] ) ) || ( isset( $admin_notices[ $slug ][ 'pages' ] ) && ! $this->admin_notice_pages( $admin_notices[ $slug ][ 'pages' ] ) ) ) { continue; } } // Check for required fields if ( ! $this->required_fields( $admin_notices[ $slug ] ) ) { // Get the current date then set start date to either passed value or current date value and add interval $current_date = current_time( "n/j/Y" ); $start = ( isset( $admin_notices[ $slug ][ 'start' ] ) ? $admin_notices[ $slug ][ 'start' ] : $current_date ); $start = date( "n/j/Y", strtotime( $start ) ); $date_array = explode( '/', $start ); $interval = ( isset( $admin_notices[ $slug ][ 'int' ] ) ? $admin_notices[ $slug ][ 'int' ] : 0 ); $date_array[1] += $interval; $start = date( "n/j/Y", mktime( 0, 0, 0, $date_array[0], $date_array[1], $date_array[2] ) ); // This is the main notices storage option $admin_notices_option = get_option( 'nf_admin_notice', array() ); // Check if the message is already stored and if so just grab the key otherwise store the message and its associated date information if ( ! array_key_exists( $slug, $admin_notices_option ) ) { $admin_notices_option[ $slug ][ 'start' ] = $start; $admin_notices_option[ $slug ][ 'int' ] = $interval; update_option( 'nf_admin_notice', $admin_notices_option ); } // Sanity check to ensure we have accurate information // New date information will not overwrite old date information $admin_display_check = ( isset( $admin_notices_option[ $slug ][ 'dismissed' ] ) ? $admin_notices_option[ $slug ][ 'dismissed'] : 0 ); $admin_display_start = ( isset( $admin_notices_option[ $slug ][ 'start' ] ) ? $admin_notices_option[ $slug ][ 'start'] : $start ); $admin_display_interval = ( isset( $admin_notices_option[ $slug ][ 'int' ] ) ? $admin_notices_option[ $slug ][ 'int'] : $interval ); $admin_display_msg = ( isset( $admin_notices[ $slug ][ 'msg' ] ) ? $admin_notices[ $slug ][ 'msg'] : '' ); $admin_display_title = ( isset( $admin_notices[ $slug ][ 'title' ] ) ? $admin_notices[ $slug ][ 'title'] : '' ); $admin_display_link = ( isset( $admin_notices[ $slug ][ 'link' ] ) ? $admin_notices[ $slug ][ 'link' ] : '' ); $admin_can_dismiss = ( isset( $admin_notices[ $slug ][ 'dismiss' ] ) ? $admin_notices[ $slug ][ 'dismiss' ] : 1 ); $output_css = false; // Ensure the notice hasn't been hidden and that the current date is after the start date if ( $admin_display_check == 0 && strtotime( $admin_display_start ) <= strtotime( $current_date ) ) { // Get remaining query string $query_str = esc_url( add_query_arg( 'nf_admin_notice_ignore', $slug ) ); // Admin notice display output echo '
    '; echo ''; echo '
    '; echo '
    '; echo esc_html( $admin_display_title ); echo '
    '; echo '

    '; echo $admin_display_msg; echo '

    '; echo ''; echo '
    '; if ( $admin_can_dismiss ) { echo ''; } echo '
    '; $this->notice_spam += 1; $output_css = true; } if ( $output_css ) { wp_enqueue_style( 'nf-admin-notices', Ninja_Forms::$url .'assets/css/admin-notices.css?nf_ver=' . Ninja_Forms::VERSION ); } } } // die( 'done looping' ); } // Spam protection check public function anti_notice_spam() { if ( $this->notice_spam >= $this->notice_spam_max ) { return true; } return false; } // Ignore function that gets ran at admin init to ensure any messages that were dismissed get marked public function admin_notice_ignore() { // If user clicks to ignore the notice, update the option to not show it again if ( isset($_GET['nf_admin_notice_ignore']) && current_user_can( apply_filters( 'ninja_forms_admin_parent_menu_capabilities', 'manage_options' ) ) ) { if ( ! check_admin_referer() ) { $query_str = remove_query_arg( array( 'nf_admin_notice_ignore', '_wpnonce' ) ); wp_safe_redirect( $query_str ); exit; } $admin_notices_option = get_option( 'nf_admin_notice', array() ); $admin_notices_option[ WPN_Helper::sanitize_text_field($_GET[ 'nf_admin_notice_ignore' ]) ][ 'dismissed' ] = 1; update_option( 'nf_admin_notice', $admin_notices_option ); $query_str = remove_query_arg( array( 'nf_admin_notice_ignore', '_wpnonce' ) ); wp_safe_redirect( $query_str ); exit; } } // Temp Ignore function that gets ran at admin init to ensure any messages that were temp dismissed get their start date changed public function admin_notice_temp_ignore() { // If user clicks to temp ignore the notice, update the option to change the start date - default interval of 14 days if ( isset($_GET['nf_admin_notice_temp_ignore']) && current_user_can( apply_filters( 'ninja_forms_admin_parent_menu_capabilities', 'manage_options' ) ) ) { $admin_notices_option = get_option( 'nf_admin_notice', array() ); $current_date = current_time( "n/j/Y" ); $date_array = explode( '/', $current_date ); $interval = ( isset( $_GET[ 'nf_int' ] ) ? intval($_GET[ 'nf_int' ]) : 14 ); $date_array[1] += $interval; $new_start = date( "n/j/Y", mktime( 0, 0, 0, $date_array[0], $date_array[1], $date_array[2] ) ); $admin_notices_option[ WPN_Helper::sanitize_text_field($_GET[ 'nf_admin_notice_temp_ignore' ]) ][ 'start' ] = $new_start; $admin_notices_option[ WPN_Helper::sanitize_text_field($_GET[ 'nf_admin_notice_temp_ignore' ]) ][ 'dismissed' ] = 0; update_option( 'nf_admin_notice', $admin_notices_option ); $query_str = remove_query_arg( array( 'nf_admin_notice_temp_ignore', 'nf_int' ) ); wp_redirect( $query_str ); exit; } } public function admin_notice_pages_blacklist( $pages ) { foreach( $pages as $key => $page ) { if ( is_array( $page ) ) { if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page'] == $page[0] && isset( $_GET[ 'tab' ] ) && $_GET[ 'tab' ] == $page[1] ) { return true; } } else { if ( get_current_screen()->id === $page ) { return true; } if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page'] == $page ) { return true; } } } return false; } // Page check function - This should be called from class extensions if the notice should only show on specific admin pages // Expects an array in the form of IE: array( 'dashboard', 'ninja-forms', array( 'ninja-forms', 'builder' ) ) // Function accepts dashboard as a special check and also whatever is passed to page or tab as parameters // The above example will display on dashboard and all of the pages that have page=ninja-forms and any page=ninja-forms&tab=builder which is redundant in the example public function admin_notice_pages( $pages ) { foreach( $pages as $key => $page ) { if ( is_array( $page ) ) { if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page'] == $page[0] && isset( $_GET[ 'tab' ] ) && $_GET[ 'tab' ] == $page[1] ) { return true; } } else { if ( $page == 'all' ) { return true; } if ( get_current_screen()->id === $page ) { return true; } if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page'] == $page ) { return true; } } } return false; } // Required fields check public function required_fields( $fields ) { if ( ! isset( $fields[ 'msg' ] ) || ( isset( $fields[ 'msg' ] ) && empty( $fields[ 'msg' ] ) ) ) { return true; } if ( ! isset( $fields[ 'title' ] ) || ( isset( $fields[ 'title' ] ) && empty( $fields[ 'title' ] ) ) ) { return true; } return false; } // Special parameters function that is to be used in any extension of this class public function special_parameters( $admin_notices ) { // Intentionally left blank } } includes/Admin/CPT/DownloadAllSubmissions.php000064400000016510152331132460015203 0ustar00action = 'download_all_subs'; parent::__construct(); add_action( 'admin_footer-edit.php', array( $this, 'bulk_admin_footer' ) ); } public function loading() { $subs_per_step = apply_filters( 'ninja_forms_export_subs_per_step', 10 ); $form_id = isset( $this->args['form_id'] ) ? absint( $this->args['form_id'] ) : 0; if ( empty( $form_id ) ) { return array( 'complete' => true ); } $sub_count = $this->get_sub_count( $form_id ); if( empty( $this->total_steps ) || $this->total_steps <= 1 ) { $this->total_steps = round( ( $sub_count / $subs_per_step ), 0 ) + 2; } $args = array( 'total_steps' => $this->total_steps, ); $this->args['filename'] = $this->random_filename( 'all-subs' ); update_user_option( get_current_user_id(), 'nf_download_all_subs_filename', $this->args['filename'] ); $this->redirect = esc_url_raw( add_query_arg( array( 'download_all' => $this->args['filename'] ), $this->args['redirect'] ) ); $this->loaded = true; return $args; } public function step() { if( ! is_numeric( $this->args[ 'form_id' ] ) ){ wp_die( esc_html__( 'Invalid form id', 'ninja-forms' ) ); } $subs_per_step = apply_filters( 'ninja_forms_export_subs_per_step', 10 ); $this->args[ 'filename' ] = wp_kses_post( $this->args[ 'filename' ] ); $exported_subs = get_user_option( get_current_user_id(), 'nf_download_all_subs_ids' ); if ( ! is_array( $exported_subs ) ) { $exported_subs = array(); } $previous_name = get_user_option( get_current_user_id(), 'nf_download_all_subs_filename' ); if ( $previous_name ) { $this->args['filename'] = $previous_name; } $args = array( 'posts_per_page' => $subs_per_step, 'paged' => $this->step, 'post_type' => 'nf_sub', 'meta_query' => array( array( 'key' => '_form_id', 'value' => $this->args['form_id'], ), ), ); $subs_results = get_posts( $args ); if ( is_array( $subs_results ) && ! empty( $subs_results ) ) { $upload_dir = wp_upload_dir(); $file_path = trailingslashit( $upload_dir['path'] ) . $this->args['filename'] . '.csv'; $myfile = fopen( $file_path, 'a' ) or die( 'Unable to open file!' ); $x = 0; $export = ''; $sub_ids = array(); foreach( $subs_results as $result ){ $sub_ids[] = $result->ID; } $export .= NF_Database_Models_Submission::export( $this->args['form_id'], $sub_ids, TRUE ); if( 1 < $this->step ) { $stack = explode( apply_filters( 'nf_sub_csv_terminator', "\n" ), $export ); array_shift($stack); $stack = implode( apply_filters( 'nf_sub_csv_terminator', "\n" ), $stack ); $export = $stack; } fwrite( $myfile, $export ); fclose( $myfile ); } update_user_option( get_current_user_id(), 'nf_download_all_subs_ids', $exported_subs ); } public function complete() { delete_user_option( get_current_user_id(), 'nf_download_all_subs_ids' ); delete_user_option( get_current_user_id(), 'nf_download_all_subs_filename' ); } /** * Add an integar to the end of our filename to make sure it is unique * * @access public * @since 2.7.6 * @return $filename */ public function random_filename( $filename ) { $upload_dir = wp_upload_dir(); $file_path = trailingslashit( $upload_dir['path'] ) . $filename . '.csv'; if ( file_exists ( $file_path ) ) { for ($x = 0; $x < 999 ; $x++) { $tmp_name = $filename . '-' . $x; $tmp_path = trailingslashit( $upload_dir['path'] ); if ( file_exists( $tmp_path . $tmp_name . '.csv' ) ) { $this->random_filename( $tmp_name ); break; } else { $this->filename = $tmp_name; break; } } } return $filename; } public function bulk_admin_footer() { global $post_type; if ( ! is_admin() ) return false; if( $post_type == 'nf_sub' && isset ( $_REQUEST['post_status'] ) && $_REQUEST['post_status'] == 'all' ) { ?> postmeta pm JOIN $wpdb->posts p ON (p.ID = pm.post_id) WHERE pm.meta_key = %s AND pm.meta_value = %s AND p.post_type = 'nf_sub' AND p.post_status = %s"; $count = $wpdb->get_var( $wpdb->prepare( $sql, $meta_key, $meta_value, $post_status ) ); return $count; } }includes/Admin/CPT/Submission.php000064400000042177152331132460012707 0ustar00 esc_html_x( 'Submissions', 'Post Type General Name', 'ninja-forms' ), 'singular_name' => esc_html_x( 'Submission', 'Post Type Singular Name', 'ninja-forms' ), 'menu_name' => esc_html__( 'Submissions', 'ninja-forms' ), 'name_admin_bar' => esc_html__( 'Submissions', 'ninja-forms' ), 'parent_item_colon' => esc_html__( 'Parent Item:', 'ninja-forms' ), 'all_items' => esc_html__( 'All Items', 'ninja-forms' ), 'add_new_item' => esc_html__( 'Add New Item', 'ninja-forms' ), 'add_new' => esc_html__( 'Add New', 'ninja-forms' ), 'new_item' => esc_html__( 'New Item', 'ninja-forms' ), 'edit_item' => esc_html__( 'Edit Item', 'ninja-forms' ), 'update_item' => esc_html__( 'Update Item', 'ninja-forms' ), 'view_item' => esc_html__( 'View Item', 'ninja-forms' ), 'search_items' => esc_html__( 'Search Item', 'ninja-forms' ), 'not_found' => $this->not_found_message(), 'not_found_in_trash' => esc_html__( 'Not found in Trash', 'ninja-forms' ), ); $args = array( 'label' => esc_html__( 'Submission', 'ninja-forms' ), 'description' => esc_html__( 'Form Submissions', 'ninja-forms' ), 'labels' => $labels, 'supports' => false, 'hierarchical' => false, 'public' => false, 'show_ui' => true, 'show_in_menu' => false, 'menu_position' => 5, 'show_in_admin_bar' => false, 'show_in_nav_menus' => false, 'can_export' => true, 'has_archive' => false, 'exclude_from_search' => true, 'publicly_queryable' => false, // 'rewrite' => false, 'capability_type' => 'nf_sub', 'capabilities' => array( 'publish_posts' => 'nf_sub', 'edit_posts' => 'nf_sub', 'edit_others_posts' => 'nf_sub', 'delete_posts' => 'nf_sub', 'delete_others_posts' => 'nf_sub', 'read_private_posts' => 'nf_sub', 'edit_post' => 'nf_sub', 'delete_post' => 'nf_sub', 'read_post' => 'nf_sub', ), ); register_post_type( $this->cpt_slug, $args ); } public function nf_trash_sub( $post_id ) { // If this isn't a submission... if ( 'nf_sub' != get_post_type( $post_id ) ) { // Exit early. return false; } global $pagenow; // If we were on the post.php page... if ( 'post.php' == $pagenow ) { // Redirect the user to the submissions page for the form that submission belonged to. wp_safe_redirect( admin_url( 'edit.php?post_status=all&post_type=nf_sub&form_id=' . get_post_meta( $post_id, '_form_id', true ) ) ); exit; } } public function enqueue_scripts() { global $pagenow, $typenow; // Bail if we aren't on the edit.php page or we aren't editing our custom post type. if ( ( $pagenow != 'edit.php' && $pagenow != 'post.php' ) || $typenow != 'nf_sub' ) return false; $form_id = isset ( $_REQUEST['form_id'] ) ? absint( $_REQUEST['form_id'] ) : ''; wp_enqueue_script( 'subs-cpt', Ninja_Forms::$url . 'lib/Legacy/subs-cpt.min.js', array( 'jquery', 'jquery-ui-datepicker' ) ); wp_localize_script( 'subs-cpt', 'nf_sub', array( 'form_id' => $form_id ) ); } public function post_row_actions( $actions, $sub ) { if ( $this->cpt_slug == get_post_type() ){ unset( $actions[ 'view' ] ); unset( $actions[ 'inline hide-if-no-js' ] ); $export_url = add_query_arg( array( 'action' => 'export', 'post[]' => $sub->ID ) ); $actions[ 'export' ] = sprintf( '%s', $export_url, esc_html__( 'Export', 'ninja-forms' ) ); } return $actions; } public function change_columns( $columns ) { if( ! isset( $_GET[ 'form_id' ] ) ) return $columns; $form_id = absint( $_GET[ 'form_id' ] ); static $columns; if( $columns ) return $columns; $columns = array( 'cb' => '', 'id' => esc_html__( '#', 'ninja-forms' ), ); $form_fields = Ninja_Forms()->form( $form_id )->get_fields(); foreach( $form_fields as $field ) { if( is_object( $field ) ) { $field = array( 'id' => $field->get_id(), 'settings' => $field->get_settings() ); } $hidden_field_types = apply_filters( 'nf_sub_hidden_field_types', array() ); if( in_array( $field[ 'settings' ][ 'type' ], array_values( $hidden_field_types ) ) ) continue; $id = $field[ 'id' ]; if('repeater'!==$field[ 'settings' ][ 'type' ]){ $label = isset( $field[ 'settings' ][ 'label' ] ) ? $field[ 'settings'][ 'label' ] : ''; $columns[ $id ] = ( isset( $field[ 'settings' ][ 'admin_label' ] ) && $field[ 'settings' ][ 'admin_label' ] ) ? $field[ 'settings' ][ 'admin_label' ] : $label; }else{ $fieldsetLabels= Ninja_Forms()->fieldsetRepeater->getFieldsetLabels($field['id'],$field['settings'], true); foreach ($fieldsetLabels as $fieldsetId => $fieldsetLabel) { $columns[$fieldsetId] = $fieldsetLabel; } } } $columns['sub_date'] = esc_html__( 'Date', 'ninja-forms' ); return $columns; } public function custom_columns( $column, $sub_id ) { if( 'nf_sub' != get_post_type() ) { return; } $sub = Ninja_Forms()->form()->get_sub( $sub_id ); if( 'id' == $column ) { echo apply_filters( 'nf_sub_table_seq_num', $sub->get_seq_num(), $sub_id, $column ); } $form_id = absint( $_GET[ 'form_id' ] ); if(Ninja_Forms()->fieldsetRepeater->isRepeaterFieldByFieldReference($column)){ static $fields; if( ! isset( $fields[ $column ] ) ) { $parsedField = Ninja_Forms()->fieldsetRepeater ->parseFieldsetFieldReference($column); $fields[$column] = Ninja_Forms()->form( $form_id )->get_field( $parsedField['fieldId'] ); } $field = $fields[$column]; $fieldType = Ninja_Forms()->fieldsetRepeater->getFieldtype($column, $field->get_settings()); $arrayListTypes = array('listcheckbox'); if(!in_array($fieldType,$arrayListTypes)){ $value =implode('
    ',array_column(unserialize($sub->get_field_value($column)),'value')); }else{ $optionsByRepetition = array_column(unserialize($sub->get_field_value($column)),'value'); foreach($optionsByRepetition as &$repetition){ $repetition = implode(', ',$repetition); } $value = implode('
    ',$optionsByRepetition); } echo apply_filters( 'ninja_forms_custom_columns', $value, $field, $sub_id ); }elseif( is_numeric( $column ) ){ $value = $sub->get_field_value( $column ); static $fields; if( ! isset( $fields[ $column ] ) ) { $fields[$column] = Ninja_Forms()->form( $form_id )->get_field( $column ); } $field = $fields[$column]; echo apply_filters( 'ninja_forms_custom_columns', $value, $field, $sub_id ); } } public function save_nf_sub( $nf_sub_id, $nf_sub ) { global $pagenow; if ( ! isset ( $_POST['nf_edit_sub'] ) || $_POST['nf_edit_sub'] != 1 ) return $nf_sub_id; // verify if this is an auto save routine. // If it is our form has not been submitted, so we dont want to do anything if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return $nf_sub_id; if ( $pagenow != 'post.php' ) return $nf_sub_id; if ( $nf_sub->post_type != 'nf_sub' ) return $nf_sub_id; /* Get the post type object. */ $post_type = get_post_type_object( $nf_sub->post_type ); /* Check if the current user has permission to edit the post. */ if ( !current_user_can( $post_type->cap->edit_post, $nf_sub_id ) ) return $nf_sub_id; $sub = Ninja_Forms()->form()->sub( $nf_sub_id )->get(); if (isset($_POST['fields'])) { $post_fields = WPN_Helper::esc_html($_POST['fields']); foreach ( $post_fields as $field_id => $user_value ) { $user_value = apply_filters( 'nf_edit_sub_user_value', $user_value, $field_id, $nf_sub_id ); $sub->update_field_value( $field_id, $user_value ); } } $sub->save(); } /** * Meta Boxes */ public function add_meta_boxes( $post_type ) { add_meta_box( 'nf_sub_fields', esc_html__( 'User Submitted Values', 'ninja-forms' ), array( $this, 'fields_meta_box' ), 'nf_sub', 'normal', 'default' ); add_meta_box( 'nf_sub_info', esc_html__( 'Submission Info', 'ninja-forms' ), array( $this, 'info_meta_box' ), 'nf_sub', 'side', 'default' ); } /** * Fields Meta Box * * @param $post */ public function fields_meta_box( $post ) { $form_id = get_post_meta( $post->ID, '_form_id', TRUE ); $sub = Ninja_Forms()->form()->get_sub( $post->ID ); $fields = Ninja_Forms()->form( $form_id )->get_fields(); $hidden_field_types = apply_filters( 'nf_sub_hidden_field_types', array() ); Ninja_Forms::template( 'admin-metabox-sub-fields.html.php', compact( 'fields', 'sub', 'hidden_field_types' ) ); } public static function sort_fields( $a, $b ) { if ( $a->get_setting( 'order' ) == $b->get_setting( 'order' ) ) { return 0; } return ( $a->get_setting( 'order' ) < $b->get_setting( 'order' ) ) ? -1 : 1; } /** * Info Meta Box * * @param $post */ public function info_meta_box( $post ) { $sub = Ninja_Forms()->form()->sub( $post->ID )->get(); $seq_num = $sub->get_seq_num(); $status = ucwords( $sub->get_status() ); if ($sub->get_user()) { $user = apply_filters('nf_edit_sub_username', $sub->get_user()->data->user_nicename, $post->post_author); } else { $user = esc_html__( 'Anonymous', 'ninja-forms' ); } $form_title = $sub->get_form_title(); $sub_date = apply_filters( 'nf_edit_sub_date_submitted', $sub->get_sub_date( 'm/d/Y H:i' ), $post->ID ); $mod_date = apply_filters( 'nf_edit_sub_date_modified', $sub->get_mod_date( 'm/d/Y H:i' ), $post->ID ); Ninja_Forms::template( 'admin-metabox-sub-info.html.php', compact( 'post', 'seq_num', 'status', 'user', 'form_title', 'sub_date', 'mod_date' ) ); } /** * Remove Meta Boxes */ public function remove_meta_boxes() { // Remove the default Publish metabox remove_meta_box( 'submitdiv', 'nf_sub', 'side' ); } public function cap_filter( $allcaps, $cap, $args ) { $sub_cap = apply_filters('ninja_forms_admin_submissions_capabilities', 'manage_options'); if (!empty($allcaps[$sub_cap])) { $allcaps['nf_sub'] = true; } return $allcaps; } /** * Filter our hidden columns so that they are handled on a per-form basis. * * @access public * @since 2.7 * @return void */ public function filter_hidden_columns() { global $pagenow; // Bail if we aren't on the edit.php page, we aren't editing our custom post type, or we don't have a form_id set. if ( $pagenow != 'edit.php' || ! isset ( $_REQUEST['post_type'] ) || $_REQUEST['post_type'] != 'nf_sub' || ! isset ( $_REQUEST['form_id'] ) ) return false; // Grab our current user. $user = wp_get_current_user(); // Grab our form id. $form_id = absint( $_REQUEST['form_id'] ); // Get the columns that should be hidden for this form ID. $hidden_columns = get_user_option( 'manageedit-nf_subcolumnshidden-form-' . $form_id ); // Checks to see if hidden columns are in the format expected for 2.9.x and converts formatting. if( ! empty( $hidden_columns ) && strpos( $hidden_columns[ 0 ], 'form_' ) !== false ) { $hidden_columns = $this->convert_hidden_columns( $form_id, $hidden_columns ); } if ( $hidden_columns === false ) { // If we don't have custom hidden columns set up for this form, then only show the first five columns. // Get our column headers $columns = get_column_headers( 'edit-nf_sub' ); $hidden_columns = array(); $x = 0; foreach ( $columns as $slug => $name ) { if ( $x > 5 ) { if ( $slug != 'sub_date' ) $hidden_columns[] = $slug; } $x++; } } update_user_option( $user->ID, 'manageedit-nf_subcolumnshidden', $hidden_columns, true ); } /** * Convert Hidden Columns * Looks for 2.9.x hidden columns formatting and converts it to the formatting 3.0 expects. * @param $form_id * @param $hidden_columns * @return mixed */ private function convert_hidden_columns( $form_id, $hidden_columns ) { $id = 'form_' . $form_id . '_field_'; if( 'sub_date' !== $hidden_columns ) { $hidden_columns = str_replace( $id, '', $hidden_columns ); } return $hidden_columns; } /** * Save our hidden columns per form id. * * @access public * @since 2.7 * @return void */ public function hide_columns() { // Grab our current user. $user = wp_get_current_user(); // Grab our form id. $form_id = absint( $_REQUEST['form_id'] ); $hidden = isset( $_POST['hidden'] ) ? explode( ',', esc_html( $_POST['hidden'] ) ) : array(); $hidden = array_filter( $hidden ); $hidden = array_map( function($field) { if( is_numeric($field) ) { $field = absint($field); } return $field; }, $hidden ); update_user_option( $user->ID, 'manageedit-nf_subcolumnshidden-form-' . $form_id, $hidden, true ); die(); } /* * PRIVATE METHODS */ private function not_found_message() { if ( ! isset ( $_REQUEST['form_id'] ) || empty( $_REQUEST['form_id'] ) ) { return esc_html__( 'Please select a form to view submissions', 'ninja-forms' ); } else { return esc_html__( 'No Submissions Found', 'ninja-forms' ); } } } includes/Admin/Metaboxes/Calculations.php000064400000001411152331132460014460 0ustar00_title = esc_html__( 'Calculations', 'ninja-forms' ); if( $this->sub && ! $this->sub->get_extra_value( 'calculations' ) ){ remove_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) ); } } public function render_metabox( $post, $metabox ) { $data = $this->sub->get_extra_values( array( 'calculations' ) ); Ninja_Forms::template( 'admin-metaboxes-calcs.html.php', $data[ 'calculations' ] ); } } includes/Admin/Metaboxes/AppendAForm.php000064400000004013152331132460014174 0ustar00_title = esc_html__( 'Append a Ninja Form', 'ninja-forms' ); add_filter( 'the_content', array( $this, 'append_form' ) ); } public function append_form( $content ) { if ( isset( $GLOBALS[ 'post' ] ) ) { $post = $GLOBALS[ 'post' ]; } else { $post = NULL; } if( ! $post || ! is_object( $post ) ) return $content; $form_id = get_post_meta( $post->ID, 'ninja_forms_form', TRUE ); if( ! $form_id ) return $content; return $content . "[ninja_forms id=$form_id]"; } public function save_post( $post_id ) { if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE || ! isset( $_POST['nf_append_form'] ) || ! wp_verify_nonce( $_POST['nf_append_form'], 'ninja_forms_append_form' ) || ( 'page' == $_POST['post_type'] && !current_user_can( 'edit_page', $post_id ) ) || ( 'post' == $_POST['post_type'] && !current_user_can( 'edit_post', $post_id ) ) ) return $post_id; $post_id = absint( $post_id ); $form_id = absint( $_POST['ninja_form_select'] ); if ( empty ( $form_id ) ) { delete_post_meta( $post_id, 'ninja_forms_form' ); } else { update_post_meta( $post_id, 'ninja_forms_form', $form_id ); } } public function render_metabox( $post, $metabox ) { wp_nonce_field( 'ninja_forms_append_form', 'nf_append_form' ); $forms = Ninja_Forms()->form()->get_forms(); $form_id = get_post_meta( $post->ID, 'ninja_forms_form', true ); $none_text = '-- ' . esc_html__( 'None', 'ninja-forms' ); Ninja_Forms()->template( 'admin-metabox-append-a-form.html.php', compact( 'forms', 'form_id', 'none_text' ) ); } } includes/Admin/Metaboxes/Example.php000064400000000746152331132460013444 0ustar00_title = esc_html__( 'Example Metabox', 'ninja-forms' ); } public function render_metabox( $post, $metabox ) { $data = $this->sub->get_field_values(); Ninja_Forms()->template( 'admin-metabox-submission-example.php', compact( 'data' ) ); } }includes/Admin/Processes/ImportForm.php000064400000105162152331132460014164 0ustar00 'SETTING_NAME' ) */ protected $forms_db_columns = array( 'title' => 'title', 'created_at' => 'created_at', 'form_title' => 'title', 'default_label_pos' => 'default_label_pos', 'show_title' => 'show_title', 'clear_complete' => 'clear_complete', 'hide_complete' => 'hide_complete', 'logged_in' => 'logged_in', 'seq_num' => 'seq_num', ); protected $fields_db_columns = array( 'parent_id' => 'parent_id', 'id' => 'id', 'key' => 'key', 'type' => 'type', 'label' => 'label', 'field_key' => 'key', 'field_label' => 'label', 'order' => 'order', 'required' => 'required', 'default_value' => 'default', 'label_pos' => 'label_pos', 'personally_identifiable' => 'personally_identifiable', ); protected $actions_db_columns = array( 'title' => 'title', 'key' =>'key', 'type' =>'type', 'active' =>'active', 'parent_id' =>'parent_id', 'created_at' =>'created_at', 'updated_at' =>'updated_at', 'label' =>'label', ); /** * Function to run any setup steps necessary to begin processing. * * @since 3.4.0 * @return void */ public function startup() { // If we aren't passed any form content, bail. if ( empty ( $_POST[ 'extraData' ][ 'content' ] ) ) { $this->add_error( 'empty_content', esc_html__( 'No export provided.', 'ninja-forms' ), 'fatal' ); $this->batch_complete(); } $extra_content = WPN_Helper::esc_html($_POST[ 'extraData' ][ 'content']); $data = explode( ';base64,', $extra_content ); $data = base64_decode( $data[ 1 ] ); /** * $data could now hold two things, depending on whether this was a 2.9 or 3.0 export. * * If it's a 3.0 export, the data will be json encoded. * If it's a 2.9 export, the data will be serialized. * * We're first going to try to json_decode. If we don't get an array, we'll unserialize. */ $decoded_data = json_decode( WPN_Helper::json_cleanup( html_entity_decode( $data, ENT_QUOTES ) ), true ); // If we don't have an array, try unserializing if ( ! is_array( $decoded_data ) ) { $decoded_data = WPN_Helper::maybe_unserialize( $data ); if ( ! is_array( $decoded_data ) ) { $decoded_data = json_decode( $decoded_data, true ); } } // Try to utf8 decode our results. $data = WPN_Helper::utf8_decode( $decoded_data ); // If json_encode returns false, then this is an invalid utf8 decode. if ( ! json_encode( $data ) ) { $data = $decoded_data; } if ( ! is_array( $data ) ) { $this->add_error( 'decode_failed', esc_html__( 'Failed to read export. Please try again.', 'ninja-forms' ), 'fatal' ); $this->batch_complete(); } $data = $this->import_form_backwards_compatibility( $data ); // $data is now a form array. $this->form = $data; /** * Check to see if we've got new field columns. * * We do this here instead of the get_sql_queries() method so that we don't hit the db multiple times. */ $sql = "SHOW COLUMNS FROM {$this->_db->prefix}nf3_fields LIKE 'field_key'"; $results = $this->_db->get_results( $sql ); /** * If we don't have the field_key column, we need to remove our new columns. * * Also, set our db stage 1 tracker to false. */ if ( empty ( $results ) ) { unset( $this->actions_db_columns[ 'label' ] ); $db_stage_one_complete = false; } else { // Add a form value that stores whether or not we have our new DB columns. $db_stage_one_complete = true; } $this->form[ 'db_stage_one_complete' ] = $db_stage_one_complete; } /** * On processing steps after the first, we need to grab our data from our saved option. * * @since 3.4.0 * @return void */ public function restart() { // Get our remaining fields from the database. $this->form = get_option( 'nf_import_form', array() ); } /** * Function to loop over the batch. * * @since 3.4.0 * @return void */ public function process() { /** * Check to see if our $this->form var contains an 'ID' index. * * If it doesn't, then we need to: * Insert our Form. * Insert our Form Meta. * Insert our Actions. * Insert our Action Meta. * Unset [ 'settings' ] and [ 'actions' ] from $this->form. * Update $this->form[ 'ID' ]. * Save our processing option. * Move on to the next step. */ if ( ! isset( $this->form[ 'ID' ] ) ) { $this->insert_form(); } else { // We have a form ID set. $this->insert_fields(); } // If we don't have any more fields to insert, we're done. if ( empty( $this->form[ 'fields' ] ) ) { // Update our form cache for the new form. WPN_Helper::build_nf_cache( $this->form[ 'ID' ] ); // We're done with this batch process. $this->batch_complete(); } else { // We have fields left to process. /** * If we have fields left, we need to reset the index. * Since fields is a non-associative array, we are looping over it by sequential numeric index. * Resetting the index ensures we always have a 0 -> COUNT() keys. */ $this->form[ 'fields' ] = array_values( $this->form[ 'fields' ] ); // Save our progress. update_option( 'nf_import_form', $this->form, 'no' ); // Move on to the next step in processing. $this->next_step(); } } /** * Function to cleanup any lingering temporary elements of a batch process after completion. */ public function cleanup() { // Remove the option we used to track between delete_option( 'nf_import_form' ); // Return our new Form ID $this->response[ 'form_id' ] = $this->form[ 'ID' ]; } /* * Get Steps * Determines the amount of steps needed for the step processors. * * @return int of the number of steps. */ public function get_steps() { /** * We want to run a step for every $this->fields_per_step fields on this form. * * If we have no fields, then we want to return 0. */ if ( ! isset ( $this->form[ 'fields' ] ) || empty ( $this->form[ 'fields' ] ) ) { return 0; } $steps = count( $this->form[ 'fields' ] ) / $this->fields_per_step; $steps = ceil( $steps ); return $steps; } /** * Insert our form using $this->_db->insert by building an array of column => value pairs and %s, %d types. * * @since 3.4.0 * @return void */ public function insert_form() { $insert_columns = array(); $insert_columns_types = array(); foreach ( $this->forms_db_columns as $column_name => $setting_name ) { // Make sure we don't try to set created_at to NULL. if( 'created_at' === $column_name && is_null( $this->form[ 'settings' ][ $setting_name ] ) ) continue; $insert_columns[ $column_name ] = $this->form[ 'settings' ][ $setting_name ]; if ( is_numeric( $this->form[ 'settings' ][ $setting_name ] ) ) { array_push( $insert_columns_types, '%d' ); } else { array_push( $insert_columns_types, '%s' ); } } $this->_db->insert( "{$this->_db->prefix}nf3_forms", $insert_columns, $insert_columns_types ); // Update our form ID with the newly inserted row ID. $this->form[ 'ID' ] = $this->_db->insert_id; if ( 0 === $this->form[ 'ID' ] ) { $this->add_error( 'insert_failed', esc_html__( 'Failed to insert new form.', 'ninja-forms' ), 'fatal' ); $this->batch_complete(); } $this->insert_form_meta(); $this->insert_actions(); // Remove our settings and actions array items. unset( $this->form[ 'settings' ], $this->form[ 'actions' ] ); } /** * Insert Form Meta. * * Loop over our remaining form settings that we need to insert into meta. * Add them to our "Values" string for insertion later. * * @since 3.4.0 * @return void */ public function insert_form_meta() { $insert_values = ''; $blacklist = array( 'embed_form', 'public_link', 'public_link_key', 'allow_public_link', ); $blacklist = apply_filters( 'ninja_forms_excluded_import_form_settings', $blacklist ); foreach( $this->form[ 'settings' ] as $meta_key => $meta_value ) { if ( in_array( $meta_key, $blacklist ) ) continue; $meta_value = maybe_serialize( $meta_value ); $this->_db->escape_by_ref( $meta_value ); $insert_values .= "( {$this->form[ 'ID' ]}, '{$meta_key}', '{$meta_value}'"; if ( $this->form[ 'db_stage_one_complete'] ) { $insert_values .= ", '{$meta_key}', '{$meta_value}'"; } $insert_values .= "),"; } // Remove the trailing comma. $insert_values = rtrim( $insert_values, ',' ); $insert_columns = '`parent_id`, `key`, `value`'; if ( $this->form[ 'db_stage_one_complete'] ) { $insert_columns .= ', `meta_key`, `meta_value`'; } // Create SQL string. $sql = "INSERT INTO {$this->_db->prefix}nf3_form_meta ( {$insert_columns} ) VALUES {$insert_values}"; // Run our SQL query. $this->_db->query( $sql ); } /** * Insert Actions and Action Meta. * * Loop over actions for this form and insert actions and action meta. * * @since 3.4.0 * @return void */ public function insert_actions() { foreach( $this->form[ 'actions' ] as $action_settings ) { $action_settings[ 'parent_id' ] = $this->form[ 'ID' ]; // Array that tracks which settings need to be meta and which are columns. $action_meta = $action_settings; $insert_columns = array(); $insert_columns_types = array(); // Loop over all our action columns to get their values. foreach ( $this->actions_db_columns as $column_name => $setting_name ) { $insert_columns[ $column_name ] = $action_settings[ $setting_name ]; if ( is_numeric( $action_settings[ $setting_name ] ) ) { array_push( $insert_columns_types, '%d' ); } else { array_push( $insert_columns_types, '%s' ); } } // Insert Action $this->_db->insert( "{$this->_db->prefix}nf3_actions", $insert_columns, $insert_columns_types ); // Get our new action ID. $action_id = $this->_db->insert_id; // Insert Action Meta. $insert_values = ''; /** * Anything left in the $action_meta array should be inserted as meta. * * Loop over each of our settings and add it to our insert sql string. */ $insert_values = ''; foreach ( $action_meta as $meta_key => $meta_value ) { $meta_value = maybe_serialize( $meta_value ); $this->_db->escape_by_ref( $meta_value ); $insert_values .= "( {$action_id}, '{$meta_key}', '{$meta_value}'"; if ( $this->form[ 'db_stage_one_complete'] ) { $insert_values .= ", '{$meta_key}', '{$meta_value}'"; } $insert_values .= "),"; } // Remove the trailing comma. $insert_values = rtrim( $insert_values, ',' ); $insert_columns = '`parent_id`, `key`, `value`'; if ( $this->form[ 'db_stage_one_complete'] ) { $insert_columns .= ', `meta_key`, `meta_value`'; } // Create SQL string. $sql = "INSERT INTO {$this->_db->prefix}nf3_action_meta ( {$insert_columns} ) VALUES {$insert_values}"; // Run our SQL query. $this->_db->query( $sql ); } } /** * If we have a Form ID set, then we've already inserted our Form, Form Meta, Actions, and Action Meta. * All we have left to insert are fields. * * Loop over our fields array and insert up to $this->fields_per_step. * After we've inserted the field, unset it from our form array. * Update our processing option with $this->form. * Respond with the remaining steps. * * @since 3.4.0 * @return void */ public function insert_fields() { // Remove new field table columns if we haven't completed stage one of our DB conversion. if ( ! $this->form[ 'db_stage_one_complete' ] ) { // Remove field columns added after stage one. unset( $this->fields_db_columns[ 'field_key' ] ); unset( $this->fields_db_columns[ 'field_label' ] ); unset( $this->fields_db_columns[ 'order' ] ); unset( $this->fields_db_columns[ 'required' ] ); unset( $this->fields_db_columns[ 'default_value' ] ); unset( $this->fields_db_columns[ 'label_pos' ] ); unset( $this->fields_db_columns[ 'personally_identifiable' ] ); } /** * Loop over our field array up to $this->fields_per_step. */ for ( $i = 0; $i < $this->fields_per_step; $i++ ) { // If we don't have a field, skip this $i. if ( ! isset ( $this->form[ 'fields' ][ $i ] ) ) { // Remove this field from our fields array. unset( $this->form[ 'fields' ][ $i ] ); // If we haven't exceeded the field total... if ( $i < count( $this->form[ 'fields' ] ) ) { $this->add_error( 'empty_field', esc_html__( 'Some fields might not have been imported properly.', 'ninja-forms' ) ); } continue; } $field_settings = $this->form[ 'fields' ][ $i ]; // Remove a field ID if we have one set. unset( $field_settings[ 'id' ] ); $field_settings[ 'parent_id' ] = $this->form[ 'ID' ]; // Array that tracks which settings need to be meta and which are columns. $field_meta = $field_settings; $insert_columns = array(); $insert_columns_types = array(); // Loop over all our action columns to get their values. foreach ( $this->fields_db_columns as $column_name => $setting_name ) { $insert_columns[ $column_name ] = $field_settings[ $setting_name ]; if ( is_numeric( $field_settings[ $setting_name ] ) ) { array_push( $insert_columns_types, '%d' ); } else { array_push( $insert_columns_types, '%s' ); } } // Add our field to the database. $this->_db->insert( "{$this->_db->prefix}nf3_fields", $insert_columns, $insert_columns_types ); /** * Get our new field ID. */ $field_id = $this->_db->insert_id; $insert_values = ''; // Check for repeater field, so we can adjust internal field Ids $isRepeater = isset($field_meta['type']) && 'repeater'===$field_meta['type'] ? true : false; /** * Anything left in the $field_meta array should be inserted as meta. * * Loop over each of our settings and add it to our insert sql string. */ foreach ( $field_meta as $meta_key => $meta_value ) { // If repeater, replace fieldset ids on incoming metavalue array if($isRepeater && 'fields'===$meta_key){ $meta_value = $this->modifyFieldsetIds($field_id,$meta_value); } $meta_value = maybe_serialize( $meta_value ); $this->_db->escape_by_ref( $meta_value ); $insert_values .= "( {$field_id}, '{$meta_key}', '{$meta_value}'"; if ( $this->form[ 'db_stage_one_complete'] ) { $insert_values .= ", '{$meta_key}', '{$meta_value}'"; } $insert_values .= "),"; } // Remove the trailing comma. $insert_values = rtrim( $insert_values, ',' ); $insert_columns = '`parent_id`, `key`, `value`'; if ( $this->form[ 'db_stage_one_complete'] ) { $insert_columns .= ', `meta_key`, `meta_value`'; } // Create SQL string. $sql = "INSERT INTO {$this->_db->prefix}nf3_field_meta ( {$insert_columns} ) VALUES {$insert_values}"; // Run our SQL query. $this->_db->query( $sql ); // Remove this field from our fields array. unset( $this->form[ 'fields' ][ $i ] ); } } protected function modifyFieldsetIds($newFieldId,$fieldsData) { $delimiter='.'; // Data is expectd as array, if not, return incoming and stop if(!is_array($fieldsData)){ return $fieldsData; } $outgoingFieldsData =[]; foreach($fieldsData as $index=>$fieldsetField){ // ensure 'id' key is set if(isset($fieldsetField['id'])){ $explodedField = explode($delimiter,$fieldsetField['id']); // ensure fielsetField id is set (parsed by delimiter ) if(isset($explodedField[1])){ // Recombine fieldsetField Id using new field Id $fieldsetField['id']= implode($delimiter,[$newFieldId,$explodedField[1]]); } } // Add fieldsetField into updated fields data $outgoingFieldsData[$index]=$fieldsetField; } // reserialize $return = serialize($outgoingFieldsData); return $return; } /* |-------------------------------------------------------------------------- | Backwards Compatibility |-------------------------------------------------------------------------- */ public function import_form_backwards_compatibility( $import ) { // Rename `data` to `settings` if( isset( $import[ 'data' ] ) ){ $import[ 'settings' ] = $import[ 'data' ]; unset( $import[ 'data' ] ); } // Rename `notifications` to `actions` if( isset( $import[ 'notifications' ] ) ){ $import[ 'actions' ] = $import[ 'notifications' ]; unset( $import[ 'notifications' ] ); } // Rename `form_title` to `title` if( isset( $import[ 'settings' ][ 'form_title' ] ) ){ $import[ 'settings' ][ 'title' ] = $import[ 'settings' ][ 'form_title' ]; unset( $import[ 'settings' ][ 'form_title' ] ); } // Convert `last_sub` to `_seq_num` if( isset( $import[ 'settings' ][ 'last_sub' ] ) ) { $import[ 'settings' ][ '_seq_num' ] = $import[ 'settings' ][ 'last_sub' ] + 1; } // Make sure if( ! isset( $import[ 'fields' ] ) ){ $import[ 'fields' ] = array(); } // `Field` to `Fields` if( isset( $import[ 'field' ] ) ){ $import[ 'fields' ] = $import[ 'field' ]; unset( $import[ 'field' ] ); } $import = apply_filters( 'ninja_forms_upgrade_settings', $import ); // Combine Field and Field Data foreach( $import[ 'fields' ] as $key => $field ){ if( '_honeypot' == $field[ 'type' ] ) { unset( $import[ 'fields' ][ $key ] ); continue; } if( ! $field[ 'type' ] ) { unset( $import[ 'fields'][ $key ] ); continue; } // TODO: Split Credit Card field into multiple fields. $field = $this->import_field_backwards_compatibility( $field ); if( isset( $field[ 'new_fields' ] ) ){ foreach( $field[ 'new_fields' ] as $new_field ){ $import[ 'fields' ][] = $new_field; } unset( $field[ 'new_fields' ] ); } $import[ 'fields' ][ $key ] = $field; } $has_save_action = FALSE; foreach( $import[ 'actions' ] as $key => $action ){ $action = $this->import_action_backwards_compatibility( $action ); $import[ 'actions' ][ $key ] = $action; if( 'save' == $action[ 'type' ] ) $has_save_action = TRUE; } if( ! $has_save_action ) { $import[ 'actions' ][] = array( 'type' => 'save', 'label' => esc_html__( 'Save Form', 'ninja-forms' ), 'active' => TRUE ); } $import = $this->import_merge_tags_backwards_compatibility( $import ); return apply_filters( 'ninja_forms_after_upgrade_settings', $import ); } public function import_merge_tags_backwards_compatibility( $import ) { $field_lookup = array(); foreach( $import[ 'fields' ] as $key => $field ){ if( ! isset( $field[ 'id' ] ) ) continue; $field_id = $field[ 'id' ]; $field_key = $field[ 'type' ] . '_' . $field_id; $field_lookup[ $field_id ] = $import[ 'fields' ][ $key ][ 'key' ] = $field_key; } foreach( $import[ 'actions' ] as $key => $action_settings ){ foreach( $action_settings as $setting => $value ){ foreach( $field_lookup as $field_id => $field_key ){ // Convert Tokenizer $token = 'field_' . $field_id; if( ! is_array( $value ) ) { if (FALSE !== strpos($value, $token)) { $value = str_replace($token, '{field:' . $field_key . '}', $value); } } // Convert Shortcodes $shortcode = "[ninja_forms_field id=$field_id]"; if( ! is_array( $value ) ) { if ( FALSE !== strpos( $value, $shortcode ) ) { $value = str_replace( $shortcode, '{field:' . $field_key . '}', $value ); } } } //Checks for the nf_sub_seq_num short code and replaces it with the submission sequence merge tag $sub_seq = '[nf_sub_seq_num]'; if( ! is_array( $value ) ) { if( FALSE !== strpos( $value, $sub_seq ) ){ $value = str_replace( $sub_seq, '{submission:sequence}', $value ); } } if( ! is_array( $value ) ) { if (FALSE !== strpos($value, '[ninja_forms_all_fields]')) { $value = str_replace('[ninja_forms_all_fields]', '{field:all_fields}', $value); } } $action_settings[ $setting ] = $value; $import[ 'actions' ][ $key ] = $action_settings; } } return $import; } public function import_action_backwards_compatibility( $action ) { // Remove `_` from type if( isset( $action[ 'type' ] ) ) { $action['type'] = str_replace('_', '', $action['type']); } if( 'email' == $action[ 'type' ] ){ $action[ 'to' ] = str_replace( '`', ',', $action[ 'to' ] ); $action[ 'email_subject' ] = str_replace( '`', ',', $action[ 'email_subject' ] ); $action[ 'cc' ] = str_replace( '`', ',', $action[ 'cc' ] ); $action[ 'bcc' ] = str_replace( '`', ',', $action[ 'bcc' ] ); // If our email is in plain text... if ( $action[ 'email_format' ] == 'plain' ) { // Record it as such. $action[ 'email_message_plain' ] = $action[ 'email_message' ]; } // Otherwise... (It's not plain text.) else { // Record it as HTML. $action[ 'email_message' ] = nl2br( $action[ 'email_message' ] ); } } // Convert `name` to `label` if( isset( $action[ 'name' ] ) ) { $action['label'] = $action['name']; unset($action['name']); } return apply_filters( 'ninja_forms_upgrade_action_' . $action[ 'type' ], $action ); } public function import_field_backwards_compatibility( $field ) { // Flatten field settings array if( isset( $field[ 'data' ] ) && is_array( $field[ 'data' ] ) ){ $field = array_merge( $field, $field[ 'data' ] ); } unset( $field[ 'data' ] ); // Drop form_id in favor of parent_id, which is set by the form. if( isset( $field[ 'form_id' ] ) ){ unset( $field[ 'form_id' ] ); } // Remove `_` prefix from type setting $field[ 'type' ] = ltrim( $field[ 'type' ], '_' ); // Type: `text` -> `textbox` if( 'text' == $field[ 'type' ] ){ $field[ 'type' ] = 'textbox'; } if( 'submit' == $field[ 'type' ] ){ $field[ 'processing_label' ] = 'Processing'; } if( isset( $field[ 'email' ] ) ){ if( 'textbox' == $field[ 'type' ] && $field[ 'email' ] ) { $field['type'] = 'email'; } unset( $field[ 'email' ] ); } if( isset( $field[ 'class' ] ) ){ $field[ 'element_class' ] = $field[ 'class' ]; unset( $field[ 'class' ] ); } if( isset( $field[ 'req' ] ) ){ $field[ 'required' ] = $field[ 'req' ]; unset( $field[ 'req' ] ); } if( isset( $field[ 'default_value_type' ] ) ){ /* User Data */ if( '_user_id' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{wp:user_id}'; if( '_user_email' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{wp:user_email}'; if( '_user_lastname' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{wp:user_last_name}'; if( '_user_firstname' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{wp:user_first_name}'; if( '_user_display_name' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{wp:user_display_name}'; /* Post Data */ if( 'post_id' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{wp:post_id}'; if( 'post_url' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{wp:post_url}'; if( 'post_title' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{wp:post_title}'; /* System Data */ if( 'today' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{other:date}'; /* Miscellaneous */ if( '_custom' == $field[ 'default_value_type' ] && isset( $field[ 'default_value' ] ) ){ $field[ 'default' ] = $field[ 'default_value' ]; } if( 'querystring' == $field[ 'default_value_type' ] && isset( $field[ 'default_value' ] ) ){ $field[ 'default' ] = '{querystring:' . $field[ 'default_value' ] . '}'; } unset( $field[ 'default_value' ] ); unset( $field[ 'default_value_type' ] ); } else if ( isset ( $field[ 'default_value' ] ) ) { $field[ 'default' ] = $field[ 'default_value' ]; } if( 'list' == $field[ 'type' ] ) { if ( isset( $field[ 'list_type' ] ) ) { if ('dropdown' == $field['list_type']) { $field['type'] = 'listselect'; } if ('radio' == $field['list_type']) { $field['type'] = 'listradio'; } if ('checkbox' == $field['list_type']) { $field['type'] = 'listcheckbox'; } if ('multi' == $field['list_type']) { $field['type'] = 'listmultiselect'; } } if( isset( $field[ 'list' ][ 'options' ] ) ) { $field[ 'options' ] = array_values( $field[ 'list' ][ 'options' ] ); unset( $field[ 'list' ][ 'options' ] ); } foreach( $field[ 'options' ] as &$option ){ if( isset( $option[ 'value' ] ) && $option[ 'value' ] ) continue; $option[ 'value' ] = $option[ 'label' ]; } } if( 'country' == $field[ 'type' ] ){ $field[ 'type' ] = 'listcountry'; $field[ 'options' ] = array(); } // Convert `textbox` to other field types foreach( array( 'fist_name', 'last_name', 'user_zip', 'user_city', 'user_phone', 'user_email', 'user_address_1', 'user_address_2', 'datepicker' ) as $item ) { if ( isset( $field[ $item ] ) && $field[ $item ] ) { $field[ 'type' ] = str_replace( array( '_', 'user', '1', '2', 'picker' ), '', $item ); unset( $field[ $item ] ); } } if( 'timed_submit' == $field[ 'type' ] ) { $field[ 'type' ] = 'submit'; } if( 'checkbox' == $field[ 'type' ] ){ if( isset( $field[ 'calc_value' ] ) ){ if( isset( $field[ 'calc_value' ][ 'checked' ] ) ){ $field[ 'checked_calc_value' ] = $field[ 'calc_value' ][ 'checked' ]; unset( $field[ 'calc_value' ][ 'checked' ] ); } if( isset( $field[ 'calc_value' ][ 'unchecked' ] ) ){ $field[ 'unchecked_calc_value' ] = $field[ 'calc_value' ][ 'unchecked' ]; unset( $field[ 'calc_value' ][ 'unchecked' ] ); } } } if( 'rating' == $field[ 'type' ] ){ $field[ 'type' ] = 'starrating'; if( isset( $field[ 'rating_stars' ] ) ){ $field[ 'default' ] = $field[ 'rating_stars' ]; unset( $field[ 'rating_stars' ] ); } } if( 'number' == $field[ 'type' ] ){ if( ! isset( $field[ 'number_min' ] ) || ! $field[ 'number_min' ] ){ $field[ 'num_min' ] = ''; } else { $field[ 'num_min' ] = $field[ 'number_min' ]; } if( ! isset( $field[ 'number_max' ] ) || ! $field[ 'number_max' ] ){ $field[ 'num_max' ] = ''; } else { $field[ 'num_max' ] = $field[ 'number_max' ]; } if( ! isset( $field[ 'number_step' ] ) || ! $field[ 'number_step' ] ){ $field[ 'num_step' ] = 1; } else { $field[ 'num_step' ] = $field[ 'number_step' ]; } } if( 'profile_pass' == $field[ 'type' ] ){ $field[ 'type' ] = 'password'; $passwordconfirm = array_merge( $field, array( 'id' => '', 'type' => 'passwordconfirm', 'label' => $field[ 'label' ] . ' ' . esc_html__( 'Confirm', 'ninja-forms' ), 'confirm_field' => 'password_' . $field[ 'id' ] )); $field[ 'new_fields' ][] = $passwordconfirm; } if( 'desc' == $field[ 'type' ] ){ $field[ 'type' ] = 'html'; } if( 'credit_card' == $field[ 'type' ] ){ $field[ 'type' ] = 'creditcardnumber'; $field[ 'label' ] = $field[ 'cc_number_label' ]; $field[ 'label_pos' ] = 'above'; if( $field[ 'help_text' ] ){ $field[ 'help_text' ] = '

    ' . $field[ 'help_text' ] . '

    '; } $credit_card_fields = array( 'creditcardcvc' => $field[ 'cc_cvc_label' ], 'creditcardfullname' => $field[ 'cc_name_label' ], 'creditcardexpiration' => $field[ 'cc_exp_month_label' ] . ' ' . $field[ 'cc_exp_year_label' ], 'creditcardzip' => esc_html__( 'Credit Card Zip', 'ninja-forms' ), ); foreach( $credit_card_fields as $new_type => $new_label ){ $field[ 'new_fields' ][] = array_merge( $field, array( 'id' => '', 'type' => $new_type, 'label' => $new_label, 'help_text' => '', 'desc_text' => '' )); } } /* * Convert inside label position over to placeholder */ if ( isset ( $field[ 'label_pos' ] ) && 'inside' == $field[ 'label_pos' ] ) { if ( ! isset ( $field[ 'placeholder' ] ) || empty ( $field[ 'placeholder' ] ) ) { $field[ 'placeholder' ] = $field[ 'label' ]; } $field[ 'label_pos' ] = 'hidden'; } if( isset( $field[ 'desc_text' ] ) ){ $field[ 'desc_text' ] = nl2br( $field[ 'desc_text' ] ); } if( isset( $field[ 'help_text' ] ) ){ $field[ 'help_text' ] = nl2br( $field[ 'help_text' ] ); } return apply_filters( 'ninja_forms_upgrade_field', $field ); } }includes/Admin/Processes/ExpiredSubmissionCleanup.php000064400000010315152331132460017045 0ustar00get_expired_subs( $sub[ 0 ], $sub[ 1 ] ); // Use the helper method to build an array of expired subs. $this->expired_subs = array_merge( $this->expired_subs, $expired_subs ); } } /** * Function to run any setup steps necessary to begin processing for steps after the first. * * @since 3.4.0 * @return void */ public function restart() { // Get our remaining submissions from record. $this->expired_subs = get_option( 'nf_expired_submissions', array() ); } /** * Function to loop over the batch. * * @since 3.4.0 * @return void */ public function process() { // For the first 250 in the array. for( $i = 0; $i < 250; $i++ ){ // if we've already finished bail.. if( empty( $this->expired_subs ) ) break; // Pop off a sub and delete it. $sub = array_pop( $this->expired_subs ); wp_trash_post( $sub ); } // If our subs array isn't empty... if( ! empty( $this->expired_subs ) ) { // Update nf_expired_submissions so that we can use it in our next step. update_option( 'nf_expired_submissions', $this->expired_subs ); // End processing and move to the next step. $this->next_step(); } // If we get here, then we're ready to end batch processing. $this->batch_complete(); } /** * Function to cleanup any lingering temporary elements of a batch process after completion. * * @since 3.4.0 * @return void */ public function cleanup() { delete_option( 'nf_expired_submissions' ); } /** * Get Steps * Determines the amount of steps needed for the step processors. * * @since 3.4.0 * @return int of the number of steps. */ public function get_steps() { // Convent our number from int to float $steps = count( $this->expired_subs ); $steps = floatval( $steps ); // Get the amount of steps and return. $steps = ceil( $steps / 250.0 ); return $steps; } /** * Get Expired Subs * Gathers our expired subs puts them into an array and returns it. * * @param $form_id - ( int ) ID of the Form. * @param $expiration_time - ( int ) number of days the submissions * are set to expire in * * @return array of all the expired subs that were found. */ public function get_expired_subs( $form_id, $expiration_time ) { // Create the that will house our expired subs. $expired_subs = array(); // Create our deletion timestamp. $deletion_timestamp = time() - ( 24 * 60 * 60 * $expiration_time ); // Get our subs and loop over them. $sub = Ninja_Forms()->form( $form_id )->get_subs(); foreach( $sub as $sub_model ) { // Get the sub date and change it to a UNIX time stamp. $sub_timestamp = strtotime( $sub_model->get_sub_date( 'Y-m-d') ); // Compare our timestamps and any expired subs to the array. if( $sub_timestamp <= $deletion_timestamp ) { $expired_subs[] = $sub_model->get_id(); } } return $expired_subs; } }includes/Admin/Processes/ChunkPublish.php000064400000024443152331132460014467 0ustar00 'failure', 'batch_complete' => false, ); protected $_data = array(); protected $_errors = array(); protected $_debug = array(); /** * Constructor */ public function __construct( $data = array() ) { //Bail if we aren't in the admin. if ( ! is_admin() ) return false; // Record our data if we have any. $this->data = $data[ 'data' ]; $this->form_id = $this->data[ 'form_id' ]; // Run process. $this->process(); } /** * Function to loop over the batch. * * @return JSON * Str last_response = success/failure * Bool batch_complete = true/false * Int requesting = x */ public function process() { // If we were told this is a new publish... if ( $this->data[ 'new_publish' ] === 'true' ) { // Delete our option to reset the process. $this->remove_option(); } // Fetch our option to see what step we're on. $batch = $this->get_chunk( 'nf_chunk_publish_' . $this->form_id ); // If we don't have an option to see what step we're on... if ( ! $batch ) { // Run startup. $this->startup(); // Fetch our option now that it's created. $batch = $this->get_chunk( 'nf_chunk_publish_' . $this->form_id ); } $batch = explode( ',', $batch ); // Update the chunk. $this->add_chunk( 'nf_form_' . $this->form_id . '_publishing_' . $batch[ 0 ], stripslashes( $this->data[ 'chunk' ] ) ); // Increment our step. $batch[ 0 ]++; // If this was our last step... if ( $batch[ 0 ] == $batch[ 1 ] ) { // Run cleanup. $this->cleanup(); } // Otherwise... (We have more steps.) else { // Update our step option. $this->add_chunk( 'nf_chunk_publish_' . $this->form_id, implode( ',', $batch ) ); // Request our next chunk. $this->response[ 'requesting' ] = $batch[ 0 ]; } $this->response[ 'last_request' ] = 'success'; echo wp_json_encode( $this->response ); wp_die(); } /** * Function to run any setup steps necessary to begin processing. */ public function startup() { $value = '0,' . $this->data[ 'chunk_total' ]; // Write our option to manage the process. $this->add_chunk( 'nf_chunk_publish_' . $this->form_id, $value ); // Process the first item. $this->process(); } /** * Function to cleanup any lingering temporary elements of a batch process after completion. */ public function cleanup() { // Get all of the chunks. $build = ''; $batch = $this->get_chunk( 'nf_chunk_publish_' . $this->form_id ); $batch = explode( ',', $batch ); // Add all of our chunks into a string. for ( $i = 0; $i < $batch[ 1 ]; $i++ ) { $build .= $this->get_chunk( 'nf_form_' . $this->form_id . '_publishing_' . $i ); } $form_data = json_decode( $build, ARRAY_A ); // Start copied code. if( is_string( $form_data[ 'id' ] ) ) { $tmp_id = $form_data[ 'id' ]; $form = Ninja_Forms()->form()->get(); $form->save(); $form_data[ 'id' ] = $form->get_id(); $this->_data[ 'new_ids' ][ 'forms' ][ $tmp_id ] = $form_data[ 'id' ]; } else { $form = Ninja_Forms()->form($form_data['id'])->get(); } unset( $form_data[ 'settings' ][ '_seq_num' ] ); $form->update_settings( $form_data[ 'settings' ] )->save(); if( isset( $form_data[ 'fields' ] ) ) { $db_fields_controller = new NF_Database_FieldsController( $form_data[ 'id' ], $form_data[ 'fields' ] ); $db_fields_controller->run(); $form_data[ 'fields' ] = $db_fields_controller->get_updated_fields_data(); $this->_data['new_ids']['fields'] = $db_fields_controller->get_new_field_ids(); } if( isset( $form_data[ 'deleted_fields' ] ) ){ foreach( $form_data[ 'deleted_fields' ] as $deleted_field_id ){ $field = Ninja_Forms()->form( $form_data[ 'id' ])->get_field( $deleted_field_id ); $field->delete(); } } if( isset( $form_data[ 'actions' ] ) ) { /* * Loop Actions and fire Save() hooks. */ foreach ($form_data['actions'] as &$action_data) { $id = $action_data['id']; $action = Ninja_Forms()->form( $form_data[ 'id' ] )->get_action( $id ); $action->update_settings($action_data['settings'])->save(); $action_type = $action->get_setting( 'type' ); if( isset( Ninja_Forms()->actions[ $action_type ] ) ) { $action_class = Ninja_Forms()->actions[ $action_type ]; $action_settings = $action_class->save( $action_data['settings'] ); if( $action_settings ){ $action_data['settings'] = $action_settings; $action->update_settings( $action_settings )->save(); } } if ($action->get_tmp_id()) { $tmp_id = $action->get_tmp_id(); $this->_data['new_ids']['actions'][$tmp_id] = $action->get_id(); $action_data[ 'id' ] = $action->get_id(); } $this->_data[ 'actions' ][ $action->get_id() ] = $action->get_settings(); } /* * Loop Actions and fire Publish() hooks. */ foreach ($form_data['actions'] as &$action_data) { $action = Ninja_Forms()->form( $form_data[ 'id' ] )->get_action( $action_data['id'] ); $action_type = $action->get_setting( 'type' ); if( isset( Ninja_Forms()->actions[ $action_type ] ) ) { $action_class = Ninja_Forms()->actions[ $action_type ]; if( $action->get_setting( 'active' ) && method_exists( $action_class, 'publish' ) ) { $data = $action_class->publish( $this->_data ); if ($data) { $this->_data = $data; } } } } } if( isset( $form_data[ 'deleted_actions' ] ) ){ foreach( $form_data[ 'deleted_actions' ] as $deleted_action_id ){ $action = Ninja_Forms()->form()->get_action( $deleted_action_id ); $action->delete(); } } delete_user_option( get_current_user_id(), 'nf_form_preview_' . $form_data['id'] ); WPN_Helper::update_nf_cache( $form_data[ 'id' ], $form_data ); do_action( 'ninja_forms_save_form', $form->get_id() ); if( isset( $this->_data['debug'] ) ) { $this->_debug = array_merge( $this->_debug, $this->_data[ 'debug' ] ); } if( isset( $this->_data['errors'] ) && $this->_data[ 'errors' ] ) { $this->_errors = array_merge( $this->_errors, $this->_data[ 'errors' ] ); } // Remove our option. $this->remove_option(); $response = array( 'data' => $this->_data, 'errors' => $this->_errors, 'debug' => $this->_debug, 'batch_complete' => true ); echo wp_json_encode( $response ); wp_die(); // this is required to terminate immediately and return a proper response } /** * Function to get our chunk data from the chunks table. * * @param $slug (string) The name of the option in the db. * @return string or FALSE */ public function get_chunk( $slug ) { global $wpdb; // Get our option from our chunks table. $sql = $wpdb->prepare( "SELECT `value` FROM `{$wpdb->prefix}nf3_chunks` WHERE `name` = %s", $slug ); $data = $wpdb->get_results( $sql, 'ARRAY_A' ); // If it exists there... if ( ! empty( $data ) ) { // Hand it off. return $data[ 0 ][ 'value' ]; } // Otherwise... (It does not exist there.) else { // Try to fetch it from the options table. return get_option( $slug ); } } /** * Function to replace update_option. * * @param $slug (string) The name of the option in the db. * @param $content (string) The data to be stored in the option. */ public function add_chunk( $slug, $content ) { // Check for an existing option. global $wpdb; $sql = "SELECT id FROM `{$wpdb->prefix}nf3_chunks` WHERE name = '{$slug}'"; $result = $wpdb->query( $sql ); // If we don't have one... if ( empty ( $result ) ) { // Insert it. $sql = $wpdb->prepare( "INSERT INTO `{$wpdb->prefix}nf3_chunks` (name, value) VALUES ( %s, %s )", $slug, $content ); } // Otherwise... (We do have one.) else { // Update the existing one. $sql = $wpdb->prepare( "UPDATE `{$wpdb->prefix}nf3_chunks` SET value = %s WHERE name = %s", $content, $slug ); } $wpdb->query( $sql ); } /* * Function to remove our management option and remove any temporary chunk data. */ public function remove_option() { // Remove our option to manage the process. global $wpdb; $sql = $wpdb->prepare( "DELETE FROM `{$wpdb->prefix}nf3_chunks` WHERE name = %s", 'nf_chunk_publish_' . $this->form_id ); $wpdb->query( $sql ); // If our form_id was a temp id... if ( ! is_numeric( $this->form_id ) ) { // Remove all of our chunk options. $sql = $wpdb->prepare( "DELETE FROM `" . $wpdb->prefix . "nf3_chunks` WHERE name LIKE %s", 'nf_form_' . $this->form_id . '_publishing_%' ); $wpdb->query( $sql ); } $this->data[ 'new_publish' ] = 'false'; } }includes/Admin/Processes/ImportFormTemplate.php000064400000005521152331132460015656 0ustar00batch_complete(); } $template_file_name = WPN_Helper::esc_html($_POST[ 'extraData' ][ 'template' ]); /** * If our template_file_name is set to 'new', then respond with 'new' as our form id. * * This will redirect to the builder with a new form. */ if ( 'new' == $template_file_name ) { $this->form[ 'ID' ] = 'new'; $this->batch_complete(); } // Grab the data from the appropriate file location. $registered_templates = Ninja_Forms::config( 'NewFormTemplates' ); if( isset( $registered_templates[ $template_file_name ] ) && ! empty( $registered_templates[ $template_file_name ][ 'form' ] ) ) { $form_data = $registered_templates[ $template_file_name ][ 'form' ]; } else { $form_data = Ninja_Forms::template( $template_file_name . '.nff', array(), TRUE ); } /** * If we don't have any form data, run cleanup. * * TODO: We probably need to show an error to the user here. */ if( ! $form_data ) { $this->cleanup(); } $this->form = json_decode( html_entity_decode( $form_data ), true ); // Determine how many steps this will take. $this->response[ 'step_total' ] = $this->get_steps(); /** * Check to see if we've got new field columns. * * We do this here instead of the get_sql_queries() method so that we don't hit the db multiple times. */ $sql = "SHOW COLUMNS FROM {$wpdb->prefix}nf3_fields LIKE 'field_key'"; $results = $wpdb->get_results( $sql ); /** * If we don't have the field_key column, we need to remove our new columns. * * Also, set our db stage 1 tracker to false. */ if ( empty ( $results ) ) { unset( $this->actions_db_columns[ 'label' ] ); $db_stage_one_complete = false; } else { // Add a form value that stores whether or not we have our new DB columns. $db_stage_one_complete = true; } $this->form[ 'db_stage_one_complete' ] = $db_stage_one_complete; add_option( 'nf_doing_' . $this->_slug, 'true', false ); } }includes/Admin/Menus/Divider.php000064400000001300152331132460012562 0ustar00'; public $menu_slug = '#'; public $position = 9001; public function __construct() { if( ! defined( 'NF_DEV' ) || ! NF_DEV ) return; parent::__construct(); // Reset Menu Slug $this->menu_slug = '#'; } public function display() { // This method intentionally left blank. } } // End Class NF_Admin_Divider includes/Admin/Menus/Forms.php000064400000104347152331132460012301 0ustar00menu_slug ) { $classes = "$classes ninja-forms-app"; } return $classes; } public function get_page_title() { return esc_html__( 'Ninja Forms', 'ninja-forms' ); } public function admin_init() { /* * If we aren't on the Ninja Forms menu page, don't admin_init. */ if ( empty( $_GET[ 'page' ] ) || 'ninja-forms' !== $_GET[ 'page' ] ) { return false; } /* * Database Table Check * If the nf3_ database tables do not exist, then re-run activation. */ if ( ! ninja_forms_three_table_exists() ) { Ninja_Forms()->activation(); } if( isset( $_GET[ 'form_id' ] ) && ! is_numeric( $_GET[ 'form_id' ] ) && 'new' != $_GET[ 'form_id' ] ) { if( current_user_can( apply_filters( 'ninja_forms_admin_import_template_capabilities', 'manage_options' ) ) ) { $this->import_from_template(); } } /* DISABLE OLD FORMS TABLE IN FAVOR OF NEW DASHBOARD */ // $this->table = new NF_Admin_AllFormsTable(); } public function display() { if( isset( $_GET[ 'form_id' ] ) ){ if( 'new' == $_GET[ 'form_id' ] ) { $form_id = 'tmp-' . time(); } else { $form_id = (is_numeric($_GET['form_id'])) ? absint($_GET['form_id']) : ''; } /* * FORM BUILDER */ Ninja_Forms::template( 'admin-menu-new-form.html.php' ); Ninja_Forms::template( 'fields-label--builder.html' ); // Fork for the builder. Ninja_Forms::template( 'fields-address.html' ); Ninja_Forms::template( 'fields-address2.html' ); Ninja_Forms::template( 'fields-button.html' ); Ninja_Forms::template( 'fields-checkbox.html' ); Ninja_Forms::template( 'fields-city.html' ); Ninja_Forms::template( 'fields-color.html' ); Ninja_Forms::template( 'fields-date.html' ); Ninja_Forms::template( 'fields-email.html' ); Ninja_Forms::template( 'fields-file.html' ); Ninja_Forms::template( 'fields-firstname.html' ); Ninja_Forms::template( 'fields-hidden.html' ); Ninja_Forms::template( 'fields-hr.html' ); Ninja_Forms::template( 'fields-html.html' ); Ninja_Forms::template( 'fields-input.html' ); Ninja_Forms::template( 'fields-lastname.html' ); Ninja_Forms::template( 'fields-listcheckbox.html' ); Ninja_Forms::template( 'fields-listradio.html' ); Ninja_Forms::template( 'fields-listselect--builder.html' ); // Fork that removes the `for` attribute, which hijacks click events. Ninja_Forms::template( 'fields-number.html' ); Ninja_Forms::template( 'fields-password.html' ); Ninja_Forms::template( 'fields-recaptcha.html' ); Ninja_Forms::template( 'fields-starrating.html' ); Ninja_Forms::template( 'fields-submit.html' ); Ninja_Forms::template( 'fields-tel.html' ); Ninja_Forms::template( 'fields-terms.html' ); Ninja_Forms::template( 'fields-textarea.html' ); Ninja_Forms::template( 'fields-textbox.html' ); Ninja_Forms::template( 'fields-zip.html' ); Ninja_Forms::template( 'fields-repeater.html' ); // Deprecated Fields Ninja_Forms::template( 'fields-total.html' ); Ninja_Forms::template( 'fields-tax.html' ); Ninja_Forms::template( 'fields-product.html' ); Ninja_Forms::template( 'fields-shipping.html' ); $this->_enqueue_the_things( $form_id ); delete_user_option( get_current_user_id(), 'nf_form_preview_' . $form_id ); if( ! isset( $_GET[ 'ajax' ] ) ) { $this->_localize_form_data( $form_id ); $this->_localize_field_type_data(); $this->_localize_action_type_data(); $this->_localize_form_settings(); $this->_localize_merge_tags(); } } else { /* * ALL FORMS TABLE * - DISABLE IN FAVOR OF NEW DASHBOARD. */ // $this->table->prepare_items(); // // Ninja_Forms::template( 'admin-menu-all-forms.html.php', array( // 'table' => $this->table, // 'add_new_url' => admin_url( 'admin.php?page=ninja-forms&form_id=new' ), // 'add_new_text' => __( 'Add New Form', 'ninja-forms' ) // ) ); $use_services = true; // Feature Flag. $use_services = apply_filters( 'ninja_forms_use_services', $use_services ); // The WordPress Way. if ( apply_filters( 'ninja_forms_disable_marketing', false ) ) $use_services = false; $use_services = $use_services && ( version_compare( PHP_VERSION, '5.6', '>=' ) ); // PHP Version Check. /* * DASHBOARD */ $dash_items = Ninja_Forms()->config('DashboardMenuItems'); ?> ver ); wp_enqueue_script( 'nf-batch-processor', Ninja_Forms::$url . 'assets/js/lib/batch-processor.js', array( 'nf-ninjamodal' ), $this->ver ); wp_enqueue_script( 'nf-moment', Ninja_Forms::$url . 'assets/js/lib/moment-with-locales.min.js', array( 'jquery', 'nf-dashboard' ) ); wp_enqueue_script( 'nf-dashboard', Ninja_Forms::$url . 'assets/js/min/dashboard.min.js', array( 'backbone-radio', 'backbone-marionette-3' ), $this->ver ); wp_enqueue_script( 'nf-sendwp', Ninja_Forms::$url . 'assets/js/lib/sendwp.js', array(), $this->ver ); wp_enqueue_script( 'nf-feature-scripts', Ninja_Forms::$url . 'assets/js/lib/feature-scripts.js', array(), $this->ver ); $current_user = wp_get_current_user(); wp_localize_script( 'nf-dashboard', 'nfi18n', Ninja_Forms::config( 'i18nDashboard' ) ); $promotions = get_option( 'nf_active_promotions' ); $promotions = json_decode( $promotions, true ); if( ! empty( $promotions ) ) { wp_localize_script( 'nf-dashboard', 'nfPromotions', array_values( $promotions[ 'dashboard' ] ) ); } wp_localize_script( 'nf-dashboard', 'nfAdmin', array( 'ajaxNonce' => wp_create_nonce( 'ninja_forms_dashboard_nonce' ), 'batchNonce' => wp_create_nonce( 'ninja_forms_batch_nonce' ), 'updateNonce' => wp_create_nonce( 'ninja_forms_required_update_nonce' ), 'formTelemetry' => ( get_option( 'nf_form_tel_sent' ) ) ? 0 : 1, 'showOptin' => ( get_option( 'ninja_forms_do_not_allow_tracking' ) || get_option( 'ninja_forms_allow_tracking' ) ) ? 0 : 1, 'requiredUpdates' => $required_updates, 'currentUserEmail' => $current_user->user_email, 'builderURL' => admin_url( 'admin.php?page=ninja-forms&form_id=' ), 'sendwpInstallNonce' => wp_create_nonce( 'ninja_forms_sendwp_remote_install' ), 'disconnectNonce' => wp_create_nonce( 'nf-oauth-disconnect' ), ) ); wp_enqueue_style( 'nf-builder', Ninja_Forms::$url . 'assets/css/builder.css', array(), $this->ver ); wp_enqueue_style( 'nf-dashboard', Ninja_Forms::$url . 'assets/css/dashboard.min.css', array(), $this->ver ); wp_enqueue_style( 'nf-jbox', Ninja_Forms::$url . 'assets/css/jBox.css' ); wp_enqueue_style( 'nf-font-awesome', Ninja_Forms::$url . 'assets/css/font-awesome.min.css' ); if( $required_updates ) { wp_enqueue_style( 'nf-updates-styles', Ninja_Forms::$url . '/assets/css/required-updates.css' ); } Ninja_Forms::template( 'admin-menu-dashboard.html.php' ); } } public function submenu_separators() { add_submenu_page( 'ninja-forms', '', '', 'read', '', '' ); } /** * TODO: Remove this function and its hook because we are handling template imports via the batch processor. * @since 3.0 * @return void */ private function import_from_template() { $template = sanitize_title( $_GET['form_id'] ); $templates = Ninja_Forms::config( 'NewFormTemplates' ); if( isset( $templates[ $template ] ) && ! empty( $templates[ $template ][ 'form' ] ) ) { $form = $templates[ $template ][ 'form' ]; } else { $form = Ninja_Forms::template( $template . '.nff', array(), TRUE ); } if( ! $form ) die( 'Template not found' ); $form = json_decode( html_entity_decode( $form ), true ); $form_id = Ninja_Forms()->form()->import_form( $form ); if( ! $form_id ){ $error_message = ( function_exists( 'json_last_error_msg' ) && json_last_error_msg() ) ? json_last_error_msg() : esc_html__( 'Form Template Import Error.', 'ninja-forms' ); wp_die( $error_message ); } header( "Location: " . admin_url( "admin.php?page=ninja-forms&form_id=$form_id" ) ); exit(); } private function _enqueue_the_things( $form_id ) { global $wp_locale; wp_enqueue_media(); wp_enqueue_style( 'nf-builder', Ninja_Forms::$url . 'assets/css/builder.css', array(), $this->ver ); wp_enqueue_style( 'nf-font-awesome', Ninja_Forms::$url . 'assets/css/font-awesome.min.css' ); /** * CSS Libraries */ wp_enqueue_style( 'wp-color-picker' ); wp_enqueue_style( 'jBox', Ninja_Forms::$url . 'assets/css/jBox.css' ); wp_enqueue_style( 'summernote', Ninja_Forms::$url . 'assets/css/summernote.css' ); wp_enqueue_style( 'codemirror', Ninja_Forms::$url . 'assets/css/codemirror.css' ); wp_enqueue_style( 'codemirror-monokai', Ninja_Forms::$url . 'assets/css/monokai-theme.css' ); /** * JS Libraries */ wp_enqueue_script( 'wp-util' ); wp_enqueue_script( 'jquery-autoNumeric', Ninja_Forms::$url . 'assets/js/lib/jquery.autoNumeric.min.js', array( 'jquery', 'jquery-migrate', 'backbone' ) ); wp_enqueue_script( 'jquery-maskedinput', Ninja_Forms::$url . 'assets/js/lib/jquery.maskedinput.min.js', array( 'jquery', 'backbone' ) ); wp_enqueue_script( 'backbone-marionette', Ninja_Forms::$url . 'assets/js/lib/backbone.marionette.min.js', array( 'jquery', 'backbone' ) ); wp_enqueue_script( 'backbone-radio', Ninja_Forms::$url . 'assets/js/lib/backbone.radio.min.js', array( 'jquery', 'backbone' ) ); wp_enqueue_script( 'jquery-perfect-scrollbar', Ninja_Forms::$url . 'assets/js/lib/perfect-scrollbar.jquery.min.js', array( 'jquery' ) ); wp_enqueue_script( 'jquery-hotkeys-new', Ninja_Forms::$url . 'assets/js/lib/jquery.hotkeys.min.js' ); wp_enqueue_script( 'jBox', Ninja_Forms::$url . 'assets/js/lib/jBox.min.js' ); wp_enqueue_script( 'nf-ninjamodal', Ninja_Forms::$url . 'assets/js/lib/ninjaModal.js', array( 'jBox' ), $this->ver ); wp_enqueue_script( 'nf-jquery-caret', Ninja_Forms::$url . 'assets/js/lib/jquery.caret.min.js' ); wp_enqueue_script( 'speakingurl', Ninja_Forms::$url . 'assets/js/lib/speakingurl.js' ); wp_enqueue_script( 'jquery-slugify', Ninja_Forms::$url . 'assets/js/lib/slugify.min.js', array( 'jquery', 'speakingurl' ) ); wp_enqueue_script( 'jquery-mobile-events', Ninja_Forms::$url . 'assets/js/lib/jquery.mobile-events.min.js', array( 'jquery' ) ); wp_enqueue_script( 'jquery-ui-touch-punch', Ninja_Forms::$url . 'assets/js/lib/jquery.ui.touch-punch.min.js', array( 'jquery' ) ); wp_enqueue_script( 'jquery-classy-wiggle', Ninja_Forms::$url . 'assets/js/lib/jquery.classywiggle.min.js', array( 'jquery' ) ); wp_enqueue_script( 'moment-with-locale', Ninja_Forms::$url . 'assets/js/lib/moment-with-locales.min.js', array( 'jquery', 'nf-builder' ) ); wp_enqueue_script( 'bootstrap', Ninja_Forms::$url . 'assets/js/lib/bootstrap.min.js', array( 'jquery' ) ); wp_enqueue_script( 'codemirror', Ninja_Forms::$url . 'assets/js/lib/codemirror.min.js', array( 'jquery' ) ); wp_enqueue_script( 'codemirror-xml', Ninja_Forms::$url . 'assets/js/lib/codemirror-xml.min.js', array( 'jquery' ) ); wp_enqueue_script( 'codemirror-formatting', Ninja_Forms::$url . 'assets/js/lib/codemirror-formatting.min.js', array( 'jquery' ) ); wp_enqueue_script( 'summernote', Ninja_Forms::$url . 'assets/js/lib/summernote.min.js', array( 'jquery', 'speakingurl' ) ); wp_enqueue_script( 'nf-builder', Ninja_Forms::$url . 'assets/js/min/builder.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-effects-bounce', 'wp-color-picker' ), $this->ver ); wp_localize_script( 'nf-builder', 'nfi18n', Ninja_Forms::config( 'i18nBuilder' ) ); $home_url = parse_url( home_url() ); global $wp_rewrite; if($wp_rewrite->permalink_structure) { $public_link_structure = site_url() . '/ninja-forms/[FORM_ID]'; } else { $public_link_structure = site_url('?nf_public_link=[FORM_ID]'); } if(isset($_GET['nf_dev_mode']) && $_GET['nf_dev_mode']){ $dev_mode = absint($_GET['nf_dev_mode']); } else { // @NOTE Check the settings array to avoid a default value in place of zero. $settings = Ninja_Forms()->get_settings(); if( ! isset($settings['builder_dev_mode'])){ $dev_mode = 1; } else { $dev_mode = $settings['builder_dev_mode']; } } wp_localize_script( 'nf-builder', 'nfAdmin', array( 'ajaxNonce' => wp_create_nonce( 'ninja_forms_builder_nonce' ), 'batchNonce' => wp_create_nonce( 'ninja_forms_batch_nonce' ), 'requireBaseUrl' => Ninja_Forms::$url . 'assets/js/', 'previewurl' => home_url() . '/?nf_preview_form=', 'wp_locale' => $wp_locale->number_format, 'editFormText' => esc_html__( 'Edit Form', 'ninja-forms' ), 'mobile' => ( wp_is_mobile() ) ? 1: 0, 'currencySymbols' => array_merge( array( '' => Ninja_Forms()->get_setting( 'currency_symbol' ) ), Ninja_Forms::config( 'CurrencySymbol' ) ), 'dateFormat' => Ninja_Forms()->get_setting( 'date_format' ), 'formID' => isset( $_GET[ 'form_id' ] ) ? absint( $_GET[ 'form_id' ] ) : 0, 'home_url_host' => $home_url[ 'host' ], 'publicLinkStructure' => $public_link_structure, 'devMode' => (bool) $dev_mode, )); wp_localize_script( 'nf-builder', 'nfRepeater', array( 'add_repeater_child_field_text' => __( 'Add ', 'ninja-forms' ) )); do_action( 'nf_admin_enqueue_scripts' ); } private function _localize_form_data( $form_id ) { $form = Ninja_Forms()->form( $form_id )->get(); $form_cache = false; if( ! $form->get_tmp_id() ) { if(WPN_Helper::use_cache()) { $form_cache = WPN_Helper::get_nf_cache( $form_id ); } if( $form_cache ) { $fields = $form_cache[ 'fields' ]; } else { $fields = ($form_id) ? Ninja_Forms()->form($form_id)->get_fields() : array(); } $actions = ($form_id) ? Ninja_Forms()->form($form_id)->get_actions() : array(); } else { $fields = array(); $actions = array(); } $fields_settings = array(); if( ! empty( $fields ) ) { // TODO: Replace unique field key checks with a refactored model/factory. // $unique_field_keys = array(); // $form_cache = get_option( 'nf_form_' . $form_id, false ); // $cache_updated = false; foreach ($fields as $field) { $field_id = ( is_object( $field ) ) ? $field->get_id() : $field[ 'id' ]; /* * Duplicate field check. * TODO: Replace unique field key checks with a refactored model/factory. */ // $field_key = $field->get_setting( 'key' ); // if( in_array( $field_key, $unique_field_keys ) || '' == $field_key ){ // // // Delete the field. // Ninja_Forms()->request( 'delete-field' )->data( array( 'field_id' => $field_id ) )->dispatch(); // // // Remove the field from cache. // if( $form_cache ) { // if( isset( $form_cache[ 'fields' ] ) ){ // foreach( $form_cache[ 'fields' ] as $cached_field_key => $cached_field ){ // if( ! isset( $cached_field[ 'id' ] ) ) continue; // if( $field_id != $cached_field[ 'id' ] ) continue; // // // Flag cache to update. // $cache_updated = true; // // unset( $form_cache[ 'fields' ][ $cached_field_key ] ); // Remove the field. // } // } // } // // continue; // Skip the duplicate field. // } // array_push( $unique_field_keys, $field_key ); // Log unique key. /* END Duplicate field check. */ $type = ( is_object( $field ) ) ? $field->get_setting( 'type' ) : $field[ 'settings' ][ 'type' ]; /* * As of version 3.3.16, we want password fields to only show up if the user is using an add-on that requires them. * But, because we don't want to break any forms that may already have a password field, we enable them if the current form already has them. * The $legacy_password class var holds whether or not this form has a pre-existing password or confirm password field. */ if ( 'password' == $type || 'passwordconfirm' == $type ) { $this->legacy_password = true; } if( ! isset( Ninja_Forms()->fields[ $type ] ) ){ $field = NF_Fields_Unknown::create( $field ); } $settings = ( is_object( $field ) ) ? $field->get_settings() : $field[ 'settings' ]; $settings[ 'id' ] = $field_id; $settings = $this->null_data_check( $settings ); $fields_settings[] = $settings; } // if( $cache_updated ) { // update_option('nf_form_' . $form_id, $form_cache); // Update form cache without duplicate fields. // } } $actions_settings = array(); if( ! empty( $actions ) ) { foreach ($actions as $action) { $type = $action->get_setting( 'type' ); if( ! isset( Ninja_Forms()->actions[ $type ] ) ) continue; $settings = $action->get_settings(); $settings['id'] = $action->get_id(); $settings = $this->null_data_check( $settings ); $actions_settings[] = $settings; } } if( $form->get_tmp_id() ){ $actions_settings = Ninja_Forms()->config( 'FormActionDefaults' ); } $form_data = array(); $form_data['id'] = $form_id; // Use form cache for form settings. // TODO: Defer to refactor of factory/model. if( $form_cache && isset( $form_cache[ 'settings' ] ) ) { $form_data['settings'] = $form_cache[ 'settings' ]; } else { $form_data['settings'] = $form->get_settings(); } $form_data['fields'] = $fields_settings; $form_data['actions'] = $actions_settings; ?> $setting) { // Check for null values in the settings array. if ( null === $setting ) { // Remove null settings from the array. unset( $settings[ $key ] ); continue; } } return $settings; } private function _localize_field_type_data() { $field_type_sections = array_values( Ninja_Forms()->config( 'FieldTypeSections' ) ); $field_type_settings = array(); $master_settings = array(); $setting_defaults = array(); foreach( Ninja_Forms()->fields as $field ){ if ( 'password' == $field->get_type() || 'passwordconfirm' == $field->get_type() ) { if( ! $this->legacy_password && ! apply_filters( 'ninja_forms_enable_password_fields', false ) ){ continue; } } $name = $field->get_name(); $settings = $field->get_settings(); $groups = Ninja_Forms::config( 'SettingsGroups' ); $unique_settings = $this->_unique_settings( $settings ); $master_settings = array_merge( $master_settings, $unique_settings ); $settings_groups = $this->_group_settings( $settings, $groups ); $settings_defaults = $this->_setting_defaults( $unique_settings ); $field_type_settings[ $name ] = array( 'id' => $name, 'nicename' => $field->get_nicename(), 'alias' => $field->get_aliases(), 'parentType' => $field->get_parent_type(), 'section' => $field->get_section(), 'icon' => $field->get_icon(), 'type' => $field->get_type(), 'settingGroups' => $settings_groups, 'settingDefaults' => $settings_defaults ); } $saved_fields = Ninja_Forms()->form()->get_fields( array( 'saved' => 1) ); foreach( $saved_fields as $saved_field ){ $settings = $saved_field->get_settings(); unset( $settings['cellcid'] ); $id = $saved_field->get_id(); $type = $settings[ 'type' ]; $label = $settings[ 'label' ]; $field_type_settings[ $id ] = $field_type_settings[ $type ]; $field_type_settings[ $id ][ 'id' ] = $id; $field_type_settings[ $id ][ 'type' ] = $type; $field_type_settings[ $id ][ 'nicename' ] = $label; $field_type_settings[ $id ][ 'section' ] = 'saved'; $defaults = $field_type_settings[ $id ][ 'settingDefaults' ]; $defaults = array_merge( $defaults, $settings ); $defaults[ 'saved' ] = TRUE; $field_type_settings[ $id ][ 'settingDefaults' ] = $defaults; } ?> actions as $action ){ $name = $action->get_name(); $settings = $action->get_settings(); $groups = Ninja_Forms::config( 'SettingsGroups' ); $settings_groups = $this->_group_settings( $settings, $groups ); $master_settings_list = array_merge( $master_settings_list, $settings ); $action_type_settings[ $name ] = array( 'id' => $name, 'section' => $action->get_section(), 'nicename' => $action->get_nicename(), 'image' => $action->get_image(), 'settingGroups' => $settings_groups, 'settingDefaults' => $this->_setting_defaults( $master_settings_list ) ); } $external_actions = $this->_fetch_action_feed(); $u_id = get_option( 'nf_aff', false ); if ( !$u_id ) $u_id = apply_filters( 'ninja_forms_affiliate_id', false ); foreach( $external_actions as $action){ if( ! isset( $action[ 'name' ] ) || ! $action[ 'name' ] ) continue; $group = ( isset( $action['group'] ) ) ? $action['group'] : ''; $name = $action[ 'name' ]; $nicename = ( isset( $action[ 'nicename' ] ) ) ? $action[ 'nicename' ] : ''; $image = ( isset( $action[ 'image' ] ) ) ? $action[ 'image' ] : ''; $link = ( isset( $action[ 'link' ] ) ) ? $action[ 'link' ] : ''; $modal_content = ( isset( $action[ 'modal_content' ] ) ) ? $action[ 'modal_content' ] : ''; if ( $u_id ) { $last_slash = strripos( $link, '/' ); $link = substr( $link, 0, $last_slash ); $link = urlencode( $link ); $link = 'http://www.shareasale.com/r.cfm?u=' . $u_id . '&b=812237&m=63061&afftrack=&urllink=' . $link; } if( isset( $action_type_settings[ $name ] ) ) continue; $action_type_settings[ $name ] = array( 'id' => $name, 'group' => $group, 'section' => 'available', 'nicename' => $nicename, 'image' => $image, 'link' => $link, 'modal_content' => $modal_content, 'settingGroups' => array(), 'settingDefaults' => array() ); } /** * Remove some action types if Builder Dev Mode is not enabled. */ if( 1 != Ninja_Forms()->get_setting('builder_dev_mode') ) { /** Remove the WP Hook (custom) action. */ unset( $action_type_settings[ 'custom' ] ); } $action_type_settings = apply_filters( 'ninja_forms_action_type_settings', $action_type_settings ); ?> $form_setting_group ){ if( ! isset( $form_settings[ $group_name ] ) ) $form_settings[ $group_name ] = array(); $form_settings[ $group_name ] = apply_filters( 'ninja_forms_localize_form_' . $group_name . '_settings', $form_settings[ $group_name ] ); } $groups = Ninja_Forms::config( 'SettingsGroups' ); $master_settings = array(); foreach( $form_settings_types as $id => $type ) { if( ! isset( $form_settings[ $id ] ) ) $form_settings[ $id ] = ''; $unique_settings = $this->_unique_settings( $form_settings[ $id ] ); $master_settings = array_merge( $master_settings, $unique_settings ); $form_settings_types[ $id ]['settingGroups'] = $this->_group_settings($form_settings[ $id ], $groups); $form_settings_types[ $id ]['settingDefaults'] = $this->_setting_defaults($unique_settings); } ?> array( 'id' => 'fields', 'label' => esc_html__( 'Fields', 'ninja-forms' ) ) ); foreach( Ninja_Forms()->merge_tags as $key => $group ){ /* * If the merge tag group doesn't have a title, don't localise it. * * This convention is used to allow merge tags to continue to function, * even though they can't be added to new forms. */ $title = $group->get_title(); if ( empty( $title ) ) continue; $merge_tags[ $key ] = array( 'id' => $group->get_id(), 'label' => $group->get_title(), 'tags' => array_values( $group->get_merge_tags() ), 'default_group' => $group->is_default_group() ); } ?> $group ) { if ( empty( $group[ 'settings' ] ) ) { unset( $groups[ $id ] ); } } unset( $groups[ "" ] ); usort($groups, array( $this, 'setting_group_priority' ) ); return $groups; } protected function _unique_settings( $settings ) { $unique_settings = array(); if( ! is_array( $settings ) ) return $unique_settings; foreach( $settings as $setting ){ if( isset( $setting[ 'type' ] ) && 'fieldset' == $setting[ 'type' ] ){ $unique_settings = array_merge( $unique_settings, $this->_unique_settings( $setting[ 'settings' ] ) ); } else { $name = $setting[ 'name' ]; $unique_settings[ $name ] = $setting; } } return $unique_settings; } protected function _setting_defaults( $settings ) { $setting_defaults = array(); foreach( $settings as $setting ){ $name = ( isset( $setting[ 'name' ] ) ) ? $setting[ 'name' ] : ''; $default = ( isset( $setting[ 'value' ] ) ) ? $setting[ 'value' ] : null; $setting_defaults[ $name ] = $default; } return $setting_defaults; } protected function _fetch_action_feed() { return Ninja_Forms::config( 'AvailableActions' ); } protected function setting_group_priority( $a, $b ) { $priority[ 0 ] = ( isset( $a[ 'priority' ] ) ) ? $a[ 'priority' ] : 500; $priority[ 1 ] = ( isset( $b[ 'priority' ] ) ) ? $b[ 'priority' ] : 500; return $priority[ 0 ] - $priority[ 1 ]; } public function get_capability() { return apply_filters( 'ninja_forms_admin_parent_menu_capabilities', $this->capability ); } } includes/Admin/Menus/SystemStatus.php000064400000021475152331132460013703 0ustar00capability ); } public function display() { /** @global wpdb $wpdb */ global $wpdb; wp_enqueue_style( 'nf-admin-system-status', Ninja_Forms::$url . 'assets/css/admin-system-status.css' ); wp_enqueue_script( 'nf-admin-system-status-script', Ninja_Forms::$url . 'assets/js/admin-system-status.js', array( 'jquery' ) ); wp_enqueue_script( 'jBox', Ninja_Forms::$url . 'assets/js/lib/jBox.min.js', array( 'jquery' ) ); wp_enqueue_style( 'jBox', Ninja_Forms::$url . 'assets/css/jBox.css' ); wp_enqueue_style( 'nf-font-awesome', Ninja_Forms::$url . 'assets/css/font-awesome.min.css' ); //PHP locale $locale = localeconv(); if ( is_multisite() ) { $multisite = esc_html__( 'Yes', 'ninja-forms' ); } else { $multisite = esc_html__( 'No', 'ninja-forms' ); } //TODO: Possible refactor foreach( $locale as $key => $val ){ if( is_string( $val ) ){ $data = $key . ': ' . $val . '
    '; } } //TODO: Ask if this check is need //if ( function_exists( 'phpversion' ) ) echo esc_html( phpversion() ); //WP_DEBUG if ( defined('WP_DEBUG') && WP_DEBUG ){ $debug = esc_html__( 'Yes', 'ninja-forms' ); } else { $debug = esc_html__( 'No', 'ninja-forms' ); } //WPLANG if ( defined( 'WPLANG' ) && WPLANG ) { $lang = WPLANG; } else { $lang = esc_html__( 'Default', 'ninja-forms' ); } //TODO: Ask if this long list of ini_get checks are need? // if( function_exists( 'ini_get' ) ){ // $get_ini = size_format( ini_get('post_max_size') ); // } //SUHOSIN if ( extension_loaded( 'suhosin' ) ) { $suhosin = esc_html__( 'Yes', 'ninja-forms' ); } else { $suhosin = esc_html__( 'No', 'ninja-forms' ); } //max_input_nesting_level check for 5.2.2 if ( version_compare( PHP_VERSION, '5.2.2', '>' ) ) { $max_input_nesting_level = ini_get( 'max_input_nesting_level' ); } else { $max_input_nesting_level = esc_html__( 'Unknown', 'ninja-forms' ); } //max_input_vars check for 5.3.8 if ( version_compare( PHP_VERSION, '5.3.8', '>' ) ) { $max_input_vars = ini_get( 'max_input_vars' ); } else { $max_input_vars = esc_html__( 'Unknown', 'ninja-forms' ); } //Time Zone Check //TODO: May need refactored $default_timezone = get_option( 'timezone_string' ); //Check for active plugins $active_plugins = (array) get_option( 'active_plugins', array() ); if ( is_multisite() ) { $active_plugins = array_merge( $active_plugins, get_site_option( 'active_sitewide_plugins', array() ) ); } $all_plugins = array(); foreach ( $active_plugins as $plugin ) { $plugin_data = @get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin ); $dirname = dirname( $plugin ); $version_string = ''; if ( ! empty( $plugin_data['Name'] ) ) { // link the plugin name to the plugin url if available $plugin_name = $plugin_data['Name']; if ( ! empty( $plugin_data['PluginURI'] ) ) { $plugin_name = '' . $plugin_name . ''; } $all_plugins[] = $plugin_name . ' ' . esc_html__( 'by', 'ninja-forms' ) . ' ' . $plugin_data['Author'] . ' ' . esc_html__( 'version', 'ninja-forms' ) . ' ' . $plugin_data['Version'] . $version_string; } } if ( sizeof( $all_plugins ) == 0 ) { $site_wide_plugins = '-'; } else { $site_wide_plugins = implode( ',
    ', $all_plugins ); } $server_ip = ''; if( array_key_exists( 'SERVER_ADDR', $_SERVER ) ) $server_ip = $_SERVER[ 'SERVER_ADDR' ]; elseif( array_key_exists( 'LOCAL_ADDR', $_SERVER ) ) $server_ip = $_SERVER[ 'LOCAL_ADDR' ]; $host_name = gethostbyaddr( $server_ip ); $wp_version = get_bloginfo('version'); $wp_compatible = ( version_compare( $wp_version, Ninja_Forms::WP_MIN_VERSION ) >= 0 ) ? esc_html__( 'Supported', 'ninja-forms' ) : esc_html__( 'Not Supported', 'ninja-forms' ); /* * Error log */ $error_log = array(); $log = $wpdb->get_results( 'SELECT * FROM `' . $wpdb->prefix . 'nf3_objects` WHERE type = "log" ORDER BY created_at DESC LIMIT 10', ARRAY_A ); if ( is_array( $log ) && 0 < count( $log ) ) { foreach ( $log as $error ) { $error_object = Ninja_Forms()->form()->object( $error[ 'id' ] )->get(); // Make sure we don't have a duplicate message if ( false === in_array( $error_object->get_setting( 'message' ) ,$error_log ) ) { $error_log[] = $error_object->get_setting( 'message' ); } } } else { $error_log[] = esc_html__( 'None Logged', 'ninja-forms' ); } $dev_mode = Ninja_Forms()->get_setting('builder_dev_mode' ); $sql_version_variable = $wpdb->get_row("show variables like 'version'"); if($sql_version_variable && property_exists($sql_version_variable, 'Value')){ $sql_version_variable_value = $sql_version_variable->Value; } else { $sql_version_variable_value = 'unknown'; } //Output array $environment = array( esc_html__( 'Home URL','ninja-forms' ) => home_url(), esc_html__( 'Site URL','ninja-forms' ) => site_url(), esc_html__( 'Ninja Forms Version','ninja-forms' ) => esc_html( Ninja_Forms::VERSION ), esc_html__( 'Ninja Forms DB Version', 'ninja-forms' ) => get_option( 'ninja_forms_db_version' ), esc_html__( 'Ninja Forms Gatekeeper', 'ninja-forms' ) => WPN_Helper::get_zuul(), esc_html__( 'Ninja Forms "Dev Mode"', 'ninja-forms' ) => ( $dev_mode ) ? esc_html__('Enabled') : esc_html__('Disabled'), esc_html__( 'WP Version','ninja-forms' ) => $wp_version . ' - ' . $wp_compatible, esc_html__( 'WP Multisite Enabled','ninja-forms' ) => $multisite, esc_html__( 'Web Server Info','ninja-forms' ) => esc_html( $_SERVER['SERVER_SOFTWARE'] ), esc_html__( 'PHP Version','ninja-forms' ) => esc_html( phpversion() ), //TODO: Possibly Refactor with Ninja forms global $_db? esc_html__( 'MySQL Version','ninja-forms' ) => $wpdb->db_version(), esc_html__( 'SQL Version Variable','ninja-forms' ) => $sql_version_variable_value, esc_html__( 'PHP Locale','ninja-forms' ) => $data, //TODO: Possibly move the ninja_forms_letters_to_numbers function over. esc_html__( 'WP Memory Limit','ninja-forms' ) => WP_MEMORY_LIMIT, esc_html__( 'WP Debug Mode', 'ninja-forms' ) => $debug, esc_html__( 'WP Language', 'ninja-forms' ) => $lang, esc_html__( 'WP Max Upload Size','ninja-forms' ) => size_format( wp_max_upload_size() ), esc_html__( 'PHP Post Max Size','ninja-forms' ) => ini_get( 'post_max_size' ), esc_html__( 'Max Input Nesting Level','ninja-forms' ) => $max_input_nesting_level, esc_html__( 'PHP Time Limit','ninja-forms' ) => ini_get('max_execution_time'), esc_html__( 'PHP Max Input Vars','ninja-forms' ) => $max_input_vars, esc_html__( 'SUHOSIN Installed','ninja-forms' ) => $suhosin, esc_html__( 'Server IP Address', 'ninja-forms' ) => $server_ip, esc_html__( 'Host Name', 'ninja-forms' ) => $host_name, esc_html__( 'SMTP','ninja-forms' ) => ini_get('SMTP'), esc_html__( 'smtp_port','ninja-forms' ) => ini_get('smtp_port'), esc_html__( 'Default Timezone','ninja-forms' ) => $default_timezone, ); Ninja_Forms::template( 'admin-menu-system-status.html.php', compact( 'environment', 'site_wide_plugins', 'error_log' ) ); } } // End Class NF_Admin_SystemStatus includes/Admin/Menus/AddNew.php000064400000002122152331132460012341 0ustar00parent_slug, $this->menu_slug ); } } public function get_page_title() { return esc_html__( 'Add New', 'ninja-forms' ); } public function get_capability() { return apply_filters( 'ninja_forms_admin_add_new_capabilities', $this->capability ); } public function display() { // This section intentionally left blank. } } // End Class NF_Admin_Settings includes/Admin/Menus/Submissions.php000064400000044367152331132460013536 0ustar00parent_slug, $this->menu_slug ); // if( 'edit.php' == $pagenow && 'nf_sub' == $_GET[ 'post_type' ] ) { // wp_safe_redirect( admin_url( 'admin.php?page=ninja-forms' ), 301 ); // exit; // } } } /** * Change Views * WordPress hook that modifies the links on our submissions CPT to allow * users to switch between completed and trashed submissions. * @since 3.2.17 * * @param $views The views that are associated with this CPT. * $views[ 'view' ] * @return array Returns modified views to allow our users access to the trash. */ public function change_views( $views ) { // Remove our unused views. unset( $views[ 'mine' ] ); unset( $views[ 'publish' ] ); // If the Form ID is not empty and IS a number... if( ! empty( $_GET[ 'form_id' ] ) && ctype_digit( $_GET[ 'form_id' ] ) ) { // ...populate the rest of the query string. $form_id = '&form_id=' . absint($_GET[ 'form_id' ]) . '&nf_form_filter&paged=1'; } else { // ...otherwise send in an empty string. $form_id = ''; } // Build our new views. $views[ 'all' ] = '' . esc_html__( 'Completed', 'ninja-forms' ) . ''; $views[ 'trash' ] = '' . esc_html__( 'Trashed', 'ninja-forms' ) . ''; // Checks to make sure we have a post status. if( ! empty( $_GET[ 'post_status' ] ) ) { // Depending on the domain set the value to plain text. if ( 'all' == $_GET[ 'post_status' ] ) { $views[ 'all' ] = esc_html__( 'Completed', 'ninja-forms' ); } else if ( 'trash' == $_GET[ 'post_status' ] ) { $views[ 'trash' ] = esc_html__( 'Trashed', 'ninja-forms' ); } } return $views; } public function get_page_title() { return esc_html__( 'Submissions', 'ninja-forms' ); } /** * Display */ public function display() { // This section intentionally left blank. } /** * enqueue scripts here */ public function enqueue_scripts() { // let's check and make sure we're on the submissions page. $test = strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ); if( isset( $_GET[ 'post_type' ] ) && 'nf_sub' == $_GET[ 'post_type' ] && -1 < strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) ) { wp_enqueue_style( 'nf-admin-settings', Ninja_Forms::$url . 'assets/css/admin-settings.css' ); wp_register_script( 'ninja_forms_admin_submissions', Ninja_Forms::$url . 'assets/js/admin-submissions.js', array( 'jquery' ), false, true ); wp_enqueue_script( 'ninja_forms_admin_submissions' ); } } /** * Change Columns * * @return array */ public function change_columns() { // if the form_id isset and ID a number $form_id = ( isset( $_GET['form_id'] ) && ctype_digit( $_GET[ 'form_id' ] ) ) ? absint($_GET['form_id']) : FALSE; if( ! $form_id ) return array(); static $cols; if( $cols ) return $cols; $cols = array( 'cb' => '', 'seq_num' => esc_html__( '#', 'ninja-forms' ), ); $fields = Ninja_Forms()->form( $form_id )->get_fields(); $hidden_field_types = apply_filters( 'ninja_forms_sub_hidden_field_types', array() ); foreach( $fields as $field ){ if ( is_null( $field ) ) continue; if( in_array( $field->get_setting( 'type' ), $hidden_field_types ) ) continue; if ( $field->get_setting( 'admin_label' ) ) { $cols[ 'field_' . $field->get_id() ] = $field->get_setting( 'admin_label' ); } else { $cols[ 'field_' . $field->get_id() ] = $field->get_setting( 'label' ); } } $cols[ 'sub_date' ] = esc_html__( 'Date', 'ninja-forms' ); return $cols; } /** * Custom Columns * * @param $column * @param $sub_id */ public function custom_columns( $column, $sub_id ) { global $post_type; if ( 'nf_sub' !== $post_type ) return false; $sub = Ninja_Forms()->form()->get_sub( $sub_id ); switch( $column ){ case 'seq_num': echo $this->custom_columns_seq_num( $sub ); break; case 'sub_date': echo $this->custom_columns_sub_date( $sub ); break; default: echo $this->custom_columns_field( $sub, $column ); } } /** * Remove Filter: Show All Dates * * @param $months * @return array */ public function remove_filter_show_all_dates( $months ) { if( ! isset( $_GET[ 'post_type' ] ) || 'nf_sub' != $_GET[ 'post_type' ] ) return $months; // Returning an empty array should hide the dropdown. return array(); } /** * Add Filters * * @return bool */ public function add_filters() { global $typenow; // Bail if we aren't in our submission custom post type. if ( $typenow != 'nf_sub' ) return false; $forms = Ninja_Forms()->form()->get_forms(); $form_options = array(); foreach( $forms as $form ){ $form_options[ $form->get_id() ] = $form->get_setting( 'title' ); } $form_options = apply_filters( 'ninja_forms_submission_filter_form_options', $form_options ); asort($form_options); // make sure form_id isset and is a number if( isset( $_GET[ 'form_id' ] ) && ctype_digit( $_GET[ 'form_id' ] ) ) { $form_selected = intval($_GET[ 'form_id' ]); } else { $form_selected = 0; } if( isset( $_GET[ 'begin_date' ] ) ) { // check for bad characters(possible xss vulnerability) $beg_date_sep = preg_replace('/[0-9]+/', '', WPN_Helper::sanitize_text_field($_GET[ 'begin_date' ])); if ( 1 !== count( array_unique( str_split( $beg_date_sep ) ) ) ) {// We got bad data. $begin_date = ''; } else { $begin_date = WPN_Helper::sanitize_text_field($_GET['begin_date']); } } else { $begin_date = ''; } if( isset( $_GET[ 'end_date' ] ) ) { // check for bad characters(possible xss vulnerability) $end_date_sep = preg_replace('/[0-9]+/', '', WPN_Helper::sanitize_text_field($_GET[ 'end_date' ])); if ( 1 !== count( array_unique( str_split( $end_date_sep ) ) ) ) {// We got bad data. $end_date = ''; } else { $end_date = WPN_Helper::sanitize_text_field($_GET['end_date']); } } else { $end_date = ''; } Ninja_Forms::template( 'admin-menu-subs-filter.html.php', compact( 'form_options', 'form_selected', 'begin_date', 'end_date' ) ); wp_enqueue_script('jquery-ui-datepicker'); wp_enqueue_style( 'jquery-ui-datepicker', Ninja_Forms::$url .'lib/Legacy/jquery-ui-fresh.min.css' ); } public function table_filter( $query ) { global $pagenow; if( $pagenow != 'edit.php' || ! is_admin() || ! isset( $query->query['post_type'] ) || 'nf_sub' != $query->query['post_type'] || ! is_main_query() ) return; $vars = &$query->query_vars; // make sure form_id is not empty and is a number $form_id = ( ! empty( $_GET['form_id'] ) && ctype_digit( $_GET[ 'form_id' ] ) ) ? intval($_GET['form_id']) : 0; $vars = $this->table_filter_by_form( $vars, $form_id ); $vars = $this->table_filter_by_date( $vars ); $vars = apply_filters( 'ninja_forms_sub_table_qv', $vars, $form_id ); } /** * @updated 3.3.21.2 */ public function search( $pieces ) { global $typenow; // filter to select search query if ( isset ( $_GET['s'] ) && $typenow == 'nf_sub' && is_search() && is_admin() ) { global $wpdb; $keywords = explode(' ', get_query_var('s')); $query = ""; foreach ($keywords as $word) { $wpdb->escape_by_ref( $word ); $query .= " (mypm1.meta_value LIKE '%{$word}%') OR "; } if (!empty($query)) { // Escape place holders for the where clause. $pieces[ 'where' ] = $wpdb->remove_placeholder_escape( $pieces[ 'where' ] ); // add to where clause $pieces[ 'where' ] = str_replace("((({$wpdb->posts}.post_title LIKE '%", "({$query}(({$wpdb->posts}.post_title LIKE '%", $pieces[ 'where' ]); $pieces[ 'join' ] = $pieces[ 'join' ] . " INNER JOIN {$wpdb->postmeta} AS mypm1 ON ({$wpdb->posts}.ID = mypm1.post_id)"; } } return ( $pieces ); } public function remove_bulk_edit( $actions ) { unset( $actions['edit'] ); return $actions; } public function bulk_admin_footer() { global $post_type; if ( ! is_admin() ) return false; if( $post_type == 'nf_sub' && isset ( $_REQUEST['post_status'] ) && $_REQUEST['post_status'] == 'all' ) { ?> sub(esc_html($_REQUEST['export_single']))->export(); } if ((isset ($_REQUEST['action']) && $_REQUEST['action'] == 'export') || (isset ($_REQUEST['action2']) && $_REQUEST['action2'] == 'export')) { $sub_ids = array(); if (isset($_REQUEST['post'])) { $sub_ids = WPN_Helper::esc_html($_REQUEST['post']); } Ninja_Forms()->form( absint( $_REQUEST['form_id'] ) )->export_subs( $sub_ids ); } if (isset ($_REQUEST['download_file']) && !empty($_REQUEST['download_file'])) { // Open our download all file $filename = esc_html($_REQUEST['download_file']); $upload_dir = wp_upload_dir(); $file_path = trailingslashit($upload_dir['path']) . $filename . '.csv'; if (file_exists($file_path)) { $myfile = file_get_contents($file_path); } else { $redirect = esc_url_raw(remove_query_arg(array('download_file', 'download_all'))); wp_redirect($redirect); die(); } unlink($file_path); $form_name = Ninja_Forms()->form(absint($_REQUEST['form_id']))->get()->get_setting('title'); $form_name = sanitize_title($form_name); $today = date('Y-m-d', current_time('timestamp')); $filename = apply_filters('ninja_forms_download_all_filename', $form_name . '-all-subs-' . $today); header('Content-type: application/csv'); header('Content-Disposition: attachment; filename="' . $filename . '.csv"'); header('Pragma: no-cache'); header('Expires: 0'); echo $myfile; die(); } } public function hide_page_title_action() { // If we are on our the nf_sub post type then.... if( ( isset( $_GET[ 'post_type' ] ) && 'nf_sub' == $_GET[ 'post_type'] ) || 'nf_sub' == get_post_type() ) { // ...then hiding the "Add New" button on the CPT page. echo ''; } } /* * PRIVATE METHODS */ /** * Custom Columns: ID * * @param $sub * @return mixed */ private function custom_columns_seq_num( $sub ) { return $sub->get_seq_num(); } /** * Custom Columns: Submission Date * * @param $sub * @return mixed */ private function custom_columns_sub_date( $sub ) { // Grab the date and time format options $date_format = get_option( 'date_format' ); $time_format = get_option( 'time_format' ); // Get the sub dates using the date and time formats. return $sub->get_sub_date( $date_format . ' ' . $time_format ); } /** * Custom Columns: Field * * @param $sub * @param $column * @return bool */ private function custom_columns_field( $sub, $column ) { if( FALSE === strpos( $column, 'field_' ) ) return FALSE; $field_id = str_replace( 'field_', '', $column ); return $sub->get_field_value( $field_id ); } private function table_filter_by_form( $vars, $form_id ) { if ( ! isset ( $vars['meta_query'] ) ) { $vars['meta_query'] = array( array( 'key' => '_form_id', 'value' => $form_id, 'compare' => '=', ), ); } return $vars; } private function table_filter_by_date( $vars ) { if( empty( $_GET[ 'begin_date' ] ) || empty( $_GET[ 'end_date' ] ) ) return $vars; $begin_date = WPN_Helper::sanitize_text_field($_GET[ 'begin_date' ]); $end_date = WPN_Helper::sanitize_text_field($_GET[ 'end_date' ]); // Include submissions on the end_date. $end_date = date( 'm/d/Y', strtotime( '+1 day', strtotime( $end_date ) ) ); if ( ! isset ( $vars['date_query'] ) ) { $vars['date_query'] = array( 'after' => $begin_date, 'before' => $end_date, 'inclusive' => true, ); } return $vars; } public function get_capability() { return apply_filters( 'ninja_forms_admin_submissions_capabilities', $this->capability ); } } includes/Admin/Menus/Settings.php000064400000032021152331132460013000 0ustar00query( "SHOW TABLES LIKE '{$wpdb->prefix}ninja_forms_fields'")) { unset($settings['advanced']['downgrade']); } return $settings; } public function body_class( $classes ) { // Add class for the builder. if( isset( $_GET['page'] ) && $_GET['page'] == $this->menu_slug ) { $classes = "$classes ninja-forms-settings"; } return $classes; } /** * Function to notify users of CF7 conflict * * Since 3.0 * * @param (array) $notices * @return (array) $notices */ public function ninja_forms_cf7_notice( $notices ) { // If we don't have recaptcha keys, bail. $recaptcha_site_key = Ninja_Forms()->get_settings(); if ( $recaptcha_site_key[ 'recaptcha_site_key' ] === '' ) { return $notices; } // If we can detect Contact Form 7... include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'contact-form-7/wp-contact-form-7.php' ) ) { $notices[ 'cf7' ] = array( 'title' => esc_html__( 'Contact Form 7 is currently activated.', 'ninja-forms' ), 'msg' => sprintf( esc_html__( 'Please be aware that there is an issue with Contact Form 7 that breaks reCAPTCHA in other plugins.%sIf you need to use reCAPTCHA on any of your Ninja Forms, you will need to disable Contact Form 7.', 'ninja-forms' ), '
    ' ), 'int' => 0 ); } return $notices; } public function get_page_title() { return esc_html__( 'Settings', 'ninja-forms' ); } public function get_capability() { return apply_filters( 'ninja_forms_admin_settings_capabilities', $this->capability ); } public function display() { $tabs = apply_filters( 'ninja_forms_settings_tabs', array( 'settings' => esc_html__( 'Settings', 'ninja-forms' ), 'licenses' => esc_html__( 'Licenses', 'ninja-forms' ) ) ); $tab_keys = array_keys( $tabs ); $active_tab = ( isset( $_GET[ 'tab' ] ) ) ? WPN_Helper::sanitize_text_field($_GET[ 'tab' ]) : reset( $tab_keys ); wp_enqueue_style( 'nf-admin-settings', Ninja_Forms::$url . 'assets/css/admin-settings.css' ); $groups = Ninja_Forms()->config( 'PluginSettingsGroups' ); $grouped_settings = $this->get_settings(); $save_button_text = esc_html__( 'Save Settings', 'ninja-forms' ); $setting_defaults = Ninja_Forms()->get_settings(); $errors = array(); foreach( $grouped_settings as $group => $settings ){ foreach( $settings as $id => $setting ){ $value = ( isset( $setting_defaults[ $id ] ) ) ? $setting_defaults[$id] : ''; $grouped_settings[$group][$id]['id'] = $this->prefix( $grouped_settings[$group][$id]['id'] ); $grouped_settings[$group][$id]['value'] = $value; $grouped_settings[$group][$id] = apply_filters( 'ninja_forms_check_setting_' . $id, $grouped_settings[$group][$id] ); if( ! isset( $grouped_settings[$group][$id][ 'errors' ] ) || ! $grouped_settings[$group][$id][ 'errors' ] ) continue; if( ! is_array( $grouped_settings[$group][$id][ 'errors' ] ) ) $grouped_settings[$group][$id][ 'errors' ] = array( $grouped_settings[$group][$id][ 'errors' ] ); foreach( $grouped_settings[$group][$id][ 'errors' ] as $old_key => $error ){ $new_key = $grouped_settings[$group][$id][ 'id' ] . "[" . $old_key . "]"; $errors[ $new_key ] = $error; $grouped_settings[$group][$id][ 'errors'][ $new_key ] = $error; unset( $grouped_settings[$group][$id][ 'errors' ][ $old_key ] ); } } } $grouped_settings[ 'general' ][ 'version' ][ 'value' ] = Ninja_Forms::VERSION; $saved_fields = Ninja_Forms()->form()->get_fields( array( 'saved' => 1 ) ); foreach( $saved_fields as $saved_field ){ $saved_field_id = $saved_field->get_id(); $grouped_settings[ 'saved_fields'][] = array( 'id' => '', 'type' => 'html', 'html' => '' . esc_html__( 'Delete', 'ninja-forms' ) . '', 'label' => $saved_field->get_setting( 'label' ), ); } $forms = Ninja_Forms()->form()->get_forms(); $form_options = array(); foreach( $forms as $form ){ $form_options[] = array( 'id' => $form->get_id(), 'title' => $form->get_setting( 'title' ) ); } $form_options = apply_filters( 'ninja_forms_submission_filter_form_options', $form_options ); asort($form_options); if ( get_option( 'ninja_forms_allow_tracking' ) && '1' == get_option( 'ninja_forms_allow_tracking' ) ) { $allow_tel = 1; } else { $allow_tel = 0; } wp_enqueue_script( 'jBox', Ninja_Forms::$url . 'assets/js/lib/jBox.min.js', array( 'jquery' ) ); wp_enqueue_style( 'nf-combobox', Ninja_Forms::$url . 'assets/css/combobox.css' ); wp_enqueue_style( 'jBox', Ninja_Forms::$url . 'assets/css/jBox.css' ); wp_register_script( 'ninja_forms_admin_menu_settings', Ninja_Forms::$url . 'assets/js/admin-settings.js', array( 'jquery' ), FALSE, TRUE ); /** * This wp_localize_script call should eventually be removed. * * TODO: Remove this function call when we've replaced references to nf_settings in our JS with nfAdmin. */ wp_localize_script( 'ninja_forms_admin_menu_settings', 'nf_settings', array( 'ajax_url' => admin_url( 'admin-ajax.php' ), 'forms' => $form_options, 'nf_nuke_title' => esc_html__( 'Remove ALL Ninja Forms data and uninstall?', 'ninja-forms' ), 'nonce' => wp_create_nonce( "ninja_forms_settings_nonce" ), 'batchNonce' => wp_create_nonce( 'ninja_forms_batch_nonce' ), 'i18n' => array( 'downgradeMessage' => esc_html__( 'Are you sure you want to downgrade?', 'ninja-forms' ), 'downgradeWarningMessage' => esc_html__( 'You WILL lose any forms or submissions created on this version of Ninja Forms.', 'ninja-forms' ), 'downgradeConfirmMessage' => esc_html__( 'Type ', 'ninja-forms' ) . '' . 'DOWNGRADE' . "" . esc_html__( ' to confirm.', 'ninja-forms' ), 'downgradeButtonPrimary' => esc_html__( 'Downgrade', 'ninja-forms'), 'downgradeButtonSecondary' => esc_html__( 'Cancel', 'ninja-forms' ), 'trashExpiredSubsMessage' => esc_html__( 'Are you sure you want to trash all expired submissions?', 'ninja-forms' ), 'trashExpiredSubsButtonPrimary' => esc_html__( 'Trash', 'ninja-forms' ), 'trashExpiredSubsButtonSecondary' => esc_html__( 'Cancel', 'ninja-forms' ), ), 'allow_telemetry' => $allow_tel, )); /** * Duplicating the localization above with an nfAdmin variable for consistency. * * Eventually, we should remove all references to nf_settings, which isn't very descriptive or specific with nfAdmin instead. * * TODO: Replace references to nf_settings object in admin JS files with nfAdmin. */ wp_localize_script( 'ninja_forms_admin_menu_settings', 'nfAdmin', array( 'ajax_url' => admin_url( 'admin-ajax.php' ), 'forms' => $form_options, 'nf_nuke_title' => esc_html__( 'Remove ALL Ninja Forms data and uninstall?', 'ninja-forms' ), 'nonce' => wp_create_nonce( "ninja_forms_settings_nonce" ), 'batchNonce' => wp_create_nonce( 'ninja_forms_batch_nonce' ), 'i18n' => array( 'downgradeMessage' => esc_html__( 'Are you sure you want to downgrade?', 'ninja-forms' ), 'downgradeWarningMessage' => esc_html__( 'You WILL lose any forms or submissions created on this version of Ninja Forms.', 'ninja-forms' ), 'downgradeConfirmMessage' => esc_html__( 'Type ', 'ninja-forms' ) . '' . 'DOWNGRADE' . "" . esc_html__( ' to confirm.', 'ninja-forms' ), 'downgradeButtonPrimary' => esc_html__( 'Downgrade', 'ninja-forms'), 'downgradeButtonSecondary' => esc_html__( 'Cancel', 'ninja-forms' ), 'trashExpiredSubsMessage' => esc_html__( 'Are you sure you want to trash all expired submissions?', 'ninja-forms' ), 'trashExpiredSubsButtonPrimary' => esc_html__( 'Trash', 'ninja-forms' ), 'trashExpiredSubsButtonSecondary' => esc_html__( 'Cancel', 'ninja-forms' ), ), 'allow_telemetry' => $allow_tel, )); wp_enqueue_script( 'nf-ninja-modal', Ninja_Forms::$url . 'assets/js/lib/ninjaModal.js' ); wp_enqueue_script( 'nf-ninja-batch-processor', Ninja_Forms::$url . 'assets/js/lib/batch-processor.js' ); wp_enqueue_style( 'nf-font-awesome', Ninja_Forms::$url . 'assets/css/font-awesome.min.css' ); wp_enqueue_script( 'ninja_forms_admin_menu_settings' ); Ninja_Forms::template( 'admin-menu-settings.html.php', compact( 'tabs', 'active_tab', 'groups', 'grouped_settings', 'save_button_text', 'errors' ) ); } public function update_settings() { if( ! wp_verify_nonce( $_POST['update_ninja_forms_settings_nonce'], 'ninja_forms_settings_nonce' ) ) { wp_die( esc_html__( 'Your request could not be verified. Please try again.', 'ninja-forms' ) ); } if( ! current_user_can( apply_filters( 'ninja_forms_admin_settings_capabilities', 'manage_options' ) ) ) return; if( ! isset( $_POST[ $this->_prefix ] ) ) return; $settings = WPN_Helper::sanitize_text_field($_POST[ 'ninja_forms' ]); if( isset( $settings[ 'currency' ] ) ){ $currency = sanitize_text_field( $settings[ 'currency' ] ); $currency_symbols = Ninja_Forms::config( 'CurrencySymbol' ); $settings[ 'currency_symbol' ] = ( isset( $currency_symbols[ $currency ] ) ) ? $currency_symbols[ $currency ] : ''; } if(isset($settings['builder_dev_mode'])){ $builder_dev_mode = sanitize_text_field( $settings['builder_dev_mode'] ); $has_builder_dev_mode_changed = ($builder_dev_mode !== Ninja_Forms()->get_setting('builder_dev_mode')); if($builder_dev_mode && $has_builder_dev_mode_changed){ Ninja_Forms()->dispatcher()->send( 'builder_dev_mode', $builder_dev_mode ); } } if(isset($settings['opinionated_styles'])){ if('' == $settings['opinionated_styles']){ Ninja_Forms()->dispatcher()->send( 'opinionated_styles_disabled', 'disabled' ); } } foreach( $settings as $id => $value ){ $value = sanitize_text_field( $value ); $value = apply_filters( 'ninja_forms_update_setting_' . $id, $value ); Ninja_Forms()->update_setting( $id, $value ); do_action( 'ninja_forms_save_setting_' . $id, $value ); } } private function get_settings() { return apply_filters( 'ninja_forms_plugin_settings', array( 'general' => Ninja_Forms()->config( 'PluginSettingsGeneral' ), 'recaptcha' => Ninja_Forms()->config( 'PluginSettingsReCaptcha' ), 'advanced' => Ninja_Forms()->config( 'PluginSettingsAdvanced' ), )); } private function prefix( $value ){ return "{$this->_prefix}[$value]"; } } // End Class NF_Admin_Settings includes/Admin/Menus/ImportExport.php000064400000043170152331132460013663 0ustar00parent_slug, $this->menu_slug ); if( 'admin.php' == $pagenow && 'nf-import-export' == $_GET[ 'page' ] ) { wp_safe_redirect( admin_url( 'admin.php?page=ninja-forms' ), 301 ); exit; } } } public function get_page_title() { return esc_html__( 'Import / Export', 'ninja-forms' ); } public function import_form_listener() { $capability = apply_filters( 'ninja_forms_admin_import_export_capabilities', 'manage_options' ); $capability = apply_filters( 'ninja_forms_admin_import_form_capabilities', $capability ); if( ! current_user_can( $capability ) ) return; if( ! isset( $_REQUEST['nf_import_security'] ) || ! wp_verify_nonce( $_REQUEST[ 'nf_import_security' ], 'ninja_forms_import_form_nonce' ) ) return; if( ! isset( $_FILES[ 'nf_import_form' ] ) || ! $_FILES[ 'nf_import_form' ] ) return; $this->upload_error_check( $_FILES[ 'nf_import_form' ] ); $data = file_get_contents( $_FILES[ 'nf_import_form' ][ 'tmp_name' ] ); // Check to see if the user turned off UTF-8 encoding $decode_utf8 = TRUE; if( isset( $_REQUEST[ 'nf_import_form_turn_off_encoding' ] ) && $_REQUEST[ 'nf_import_form_turn_off_encoding' ] ) { $decode_utf8 = FALSE; } $import = Ninja_Forms()->form()->import_form( $data, $decode_utf8 ); if( ! $import ){ $err_msg = ''; if ( function_exists( 'json_last_error_msg' ) ) { $err_msg = json_last_error_msg(); } wp_die( esc_html__( 'There uploaded file is not a valid format.', 'ninja-forms' ) . ' ' . $err_msg, esc_html__( 'Invalid Form Upload.', 'ninja-forms' ) ); } } public function export_form_listener() { $capability = apply_filters( 'ninja_forms_admin_import_export_capabilities', 'manage_options' ); $capability = apply_filters( 'ninja_forms_admin_export_form_capabilities', $capability ); if( ! current_user_can( $capability ) ) return; if( isset( $_REQUEST[ 'nf_export_form' ] ) && $_REQUEST[ 'nf_export_form' ] ){ $form_id = absint($_REQUEST[ 'nf_export_form' ]); Ninja_Forms()->form( $form_id )->export_form(); } } public function import_fields_listener() { if( ! current_user_can( apply_filters( 'ninja_forms_admin_import_fields_capabilities', 'manage_options' ) ) ) return; if( ! isset( $_FILES[ 'nf_import_fields' ] ) || ! $_FILES[ 'nf_import_fields' ] ) return; $this->upload_error_check( $_FILES[ 'nf_import_fields' ] ); $import = file_get_contents( $_FILES[ 'nf_import_fields' ][ 'tmp_name' ] ); $fields = unserialize( $import ); foreach( $fields as $settings ){ Ninja_Forms()->form()->import_field( $settings ); } } public function export_fields_listener() { if( ! current_user_can( apply_filters( 'ninja_forms_admin_export_fields_capabilities', 'manage_options' ) ) ) return; if( isset( $_REQUEST[ 'nf_export_fields' ] ) && $_REQUEST[ 'nf_export_fields' ] ){ $field_ids = (array) $_REQUEST[ 'nf_export_fields' ]; $field_ids = array_map('esc_attr', $field_ids); $fields = array(); foreach( $field_ids as $field_id ){ $field = Ninja_Forms()->form()->field( $field_id )->get(); $fields[] = $field->get_settings(); } header("Content-type: application/csv"); header("Content-Disposition: attachment; filename=favorites-" . time() . ".nff"); header("Pragma: no-cache"); header("Expires: 0"); echo serialize( $fields ); die(); } } public function display() { $tabs = apply_filters( 'ninja_forms_import_export_tabs', array( 'forms' => esc_html__( 'Form', 'ninja-forms' ), 'favorite_fields' => esc_html__( 'Favorite Fields', 'ninja-forms' ) ) ); $tab_keys = array_keys( $tabs ); $active_tab = ( isset( $_GET[ 'tab' ] ) ) ? WPN_Helper::sanitize_text_field($_GET[ 'tab' ]) : reset( $tab_keys ); $this->add_meta_boxes(); wp_enqueue_script('postbox'); wp_enqueue_script('jquery-ui-draggable'); wp_enqueue_style( 'nf-admin-settings', Ninja_Forms::$url . 'assets/css/admin-settings.css' ); wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); wp_register_script( 'ninja_forms_admin_import_export', Ninja_Forms::$url . 'assets/js/admin-import-export.js', array( 'jquery' ), FALSE, TRUE ); wp_enqueue_script( 'ninja_forms_admin_import_export' ); wp_localize_script( 'ninja_forms_admin_import_export', 'nfAdmin', array( 'ajax_url' => admin_url( 'admin-ajax.php' ), 'batchNonce' => wp_create_nonce( 'ninja_forms_batch_nonce' ), 'i18n' => array( 'trashExpiredSubsMessage' => esc_html__( 'Are you sure you want to trash all expired submissions?', 'ninja-forms' ), 'trashExpiredSubsButtonPrimary' => esc_html__( 'Trash', 'ninja-forms' ), 'trashExpiredSubsButtonSecondary' => esc_html__( 'Cancel', 'ninja-forms' ), ), 'builderURL' => admin_url( 'admin.php?page=ninja-forms&form_id=' ), )); wp_enqueue_script( 'jBox', Ninja_Forms::$url . 'assets/js/lib/jBox.min.js', array( 'jquery' ) ); wp_enqueue_style( 'jBox', Ninja_Forms::$url . 'assets/css/jBox.css' ); wp_enqueue_script( 'nf-ninja-modal', Ninja_Forms::$url . 'assets/js/lib/ninjaModal.js', array( 'jquery' ) ); wp_enqueue_script( 'nf-batch-processor', Ninja_Forms::$url . 'assets/js/lib/batch-processor.js', array( 'jquery' ) ); wp_enqueue_style( 'nf-font-awesome', Ninja_Forms::$url . 'assets/css/font-awesome.min.css' ); Ninja_Forms::template( 'admin-menu-import-export.html.php', compact( 'tabs', 'active_tab' ) ); } public function add_meta_boxes() { /* * Forms */ add_meta_box( 'nf_import_export_forms_import', esc_html__( 'Import Forms', 'ninja-forms' ), array( $this, 'template_import_forms' ), 'nf_import_export_forms' ); add_meta_box( 'nf_import_export_forms_export', esc_html__( 'Export Forms', 'ninja-forms' ), array( $this, 'template_export_forms' ), 'nf_import_export_forms' ); /* * FAVORITE FIELDS */ add_meta_box( 'nf_import_export_favorite_fields_import', esc_html__( 'Import Favorite Fields', 'ninja-forms' ), array( $this, 'template_import_favorite_fields' ), 'nf_import_export_favorite_fields' ); add_meta_box( 'nf_import_export_favorite_fields_export', esc_html__( 'Export Favorite Fields', 'ninja-forms' ), array( $this, 'template_export_favorite_fields' ), 'nf_import_export_favorite_fields' ); } public function template_import_forms() { Ninja_Forms::template( 'admin-metabox-import-export-forms-import.html.php' ); } public function template_export_forms() { /** * we're gonna create a new array so that we can select a form in the * export drop down based on a url parameter **/ $formObjs = Ninja_Forms()->form()->get_forms(); $forms = array(); foreach( $formObjs as $form ) { $selected = ''; if( isset( $_REQUEST[ 'exportFormId' ] ) && $form->get_id() == absint($_REQUEST[ 'exportFormId' ]) ) { $selected = 'selected'; } $forms[] = array( 'id' => $form->get_id(), 'title' => $form->get_setting( 'title' ), 'selected' => $selected, ); } Ninja_Forms::template( 'admin-metabox-import-export-forms-export.html.php', compact( 'forms' ) ); } public function template_import_favorite_fields() { Ninja_Forms::template( 'admin-metabox-import-export-favorite-fields-import.html.php' ); } public function template_export_favorite_fields() { $fields = Ninja_Forms()->form()->get_fields( array( 'saved' => 1) ); Ninja_Forms::template( 'admin-metabox-import-export-favorite-fields-export.html.php', compact( 'fields' ) ); } /* |-------------------------------------------------------------------------- | Backwards Compatibility |-------------------------------------------------------------------------- */ public function import_fields_backwards_compatibility( $field ) { //TODO: This was copied over. Instead need to abstract backwards compatibility for re-use. // Flatten field settings array if( isset( $field[ 'data' ] ) ){ $field = array_merge( $field, $field[ 'data' ] ); unset( $field[ 'data' ] ); } // Drop form_id in favor of parent_id, which is set by the form. if( isset( $field[ 'form_id' ] ) ){ unset( $field[ 'form_id' ] ); } // Remove `_` prefix from type setting $field[ 'type' ] = ltrim( $field[ 'type' ], '_' ); // Type: `text` -> `textbox` if( 'text' == $field[ 'type' ] ){ $field[ 'type' ] = 'textbox'; } if( 'submit' == $field[ 'type' ] ){ $field[ 'processing_label' ] = 'Processing'; } if( 'calc' == $field[ 'type' ] ){ $field[ 'type' ] = 'note'; if( isset( $field[ 'calc_method' ] ) ) { switch( $field[ 'calc_method' ] ){ case 'eq': $method = esc_html__( 'Equation (Advanced)', 'ninja-forms' ); break; case 'fields': $method = esc_html__( 'Operations and Fields (Advanced)', 'ninja-forms' ); break; case 'auto': $method = esc_html__( 'Auto-Total Fields', 'ninja-forms' ); break; default: $method = ''; } $field['default'] = $method . "\r\n"; if ('eq' == $field['calc_method'] && isset( $field['calc_eq'] ) ) { $field['default'] .= $field['calc_eq']; } if ('fields' == $field['calc_method'] && isset( $field['calc'] ) ) { // TODO: Support 'operations and fields (advanced)' calculations. } if ('auto' == $field['calc_method'] && isset( $field['calc'] ) ) { // TODO: Support 'auto-totaling' calculations. } } unset( $field[ 'calc' ] ); unset( $field[ 'calc_eq' ] ); unset( $field[ 'calc_method' ] ); } if( isset( $field[ 'email' ] ) ){ if( 'textbox' == $field[ 'type' ] && $field[ 'email' ] ) { $field['type'] = 'email'; } unset( $field[ 'email' ] ); } if( isset( $field[ 'class' ] ) ){ $field[ 'element_class' ] = $field[ 'class' ]; unset( $field[ 'class' ] ); } if( isset( $field[ 'req' ] ) ){ $field[ 'required' ] = $field[ 'req' ]; unset( $field[ 'req' ] ); } if( isset( $field[ 'default_value_type' ] ) ){ /* User Data */ if( '_user_id' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{user:id}'; if( '_user_email' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{user:email}'; if( '_user_lastname' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{user:last_name}'; if( '_user_firstname' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{user:first_name}'; if( '_user_display_name' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{user:display_name}'; /* Post Data */ if( 'post_id' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{post:id}'; if( 'post_url' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{post:url}'; if( 'post_title' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{post:title}'; /* System Data */ if( 'today' == $field[ 'default_value_type' ] ) $field[ 'default' ] = '{system:date}'; /* Miscellaneous */ if( '_custom' == $field[ 'default_value_type' ] && isset( $field[ 'default_value' ] ) ){ $field[ 'default' ] = $field[ 'default_value' ]; } if( 'querystring' == $field[ 'default_value_type' ] && isset( $field[ 'default_value' ] ) ){ $field[ 'default' ] = '{' . $field[ 'default_value' ] . '}'; } unset( $field[ 'default_value' ] ); unset( $field[ 'default_value_type' ] ); } if( 'list' == $field[ 'type' ] ) { if ( isset( $field[ 'list_type' ] ) ) { if ('dropdown' == $field['list_type']) { $field['type'] = 'listselect'; } if ('radio' == $field['list_type']) { $field['type'] = 'listradio'; } if ('checkbox' == $field['list_type']) { $field['type'] = 'listcheckbox'; } if ('multi' == $field['list_type']) { $field['type'] = 'listmultiselect'; } } if( isset( $field[ 'list' ][ 'options' ] ) ) { $field[ 'options' ] = $field[ 'list' ][ 'options' ]; unset( $field[ 'list' ][ 'options' ] ); } } // Convert `textbox` to other field types foreach( array( 'fist_name', 'last_name', 'user_zip', 'user_city', 'user_phone', 'user_email', 'user_address_1', 'user_address_2', 'datepicker' ) as $item ) { if ( isset( $field[ $item ] ) && $field[ $item ] ) { $field[ 'type' ] = str_replace( array( '_', 'user', '1', '2', 'picker' ), '', $item ); unset( $field[ $item ] ); } } if( 'timed_submit' == $field[ 'type' ] ) { $field[ 'type' ] = 'submit'; } return $field; } private function upload_error_check( $file ) { if( ! $file[ 'error' ] ) return; switch ( $file[ 'error' ] ) { case UPLOAD_ERR_INI_SIZE: $error_message = esc_html__( 'The uploaded file exceeds the upload_max_filesize directive in php.ini.', 'ninja-forms' ); break; case UPLOAD_ERR_FORM_SIZE: $error_message = esc_html__( 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.', 'ninja-forms' ); break; case UPLOAD_ERR_PARTIAL: $error_message = esc_html__( 'The uploaded file was only partially uploaded.', 'ninja-forms' ); break; case UPLOAD_ERR_NO_FILE: $error_message = esc_html__( 'No file was uploaded.', 'ninja-forms' ); break; case UPLOAD_ERR_NO_TMP_DIR: $error_message = esc_html__( 'Missing a temporary folder.', 'ninja-forms' ); break; case UPLOAD_ERR_CANT_WRITE: $error_message = esc_html__( 'Failed to write file to disk.', 'ninja-forms' ); break; case UPLOAD_ERR_EXTENSION: $error_message = esc_html__( 'File upload stopped by extension.', 'ninja-forms' ); break; default: $error_message = esc_html__( 'Unknown upload error.', 'ninja-forms' ); break; } $args = array( 'title' => esc_html__( 'File Upload Error', 'ninja-forms' ), 'message' => $error_message, 'debug' => $file, ); $message = Ninja_Forms()->template( 'admin-wp-die.html.php', $args ); wp_die( $message, $args[ 'title' ], array( 'back_link' => TRUE ) ); } public function get_capability() { return apply_filters( 'ninja_forms_admin_import_export_capabilities', $this->capability ); } } includes/Admin/Menus/MockData.php000064400000003300152331132460012661 0ustar00mock_data(); wp_redirect( admin_url( 'admin.php?page=ninja-forms' ) ); exit; } public function display() { // Fallback if not redirected. $this->mock_data(); echo '
    ' . esc_html__( 'Migrations and Mock Data complete. ', 'ninja-forms' ) . '' . esc_html__( 'View Forms', 'ninja-forms' ) . '
    '; } private function mock_data() { $mock_data = new NF_Database_MockData(); $mock_data->saved_fields(); $mock_data->form_blank_form(); $mock_data->form_contact_form_1(); $mock_data->form_contact_form_2(); $mock_data->form_product_1(); $mock_data->form_product_2(); $mock_data->form_product_3(); $mock_data->form_email_submission(); $mock_data->form_long_form( 100 ); $mock_data->form_long_form( 300 ); $mock_data->form_long_form( 500 ); $mock_data->form_kitchen_sink(); $mock_data->form_bathroom_sink(); $mock_data->form_calc_form(); } } // End Class NF_Admin_Settings includes/Admin/Menus/Addons.php000064400000011645152331132460012421 0ustar00parent_slug, $this->menu_slug ); } } public function get_page_title() { $title = '' . esc_html__( 'Add-Ons', 'ninja-forms' ) . ''; return $title; } public function get_capability() { return apply_filters( 'ninja_forms_admin_extend_capabilities', $this->capability ); } public function display() { // Fetch our marketing feed. $saved = get_option( 'ninja_forms_addons_feed', false ); // If we got back nothing... if ( ! $saved ) { // Default to the in-app file. $items = file_get_contents( Ninja_Forms::$dir . '/lib/Legacy/addons-feed.json' ); $items = json_decode( $items, true ); } // Otherwise... (We did get something from the db.) else { // Use the data we fetched. $items = json_decode( $saved, true ); } //shuffle( $items ); $notices = array(); foreach ($items as &$item) { $plugin_data = array(); if( !empty( $item['plugin'] ) && file_exists( WP_PLUGIN_DIR.'/'.$item['plugin'] ) ){ $plugin_data = get_plugin_data( WP_PLUGIN_DIR.'/'.$item['plugin'], false, true ); } if ( ! file_exists( Ninja_Forms::$dir . '/' . $item[ 'image' ] ) ) { $item[ 'image' ] = 'assets/img/add-ons/placeholder.png'; } $version = isset ( $plugin_data['Version'] ) ? $plugin_data['Version'] : ''; if ( ! empty ( $version ) && $version < $item['version'] ) { $notices[] = array( 'title' => $item[ 'title' ], 'old_version' => $version, 'new_version' => $item[ 'version' ] ); } } $groups = [ 'popular' => [ 'title' => __( 'You Can Build Smart, Beautiful WordPress Forms!', 'ninja-forms' ), 'items' => self::filterItemsByCategroy( $items, 'form-function-design' ), ], 'documents' => [ 'title' => __( 'Better Document Sharing will Take Your Business Further', 'ninja-forms' ), 'items' => self::filterItemsByCategroy( $items, 'file-management' ), ], 'payments' => [ 'title' => __( 'Accept Payments & Donations Without Breaking the Bank', 'ninja-forms' ), 'items' => self::filterItemsByCategroy( $items, 'payment-gateways' ), ], 'marketing' => [ 'title' => __( 'Want to Attract More Subscribers to Your Mailing Lists?', 'ninja-forms' ), 'items' => self::filterItemsByCategroy( $items, 'email-marketing' ), ], 'website' => [ 'title' => __( 'Let Your Users Do More, and Do More for Your Users', 'ninja-forms' ), 'items' => self::filterItemsByCategroy( $items, 'user-management' ), ], 'crm' => [ 'title' => __( 'Generate More Leads Than You Ever Thought Possible', 'ninja-forms' ), 'items' => self::filterItemsByCategroy( $items, 'crm-integrations' ), ], 'notifications' => [ 'title' => __( 'Never Miss an Important Submission or Lead Again!', 'ninja-forms' ), 'items' => self::filterItemsByCategroy( $items, 'notification-workflow' ), ], 'misc' => [ 'title' => __( 'Don’t See Your Favorite Service Above? We Can Likely Still Help.', 'ninja-forms' ), 'items' => self::filterItemsByCategroy( $items, 'custom-integrations' ), ], ]; Ninja_Forms::template( 'admin-menu-addons.html.php', compact( 'items', 'notices', 'groups' ) ); } public static function filterItemsByCategroy( $items, $category ) { return array_filter( $items, function( $item ) use ($category) { return array_filter( $item['categories'], function( $itemCategory ) use ($category){ return $category === $itemCategory['slug']; }); }); } } // End Class NF_Admin_Addons includes/Admin/Menus/Dashboard.php000064400000001500152331132460013065 0ustar00capability ); } public function display() { // This section intentionally left blank. } } // End Class NF_Admin_Settings includes/Admin/Menus/Licenses.php000064400000005522152331132460012753 0ustar00activate_license( $name, $key ); break; case 'deactivate': $this->deactivate_license( $name ); break; } } public function register_licenses() { $this->licenses = apply_filters( 'ninja_forms_settings_licenses_addons', array() ); } public function add_meta_boxes() { add_meta_box( 'nf_settings_licenses', esc_html__( 'Add-On Licenses', 'ninja-forms' ), array( $this, 'display' ), 'nf_settings_licenses' ); } public function display() { $data = array(); foreach( $this->licenses as $license ){ $data[] = array( 'id' => $license->product_name, 'name' => $license->product_nice_name, 'version' => $license->version, 'is_valid' => $license->is_valid(), 'license' => $this->get_license( $license->product_name ), 'error' => Ninja_Forms()->get_setting( $license->product_name . '_license_error' ), ); } Ninja_Forms()->template( 'admin-menu-settings-licenses.html.php', array( 'licenses' => $data ) ); } private function get_license( $name ) { return Ninja_Forms()->get_setting( $name . '_license' ); } private function activate_license( $name, $key ) { foreach( $this->licenses as $license ){ if( $name != $license->product_name ) continue; $license->activate_license( $key ); } } private function deactivate_license( $name ) { foreach( $this->licenses as $license ){ if( $name != $license->product_name ) continue; $license->deactivate_license(); } } } // End Class NF_Admin_Menus_Licenses includes/Config/StateList.php000064400000002704152331132460012207 0ustar00'AL', 'Alaska'=>'AK', 'Arizona'=>'AZ', 'Arkansas'=>'AR', 'California'=>'CA', 'Colorado'=>'CO', 'Connecticut'=>'CT', 'Delaware'=>'DE', 'Florida'=>'FL', 'Georgia'=>'GA', 'Hawaii'=>'HI', 'Idaho'=>'ID', 'Illinois'=>'IL', 'Indiana'=>'IN', 'Iowa'=>'IA', 'Kansas'=>'KS', 'Kentucky'=>'KY', 'Louisiana'=>'LA', 'Maine'=>'ME', 'Maryland'=>'MD', 'Massachusetts'=>'MA', 'Michigan'=>'MI', 'Minnesota'=>'MN', 'Mississippi'=>'MS', 'Missouri'=>'MO', 'Montana'=>'MT', 'Nebraska'=>'NE', 'Nevada'=>'NV', 'New Hampshire'=>'NH', 'New Jersey'=>'NJ', 'New Mexico'=>'NM', 'New York'=>'NY', 'North Carolina'=>'NC', 'North Dakota'=>'ND', 'Ohio'=>'OH', 'Oklahoma'=>'OK', 'Oregon'=>'OR', 'Pennsylvania'=>'PA', 'Rhode Island'=>'RI', 'South Carolina'=>'SC', 'South Dakota'=>'SD', 'Tennessee'=>'TN', 'Texas'=>'TX', 'Utah'=>'UT', 'Vermont'=>'VT', 'Virginia'=>'VA', 'Washington'=>'WA', 'West Virginia'=>'WV', 'Wisconsin'=>'WI', 'Wyoming'=>'WY', 'Washington DC'=>'DC', 'ARMED FORCES AFRICA \ CANADA \ EUROPE \ MIDDLE EAST' => 'AE', 'ARMED FORCES AMERICA (EXCEPT CANADA)' => 'AA', 'ARMED FORCES PACIFIC' => 'AP' ));includes/Config/AdminNotices.php000064400000002510152331132460012643 0ustar00 array( 'title' => esc_html__( 'How\'s It Going?', 'ninja-forms' ), 'msg' => esc_html__( 'Thank you for using Ninja Forms! We hope that you\'ve found everything you need, but if you have any questions:', 'ninja-forms' ), 'link' => '
  • ' . esc_html__( 'Check out our documentation', 'ninja-forms' ) . '
  • ' . esc_html__( 'Get Some Help' ,'ninja-forms' ) . '
  • ' . esc_html__( 'Dismiss' ,'ninja-forms' ) . '
  • ', 'int' => 7, 'blacklist' => array( 'ninja-forms-three' ), ), )); includes/Config/CurrencySymbol.php000064400000007505152331132460013257 0ustar00 'د.إ', 'AFN' => '؋', 'ALL' => 'L', 'AMD' => 'AMD', 'ANG' => 'ƒ', 'AOA' => 'Kz', 'ARS' => '$', 'AUD' => '$', 'AWG' => 'ƒ', 'AZN' => 'AZN', 'BAM' => 'KM', 'BBD' => '$', 'BDT' => '৳ ', 'BGN' => 'лв.', 'BHD' => '.د.ب', 'BIF' => 'Fr', 'BMD' => '$', 'BND' => '$', 'BOB' => 'Bs.', 'BRL' => 'R$', 'BSD' => '$', 'BTC' => '฿', 'BTN' => 'Nu.', 'BWP' => 'P', 'BYR' => 'Br', 'BZD' => '$', 'CAD' => '$', 'CDF' => 'Fr', 'CHF' => 'CHF', 'CLP' => '$', 'CNY' => '¥', 'COP' => '$', 'CRC' => '₡', 'CUC' => '$', 'CUP' => '$', 'CVE' => '$', 'CZK' => 'Kč', 'DJF' => 'Fr', 'DKK' => 'DKK', 'DOP' => 'RD$', 'DZD' => 'د.ج', 'EGP' => 'EGP', 'ERN' => 'Nfk', 'ETB' => 'Br', 'EUR' => '€', 'FJD' => '$', 'FKP' => '£', 'GBP' => '£', 'GEL' => 'ლ', 'GGP' => '£', 'GHS' => '₵', 'GIP' => '£', 'GMD' => 'D', 'GNF' => 'Fr', 'GTQ' => 'Q', 'GYD' => '$', 'HKD' => '$', 'HNL' => 'L', 'HRK' => 'Kn', 'HTG' => 'G', 'HUF' => 'Ft', 'IDR' => 'Rp', 'ILS' => '₪', 'IMP' => '£', 'INR' => '₹', 'IQD' => 'ع.د', 'IRR' => '﷼', 'ISK' => 'Kr.', 'JEP' => '£', 'JMD' => '$', 'JOD' => 'د.ا', 'JPY' => '¥', 'KES' => 'KSh', 'KGS' => 'лв', 'KHR' => '៛', 'KMF' => 'Fr', 'KPW' => '₩', 'KRW' => '₩', 'KWD' => 'د.ك', 'KYD' => '$', 'KZT' => 'KZT', 'LAK' => '₭', 'LBP' => 'ل.ل', 'LKR' => 'රු', 'LRD' => '$', 'LSL' => 'L', 'LYD' => 'ل.د', 'MAD' => 'د. م.', 'MAD' => 'د.م.', 'MDL' => 'L', 'MGA' => 'Ar', 'MKD' => 'ден', 'MMK' => 'Ks', 'MNT' => '₮', 'MOP' => 'P', 'MRO' => 'UM', 'MUR' => '₨', 'MVR' => '.ރ', 'MWK' => 'MK', 'MXN' => '$', 'MYR' => 'RM', 'MZN' => 'MT', 'NAD' => '$', 'NGN' => '₦', 'NIO' => 'C$', 'NOK' => 'kr', 'NPR' => '₨', 'NZD' => '$', 'OMR' => 'ر.ع.', 'PAB' => 'B/.', 'PEN' => 'S/.', 'PGK' => 'K', 'PHP' => '₱', 'PKR' => '₨', 'PLN' => 'zł', 'PRB' => 'р.', 'PYG' => '₲', 'QAR' => 'ر.ق', 'RMB' => '¥', 'RON' => 'lei', 'RSD' => 'дин.', 'RUB' => '₽', 'RWF' => 'Fr', 'SAR' => 'ر.س', 'SBD' => '$', 'SCR' => '₨', 'SDG' => 'ج.س.', 'SEK' => 'kr', 'SGD' => '$', 'SHP' => '£', 'SLL' => 'Le', 'SOS' => 'Sh', 'SRD' => '$', 'SSP' => '£', 'STD' => 'Db', 'SYP' => 'ل.س', 'SZL' => 'L', 'THB' => '฿', 'TJS' => 'ЅМ', 'TMT' => 'm', 'TND' => 'د.ت', 'TOP' => 'T$', 'TRY' => '₺', 'TTD' => '$', 'TWD' => 'NT$', 'TZS' => 'Sh', 'UAH' => '₴', 'UGX' => 'UGX', 'USD' => '$', 'UYU' => '$', 'UZS' => 'UZS', 'VEF' => 'Bs F', 'VND' => '₫', 'VUV' => 'Vt', 'WST' => 'T', 'XAF' => 'Fr', 'XCD' => '$', 'XOF' => 'Fr', 'XPF' => 'Fr', 'YER' => '﷼', 'ZAR' => 'R', 'ZMW' => 'ZK', ) ); includes/Config/MergeTagsDeprecated.php000064400000013716152331132460014137 0ustar00 array( 'id' => 'id', 'tag' => '{post:id}', 'label' => esc_html__( 'Post ID', 'ninja_forms' ), 'callback' => 'post_id' ), /* |-------------------------------------------------------------------------- | Post Title |-------------------------------------------------------------------------- */ 'title' => array( 'id' => 'title', 'tag' => '{post:title}', 'label' => esc_html__( 'Post Title', 'ninja_forms' ), 'callback' => 'post_title' ), /* |-------------------------------------------------------------------------- | Post URL |-------------------------------------------------------------------------- */ 'url' => array( 'id' => 'url', 'tag' => '{post:url}', 'label' => esc_html__( 'Post URL', 'ninja_forms' ), 'callback' => 'post_url' ), /* |-------------------------------------------------------------------------- | Post Author |-------------------------------------------------------------------------- */ 'author' => array( 'id' => 'author', 'tag' => '{post:author}', 'label' => esc_html__( 'Post Author', 'ninja_forms' ), 'callback' => 'post_author' ), /* |-------------------------------------------------------------------------- | Post Author Email |-------------------------------------------------------------------------- */ 'author_email' => array( 'id' => 'author_email', 'tag' => '{post:author_email}', 'label' => esc_html__( 'Post Author Email', 'ninja_forms' ), 'callback' => 'post_author_email' ), /* |-------------------------------------------------------------------------- | User ID |-------------------------------------------------------------------------- */ 'user_id' => array( 'id' => 'user_id', 'tag' => '{user:id}', 'label' => esc_html__( 'User ID', 'ninja_forms' ), 'callback' => 'user_id' ), /* |-------------------------------------------------------------------------- | User First Name |-------------------------------------------------------------------------- */ 'first_name' => array( 'id' => 'first_name', 'tag' => '{user:first_name}', 'label' => esc_html__( 'User First Name', 'ninja_forms' ), 'callback' => 'user_first_name' ), /* |-------------------------------------------------------------------------- | User Last Name |-------------------------------------------------------------------------- */ 'last_name' => array( 'id' => 'last_name', 'tag' => '{user:last_name}', 'label' => esc_html__( 'User Last Name', 'ninja_forms' ), 'callback' => 'user_last_name' ), /* |-------------------------------------------------------------------------- | User Dispaly Name |-------------------------------------------------------------------------- */ 'display_name' => array( 'id' => 'display_name', 'tag' => '{user:display_name}', 'label' => esc_html__( 'User Display Name', 'ninja_forms' ), 'callback' => 'user_display_name' ), /* |-------------------------------------------------------------------------- | User Email Address |-------------------------------------------------------------------------- */ 'user_email' => array( 'id' => 'user_email', 'tag' => '{user:email}', 'label' => esc_html__( 'User Email', 'ninja_forms' ), 'callback' => 'user_email' ), /* |-------------------------------------------------------------------------- | Site Title |-------------------------------------------------------------------------- */ 'site_title' => array( 'id' => 'site_title', 'tag' => '{site:title}', 'label' => esc_html__( 'Site Title', 'ninja_forms' ), 'callback' => 'site_title' ), /* |-------------------------------------------------------------------------- | Site URL |-------------------------------------------------------------------------- */ 'site_url' => array( 'id' => 'site_url', 'tag' => '{site:url}', 'label' => esc_html__( 'Site URL', 'ninja_forms' ), 'callback' => 'site_url' ), /* |-------------------------------------------------------------------------- | Admin Email Address |-------------------------------------------------------------------------- */ 'admin_email' => array( 'id' => 'admin_email', 'tag' => '{system:admin_email}', 'label' => esc_html__( 'Admin Email', 'ninja_forms' ), 'callback' => 'admin_email' ), /* |-------------------------------------------------------------------------- | System Date |-------------------------------------------------------------------------- */ 'date' => array( 'id' => 'date', 'tag' => '{system:date}', 'label' => esc_html__( 'Date', 'ninja_forms' ), 'callback' => 'system_date' ), /* |-------------------------------------------------------------------------- | System IP Address |-------------------------------------------------------------------------- */ 'ip' => array( 'id' => 'ip', 'tag' => '{system:ip}', 'label' => esc_html__( 'IP Address', 'ninja_forms' ), 'callback' => 'system_ip' ), 'query_string' => array( 'tag' => '{query_string_key}', 'label' => esc_html__( 'Query String', 'ninja_forms' ), 'callback' => null, ), ));includes/Config/FieldTypeSections.php000064400000003673152331132460013676 0ustar00 array( 'id' => 'saved', 'nicename' => esc_html__( 'Favorite Fields', 'ninja-forms' ), 'classes' => 'nf-saved', 'fieldTypes' => array(), ), /* |-------------------------------------------------------------------------- | Common Fields |-------------------------------------------------------------------------- */ 'common' => array( 'id' => 'common', 'nicename' => esc_html__( 'Common Fields', 'ninja-forms' ), 'fieldTypes' => array(), ), /* |-------------------------------------------------------------------------- | User Information Fields |-------------------------------------------------------------------------- */ 'userinfo' => array( 'id' => 'userinfo', 'nicename' => esc_html__( 'User Information Fields', 'ninja-forms' ), 'fieldTypes' => array(), ), /* |-------------------------------------------------------------------------- | Layout Fields |-------------------------------------------------------------------------- */ 'layout' => array( 'id' => 'layout', 'nicename' => esc_html__( 'Layout Fields', 'ninja-forms' ), 'fieldTypes' => array(), ), /* |-------------------------------------------------------------------------- | Miscellaneous Fields |-------------------------------------------------------------------------- */ 'misc' => array( 'id' => 'misc', 'nicename' => esc_html__( 'Miscellaneous Fields', 'ninja-forms' ), 'fieldTypes' => array(), ), )); includes/Config/MergeTagsWP.php000064400000015161152331132460012421 0ustar00 array( 'id' => 'id', 'tag' => '{wp:post_id}', 'label' => esc_html__( 'Post ID', 'ninja_forms' ), 'callback' => 'post_id' ), /* |-------------------------------------------------------------------------- | Post Title |-------------------------------------------------------------------------- */ 'title' => array( 'id' => 'title', 'tag' => '{wp:post_title}', 'label' => esc_html__( 'Post Title', 'ninja_forms' ), 'callback' => 'post_title' ), /* |-------------------------------------------------------------------------- | Post URL |-------------------------------------------------------------------------- */ 'url' => array( 'id' => 'url', 'tag' => '{wp:post_url}', 'label' => esc_html__( 'Post URL', 'ninja_forms' ), 'callback' => 'post_url' ), /* |-------------------------------------------------------------------------- | Post Author |-------------------------------------------------------------------------- */ 'author' => array( 'id' => 'author', 'tag' => '{wp:post_author}', 'label' => esc_html__( 'Post Author', 'ninja_forms' ), 'callback' => 'post_author' ), /* |-------------------------------------------------------------------------- | Post Author Email |-------------------------------------------------------------------------- */ 'author_email' => array( 'id' => 'author_email', 'tag' => '{wp:post_author_email}', 'label' => esc_html__( 'Post Author Email', 'ninja_forms' ), 'callback' => 'post_author_email' ), /* |-------------------------------------------------------------------------- | Post Meta |-------------------------------------------------------------------------- */ 'post_meta' => array( 'id' => 'post_meta', 'tag' => '{post_meta:YOUR_META_KEY}', 'label' => esc_html__( 'Post Meta', 'ninja_forms' ), 'callback' => null ), /* |-------------------------------------------------------------------------- | User ID |-------------------------------------------------------------------------- */ 'user_id' => array( 'id' => 'user_id', 'tag' => '{wp:user_id}', 'label' => esc_html__( 'User ID', 'ninja_forms' ), 'callback' => 'user_id' ), /* |-------------------------------------------------------------------------- | User First Name |-------------------------------------------------------------------------- */ 'first_name' => array( 'id' => 'first_name', 'tag' => '{wp:user_first_name}', 'label' => esc_html__( 'User First Name', 'ninja_forms' ), 'callback' => 'user_first_name' ), /* |-------------------------------------------------------------------------- | User Last Name |-------------------------------------------------------------------------- */ 'last_name' => array( 'id' => 'last_name', 'tag' => '{wp:user_last_name}', 'label' => esc_html__( 'User Last Name', 'ninja_forms' ), 'callback' => 'user_last_name' ), /* |-------------------------------------------------------------------------- | User Disply Name |-------------------------------------------------------------------------- */ 'display_name' => array( 'id' => 'display_name', 'tag' => '{wp:user_display_name}', 'label' => esc_html__( 'User Display Name', 'ninja_forms' ), 'callback' => 'user_display_name' ), /* |-------------------------------------------------------------------------- | User Username |-------------------------------------------------------------------------- */ 'username' => array( 'id' => 'username', 'tag' => '{wp:user_username}', 'label' => esc_html__( 'User Username', 'ninja_forms' ), 'callback' => 'user_username' ), /* |-------------------------------------------------------------------------- | User Email Address |-------------------------------------------------------------------------- */ 'user_email' => array( 'id' => 'user_email', 'tag' => '{wp:user_email}', 'label' => esc_html__( 'User Email', 'ninja_forms' ), 'callback' => 'user_email' ), /* |-------------------------------------------------------------------------- | User Website Address |-------------------------------------------------------------------------- */ 'user_url' => array( 'id' => 'user_url', 'tag' => '{wp:user_url}', 'label' => esc_html__( 'User URL', 'ninja_forms' ), 'callback' => 'user_url' ), /* |-------------------------------------------------------------------------- | Post Meta |-------------------------------------------------------------------------- */ 'user_meta' => array( 'id' => 'user_meta', 'tag' => '{user_meta:YOUR_META_KEY}', 'label' => esc_html__( 'User Meta', 'ninja_forms' ), 'callback' => null ), /* |-------------------------------------------------------------------------- | Site Title |-------------------------------------------------------------------------- */ 'site_title' => array( 'id' => 'site_title', 'tag' => '{wp:site_title}', 'label' => esc_html__( 'Site Title', 'ninja_forms' ), 'callback' => 'site_title' ), /* |-------------------------------------------------------------------------- | Site URL |-------------------------------------------------------------------------- */ 'site_url' => array( 'id' => 'site_url', 'tag' => '{wp:site_url}', 'label' => esc_html__( 'Site URL', 'ninja_forms' ), 'callback' => 'site_url' ), /* |-------------------------------------------------------------------------- | Admin Email Address |-------------------------------------------------------------------------- */ 'admin_email' => array( 'id' => 'admin_email', 'tag' => '{wp:admin_email}', 'label' => esc_html__( 'Admin Email', 'ninja_forms' ), 'callback' => 'admin_email' ), )); includes/Config/Currency.php000064400000006135152331132460012067 0ustar00 array( 'label' => esc_attr__( 'Australian Dollars', 'ninja-forms' ), 'value' => 'AUD' ), 'CAD' => array( 'label' => esc_attr__( 'Canadian Dollars', 'ninja-forms' ), 'value' => 'CAD' ), 'CZK' => array( 'label' => esc_attr__( 'Czech Koruna', 'ninja-forms' ), 'value' => 'CZK' ), 'DKK' => array( 'label' => esc_attr__( 'Danish Krone', 'ninja-forms' ), 'value' => 'DKK' ), 'EUR' => array( 'label' => esc_attr__( 'Euros', 'ninja-forms' ), 'value' => 'EUR' ), 'HKD' => array( 'label' => esc_attr__( 'Hong Kong Dollars', 'ninja-forms' ), 'value' => 'HKD' ), 'HUF' => array( 'label' => esc_attr__( 'Hungarian Forints', 'ninja-forms' ), 'value' => 'HUF' ), 'ILS' => array( 'label' => esc_attr__( 'Israeli New Sheqels', 'ninja-forms' ), 'value' => 'ILS' ), 'JPY' => array( 'label' => esc_attr__( 'Japanese Yen', 'ninja-forms' ), 'value' => 'JPY' ), 'MXN' => array( 'label' => esc_attr__( 'Mexican Pesos', 'ninja-forms' ), 'value' => 'MXN' ), 'MYR' => array( 'label' => esc_attr__( 'Malaysian Ringgit', 'ninja-forms' ), 'value' => 'MYR' ), 'NOK' => array( 'label' => esc_attr__( 'Norwegian Krone', 'ninja-forms' ), 'value' => 'NOK' ), 'NZD' => array( 'label' => esc_attr__( 'New Zealand Dollars', 'ninja-forms' ), 'value' => 'NZD' ), 'PHP' => array( 'label' => esc_attr__( 'Philippine Pesos', 'ninja-forms' ), 'value' => 'PHP' ), 'PLN' => array( 'label' => esc_attr__( 'Polish Zloty', 'ninja-forms' ), 'value' => 'PLN' ), 'GBP' => array( 'label' => esc_attr__( 'British Pounds Sterling', 'ninja-forms' ), 'value' => 'GBP' ), 'SGD' => array( 'label' => esc_attr__( 'Singapore Dollars', 'ninja-forms' ), 'value' => 'SGD' ), 'SEK' => array( 'label' => esc_attr__( 'Swedish Krona', 'ninja-forms' ), 'value' => 'SEK' ), 'CHF' => array( 'label' => esc_attr__( 'Swiss Franc', 'ninja-forms' ), 'value' => 'CHF' ), 'TWD' => array( 'label' => esc_attr__( 'Taiwan New Dollars', 'ninja-forms' ), 'value' => 'TWD' ), 'THB' => array( 'label' => esc_attr__( 'Thai Baht', 'ninja-forms' ), 'value' => 'THB' ), 'USD' => array( 'label' => esc_attr__( 'U.S. Dollars', 'ninja-forms' ), 'value' => 'USD' ), 'ZAR' => array( 'label' => esc_attr__( 'South African Rand', 'ninja-forms' ), 'value' => 'ZAR' ), 'INR' => array( 'label' => esc_attr__( 'Indian Rupee', 'ninja-forms' ), 'value' => 'INR' ), 'RUB' => array( 'label' => esc_attr__( 'Russian Ruble', 'ninja-forms' ), 'value' => 'RUB' ), 'CNY' => array( 'label' => esc_attr__( 'Chinese Yuan', 'ninja-forms' ), 'value' => 'CNY' ) ));includes/Config/AvailableActions.php000064400000121753152331132460013502 0ustar00 array( 'group' => 'marketing', 'name' => 'mailchimp', 'nicename' => 'MailChimp', 'link' => 'https://ninjaforms.com/extensions/mail-chimp/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=MailChimp', 'plugin_path' => 'ninja-forms-mail-chimp/ninja-forms-mail-chimp.php', 'modal_content' => '

    In order to use this action, you need MailChimp for Ninja Forms.

    Bring new life to your lists with upgraded Mailchimp signup forms for WordPress! Easy to build and customize with no code required.

    ', ), 'zapier' => array( 'group' => 'misc', 'name' => 'zapier', 'nicename' => 'Zapier', 'link' => 'https://ninjaforms.com/extensions/zapier/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Zapier', 'plugin_path' => 'ninja-forms-zapier/ninja-forms-zapier.php', 'modal_content' => '

    In order to use this action, you need Zapier for Ninja Forms.

    Don\'t see an add-on integration for a service you love? Don\'t worry! Connect WordPress to more than 1,500 different services through Zapier, no code required!

    ', ), 'file_uploads' => array( 'group' => 'popular', 'name' => 'file_uploads', 'nicename' => 'File Uploads', 'link' => 'https://ninjaforms.com/extensions/file-uploads/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=File+Uploads', 'plugin_path' => 'ninja-forms-uploads/file-uploads.php', 'modal_content' => '

    In order to use this action, you need File Uploads for Ninja Forms.

    Add file upload fields to save files to your server or send them to Dropbox or Amazon S3 securely. The ability to collect data from your visitors is an important tool for any site owner. Sometimes the information you need comes in the form of images, videos, or documents like PDFs, Word or Excel files, etc.

    ', ), 'createposts' => array( 'group' => 'management', 'name' => 'createposts', 'nicename' => 'Create Post', 'link' => 'https://ninjaforms.com/extensions/front-end-posting/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Front-End+Posting', 'plugin_path' => 'ninja-forms-post-creation/ninja-forms-post-creation.php', 'modal_content' => '

    In order to use this action, you need Front-End Posting for Ninja Forms.

    Front-End Posting gives you the power of the WordPress post editor on any publicly viewable page you choose. You can allow users the ability to create content and have it assigned to any publicly available built-in or custom post type, taxonomy, and custom meta field.

    ', ), 'trello' => array( 'group' => 'workflow', 'name' => 'trello', 'nicename' => 'Trello', 'link' => 'https://ninjaforms.com/extensions/trello/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Trello', 'plugin_path' => 'ninja-forms-trello/ninja-forms-trello.php', 'modal_content' => '

    In order to use this action, you need Trello for Ninja Forms.

    Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.

    ', ), 'slack' => array( 'group' => 'notifications', 'name' => 'slack', 'nicename' => 'Slack', 'link' => 'https://ninjaforms.com/extensions/slack/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Slack', 'plugin_path' => 'ninja-forms-slack/ninja-forms-slack.php', 'modal_content' => '

    In order to use this action, you need Slack for Ninja Forms.

    Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!

    ', ), 'webhooks' => array( 'group' => 'misc', 'name' => 'webhooks', 'nicename' => 'WebHooks', 'link' => 'https://ninjaforms.com/extensions/webhooks/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=WebHooks', 'plugin_path' => 'ninja-forms-webhooks/ninja-forms-webhooks.php', 'modal_content' => '

    In order to use this action, you need WebHooks for Ninja Forms.

    Can\'t find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!

    ', ), 'campaignmonitor' => array( 'group' => 'marketing', 'name' => 'campaignmonitor', 'nicename' => 'Campaign Monitor', 'link' => 'https://ninjaforms.com/extensions/campaign-monitor/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Campaign+Monitor', 'plugin_path' => 'ninja-forms-campaign-monitor/ninja-forms-campaign-monitor.php', 'modal_content' => '

    In order to use this action, you need Campaign Monitor for Ninja Forms.

    The Campaign Monitor extension allows you to quickly create newsletter signup forms for your Campaign Monitor account. Create an unlimited number of subscribe forms and begin growing your mailing lists.

    ', ), 'constantcontact' => array( 'group' => 'marketing', 'name' => 'constantcontact', 'nicename' => 'Constant Contact', 'link' => 'https://ninjaforms.com/extensions/constant-contact/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Constant+Contact', 'plugin_path' => 'ninja-forms-constant-contact/ninja-forms-constant-contact.php', 'modal_content' => '

    In order to use this action, you need Constant Contact for Ninja Forms.

    The Constant Contact extension allows you to quickly create newsletter signup forms for your Constant Contact account. Create an unlimited number of subscribe forms and grow your mailing lists.

    ', ), 'aweber' => array( 'group' => 'marketing', 'name' => 'aweber', 'nicename' => 'AWeber', 'link' => 'https://ninjaforms.com/extensions/aweber/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=AWeber', 'plugin_path' => 'ninja-forms-aweber/ninja-forms-aweber.php', 'modal_content' => '

    In order to use this action, you need AWeber for Ninja Forms.

    The AWeber extension allows you to quickly create newsletter signup forms for your AWeber account. Create an unlimited number of subscribe forms and grow your mailing lists.

    ', ), 'emma' => array( 'group' => 'marketing', 'name' => 'emma', 'nicename' => 'Emma', 'link' => 'https://ninjaforms.com/extensions/emma/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Emma', 'plugin_path' => '', 'modal_content' => '

    In order to use this action, you need Emma for Ninja Forms.

    The Emma extension allows you to quickly create newsletter signup forms for your Emma account. Create an unlimited number of subscribe forms and grow your mailing lists.

    ', ), 'webmerge' => array( 'group' => 'workflow', 'name' => 'webmerge', 'nicename' => 'WebMerge', 'link' => 'https://ninjaforms.com/extensions/webmerge/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=WebMerge', 'plugin_path' => 'ninja-forms-webmerge/ninja-forms-webmerge.php', 'modal_content' => '

    In order to use this action, you need WebMerge for Ninja Forms.

    With the WebMerge extension for Ninja Forms, you can send form data directly to the awesome webmerge.me service. This lets you easily populate PDFs, Excel spreadsheets, Word docs, or PowerPoint presentations.

    ', ), 'twilio_sms' => array( 'group' => 'notifications', 'name' => 'twilio_sms', 'nicename' => 'Twilio SMS', 'link' => 'https://ninjaforms.com/extensions/twilio-sms/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Twilio+SMS', 'plugin_path' => 'ninja-forms-twilio/ninja-forms-twilio.php', 'modal_content' => '

    In order to use this action, you need Twilio SMS for Ninja Forms.

    Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!

    ', ), 'clicksend_sms' => array( 'group' => 'notifications', 'name' => 'clicksend_sms', 'nicename' => 'ClickSend SMS', 'link' => 'https://ninjaforms.com/extensions/clicksend-sms/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=ClickSend+SMS', 'plugin_path' => 'ninja-forms-clicksend/ninja-forms-clicksend.php', 'modal_content' => '

    In order to use this action, you need ClickSend SMS for Ninja Forms.

    Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!

    ', ), 'email_octopus' => array( 'group' => 'marketing', 'name' => 'email_octopus', 'nicename' => 'EmailOctopus', 'link' => 'https://ninjaforms.com/extensions/emailoctopus/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=EmailOctopus', 'plugin_path' => 'ninja-forms-emailoctopus/ninja-forms-emailoctopus.php', 'modal_content' => '

    In order to use this action, you need EmailOctopus for Ninja Forms.

    Automation, integration, analytics… EmailOctopus is the email management solution that fills every need, and it’s now available for WordPress! More than a simple email marketing tool, discover a new way to manage every aspect of your email strategy from marketing campaigns to automated employee onboarding. Save time, save money, be an email rockstar!

    ', ), 'stripe' => array( 'group' => 'payments', 'name' => 'stripe', 'nicename' => 'Stripe', 'link' => 'https://ninjaforms.com/extensions/stripe/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Stripe', 'plugin_path' => 'ninja-forms-stripe/ninja-forms-stripe.php', 'modal_content' => '

    In order to use this action, you need Stripe for Ninja Forms.

    Did you know you can accept credit card payments or donations from any form? Single payments, subscriptions, and more!

    ', ), 'paypal' => array( 'group' => 'payments', 'name' => 'paypal', 'nicename' => 'PayPal Express', 'link' => 'https://ninjaforms.com/extensions/paypal-express/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=PayPal+Express', 'plugin_path' => 'ninja-forms-paypal-express/ninja-forms-paypal-express.php', 'modal_content' => '

    In order to use this action, you need PayPal Express for Ninja Forms.

    Did you know you can accept PayPal payments or donations from any form? Connect any form completely and securely to your PayPal Express account!

    ', ), 'elavon' => array( 'group' => 'payments', 'name' => 'elavon', 'nicename' => 'Elavon', 'link' => 'https://ninjaforms.com/extensions/elavon/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Elavon', 'plugin_path' => 'ninja-forms-elavon-payment-gateway/ninja-forms-elavon-payment-gateway.php', 'modal_content' => '

    In order to use this action, you need Elavon for Ninja Forms.

    Did you know you can accept credit card payments or donations from any form? Connect any form completely and securely to your Elavon account!

    ', ), 'pipelinedeals-crm' => array( 'group' => 'marketing', 'name' => 'pipelinedeals-crm', 'nicename' => 'PipelineDeals CRM', 'link' => 'https://ninjaforms.com/extensions/pipelinedeals-crm/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=PipelineDeals+CRM', 'plugin_path' => 'ninja-forms-pipeline-deals-crm/ninja-forms-pipeline-crm.php', 'modal_content' => '

    In order to use this action, you need PipelineDeals CRM for Ninja Forms.

    Sick of transferring customer data manually between your website and PipelineDeals? Tired of maintaining an unstable custom integration? You can now connect your website directly to PipelineDeals through Ninja Forms with this fully automated solution!

    ', ), 'active-campaign' => array( 'group' => 'marketing', 'name' => 'active-campaign', 'nicename' => 'Active Campaign', 'link' => 'https://ninjaforms.com/extensions/active-campaign/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Active+Campaign', 'plugin_path' => 'ninja-forms-active-campaign/ninja-forms-active-campaign.php', 'modal_content' => '

    In order to use this action, you need Active Campaign for Ninja Forms.

    Active Campaign shines for sales teams that require insightful, intelligent customer relationship management. There’s no reason your integration should deliver any less. Integrate today and combine effortless, intelligent marketing automation with your WordPress website!

    ', ), 'insightly-crm' => array( 'group' => 'marketing', 'name' => 'insightly-crm', 'nicename' => 'Insightly CRM', 'link' => 'https://ninjaforms.com/extensions/insightly-crm/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Insightly+CRM', 'plugin_path' => 'ninja-forms-insightly-crm/ninja-forms-insightly-crm.php', 'modal_content' => '

    In order to use this action, you need Insightly CRM for Ninja Forms.

    The Insightly CRM extension for Ninja Forms enables you to send your form submission data directly into your Insightly CRM account, managing your sales leads effectively.

    ', ), 'register-user' => array( 'group' => 'management', 'name' => 'register-user', 'nicename' => 'Register User', 'link' => 'https://ninjaforms.com/extensions/user-management/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=User+Management', 'plugin_path' => 'ninja-forms-user-management/ninja-forms-user-management.php', 'modal_content' => '

    In order to use this action, you need User Management for Ninja Forms.

    With User Management for Ninja Forms, you can:

    • Register new users
    • Login registered users
    • Allow users to update their existing profiles
    ', ), 'login-user' => array( 'group' => 'management', 'name' => 'login-user', 'nicename' => 'Login User', 'link' => 'https://ninjaforms.com/extensions/user-management/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=User+Management', 'plugin_path' => 'ninja-forms-user-management/ninja-forms-user-management.php', 'modal_content' => '

    In order to use this action, you need User Management for Ninja Forms.

    With User Management for Ninja Forms, you can:

    • Register new users
    • Login registered users
    • Allow users to update their existing profiles
    ', ), 'update-profile' => array( 'group' => 'management', 'name' => 'update-profile', 'nicename' => 'Update Profile', 'link' => 'https://ninjaforms.com/extensions/user-management/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=User+Management', 'plugin_path' => 'ninja-forms-user-management/ninja-forms-user-management.php', 'modal_content' => '

    In order to use this action, you need User Management for Ninja Forms.

    With User Management for Ninja Forms, you can:

    • Register new users
    • Login registered users
    • Allow users to update their existing profiles
    ', ), 'helpscout' => array( 'group' => 'management', 'name' => 'helpscout', 'nicename' => 'Help Scout', 'link' => 'https://ninjaforms.com/extensions/help-scout/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Help+Scout', 'plugin_path' => 'ninja-forms-helpscout/ninja-forms-helpscout.php', 'modal_content' => '

    In order to use this action, you need Help Scout for Ninja Forms.

    Build the perfect support form for your users that funnels them directly into your Help Scout account. A great support experience begins with your support form!

    ', ), 'salesforce-crm' => array( 'group' => 'marketing', 'name' => 'salesforce-crm', 'nicename' => 'Salesforce CRM', 'link' => 'https://ninjaforms.com/extensions/salesforce-crm/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Salesforce+CRM', 'plugin_path' => 'ninja-forms-salesforce-crm/ninja-forms-salesforce-crm.php', 'modal_content' => '

    In order to use this action, you need Salesforce CRM for Ninja Forms.

    When the world’s most used CMS and the industry leading CRM come together, great things are bound to happen for your organization. WordPress and Salesforce is an integration that you need working for you!

    ', ), 'capsule-crm' => array( 'group' => 'marketing', 'name' => 'capsule-crm', 'nicename' => 'Capsule CRM', 'link' => 'https://ninjaforms.com/extensions/capsule-crm/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Capsule+CRM', 'plugin_path' => 'ninja-forms-capsule-crm/ninja-forms-capsule-crm.php', 'modal_content' => '

    In order to use this action, you need Capsule CRM for Ninja Forms.

    Connecting your WordPress website to your CRM account shouldn’t be a time sink for your team, but it too often can be. Take that pain away with effortless integration between WordPress and your CRM with Ninja Forms’ official Capsule CRM addon!

    ', ), 'recurly' => array( 'group' => 'payments', 'name' => 'recurly', 'nicename' => 'Recurly', 'link' => 'https://ninjaforms.com/extensions/recurly/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Recurly', 'plugin_path' => 'ninja-forms-recurly/ninja-forms-recurly.php', 'modal_content' => '

    In order to use this action, you need Recurly for Ninja Forms.

    You can use any form to sign up new members to a recurring subscription plan. Connect any form directly and securely to your Recurly account.

    ', ), 'highrise-crm' => array( 'group' => 'marketing', 'name' => 'highrise-crm', 'nicename' => 'Highrise CRM', 'link' => 'https://ninjaforms.com/extensions/highrise-crm/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=Highrise+CRM', 'plugin_path' => 'ninja-forms-highrise-crm/ninja-forms-highrise-crm.php', 'modal_content' => '

    In order to use this action, you need Highrise CRM for Ninja Forms.

    ', ), 'onepage-crm' => array( 'group' => 'marketing', 'name' => 'onepage-crm', 'nicename' => 'OnePage CRM', 'link' => 'https://ninjaforms.com/extensions/onepage-crm/?utm_source=Ninja+Forms+Plugin&utm_medium=Emails+and+Actions&utm_campaign=Builder+Actions+Drawer&utm_content=OnePage+CRM', 'plugin_path' => 'ninja-forms-onepagecrm/ninja-forms-onepage-crm.php', 'modal_content' => '

    In order to use this action, you need OnePage CRM for Ninja Forms.

    OnePage CRM is designed to keep your sales team focused on sales instead of navigating complex software. Ninja Forms’ official integration has been built with that ideal in mind and delivers in kind!

    ', ), ) ); includes/Config/i18nBuilder.php000064400000015633152331132460012366 0ustar00 esc_html__( 'Ninja Forms', 'ninja-forms' ), 'fieldsProductsPrice' => esc_html__( 'Price:', 'ninja-forms' ), 'fieldsProductsQuantity' => esc_html__( 'Quantity:', 'ninja-forms' ), 'fieldsTermsAdd' => esc_html__( 'Add', 'ninja-forms' ), 'fieldsTextareaOpenNewWindow' => esc_html__( 'Open in new window', 'ninja-forms' ), 'formHoneypot' => esc_html__( 'If you are a human seeing this field, please leave it empty.', 'ninja-forms' ), 'available' => esc_html__( 'Available', 'ninja-forms' ), 'installed' => esc_html__( 'Installed', 'ninja-forms' ), 'domainFormFields' => esc_html__( 'Form Fields', 'ninja-forms' ), 'domainActions' => esc_html__( 'Emails & Actions', 'ninja-forms' ), 'domainAdvanced' => esc_html__( 'Advanced', 'ninja-forms' ), 'errorInvalidEmailFromAddress' => sprintf( esc_html__( 'Possible issue detected. %sLearn More%s', 'ninja-forms' ), '', '' ), 'previousMonth' => esc_html__( 'Previous Month', 'ninja-forms' ), 'nextMonth' => esc_html__( 'Next Month', 'ninja-forms' ), 'months' => array( esc_html__( 'January', 'ninja-forms' ), esc_html__( 'February', 'ninja-forms' ), esc_html__( 'March', 'ninja-forms' ), esc_html__( 'April', 'ninja-forms' ), esc_html__( 'May', 'ninja-forms' ), esc_html__( 'June', 'ninja-forms' ), esc_html__( 'July', 'ninja-forms' ), esc_html__( 'August', 'ninja-forms' ), esc_html__( 'September', 'ninja-forms' ), esc_html__( 'October', 'ninja-forms' ), esc_html__( 'November', 'ninja-forms' ), esc_html__( 'December', 'ninja-forms' ) ), 'monthsShort' => array( esc_html__( 'Jan', 'ninja-forms' ), esc_html__( 'Feb', 'ninja-forms' ), esc_html__( 'Mar', 'ninja-forms' ), esc_html__( 'Apr', 'ninja-forms' ), esc_html__( 'May', 'ninja-forms' ), esc_html__( 'Jun', 'ninja-forms' ), esc_html__( 'Jul', 'ninja-forms' ), esc_html__( 'Aug', 'ninja-forms' ), esc_html__( 'Sep', 'ninja-forms' ), esc_html__( 'Oct', 'ninja-forms' ), esc_html__( 'Nov', 'ninja-forms' ), esc_html__( 'Dec', 'ninja-forms' ), ), 'weekdays' => array( esc_html__( 'Sunday', 'ninja-forms' ), esc_html__( 'Monday', 'ninja-forms' ), esc_html__( 'Tuesday', 'ninja-forms' ), esc_html__( 'Wednesday', 'ninja-forms' ), esc_html__( 'Thursday', 'ninja-forms' ), esc_html__( 'Friday', 'ninja-forms' ), esc_html__( 'Saturday', 'ninja-forms' ), ), 'weekdaysShort' => array( esc_html__( 'Sun', 'ninja-forms' ), esc_html__( 'Mon', 'ninja-forms' ), esc_html__( 'Tue', 'ninja-forms' ), esc_html__( 'Wed', 'ninja-forms' ), esc_html__( 'Thu', 'ninja-forms' ), esc_html__( 'Fri', 'ninja-forms' ), esc_html__( 'Sat', 'ninja-forms' ), ), 'weekdaysMin' => array( esc_html__( 'Su', 'ninja-forms' ), esc_html__( 'Mo', 'ninja-forms' ), esc_html__( 'Tu', 'ninja-forms' ), esc_html__( 'We', 'ninja-forms' ), esc_html__( 'Th', 'ninja-forms' ), esc_html__( 'Fr', 'ninja-forms' ), esc_html__( 'Sa', 'ninja-forms' ) ), 'fieldDataDeleteMsg' => sprintf( esc_html__( '%sThis will also DELETE all submission data associated with this field.%sYou will not be able to retrieve this data later!%s' ), '

    ', '

    ', '


    ' ), 'delete' => esc_html__( 'Delete' ), 'cancel' => esc_html__( 'Cancel' ), 'minVal' => esc_html__( 'Min Value' ), 'maxVal' => esc_html__( 'Max Value' ), 'valueChars' => esc_html__( 'In order to prevent errors, values may only contain' . ' a specific subset of characters ( a-z, 0-9, -, _, @, space ). You' . ' can use the option label in your success message(s) or email action(s) by adding' . ' the :label attribute to your list field merge tags. For example:' . ' {field:key:label}', 'ninja-forms' ), 'paymentsActionNicename' => esc_html__( 'Accept Payments & Donations', 'ninja-forms' ), 'marketingActionNicename' => esc_html__( 'Connect to Your Email Marketing or CRM Account', 'ninja-forms' ), 'managementActionNicename' => esc_html__( 'Manage Your Users Better', 'ninja-forms' ), 'workflowActionNicename' => esc_html__( 'Document & Workflow Management', 'ninja-forms' ), 'notificationsActionNicename' => esc_html__( 'Send SMS Form Notifications', 'ninja-forms' ), 'miscActionNicename' => esc_html__( 'Integrate with 1000+ More Services', 'ninja-forms' ), )); includes/Config/ActionCustomSettings.php000064400000000714152331132460014423 0ustar00 array( 'name' => 'tag', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Hook Tag', 'ninja-forms' ), 'placeholder' => '', 'value' => '', 'width' => 'full', 'use_merge_tags' => array( 'include' => array( 'calcs', ), ), ), );includes/Config/FormSettingsTypes.php000064400000001017152331132460013740 0ustar00 array( 'id' => 'display', 'nicename' => esc_html__( 'Display Settings', 'ninja-forms' ), ), 'restrictions' => array( 'id' => 'restrictions', 'nicename' => esc_html__( 'Restrictions', 'ninja-forms' ) ), 'calculations' => array( 'id' => 'calculations', 'nicename' => esc_html__( 'Calculations', 'ninja-forms') ), )); includes/Config/MergeTagsFieldsAJAX.php000064400000002004152331132460013735 0ustar00 array( 'id' => 'all_fields_table', 'tag' => '{all_fields_table}', 'label' => esc_html__( 'All Fields Table', 'ninja_forms' ), 'callback' => 'all_fields_table', 'fields' => array() ), 'fields_table' => array( 'id' => 'fields_table', 'tag' => '{fields_table}', 'label' => esc_html__( 'Fields Table', 'ninja_forms' ), 'callback' => 'fields_table', 'fields' => array() ), /* |-------------------------------------------------------------------------- | DEPRECATED |-------------------------------------------------------------------------- */ 'all_fields' => array( 'id' => 'all_fields', 'tag' => '{field:all_fields}', 'label' => esc_html__( 'All Fields', 'ninja_forms' ), 'callback' => 'all_fields', 'fields' => array() ), ));includes/Config/MergeTagsOther.php000064400000003076152331132460013156 0ustar00 array( 'tag' => '{querystring:YOUR_KEY}', 'label' => esc_html__( 'Query String', 'ninja_forms' ), 'callback' => null, ), /* |-------------------------------------------------------------------------- | System Date |-------------------------------------------------------------------------- */ 'date' => array( 'id' => 'date', 'tag' => '{other:date}', 'label' => esc_html__( 'Date', 'ninja_forms' ), 'callback' => 'system_date' ), /* |-------------------------------------------------------------------------- | System Date |-------------------------------------------------------------------------- */ 'time' => array( 'id' => 'time', 'tag' => '{other:time}', 'label' => esc_html__( 'Time', 'ninja_forms' ), 'callback' => 'system_time' ), /* |-------------------------------------------------------------------------- | System IP Address |-------------------------------------------------------------------------- */ 'ip' => array( 'id' => 'ip', 'tag' => '{other:user_ip}', 'label' => esc_html__( 'User IP Address', 'ninja_forms' ), 'callback' => 'user_ip' ), )); includes/Config/CountryList.php000064400000032601152331132460012571 0ustar00 'AF', esc_attr__( 'Albania', 'ninja-forms' ) => 'AL', esc_attr__( 'Algeria', 'ninja-forms' ) => 'DZ', esc_attr__( 'American Samoa', 'ninja-forms' ) => 'AS', esc_attr__( 'Andorra', 'ninja-forms' ) => 'AD', esc_attr__( 'Angola', 'ninja-forms' ) => 'AO', esc_attr__( 'Anguilla', 'ninja-forms' ) => 'AI', esc_attr__( 'Antarctica', 'ninja-forms' ) => 'AQ', esc_attr__( 'Antigua And Barbuda', 'ninja-forms' ) => 'AG', esc_attr__( 'Argentina', 'ninja-forms' ) => 'AR', esc_attr__( 'Armenia', 'ninja-forms' ) => 'AM', esc_attr__( 'Aruba', 'ninja-forms' ) => 'AW', esc_attr__( 'Australia', 'ninja-forms' ) => 'AU', esc_attr__( 'Austria', 'ninja-forms' ) => 'AT', esc_attr__( 'Azerbaijan', 'ninja-forms' ) => 'AZ', esc_attr__( 'Bahamas', 'ninja-forms' ) => 'BS', esc_attr__( 'Bahrain', 'ninja-forms' ) => 'BH', esc_attr__( 'Bangladesh', 'ninja-forms' ) => 'BD', esc_attr__( 'Barbados', 'ninja-forms' ) => 'BB', esc_attr__( 'Belarus', 'ninja-forms' ) => 'BY', esc_attr__( 'Belgium', 'ninja-forms' ) => 'BE', esc_attr__( 'Belize', 'ninja-forms' ) => 'BZ', esc_attr__( 'Benin', 'ninja-forms' ) => 'BJ', esc_attr__( 'Bermuda', 'ninja-forms' ) => 'BM', esc_attr__( 'Bhutan', 'ninja-forms' ) => 'BT', esc_attr__( 'Bolivia', 'ninja-forms' ) => 'BO', esc_attr__( 'Bosnia And Herzegowina', 'ninja-forms' ) => 'BA', esc_attr__( 'Botswana', 'ninja-forms' ) => 'BW', esc_attr__( 'Bouvet Island', 'ninja-forms' ) => 'BV', esc_attr__( 'Brazil', 'ninja-forms' ) => 'BR', esc_attr__( 'British Indian Ocean Territory', 'ninja-forms' ) => 'IO', esc_attr__( 'Brunei Darussalam', 'ninja-forms' ) => 'BN', esc_attr__( 'Bulgaria', 'ninja-forms' ) => 'BG', esc_attr__( 'Burkina Faso', 'ninja-forms' ) => 'BF', esc_attr__( 'Burundi', 'ninja-forms' ) => 'BI', esc_attr__( 'Cambodia', 'ninja-forms' ) => 'KH', esc_attr__( 'Cameroon', 'ninja-forms' ) => 'CM', esc_attr__( 'Canada', 'ninja-forms' ) => 'CA', esc_attr__( 'Cape Verde', 'ninja-forms' ) => 'CV', esc_attr__( 'Cayman Islands', 'ninja-forms' ) => 'KY', esc_attr__( 'Central African Republic', 'ninja-forms' ) => 'CF', esc_attr__( 'Chad', 'ninja-forms' ) => 'TD', esc_attr__( 'Chile', 'ninja-forms' ) => 'CL', esc_attr__( 'China', 'ninja-forms' ) => 'CN', esc_attr__( 'Christmas Island', 'ninja-forms' ) => 'CX', esc_attr__( 'Cocos (Keeling) Islands', 'ninja-forms' ) => 'CC', esc_attr__( 'Colombia', 'ninja-forms' ) => 'CO', esc_attr__( 'Comoros', 'ninja-forms' ) => 'KM', esc_attr__( 'Congo', 'ninja-forms' ) => 'CG', esc_attr__( 'Congo, The Democratic Republic Of The', 'ninja-forms' ) => 'CD', esc_attr__( 'Cook Islands', 'ninja-forms' ) => 'CK', esc_attr__( 'Costa Rica', 'ninja-forms' ) => 'CR', esc_attr__( 'Cote D\'Ivoire', 'ninja-forms' ) => 'CI', esc_attr__( 'Croatia (Local Name: Hrvatska)', 'ninja-forms' ) => 'HR', esc_attr__( 'Cuba', 'ninja-forms' ) => 'CU', esc_attr__( 'Cyprus', 'ninja-forms' ) => 'CY', esc_attr__( 'Czech Republic', 'ninja-forms' ) => 'CZ', esc_attr__( 'Denmark', 'ninja-forms' ) => 'DK', esc_attr__( 'Djibouti', 'ninja-forms' ) => 'DJ', esc_attr__( 'Dominica', 'ninja-forms' ) => 'DM', esc_attr__( 'Dominican Republic', 'ninja-forms' ) => 'DO', esc_attr__( 'Timor-Leste (East Timor)', 'ninja-forms' ) => 'TL', esc_attr__( 'Ecuador', 'ninja-forms' ) => 'EC', esc_attr__( 'Egypt', 'ninja-forms' ) => 'EG', esc_attr__( 'El Salvador', 'ninja-forms' ) => 'SV', esc_attr__( 'Equatorial Guinea', 'ninja-forms' ) => 'GQ', esc_attr__( 'Eritrea', 'ninja-forms' ) => 'ER', esc_attr__( 'Estonia', 'ninja-forms' ) => 'EE', esc_attr__( 'Ethiopia', 'ninja-forms' ) => 'ET', esc_attr__( 'Falkland Islands (Malvinas)', 'ninja-forms' ) => 'FK', esc_attr__( 'Faroe Islands', 'ninja-forms' ) => 'FO', esc_attr__( 'Fiji', 'ninja-forms' ) => 'FJ', esc_attr__( 'Finland', 'ninja-forms' ) => 'FI', esc_attr__( 'France', 'ninja-forms' ) => 'FR', esc_attr__( 'France, Metropolitan', 'ninja-forms' ) => 'FX', esc_attr__( 'French Guiana', 'ninja-forms' ) => 'GF', esc_attr__( 'French Polynesia', 'ninja-forms' ) => 'PF', esc_attr__( 'French Southern Territories', 'ninja-forms' ) => 'TF', esc_attr__( 'Gabon', 'ninja-forms' ) => 'GA', esc_attr__( 'Gambia', 'ninja-forms' ) => 'GM', esc_attr__( 'Georgia', 'ninja-forms' ) => 'GE', esc_attr__( 'Germany', 'ninja-forms' ) => 'DE', esc_attr__( 'Ghana', 'ninja-forms' ) => 'GH', esc_attr__( 'Gibraltar', 'ninja-forms' ) => 'GI', esc_attr__( 'Greece', 'ninja-forms' ) => 'GR', esc_attr__( 'Greenland', 'ninja-forms' ) => 'GL', esc_attr__( 'Grenada', 'ninja-forms' ) => 'GD', esc_attr__( 'Guadeloupe', 'ninja-forms' ) => 'GP', esc_attr__( 'Guam', 'ninja-forms' ) => 'GU', esc_attr__( 'Guatemala', 'ninja-forms' ) => 'GT', esc_attr__( 'Guinea', 'ninja-forms' ) => 'GN', esc_attr__( 'Guinea-Bissau', 'ninja-forms' ) => 'GW', esc_attr__( 'Guyana', 'ninja-forms' ) => 'GY', esc_attr__( 'Haiti', 'ninja-forms' ) => 'HT', esc_attr__( 'Heard And Mc Donald Islands', 'ninja-forms' ) => 'HM', esc_attr__( 'Holy See (Vatican City State)', 'ninja-forms' ) => 'VA', esc_attr__( 'Honduras', 'ninja-forms' ) => 'HN', esc_attr__( 'Hong Kong', 'ninja-forms' ) => 'HK', esc_attr__( 'Hungary', 'ninja-forms' ) => 'HU', esc_attr__( 'Iceland', 'ninja-forms' ) => 'IS', esc_attr__( 'India', 'ninja-forms' ) => 'IN', esc_attr__( 'Indonesia', 'ninja-forms' ) => 'ID', esc_attr__( 'Iran (Islamic Republic Of)', 'ninja-forms' ) => 'IR', esc_attr__( 'Iraq', 'ninja-forms' ) => 'IQ', esc_attr__( 'Ireland', 'ninja-forms' ) => 'IE', esc_attr__( 'Israel', 'ninja-forms' ) => 'IL', esc_attr__( 'Italy', 'ninja-forms' ) => 'IT', esc_attr__( 'Jamaica', 'ninja-forms' ) => 'JM', esc_attr__( 'Japan', 'ninja-forms' ) => 'JP', esc_attr__( 'Jordan', 'ninja-forms' ) => 'JO', esc_attr__( 'Kazakhstan', 'ninja-forms' ) => 'KZ', esc_attr__( 'Kenya', 'ninja-forms' ) => 'KE', esc_attr__( 'Kiribati', 'ninja-forms' ) => 'KI', esc_attr__( 'Korea, Democratic People\'s Republic Of', 'ninja-forms' ) => 'KP', esc_attr__( 'Korea, Republic Of', 'ninja-forms' ) => 'KR', esc_attr__( 'Kuwait', 'ninja-forms' ) => 'KW', esc_attr__( 'Kyrgyzstan', 'ninja-forms' ) => 'KG', esc_attr__( 'Lao People\'s Democratic Republic', 'ninja-forms' ) => 'LA', esc_attr__( 'Latvia', 'ninja-forms' ) => 'LV', esc_attr__( 'Lebanon', 'ninja-forms' ) => 'LB', esc_attr__( 'Lesotho', 'ninja-forms' ) => 'LS', esc_attr__( 'Liberia', 'ninja-forms' ) => 'LR', esc_attr__( 'Libyan Arab Jamahiriya', 'ninja-forms' ) => 'LY', esc_attr__( 'Liechtenstein', 'ninja-forms' ) => 'LI', esc_attr__( 'Lithuania', 'ninja-forms' ) => 'LT', esc_attr__( 'Luxembourg', 'ninja-forms' ) => 'LU', esc_attr__( 'Macau', 'ninja-forms' ) => 'MO', esc_attr__( 'Macedonia, Former Yugoslav Republic Of', 'ninja-forms' ) => 'MK', esc_attr__( 'Madagascar', 'ninja-forms' ) => 'MG', esc_attr__( 'Malawi', 'ninja-forms' ) => 'MW', esc_attr__( 'Malaysia', 'ninja-forms' ) => 'MY', esc_attr__( 'Maldives', 'ninja-forms' ) => 'MV', esc_attr__( 'Mali', 'ninja-forms' ) => 'ML', esc_attr__( 'Malta', 'ninja-forms' ) => 'MT', esc_attr__( 'Marshall Islands', 'ninja-forms' ) => 'MH', esc_attr__( 'Martinique', 'ninja-forms' ) => 'MQ', esc_attr__( 'Mauritania', 'ninja-forms' ) => 'MR', esc_attr__( 'Mauritius', 'ninja-forms' ) => 'MU', esc_attr__( 'Mayotte', 'ninja-forms' ) => 'YT', esc_attr__( 'Mexico', 'ninja-forms' ) => 'MX', esc_attr__( 'Micronesia, Federated States Of', 'ninja-forms' ) => 'FM', esc_attr__( 'Moldova, Republic Of', 'ninja-forms' ) => 'MD', esc_attr__( 'Monaco', 'ninja-forms' ) => 'MC', esc_attr__( 'Mongolia', 'ninja-forms' ) => 'MN', esc_attr__( 'Montenegro', 'ninja-forms' ) => 'ME', esc_attr__( 'Montserrat', 'ninja-forms' ) => 'MS', esc_attr__( 'Morocco', 'ninja-forms' ) => 'MA', esc_attr__( 'Mozambique', 'ninja-forms' ) => 'MZ', esc_attr__( 'Myanmar', 'ninja-forms' ) => 'MM', esc_attr__( 'Namibia', 'ninja-forms' ) => 'NA', esc_attr__( 'Nauru', 'ninja-forms' ) => 'NR', esc_attr__( 'Nepal', 'ninja-forms' ) => 'NP', esc_attr__( 'Netherlands', 'ninja-forms' ) => 'NL', esc_attr__( 'Netherlands Antilles', 'ninja-forms' ) => 'AN', esc_attr__( 'New Caledonia', 'ninja-forms' ) => 'NC', esc_attr__( 'New Zealand', 'ninja-forms' ) => 'NZ', esc_attr__( 'Nicaragua', 'ninja-forms' ) => 'NI', esc_attr__( 'Niger', 'ninja-forms' ) => 'NE', esc_attr__( 'Nigeria', 'ninja-forms' ) => 'NG', esc_attr__( 'Niue', 'ninja-forms' ) => 'NU', esc_attr__( 'Norfolk Island', 'ninja-forms' ) => 'NF', esc_attr__( 'Northern Mariana Islands', 'ninja-forms' ) => 'MP', esc_attr__( 'Norway', 'ninja-forms' ) => 'NO', esc_attr__( 'Oman', 'ninja-forms' ) => 'OM', esc_attr__( 'Pakistan', 'ninja-forms' ) => 'PK', esc_attr__( 'Palau', 'ninja-forms' ) => 'PW', esc_attr__( 'Panama', 'ninja-forms' ) => 'PA', esc_attr__( 'Papua New Guinea', 'ninja-forms' ) => 'PG', esc_attr__( 'Paraguay', 'ninja-forms' ) => 'PY', esc_attr__( 'Peru', 'ninja-forms' ) => 'PE', esc_attr__( 'Philippines', 'ninja-forms' ) => 'PH', esc_attr__( 'Pitcairn', 'ninja-forms' ) => 'PN', esc_attr__( 'Poland', 'ninja-forms' ) => 'PL', esc_attr__( 'Portugal', 'ninja-forms' ) => 'PT', esc_attr__( 'Puerto Rico', 'ninja-forms' ) => 'PR', esc_attr__( 'Qatar', 'ninja-forms' ) => 'QA', esc_attr__( 'Reunion', 'ninja-forms' ) => 'RE', esc_attr__( 'Romania', 'ninja-forms' ) => 'RO', esc_attr__( 'Russian Federation', 'ninja-forms' ) => 'RU', esc_attr__( 'Rwanda', 'ninja-forms' ) => 'RW', esc_attr__( 'Saint Kitts And Nevis', 'ninja-forms' ) => 'KN', esc_attr__( 'Saint Lucia', 'ninja-forms' ) => 'LC', esc_attr__( 'Saint Vincent And The Grenadines', 'ninja-forms' ) => 'VC', esc_attr__( 'Samoa', 'ninja-forms' ) => 'WS', esc_attr__( 'San Marino', 'ninja-forms' ) => 'SM', esc_attr__( 'Sao Tome And Principe', 'ninja-forms' ) => 'ST', esc_attr__( 'Saudi Arabia', 'ninja-forms' ) => 'SA', esc_attr__( 'Senegal', 'ninja-forms' ) => 'SN', esc_attr__( 'Serbia', 'ninja-forms' ) => 'RS', esc_attr__( 'Seychelles', 'ninja-forms' ) => 'SC', esc_attr__( 'Sierra Leone', 'ninja-forms' ) => 'SL', esc_attr__( 'Singapore', 'ninja-forms' ) => 'SG', esc_attr__( 'Slovakia (Slovak Republic)', 'ninja-forms' ) => 'SK', esc_attr__( 'Slovenia', 'ninja-forms' ) => 'SI', esc_attr__( 'Solomon Islands', 'ninja-forms' ) => 'SB', esc_attr__( 'Somalia', 'ninja-forms' ) => 'SO', esc_attr__( 'South Africa', 'ninja-forms' ) => 'ZA', esc_attr__( 'South Georgia, South Sandwich Islands', 'ninja-forms' ) => 'GS', esc_attr__( 'Spain', 'ninja-forms' ) => 'ES', esc_attr__( 'Sri Lanka', 'ninja-forms' ) => 'LK', esc_attr__( 'St. Helena', 'ninja-forms' ) => 'SH', esc_attr__( 'St. Pierre And Miquelon', 'ninja-forms' ) => 'PM', esc_attr__( 'Sudan', 'ninja-forms' ) => 'SD', esc_attr__( 'Suriname', 'ninja-forms' ) => 'SR', esc_attr__( 'Svalbard And Jan Mayen Islands', 'ninja-forms' ) => 'SJ', esc_attr__( 'Swaziland', 'ninja-forms' ) => 'SZ', esc_attr__( 'Sweden', 'ninja-forms' ) => 'SE', esc_attr__( 'Switzerland', 'ninja-forms' ) => 'CH', esc_attr__( 'Syrian Arab Republic', 'ninja-forms' ) => 'SY', esc_attr__( 'Taiwan', 'ninja-forms' ) => 'TW', esc_attr__( 'Tajikistan', 'ninja-forms' ) => 'TJ', esc_attr__( 'Tanzania, United Republic Of', 'ninja-forms' ) => 'TZ', esc_attr__( 'Thailand', 'ninja-forms' ) => 'TH', esc_attr__( 'Togo', 'ninja-forms' ) => 'TG', esc_attr__( 'Tokelau', 'ninja-forms' ) => 'TK', esc_attr__( 'Tonga', 'ninja-forms' ) => 'TO', esc_attr__( 'Trinidad And Tobago', 'ninja-forms' ) => 'TT', esc_attr__( 'Tunisia', 'ninja-forms' ) => 'TN', esc_attr__( 'Turkey', 'ninja-forms' ) => 'TR', esc_attr__( 'Turkmenistan', 'ninja-forms' ) => 'TM', esc_attr__( 'Turks And Caicos Islands', 'ninja-forms' ) => 'TC', esc_attr__( 'Tuvalu', 'ninja-forms' ) => 'TV', esc_attr__( 'Uganda', 'ninja-forms' ) => 'UG', esc_attr__( 'Ukraine', 'ninja-forms' ) => 'UA', esc_attr__( 'United Arab Emirates', 'ninja-forms' ) => 'AE', esc_attr__( 'United Kingdom', 'ninja-forms' ) => 'GB', esc_attr__( 'United States', 'ninja-forms' ) => 'US', esc_attr__( 'United States Minor Outlying Islands', 'ninja-forms' ) => 'UM', esc_attr__( 'Uruguay', 'ninja-forms' ) => 'UY', esc_attr__( 'Uzbekistan', 'ninja-forms' ) => 'UZ', esc_attr__( 'Vanuatu', 'ninja-forms' ) => 'VU', esc_attr__( 'Venezuela', 'ninja-forms' ) => 'VE', esc_attr__( 'Viet Nam', 'ninja-forms' ) => 'VN', esc_attr__( 'Virgin Islands (British)', 'ninja-forms' ) => 'VG', esc_attr__( 'Virgin Islands (U.S.)', 'ninja-forms' ) => 'VI', esc_attr__( 'Wallis And Futuna Islands', 'ninja-forms' ) => 'WF', esc_attr__( 'Western Sahara', 'ninja-forms' ) => 'EH', esc_attr__( 'Yemen', 'ninja-forms' ) => 'YE', esc_attr__( 'Yugoslavia', 'ninja-forms' ) => 'YU', esc_attr__( 'Zambia', 'ninja-forms' ) => 'ZM', esc_attr__( 'Zimbabwe', 'ninja-forms' ) => 'ZW' ));includes/Config/NewFormTemplates.php000064400000035200152331132460013524 0ustar00 array( //Same as slug name/ 'id' => 'slug_name', 'title' => 'nicename', 'template-desc' => '', ), */ $templates = array( /** * Regular old form templates */ 'formtemplate-contactform' => array( 'id' => 'formtemplate-contactform', 'title' => esc_html__( 'Contact Us', 'ninja-forms' ), 'template-desc' => esc_html__( 'Allow your users to contact you with this simple contact form. You can add and remove fields as needed.', 'ninja-forms' ), ), 'formtemplate-quoterequest' => array( 'id' => 'formtemplate-quoterequest', 'title' => esc_html__( 'Quote Request', 'ninja-forms' ), 'template-desc' => esc_html__( 'Manage quote requests from your website easily with this template. You can add and remove fields as needed.', 'ninja-forms' ), ), 'formtemplate-eventregistration' => array( 'id' => 'formtemplate-eventregistration', 'title' => esc_html__( 'Event Registration', 'ninja-forms' ), 'template-desc' => esc_html__( 'Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.', 'ninja-forms' ), ), 'formtemplate-enquiry' => array( 'id' => 'formtemplate-enquiry', 'title' => esc_html__( 'General Enquiry', 'ninja-forms' ), 'template-desc' => esc_html__( 'Collect user enquiries with this simple, generic form. You can add and remove fields as needed.', 'ninja-forms' ), ), 'formtemplate-feedback' => array( 'id' => 'formtemplate-feedback', 'title' => esc_html__( 'Collect feedback', 'ninja-forms' ), 'template-desc' => esc_html__( 'Collect feedback for an event, blog post, or anything else. You can add and remove fields as needed.', 'ninja-forms' ), ), 'formtemplate-questionnaire' => array( 'id' => 'formtemplate-questionnaire', 'title' => esc_html__( 'Questionnaire', 'ninja-forms' ), 'template-desc' => esc_html__( 'Collect information about your users. You can add and remove fields as needed.', 'ninja-forms' ), ), 'formtemplate-jobapplication' => array( 'id' => 'formtemplate-jobapplication', 'title' => esc_html__( 'Job Application', 'ninja-forms' ), 'template-desc' => esc_html__( 'Allow users to apply for a job. You can add and remove fields as needed.', 'ninja-forms' ), ), 'formtemplate-deletedata' => array( 'id' => 'formtemplate-deletedata', 'title' => esc_html__( 'Delete Data Request', 'ninja-forms' ), 'template-desc' => esc_html__( 'Includes action to add users to WordPress\' personal data delete tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.', 'ninja-forms' ), ), 'formtemplate-exportdata' => array( 'id' => 'formtemplate-exportdata', 'title' => esc_html__( 'Export Data Request', 'ninja-forms' ), 'template-desc' => esc_html__( 'Includes action to add users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.', 'ninja-forms' ), ), ); $ads = array( /** * Ads */ 'mailchimp-signup' => array( 'id' => 'mailchimp-signup', 'title' => esc_html__( 'MailChimp Signup', 'ninja-forms' ), 'template-desc' => esc_html__( 'Add a user to a list in MailChimp. You can add and remove fields as needed.', 'ninja-forms' ), 'type' => 'ad', 'modal-title' => 'Get MailChimp for Ninja Forms', 'modal-content' => '', ), 'stripe-payment' => array( 'id' => 'stripe-payment', 'title' => esc_html__( 'Stripe Payment', 'ninja-forms' ), 'template-desc' => esc_html__( 'Collect a payment using Stripe. You can add and remove fields as needed.', 'ninja-forms' ), 'type' => 'ad', 'modal-title' => 'Get Stripe for Ninja Forms', 'modal-content' => '', ), 'file-upload' => array( 'id' => 'file-upload', 'title' => esc_html__( 'File Upload', 'ninja-forms' ), 'template-desc' => esc_html__( 'Allow users to upload files with their forms. You can add and remove fields as needed.', 'ninja-forms' ), 'type' => 'ad', 'modal-title' => 'Get File Uploads for Ninja Forms', 'modal-content' => '', ), 'paypal-payment' => array( 'id' => 'paypal-payment', 'title' => esc_html__( 'PayPal Payment', 'ninja-forms' ), 'template-desc' => esc_html__( 'Collect a payment using PayPal Express. You can add and remove fields as needed.', 'ninja-forms' ), 'type' => 'ad', 'modal-title' => 'Get PayPal Express for Ninja Forms', 'modal-content' => '', ), 'create-post' => array( 'id' => 'create-post', 'title' => esc_html__( 'Create a Post', 'ninja-forms' ), 'template-desc' => esc_html__( 'Allow users to create posts from the front-end using a form, including custom post meta!', 'ninja-forms' ), 'type' => 'ad', 'modal-title' => 'Get Front-End Posting for Ninja Forms', 'modal-content' => '', ), 'register-user' => array( 'id' => 'register-user', 'title' => esc_html__( 'Register a User', 'ninja-forms' ), 'template-desc' => esc_html__( 'Register a WordPress User', 'ninja-forms' ), 'type' => 'ad', 'modal-title' => 'Get User Management for Ninja Forms', 'modal-content' => '', ), 'update-profile' => array( 'id' => 'update-profile', 'title' => esc_html__( 'Edit User Profile', 'ninja-forms' ), 'template-desc' => esc_html__( 'Allow WordPress users to edit their profiles from the front-end, including custom user meta!', 'ninja-forms' ), 'type' => 'ad', 'modal-title' => 'Get User Management for Ninja Forms', 'modal-content' => '', ), ); /** * If we've disabled marketing using our filter, don't merge in our ads. */ $disable_marketing = false; if ( ! apply_filters( 'ninja_forms_disable_marketing', $disable_marketing ) ) { $templates = array_merge( $templates, $ads ); } return apply_filters( 'ninja_forms_new_form_templates', $templates ); includes/Config/BatchProcesses.php000064400000001154152331132460013201 0ustar00 array( 'class_name' => 'NF_Admin_Processes_ChunkPublish', ), 'data_cleanup' => array( 'class_name' => 'NF_Admin_Processes_DataCleanup', ), 'expired_submission_cleanup' => array( 'class_name' => 'NF_Admin_Processes_ExpiredSubmissionCleanup', ), 'import_form' => array( 'class_name' => 'NF_Admin_Processes_ImportForm', ), 'import_form_template' => array( 'class_name' => 'NF_Admin_Processes_ImportFormTemplate', ), ));includes/Config/MergeTagsFields.php000064400000000232152331132460013272 0ustar00 array( 'id' => 'delete_on_uninstall', 'type' => 'html', 'html' => '', 'label' => esc_html__( 'Remove ALL Ninja Forms data upon uninstall?', 'ninja-forms' ), 'desc' => sprintf( esc_html__( 'ALL Ninja Forms data will be removed from the database and the Ninja Forms plug-in will be deactivated. %sAll form and submission data will be unrecoverable.%s', 'ninja-forms' ), '', '' ), ), /* |-------------------------------------------------------------------------- | Delete Prompt for Delete on Uninstall |-------------------------------------------------------------------------- */ 'delete_prompt' => array( 'id' => 'delete_prompt', 'type' => 'prompt', 'desc' => esc_html__( 'This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.', 'ninja-forms' ), ), /* |-------------------------------------------------------------------------- | Disable Admin Notices |-------------------------------------------------------------------------- */ 'disable_admin_notices' => array( 'id' => 'disable_admin_notices', 'type' => 'checkbox', 'label' => esc_html__( 'Disable Admin Notices', 'ninja-forms' ), 'desc' => esc_html__( 'Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.', 'ninja-forms' ), ), /* |-------------------------------------------------------------------------- | "Dev Mode" |-------------------------------------------------------------------------- */ 'builder_dev_mode' => array( 'id' => 'builder_dev_mode', 'type' => 'checkbox', 'label' => esc_html__( 'Form Builder "Dev Mode"', 'ninja-forms' ), ), /* |-------------------------------------------------------------------------- | Tracking Opt-in |-------------------------------------------------------------------------- */ 'allow_tracking' => array( 'id' => 'allow_tracking', 'type' => 'html', 'html' => '', 'label' => esc_html__( 'Allow Telemetry', 'ninja-forms' ), 'desc' => esc_html__( 'Opt-in to allow Ninja Forms to collect anonymous usage statistics from your site, such as PHP version, installed plugins, and other non-personally idetifiable informations.', 'ninja-forms' ), ), /* |-------------------------------------------------------------------------- | Opinionated Styles |-------------------------------------------------------------------------- */ 'opinionated_styles' => array( 'id' => 'opinionated_styles', 'type' => 'select', 'label' => esc_html__( 'Opinionated Styles', 'ninja-forms' ), 'options' => array( array( 'label' => esc_html__( 'None', 'ninja-forms' ), 'value' => '', ), array( 'label' => esc_html__( 'Light', 'ninja-forms' ), 'value' => 'light', ), array( 'label' => esc_html__( 'Dark', 'ninja-forms' ), 'value' => 'dark', ), ), 'desc' => esc_html__( 'Use default Ninja Forms styling conventions.', 'ninja-forms' ), 'value' => '' ), /* |-------------------------------------------------------------------------- | Rollback to v2.9.x |-------------------------------------------------------------------------- */ 'downgrade' => array( 'id' => 'downgrade', 'type' => 'html', 'html' => '
    ' . esc_html__( 'Downgrade', 'ninja-forms' ) . '
    ', 'label' => esc_html__( 'Downgrade to v2.9.x', 'ninja-forms' ), 'desc' => esc_html__( 'Downgrade to the most recent 2.9.x release.', 'ninja-forms' ) . '
    ' . esc_html__( 'IMPORTANT: All 3.0 data will be removed.', 'ninja-forms' ) . '
    ' . esc_html__( 'Please export any forms or submissions you do not want to be lost during this process.', 'ninja-forms' ) . '
    ', ), 'trash_expired_submissions' => array( 'id' => 'trash_expired_submissions', 'type' => 'html', 'html' => '
    ' . esc_html__( 'Move To Trash', 'ninja-forms' ) . '
    ', 'label' => esc_html__( 'Trash Expired Submissions', 'ninja-forms' ), 'desc' => esc_html__( 'This setting maybe helpful if your WordPress installation is not moving expired submissions to the trash properly.', 'ninja-forms' ), ), // Add a button for removing all forms from maintenance 'remove_maintenance_mode' => array( 'id' => 'remove_maintenance_mode', 'type' => 'html', 'html' => '
    ' . esc_html__( 'Remove Maintenance Mode', 'ninja-forms' ) . '
    ', 'label' => esc_html__( 'Remove Maintenance Mode', 'ninja-forms' ), 'desc' => esc_html__( 'Click this button if any of your forms are still in \'Maintenance Mode\' after performing any required updates.' , 'ninja-forms' ), ), )); includes/Config/FormRestrictionSettings.php000064400000010657152331132460015153 0ustar00 array( 'name' => 'unique-field-set', 'type' => 'fieldset', 'label' => esc_html__( 'Unique Field', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'settings' => array( /* * SET A UNIQUE FIELD */ 'unique_field' => array( 'name' => 'unique_field', 'type' => 'field-select', 'width' => 'full', 'group' => 'primary', 'field_value_format' => 'key', /* Optional */ 'field_types' => array( 'firstname', 'lastname', 'email', 'textbox', 'listselect', 'listradio', 'listmultiselect', 'date' ), ), /* * UNIQUE FIELD ERROR */ 'unique_field_error' => array( 'name' => 'unique_field_error', 'type' => 'textbox', 'label' => esc_html__( 'Unique Field Error Message', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => esc_textarea( __( 'A form with this value has already been submitted.', 'ninja-forms' ) ), ), ) ), 'logged-in-set' => array( 'name' => 'logged-in-set', 'type' => 'fieldset', 'label' => esc_html__( 'Logged In', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'settings' => array( /* * REQUIRE USER TO BE LOGGED IN TO VIEW FORM? */ 'logged_in' => array( 'name' => 'logged_in', 'type' => 'toggle', 'label' => esc_html__( 'Require user to be logged in to view form?', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'value' => FALSE, 'help' => esc_html__( 'Does apply to form preview.', 'ninja-forms' ) ), /* * NOT LOGGED-IN MESSAGE */ 'not_logged_in_msg' => array( 'name' => 'not_logged_in_msg', 'type' => 'rte', //TODO: Add WYSIWYG 'label' => esc_html__( 'Not Logged-In Message', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => '', ), ) ), 'limit-submissions-set' => array( 'name' => 'limit-submissions-set', 'type' => 'fieldset', 'label' => esc_html__( 'Limit Submissions', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'settings' => array( /* * LIMIT SUBMISSIONS */ 'sub_limit_number' => array( 'name' => 'sub_limit_number', 'type' => 'number', 'label' => esc_html__( 'Submission Limit', 'ninja-forms' ), 'width' => 'one-third', 'group' => 'primary', 'value' => NULL, 'help' => esc_html__( 'Does NOT apply to form preview.', 'ninja-forms' ) //TODO: Add following text below the element. //Select the number of submissions that this form will accept. Leave empty for no limit. ), /* * LIMIT REACHED MESSAGE */ 'sub_limit_msg' => array( 'name' => 'sub_limit_msg', 'type' => 'rte',//TODO: Add WYSIWYG 'label' => esc_html__( 'Limit Reached Message', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => esc_textarea( __( 'The form has reached its submission limit.', 'ninja-forms' ) ) //TODO: Add following text below the WYSIWYG. //Please enter a message that you want displayed when this form has reached its submission limit and will not //accept new submissions. ), ) ), )); includes/Config/MergeTagsForm.php000064400000004431152331132460012774 0ustar00 array( 'id' => 'form_id', 'tag' => '{form:id}', 'label' => esc_html__( 'Form ID', 'ninja_forms' ), 'callback' => 'get_form_id', ), /* |-------------------------------------------------------------------------- | Form Title |-------------------------------------------------------------------------- */ 'form_title' => array( 'id' => 'form_title', 'tag' => '{form:title}', 'label' => esc_html__( 'Form Title', 'ninja_forms' ), 'callback' => 'get_form_title', ), /* |-------------------------------------------------------------------------- | Submission Sequence Number |-------------------------------------------------------------------------- */ 'sub_seq' => array( 'id' => 'sub_seq', 'tag' => '{submission:sequence}', 'label' => esc_html__( 'Sub Sequence', 'ninja_forms' ), 'callback' => 'getSubSeq', ), /* |-------------------------------------------------------------------------- | Submission Count |-------------------------------------------------------------------------- */ 'sub_count' => array( 'id' => 'sub_count', 'tag' => '{submission:count}', 'label' => esc_html__( 'Submission Count', 'ninja_forms' ), 'callback' => 'get_sub_count', ), /* |-------------------------------------------------------------------------- | Display ONLY |-------------------------------------------------------------------------- | These merge tags are for display only and are processed elsewhere. */ 'all_fields_table' => array( 'id' => 'all_fields_table', 'tag' => '{all_fields_table}', 'label' => esc_html__( 'All Fields Table', 'ninja_forms' ), 'callback' => '', ), 'fields_table' => array( 'id' => 'fields_table', 'tag' => '{fields_table}', 'label' => esc_html__( 'Fields Table', 'ninja_forms' ), 'callback' => '', ), ));includes/Config/DashboardPromotions.php000064400000007735152331132460014265 0ustar00 array( 'id' => 'personal-20', 'location' => 'dashboard', 'type' => 'personal', 'content' => '', 'script' => "", ), /* |-------------------------------------------------------------------------- | Personal 50 |-------------------------------------------------------------------------- | */ 'personal-50' => array( 'id' => 'personal-50', 'location' => 'dashboard', 'type' => 'personal', 'content' => '', 'script' => "", ), /* |-------------------------------------------------------------------------- | Send WP |-------------------------------------------------------------------------- | */ 'sendwp-banner' => array( 'id' => 'sendwp-banner', 'location' => 'dashboard', 'content' => '', 'type' => 'sendwp', 'script' => " setTimeout(function(){ /* Wait for services to init. */ var data = { width: 450, closeOnClick: 'body', closeOnEsc: true, content: '

    Frustrated that WordPress email isn’t being received?

    Form submission notifications not hitting your inbox? Some of your visitors getting form feedback via email, others not? By default, your WordPress site sends emails through your web host, which can be unreliable. Your host has spent lots of time and money optimizing to serve your pages, not send your emails.

    Sign up for SendWP today, and never deal with WordPress email issues again!

    SendWP is an email service that removes your web host from the email equation.

    • Sends email through dedicated email service, increasing email deliverability.
    • Keeps form submission emails out of spam by using a trusted email provider.
    • On a shared web host? Don’t worry about emails being rejected because of blocked IP addresses.
    • $1 for the first month. $9/month after. Cancel anytime!


    ', btnPrimary: { text: 'Sign me up!', callback: function() { var spinner = document.createElement('span'); spinner.classList.add('dashicons', 'dashicons-update', 'dashicons-update-spin'); var w = this.offsetWidth; this.innerHTML = spinner.outerHTML; this.style.width = w+'px'; ninja_forms_sendwp_remote_install(); } }, btnSecondary: { text: 'Cancel', callback: function() { sendwpModal.toggleModal(false); } } } var sendwpModal = new NinjaModal(data); }, 500); " ), )); includes/Config/Example.php000064400000001550152331132460011664 0ustar00 array( 'name' => 'setting_name_here', 'type' => 'textbox', // 'textarea', 'number', 'toggle', etc 'label' => esc_html__( 'Label Here', 'ninja-forms'), 'width' => 'one-half', // 'full', 'one-half', 'one-third' 'group' => 'primary', // 'primary', 'restrictions', 'advanced' 'value' => '', 'help' => esc_html__( 'Help Text Here', 'ninja-forms' ), 'use_merge_tags' => TRUE, // TRUE or FALSE ), ));includes/Config/SettingsGroups.php000064400000001700152331132460013266 0ustar00 array( 'id' => 'primary', 'label' => '', 'display' => TRUE, 'priority' => 100 ), 'rte' => array( 'id' => 'rte', 'label' => esc_html__( 'Rich Text Editor (RTE)', 'ninja-forms' ) ), 'restrictions' => array( 'id' => 'restrictions', 'label' => esc_html__( 'Restrictions', 'ninja-forms' ) ), 'display' => array( 'id' => 'display', 'label' => esc_html__( 'Display', 'ninja-forms' ), 'priority' => 700 ), 'advanced' => array( 'id' => 'advanced', 'label' => esc_html__( 'Advanced', 'ninja-forms' ), 'priority' => 800 ), 'administration' => array( 'id' => 'administration', 'label' => esc_html__( 'Administration', 'ninja-forms' ), 'priority' => 900 ) )); includes/Config/i18nDashboard.php000064400000020612152331132460012660 0ustar00 esc_html__( 'Previous Month', 'ninja-forms' ), 'nextMonth' => esc_html__( 'Next Month', 'ninja-forms' ), 'months' => array( esc_html__( 'January', 'ninja-forms' ), esc_html__( 'February', 'ninja-forms' ), esc_html__( 'March', 'ninja-forms' ), esc_html__( 'April', 'ninja-forms' ), esc_html__( 'May', 'ninja-forms' ), esc_html__( 'June', 'ninja-forms' ), esc_html__( 'July', 'ninja-forms' ), esc_html__( 'August', 'ninja-forms' ), esc_html__( 'September', 'ninja-forms' ), esc_html__( 'October', 'ninja-forms' ), esc_html__( 'November', 'ninja-forms' ), esc_html__( 'December', 'ninja-forms' ) ), 'monthsShort' => array( esc_html__( 'Jan', 'ninja-forms' ), esc_html__( 'Feb', 'ninja-forms' ), esc_html__( 'Mar', 'ninja-forms' ), esc_html__( 'Apr', 'ninja-forms' ), esc_html__( 'May', 'ninja-forms' ), esc_html__( 'Jun', 'ninja-forms' ), esc_html__( 'Jul', 'ninja-forms' ), esc_html__( 'Aug', 'ninja-forms' ), esc_html__( 'Sep', 'ninja-forms' ), esc_html__( 'Oct', 'ninja-forms' ), esc_html__( 'Nov', 'ninja-forms' ), esc_html__( 'Dec', 'ninja-forms' ), ), 'weekdays' => array( esc_html__( 'Sunday', 'ninja-forms' ), esc_html__( 'Monday', 'ninja-forms' ), esc_html__( 'Tuesday', 'ninja-forms' ), esc_html__( 'Wednesday', 'ninja-forms' ), esc_html__( 'Thursday', 'ninja-forms' ), esc_html__( 'Friday', 'ninja-forms' ), esc_html__( 'Saturday', 'ninja-forms' ), ), 'weekdaysShort' => array( esc_html__( 'Sun', 'ninja-forms' ), esc_html__( 'Mon', 'ninja-forms' ), esc_html__( 'Tue', 'ninja-forms' ), esc_html__( 'Wed', 'ninja-forms' ), esc_html__( 'Thu', 'ninja-forms' ), esc_html__( 'Fri', 'ninja-forms' ), esc_html__( 'Sat', 'ninja-forms' ), ), 'weekdaysMin' => array( esc_html__( 'Su', 'ninja-forms' ), esc_html__( 'Mo', 'ninja-forms' ), esc_html__( 'Tu', 'ninja-forms' ), esc_html__( 'We', 'ninja-forms' ), esc_html__( 'Th', 'ninja-forms' ), esc_html__( 'Fr', 'ninja-forms' ), esc_html__( 'Sa', 'ninja-forms' ) ), 'deleteWarningA' => esc_html__( 'You are about to delete the form', 'ninja-forms' ), 'deleteWarningB' => esc_html__( 'Once deleted, it\'s fields and submissions cannot be recovered. Proceed with caution.', 'ninja-forms' ), 'deleteConfirmA' => esc_html__( 'Type', 'ninja-forms' ), 'deleteConfirmB' => esc_html__( 'to confirm', 'ninja-forms' ), 'delete' => esc_html__( 'Delete', 'ninja-forms' ), 'cancel' => esc_html__( 'Cancel', 'ninja-forms' ), 'deleteTitle' => esc_html__( 'Confirm Delete', 'ninja-forms' ), 'deleteXForm' => esc_html__( 'Export Form', 'ninja-forms' ), 'deleteXSubs' => esc_html__( 'Export Submissions', 'ninja-forms' ), 'optinContent' => sprintf( esc_html__( '%sWe would like to collect data about how Ninja Forms is used so that we can improve the experience for everyone. This data will not include ANY submission data or personally identifiable information.%sPlease check out our %sprivacy policy%s for additional clarification.%s', 'ninja-forms' ), '

    ', '

    ', '', '', '

    ' ), 'optinYesplease' => esc_html__( 'Yes, please send me occasional emails about Ninja Forms.', 'ninja-forms' ), 'optinSecondary' => esc_html__( 'Not Now', 'ninja-forms' ), 'optinPrimary' => esc_html__( 'Yes, I agree!', 'ninja-forms' ), 'optinAwesome' => esc_html__( 'Keep being awesome!', 'ninja-forms' ), 'optinThanks' => esc_html__( 'Thank you for opting in!', 'ninja-forms' ), 'cleanupContent' => sprintf( esc_html__( '%sOnce we begin this process, it might take several minutes to complete.%sNavigating away from this page before it is finished could lead to unexpected results.%sPlease confirm when you are ready to begin.%s', 'ninja-forms' ), '

    ', '

    ', '

    ', '

    ' ), 'cleanupSecondary' => esc_html__( 'Cancel', 'ninja-forms' ), 'cleanupPrimary' => sprintf( esc_html__( 'Clean up my data', 'ninja-forms' ) ), 'cleanupLoading' => esc_html__( 'Processing...', 'ninja-forms' ), 'noResult' => esc_html__( 'No Results Found.', 'ninja-forms' ), /** * Services Tab */ /** OAuth Controller */ 'oauthDisconnectContent' => sprintf( esc_html__( 'Disconnecting from my.ninjaforms.com will disrupt the functionality of all services. To manage your service subscriptions please visit %smy.ninjaforms.com%s', 'ninja-forms' ), '', '' ), 'oauthDisconnectConfirm' => esc_html__( 'Disconnect', 'ninja-forms' ), 'oauthDisconnectCancle' => esc_html__( 'Stay Connected', 'ninja-forms' ), 'oauthLearnMoreContent' => sprintf( esc_html__( '%sSince you’re using one of our Ninja Forms services, like Ninja Mail or our Add-on Manager, your site is connected to my.ninjaforms.com. This allows us to send data between your site and my.ninjaforms.com. For details about what is being shared, you can see our %sPrivacy Policy%s.%s', 'ninja-forms' ), '

    ', '', '', '

    '), /** Service Model */ 'serviceRedirect' => sprintf( esc_html__( '%sRedirecting to NinjaForms.com%s', 'ninja-forms' ), '

    ', '

    ' ), 'serviceUpdateError' => esc_html__( 'Unable to update the service.' , 'ninja-forms' ), )); includes/Config/ActionAkismetSettings.php000064400000002543152331132460014550 0ustar00 array( 'name' => 'name', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Name', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Name field', 'ninja-forms' ), 'width' => 'one-half', 'use_merge_tags' => true, ), 'email' => array( 'name' => 'email', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Email', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Email address field', 'ninja-forms' ), 'width' => 'one-half', 'use_merge_tags' => true, ), 'url' => array( 'name' => 'url', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'URL', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Field for a URL', 'ninja-forms' ), 'width' => 'one-half', 'use_merge_tags' => true, ), 'message' => array( 'name' => 'message', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Message', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Field for the message', 'ninja-forms' ), 'width' => 'one-half', 'use_merge_tags' => true, ), ) );includes/Config/ActionSuccessMessageSettings.php000064400000001045152331132460016064 0ustar00 array( 'name' => 'success_msg', 'type' => 'rte', 'group' => 'primary', 'label' => esc_html__( 'Message', 'ninja-forms' ), 'placeholder' => '', 'width' => 'full', 'value' => esc_textarea( __( 'Your form has been successfully submitted.', 'ninja-forms' ) ), 'use_merge_tags' => array( 'include' => array( 'calcs', ), ), ), ); includes/Config/PluginSettingsGeneral.php000064400000002772152331132460014555 0ustar00 array( 'id' => 'version', 'type' => 'desc', 'label' => esc_html__( 'Version', 'ninja-forms' ), 'desc' => '' ), /* |-------------------------------------------------------------------------- | Date Format |-------------------------------------------------------------------------- */ 'date_format' => array( 'id' => 'date_format', 'type' => 'textbox', 'label' => esc_html__( 'Date Format', 'ninja-forms' ), 'desc' => 'e.g. m/d/Y, d/m/Y - ' . sprintf( esc_html__( 'Tries to follow the %sPHP date() function%s specifications, but not every format is supported.', 'ninja-forms' ), '', '' ), ), /* |-------------------------------------------------------------------------- | Currency |-------------------------------------------------------------------------- */ 'currency' => array( 'id' => 'currency', 'type' => 'select', 'options' => Ninja_Forms::config( 'Currency' ), 'label' => esc_html__( 'Currency', 'ninja-forms' ), 'value' => 'USD' ), )); includes/Config/ActionDeleteDataRequestSettings.php000064400000002173152331132460016517 0ustar00 array( 'name' => 'message', 'type' => 'html', 'group' => 'primary', 'label' => esc_html__( 'This is a message', 'ninja-forms' ), 'value' => esc_html__( 'This action adds users to WordPress\' personal data delete tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.', 'ninja-forms' ), 'width' => 'full', 'use_merge_tags' => true, ), 'email' => array( 'name' => 'email', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Email', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Email address field', 'ninja-forms' ), 'width' => 'one-half', 'use_merge_tags' => true, ), 'anonymize' => array( 'name' => 'anonymize', 'type' => 'toggle', 'group' => 'advanced', 'label' => esc_html__( 'Anonymize Data', 'ninja-forms' ), 'width' => 'full', ), ) );includes/Config/DashboardMenuItems.php000064400000000746152331132460014015 0ustar00 array( 'slug' => 'widgets', 'niceName' => esc_html__( 'Forms', 'ninja-forms' ), ), 'services' => array( 'slug' => 'services', 'niceName' => esc_html__( 'Services', 'ninja-forms' ), ), 'apps' => array( 'slug' => 'apps', 'niceName' => esc_html__( 'Apps & Integrations', 'ninja-forms' ), ), )); includes/Config/i18nFrontEnd.php000064400000016005152331132460012511 0ustar00get_setting( 'date_format' ); if( ! $date_format ) $date_format = get_option( 'date_format' ); return apply_filters( 'ninja_forms_i18n_front_end', array( 'ninjaForms' => esc_html__( 'Ninja Forms', 'ninja-forms' ), 'changeEmailErrorMsg' => esc_html__( 'Please enter a valid email address!', 'ninja-forms' ), 'changeDateErrorMsg' => esc_html__( 'Please enter a valid date!', 'ninja-forms' ), 'confirmFieldErrorMsg' => esc_html__( 'These fields must match!', 'ninja-forms' ), 'fieldNumberNumMinError' => esc_html__( 'Number Min Error', 'ninja-forms' ), 'fieldNumberNumMaxError' => esc_html__( 'Number Max Error', 'ninja-forms' ), 'fieldNumberIncrementBy' => esc_html__( 'Please increment by ', 'ninja-forms' ), 'fieldTextareaRTEInsertLink' => esc_html__( 'Insert Link', 'ninja-forms' ), 'fieldTextareaRTEInsertMedia' => esc_html__( 'Insert Media', 'ninja-forms' ), 'fieldTextareaRTESelectAFile' => esc_html__( 'Select a file', 'ninja-forms' ), 'formErrorsCorrectErrors' => esc_html__( 'Please correct errors before submitting this form.', 'ninja-forms' ), 'formHoneypot' => esc_html__( 'If you are a human seeing this field, please leave it empty.', 'ninja-forms' ), 'validateRequiredField' => esc_html__( 'This is a required field.', 'ninja-forms' ), 'honeypotHoneypotError' => esc_html__( 'Honeypot Error', 'ninja-forms' ), 'fileUploadOldCodeFileUploadInProgress' => esc_html__( 'File Upload in Progress.', 'ninja-forms' ), 'fileUploadOldCodeFileUpload' => esc_html__( 'FILE UPLOAD', 'ninja-forms' ), 'currencySymbol' => Ninja_Forms()->get_setting( 'currency_symbol' ), 'fieldsMarkedRequired' => sprintf( esc_html__( 'Fields marked with an %s*%s are required', 'ninja-forms' ), '', '' ), 'thousands_sep' => $wp_locale->number_format[ 'thousands_sep' ], 'decimal_point' => $wp_locale->number_format[ 'decimal_point' ], 'siteLocale' => get_locale(), 'dateFormat' => $date_format, 'startOfWeek' => get_option( 'start_of_week' ), 'of' => esc_html__( 'of', 'ninja-forms' ), 'previousMonth' => esc_html__( 'Previous Month', 'ninja-forms' ), 'nextMonth' => esc_html__( 'Next Month', 'ninja-forms' ), 'months' => array( esc_html__( 'January', 'ninja-forms' ), esc_html__( 'February', 'ninja-forms' ), esc_html__( 'March', 'ninja-forms' ), esc_html__( 'April', 'ninja-forms' ), esc_html__( 'May', 'ninja-forms' ), esc_html__( 'June', 'ninja-forms' ), esc_html__( 'July', 'ninja-forms' ), esc_html__( 'August', 'ninja-forms' ), esc_html__( 'September', 'ninja-forms' ), esc_html__( 'October', 'ninja-forms' ), esc_html__( 'November', 'ninja-forms' ), esc_html__( 'December', 'ninja-forms' ) ), 'monthsShort' => array( esc_html__( 'Jan', 'ninja-forms' ), esc_html__( 'Feb', 'ninja-forms' ), esc_html__( 'Mar', 'ninja-forms' ), esc_html__( 'Apr', 'ninja-forms' ), esc_html__( 'May', 'ninja-forms' ), esc_html__( 'Jun', 'ninja-forms' ), esc_html__( 'Jul', 'ninja-forms' ), esc_html__( 'Aug', 'ninja-forms' ), esc_html__( 'Sep', 'ninja-forms' ), esc_html__( 'Oct', 'ninja-forms' ), esc_html__( 'Nov', 'ninja-forms' ), esc_html__( 'Dec', 'ninja-forms' ), ), 'weekdays' => array( esc_html__( 'Sunday', 'ninja-forms' ), esc_html__( 'Monday', 'ninja-forms' ), esc_html__( 'Tuesday', 'ninja-forms' ), esc_html__( 'Wednesday', 'ninja-forms' ), esc_html__( 'Thursday', 'ninja-forms' ), esc_html__( 'Friday', 'ninja-forms' ), esc_html__( 'Saturday', 'ninja-forms' ), ), 'weekdaysShort' => array( esc_html__( 'Sun', 'ninja-forms' ), esc_html__( 'Mon', 'ninja-forms' ), esc_html__( 'Tue', 'ninja-forms' ), esc_html__( 'Wed', 'ninja-forms' ), esc_html__( 'Thu', 'ninja-forms' ), esc_html__( 'Fri', 'ninja-forms' ), esc_html__( 'Sat', 'ninja-forms' ), ), 'weekdaysMin' => array( esc_html__( 'Su', 'ninja-forms' ), esc_html__( 'Mo', 'ninja-forms' ), esc_html__( 'Tu', 'ninja-forms' ), esc_html__( 'We', 'ninja-forms' ), esc_html__( 'Th', 'ninja-forms' ), esc_html__( 'Fr', 'ninja-forms' ), esc_html__( 'Sa', 'ninja-forms' ) ) )); includes/Config/ActionRedirectSettings.php000064400000000735152331132460014715 0ustar00 array( 'name' => 'redirect_url', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'URL', 'ninja-forms' ), 'placeholder' => '', 'width' => 'full', 'value' => '', 'use_merge_tags' => array( 'include' => array( 'calcs', ), ), ), ); includes/Config/ActionEmailSettings.php000064400000011474152331132460014205 0ustar00 array( 'name' => 'to', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'To', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Email address or search for a field', 'ninja-forms' ), 'value' => '{wp:admin_email}', 'width' => 'one-half', 'use_merge_tags' => TRUE, ), /* * Reply To */ 'reply_to' => array( 'name' => 'reply_to', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Reply To', 'ninja-forms' ), 'placeholder' => '', 'value' => '', 'width' => 'one-half', 'use_merge_tags' => TRUE, ), /* * Subject */ 'email_subject' => array( 'name' => 'email_subject', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Subject', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Subject Text or seach for a field', 'ninja-forms' ), 'value' => esc_textarea( __( 'Ninja Forms Submission', 'ninja-forms' ) ), 'width' => 'full', 'use_merge_tags' => TRUE, ), /* * Email Message */ 'email_message' => array( 'name' => 'email_message', 'type' => 'rte', 'group' => 'primary', 'label' => esc_html__( 'Email Message', 'ninja-forms' ), 'placeholder' => '', 'value' => '{fields_table}', 'width' => 'full', 'use_merge_tags' => array( 'include' => array( 'calcs', ), ), 'deps' => array( 'email_format' => 'html' ) ), 'email_message_plain' => array( 'name' => 'email_message_plain', 'type' => 'textarea', 'group' => 'primary', 'label' => esc_html__( 'Email Message', 'ninja-forms' ), 'placeholder' => '', 'value' => '', 'width' => 'full', 'use_merge_tags' => TRUE, 'deps' => array( 'email_format' => 'plain' ) ), /* |-------------------------------------------------------------------------- | Advanced Settings |-------------------------------------------------------------------------- */ /* * From Name */ 'from_name' => array( 'name' => 'from_name', 'type' => 'textbox', 'group' => 'advanced', 'label' => esc_html__( 'From Name', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Name or fields', 'ninja-forms' ), 'value' => '', 'width' => 'one-half', 'use_merge_tags' => TRUE, ), /* * From Address */ 'from_address' => array( 'name' => 'from_address', 'type' => 'textbox', 'group' => 'advanced', 'label' => esc_html__( 'From Address', 'ninja-forms' ), 'placeholder' => esc_attr__( 'One email address or field', 'ninja-forms' ), 'value' => '', 'use_merge_tags' => TRUE, ), /* * Format */ 'email_format' => array( 'name' => 'email_format', 'type' => 'select', 'options' => array( array( 'label' => esc_html__( 'HTML', 'ninja-forms' ), 'value' => 'html' ), array( 'label' => esc_html__( 'Plain Text', 'ninja-forms' ), 'value' => 'plain' ) ), 'group' => 'advanced', 'label' => esc_html__( 'Format', 'ninja-forms' ), 'value' => 'html', ), /* * Cc */ 'cc' => array( 'name' => 'cc', 'type' => 'textbox', 'group' => 'advanced', 'label' => esc_html__( 'Cc', 'ninja-forms' ), 'placeholder' => '', 'value' => '', 'use_merge_tags' => TRUE, ), /* * Bcc */ 'bcc' => array( 'name' => 'bcc', 'type' => 'textbox', 'group' => 'advanced', 'label' => esc_html__( 'Bcc', 'ninja-forms' ), 'placeholder' => '', 'value' => '', 'use_merge_tags' => TRUE, ), /* * Attach CSV */ 'attach_csv' => array( 'name' => 'attach_csv', 'type' => 'toggle', 'group' => 'primary', 'label' => esc_html__( 'Attach CSV', 'ninja-forms' ), ), /** * File Attachments */ 'file_attachment' => array( 'name' => 'file_attachment', 'type' => 'media', 'group' => 'advanced', 'label' => esc_html__('Add Attachment', 'ninja-forms'), 'width' => 'full', 'use_merge_tags' => false, ) )); includes/Config/ActionCollectPaymentSettings.php000064400000006067152331132460016103 0ustar00 array( 'name' => 'payment_gateways', 'type' => 'select', 'label' => esc_html__( 'Payment Gateways', 'ninja-forms' ), 'options' => array( array( 'label' => '--', 'value' => '' ), ), 'value' => '', 'width' => 'full', 'group' => 'primary', ), /* |-------------------------------------------------------------------------- | Payment Type |-------------------------------------------------------------------------- */ //building the payment type selector box 'payment_total_type' => array( 'name' => 'payment_total_type', 'type' => 'select', 'label' => esc_html__( 'Get Total From', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'options' => array( array( 'label' => esc_html__( '- Select One', 'ninja-forms' ), 'value' => '' ), array( 'label' => esc_html__( 'Calculation', 'ninja-forms' ), 'value' => 'calc' ), array( 'label' => esc_html__( 'Field', 'ninja-forms' ), 'value' => 'field' ), array( 'label' => esc_html__( 'Fixed Amount', 'ninja-forms' ), 'value' => 'fixed' ), ), ), //building the calc selector. 'payment_total_calc' => array( 'name' => 'payment_total', 'total_type' => 'calc', 'type' => 'select', 'label' => esc_html__( 'Select Calculation', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'deps' => array( 'payment_total_type' => 'calc', ), 'default_options' => array( 'label' => esc_html__( '- Select One', 'ninja-forms' ), 'value' => '0', ), 'use_merge_tags' => TRUE, ), //building the field selector. 'payment_total_field' => array( 'name' => 'payment_total', 'total_type' => 'field', 'type' => 'select', 'label' => esc_html__( 'Select Field', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'deps' => array( 'payment_total_type' => 'field', ), 'default_options' => array( 'label' => esc_html__( '- Select One', 'ninja-forms' ), 'value' => '0', ), 'use_merge_tags' => TRUE, ), //building the field selector. 'payment_total_fixed' => array( 'name' => 'payment_total', 'total_type' => 'fixed', 'type' => 'textbox', 'label' => esc_html__( 'Enter Amount', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'value' => '0', 'deps' => array( 'payment_total_type' => 'fixed', ), ), ));includes/Config/RequiredUpdates.php000064400000002700152331132460013375 0ustar00 array( 'class_name' => 'NF_Updates_CacheCollateActions', 'requires' => array( 'CacheCollateForms' ), 'nicename' => esc_html__( 'Update Actions Tables', 'ninja-forms' ), ), 'CacheCollateForms' => array( 'class_name' => 'NF_Updates_CacheCollateForms', 'requires' => array(), 'nicename' => esc_html__( 'Update Forms Tables', 'ninja-forms' ), ), 'CacheCollateFields' => array( 'class_name' => 'NF_Updates_CacheCollateFields', 'requires' => array( 'CacheCollateActions' ), 'nicename' => esc_html__( 'Update Fields Tables', 'ninja-forms' ), ), 'CacheCollateObjects' => array( 'class_name' => 'NF_Updates_CacheCollateObjects', 'requires' => array( 'CacheCollateFields' ), 'nicename' => esc_html__( 'Update Objects Tables', 'ninja-forms' ), ), 'CacheCollateCleanup' => array( 'class_name' => 'NF_Updates_CacheCollateCleanup', 'requires' => array( 'CacheCollateObjects' ), 'nicename' => esc_html__( 'Cleanup Orphan Records', 'ninja-forms' ), ), 'CacheFieldReconcilliation' => array( 'class_name' => 'NF_Updates_CacheFieldReconcilliation', 'requires' => array( 'CacheCollateCleanup' ), 'nicename' => esc_html__( 'Field Meta Cleanup.', 'ninja-forms' ), ), )); includes/Config/ActionSettings.php000064400000001135152331132460013226 0ustar00 array( 'name' => 'label', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Action Name', 'ninja-forms' ), 'placeholder' => '', 'width' => 'full', 'value' => '', ), /* * Active */ 'active' => array( 'name' => 'active', 'type' => 'toggle', 'label' => esc_html__( 'Active', 'ninja-forms' ), 'value' => 1 ), ) ); includes/Config/FieldSettings.php000064400000115246152331132460013045 0ustar00 array( 'name' => 'label', 'type' => 'textbox', 'label' => esc_html__( 'Label', 'ninja-forms'), 'width' => 'one-half', 'group' => 'primary', 'value' => '', 'help' => esc_html__( 'Enter the label of the form field. This is how users will identify individual fields.', 'ninja-forms' ), ), /* * LABEL POSITION */ 'label_pos' => array( 'name' => 'label_pos', 'type' => 'select', 'label' => esc_html__( 'Label Position', 'ninja-forms' ), 'options' => array( array( 'label' => esc_html__( 'Form Default', 'ninja-forms' ), 'value' => 'default' ), array( 'label' => esc_html__( 'Above Element', 'ninja-forms' ), 'value' => 'above' ), array( 'label' => esc_html__( 'Below Element', 'ninja-forms' ), 'value' => 'below' ), array( 'label' => esc_html__( 'Left of Element', 'ninja-forms' ), 'value' => 'left' ), array( 'label' => esc_html__( 'Right of Element', 'ninja-forms' ), 'value' => 'right' ), array( 'label' => esc_html__( 'Hidden', 'ninja-forms' ), 'value' => 'hidden' ), ), 'width' => 'one-half', 'group' => 'advanced', 'value' => 'default', 'help' => esc_html__( 'Select the position of your label relative to the field element itself.', 'ninja-forms' ), ), /* * REQUIRED */ 'required' => array( 'name' => 'required', 'type' => 'toggle', 'label' => esc_html__( 'Required Field', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'value' => FALSE, 'help' => esc_html__( 'Ensure that this field is completed before allowing the form to be submitted.', 'ninja-forms' ), ), /* * NUMBER */ 'number' => array( 'name' => 'number', 'type' => 'fieldset', 'label' => esc_html__( 'Number Options', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'settings' => array( array( 'name' => 'num_min', 'type' => 'number', 'placeholder' => '', 'label' => esc_html__( 'Min', 'ninja-forms' ), 'width' => 'one-third', 'value' => '' ), array( 'name' => 'num_max', 'type' => 'number', 'label' => esc_html__( 'Max', 'ninja-forms' ), 'placeholder' => '', 'width' => 'one-third', 'value' => '' ), array( 'name' => 'num_step', 'type' => 'textbox', 'label' => esc_html__( 'Step', 'ninja-forms' ), 'placeholder' => '', 'width' => 'one-third', 'value' => 1 ), ), ), /* * Checkbox Default Value */ 'checkbox_default_value' => array( 'name' => 'default_value', 'type' => 'select', 'label' => esc_html__( 'Default Value', 'ninja-forms' ), 'options' => array( array( 'label' => esc_html__( 'Unchecked', 'ninja-forms' ), 'value' => 'unchecked' ), array( 'label' => esc_html__( 'Checked', 'ninja-forms'), 'value' => 'checked', ), ), 'width' => 'one-half', 'group' => 'primary', 'value' => 'unchecked', ), /* * Checkbox Values */ 'checkbox_values' => array( 'name' => 'checkbox_values', 'type' => 'fieldset', 'label' => esc_html__( 'Checkbox Values', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'settings' => array( array( 'name' => 'checked_value', 'type' => 'textbox', 'label' => esc_html__( 'Checked Value', 'ninja-forms' ), 'value' => esc_textarea( __( 'Checked', 'ninja-forms' ) ), 'width' => 'one-half', ), array( 'name' => 'unchecked_value', 'type' => 'textbox', 'label' => esc_html__( 'Unchecked Value', 'ninja-forms' ), 'value' => esc_textarea( __( 'Unchecked', 'ninja-forms' ) ), 'width' => 'one-half', ), ), ), /* * List Display Style */ 'list_orientation' => array( 'name' => 'list_orientation', 'type' => 'button-toggle', 'width' => 'full', 'group' => 'primary', 'options' => array( array( 'label' => esc_html__( 'Horizontal', 'ninja-forms' ), 'value' => 'horizontal' ), array( 'label' => esc_html__( 'Vertical', 'ninja-forms' ), 'value' => 'vertical' ) ), 'label' => esc_html__( 'List Orientation', 'ninja-forms' ), 'value' => 'horizontal', ), /* * Max Columns */ 'num_columns' => array( 'name' => 'num_columns', 'type' => 'number', 'label' => esc_html__( 'Number of Columns', 'ninja-forms'), 'width' => 'one-half', 'group' => 'primary', 'value' => 3, 'deps' => array( 'list_orientation' => 'horizontal' ), ), /* * Allow multi-select */ 'allow_multi_select' => array( 'name' => 'allow_multi_select', 'type' => 'toggle', 'label' => esc_html__( 'Allow Multiple Selections', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'value' => FALSE, ), /* * Show option labels */ 'show_option_labels' => array( 'name' => 'show_option_labels', 'type' => 'toggle', 'label' => esc_html__( 'Show Labels', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'value' => TRUE, ), /* * OPTIONS */ 'options' => array( 'name' => 'options', 'type' => 'option-repeater', 'label' => esc_html__( 'Options', 'ninja-forms' ) . ' ' . esc_html__( 'Add New', 'ninja-forms' ) . ' ' . esc_html__( 'Import', 'ninja-forms' ) . '', 'width' => 'full', 'group' => 'primary', // 'value' => 'option-repeater', 'value' => array( array( 'label' => esc_html__( 'One', 'ninja-forms' ), 'value' => esc_textarea( __( 'one', 'ninja-forms' ) ), 'calc' => '', 'selected' => 0, 'order' => 0 ), array( 'label' => esc_html__( 'Two', 'ninja-forms' ), 'value' => esc_textarea( __( 'two', 'ninja-forms' ) ), 'calc' => '', 'selected' => 0, 'order' => 1 ), array( 'label' => esc_html__( 'Three', 'ninja-forms' ), 'value' => esc_textarea( __( 'three', 'ninja-forms' ) ), 'calc' => '', 'selected' => 0, 'order' => 2 ), ), 'columns' => array( 'label' => array( 'header' => esc_html__( 'Label', 'ninja-forms' ), 'default' => '', ), 'value' => array( 'header' => esc_html__( 'Value', 'ninja-forms' ), 'default' => '', ), 'calc' => array( 'header' => esc_html__( 'Calc Value', 'ninja-forms' ), 'default' => '', ), 'selected' => array( 'header' => '', 'default' => 0, ), ), ), /* * IMAGE OPTIONS */ 'image_options' => array( 'name' => 'image_options', 'type' => 'image-option-repeater', 'label' => esc_html__( 'Image Options', 'ninja-forms' ) . ' ' . esc_html__( 'Add New', 'ninja-forms' ) . '', 'width' => 'full', 'group' => 'primary', // 'value' => 'option-repeater', 'value' => array( array( 'label' => '', 'image' => '', 'value' => '', 'image_id' => '', 'calc' => '', 'selected' => 0, 'order' => 0 ), array( 'label' => '', 'image' => '', 'value' => '', 'image_id' => '', 'calc' => '', 'selected' => 0, 'order' => 1 ), array( 'label' => '', 'image' => '', 'value' => '', 'image_id' => '', 'calc' => '', 'selected' => 0, 'order' => 2 ), ), 'columns' => array( 'label' => array( 'header' => esc_html__( 'Label', 'ninja-forms' ), 'default' => '', ), 'value' => array( 'header' => esc_html__( 'Value', 'ninja-forms' ), 'default' => '', ), 'calc' => array( 'header' => esc_html__( 'Calc Value', 'ninja-forms' ), 'default' => '', ), 'selected' => array( 'header' => '', 'default' => 0, ), ), ), /* |-------------------------------------------------------------------------- | Restriction Settings |-------------------------------------------------------------------------- | | Limit the behavior or validation of an input. | */ /* * MASK */ 'mask' => array( 'name' => 'mask', 'type' => 'select', 'label' => esc_html__( 'Input Mask', 'ninja-forms'), 'width' => 'one-half', 'group' => 'restrictions', 'help' => esc_html__( 'Restricts the kind of input your users can put into this field.', 'ninja-forms' ), 'options' => array( array( 'label' => esc_html__( 'none', 'ninja-forms' ), 'value' => '' ), array( 'label' => esc_html__( 'US Phone', 'ninja-forms' ), 'value' => '(999) 999-9999', ), array( 'label' => esc_html__( 'Date', 'ninja-forms' ), 'value' => '99/99/9999', ), array( 'label' => esc_html__( 'Currency', 'ninja-forms' ), 'value' => 'currency', ), array( 'label' => esc_html__( 'Custom', 'ninja-forms' ), 'value' => 'custom', ), ), 'value' => '', ), /* * CUSTOM MASK */ 'custom_mask' => array( 'name' => 'custom_mask', 'type' => 'textbox', 'label' => esc_html__( 'Custom Mask', 'ninja-forms'), 'width' => 'one-half', 'group' => 'restrictions', 'value' => '', 'deps' => array( 'mask' => 'custom' ), 'placeholder' => '', 'help' => sprintf( '%s' . esc_html__( 'a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.', 'ninja-forms' ) . '%s' . esc_html__( '9 - Represents a numeric character (0-9) - Only allows numbers to be entered.', 'ninja-forms' ) . '%s' . esc_html__( '* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.', 'ninja-forms' ) . '%s', '
    • ', '
    • ', '
    • ', '
    ' ), ), /* * INPUT LIMIT SET */ 'input_limit_set' => array( 'name' => 'input_limit_set', 'type' => 'fieldset', 'label' => esc_html__( 'Limit Input to this Number', 'ninja-forms' ), 'width' => 'full', 'group' => 'restrictions', 'settings' => array( array( 'name' => 'input_limit', 'type' => 'textbox', 'width' => 'one-half', 'value' => '', 'label' => '', ), array( 'name' => 'input_limit_type', 'type' => 'select', 'options' => array( array( 'label' => esc_html__( 'Character(s)', 'ninja-forms' ), 'value' => 'characters' ), array( 'label' => esc_html__( 'Word(s)', 'ninja-forms' ), 'value' => 'word' ), ), 'value' => 'characters', 'label' => '', ), array( 'name' => 'input_limit_msg', 'type' => 'textbox', 'label' => esc_html__( 'Text to Appear After Counter', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Character(s) left', 'ninja-forms' ), 'width' => 'full', 'value' => esc_textarea( __( 'Character(s) left', 'ninja-forms' ) ) ) ), ), /* |-------------------------------------------------------------------------- | Advanced Settings |-------------------------------------------------------------------------- | | The least commonly used settings for a field. | These settings should only be used for specific reasons. | */ /* * Custom Name Attribute */ 'custom_name_attribute' => array( 'name' => 'custom_name_attribute', 'type' => 'textbox', 'label' => esc_html__( 'Custom Name Attribute', 'ninja-forms' ), 'width' => 'full', 'group' => 'advanced', 'value' => '', 'help' => esc_html__( 'This value will be used as the HTML input "name" attribute.', 'ninja-forms' ), 'use_merge_tags' => FALSE, ), /* * INPUT PLACEHOLDER */ 'placeholder' => array( 'name' => 'placeholder', 'type' => 'textbox', 'label' => esc_html__( 'Placeholder', 'ninja-forms' ), 'width' => 'full', 'group' => 'display', 'value' => '', 'help' => esc_html__( 'Enter text you would like displayed in the field before a user enters any data.', 'ninja-forms' ), 'use_merge_tags' => FALSE, ), /* * DEFAULT VALUE */ 'default' => array( 'name' => 'default', 'label' => esc_html__( 'Default Value', 'ninja-forms' ), 'type' => 'textbox', 'width' => 'full', 'value' => '', 'group' => 'display', 'use_merge_tags' => array( 'exclude' => array( 'fields' ) ), ), /* * CLASSES */ 'classes' => array( 'name' => 'classes', 'type' => 'fieldset', 'label' => esc_html__( 'Custom Class Names', 'ninja-forms' ), 'width' => 'full', 'group' => 'display', 'settings' => array( array( 'name' => 'container_class', 'type' => 'textbox', 'placeholder' => '', 'label' => esc_html__( 'Container', 'ninja-forms' ), 'width' => 'one-half', 'value' => '', 'use_merge_tags' => FALSE, 'help' => esc_html__( 'Adds an extra class to your field wrapper.', 'ninja-forms' ), ), array( 'name' => 'element_class', 'type' => 'textbox', 'label' => esc_html__( 'Element', 'ninja-forms' ), 'placeholder' => '', 'width' => 'one-half', 'value' => '', 'use_merge_tags' => FALSE, 'help' => esc_html__( 'Adds an extra class to your field element.', 'ninja-forms' ), ), ), ), /* * DATE FORMAT */ 'date_format' => array( 'name' => 'date_format', 'type' => 'select', 'label' => esc_html__( 'Format', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'options' => array( array( 'label' => esc_html__( 'Default', 'ninja-forms' ), 'value' => 'default', ), array( 'label' => esc_html__( 'DD/MM/YYYY', 'ninja-forms' ), 'value' => 'DD/MM/YYYY', ), array( 'label' => esc_html__( 'DD-MM-YYYY', 'ninja-forms' ), 'value' => 'DD-MM-YYYY', ), array( 'label' => esc_html__( 'DD.MM.YYYY', 'ninja-forms' ), 'value' => 'DD.MM.YYYY', ), array( 'label' => esc_html__( 'MM/DD/YYYY', 'ninja-forms' ), 'value' => 'MM/DD/YYYY', ), array( 'label' => esc_html__( 'MM-DD-YYYY', 'ninja-forms' ), 'value' => 'MM-DD-YYYY', ), array( 'label' => esc_html__( 'MM.DD.YYYY', 'ninja-forms' ), 'value' => 'MM.DD.YYYY', ), array( 'label' => esc_html__( 'YYYY-MM-DD', 'ninja-forms' ), 'value' => 'YYYY-MM-DD', ), array( 'label' => esc_html__( 'YYYY/MM/DD', 'ninja-forms' ), 'value' => 'YYYY/MM/DD', ), array( 'label' => esc_html__( 'YYYY.MM.DD', 'ninja-forms' ), 'value' => 'YYYY.MM.DD', ), array( 'label' => esc_html__( 'Friday, November 18, 2019', 'ninja-forms' ), 'value' => 'dddd, MMMM D YYYY', ), ), 'value' => 'default', ), /* * DATE DEFAULT */ 'date_default' => array( 'name' => 'date_default', 'type' => 'toggle', 'label' => esc_html__( 'Default To Current Date', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary' ), /* * Year Range */ 'year_range' => array( 'name' => 'year_range', 'type' => 'fieldset', 'label' => esc_html__( 'Year Range', 'ninja-forms' ), 'width' => 'full', 'group' => 'advanced', 'settings' => array( array( 'name' => 'year_range_start', 'type' => 'number', 'label' => esc_html__( 'Start Year', 'ninja_forms' ), 'value' => '' ), array( 'name' => 'year_range_end', 'type' => 'number', 'label' => esc_html__( 'End Year', 'ninja_forms' ), 'value' => '' ), ) ), /* * TIME SETTING */ 'time_submit' => array( 'name' => 'time_submit', 'type' => 'textbox', 'label' => esc_html__( 'Number of seconds for timed submit.', 'ninja-forms' ), 'width' => 'full', 'group' => 'advanced', 'value' => FALSE, ), /* * KEY */ 'key' => array( 'name' => 'key', 'type' => 'textbox', 'label' => esc_html__( 'Field Key', 'ninja-forms'), 'width' => 'full', 'group' => 'administration', 'value' => '', 'help' => esc_html__( 'Creates a unique key to identify and target your field for custom development.', 'ninja-forms' ), ), /* * ADMIN LABEL */ 'admin_label' => array( 'name' => 'admin_label', 'type' => 'textbox', 'label' => esc_html__( 'Admin Label', 'ninja-forms' ), 'width' => 'full', 'group' => 'administration', 'value' => '', 'help' => esc_html__( 'Label used when viewing and exporting submissions.', 'ninja-forms' ), ), /* * HELP */ 'help' => array( 'name' => 'help', 'type' => 'fieldset', 'label' => esc_html__( 'Help Text', 'ninja-forms' ), 'group' => 'display', 'help' => esc_html__( 'Shown to users as a hover.', 'ninja-forms' ), 'settings' => array( /* * HELP TEXT */ 'help_text' => array( 'name' => 'help_text', 'type' => 'rte', 'label' => '', 'width' => 'full', 'group' => 'advanced', 'value' => '', 'use_merge_tags' => true, ), ), ), /* * DESCRIPTION */ 'description' => array( 'name' => 'description', 'type' => 'fieldset', 'label' => esc_html__( 'Description', 'ninja-forms' ), 'group' => 'display', 'settings' => array( /* * DESCRIPTION TEXT */ 'desc_text' => array( 'name' => 'desc_text', 'type' => 'rte', 'label' => '', 'width' => 'full', 'use_merge_tags' => true, ), ), ), /* * NUMERIC SORT */ 'num_sort' => array( 'name' => 'num_sort', 'type' => 'toggle', 'label' => esc_html__( 'Sort as Numeric', 'ninja-forms'), 'width' => 'full', 'group' => 'administration', 'value' => '', 'help' => esc_html__( 'This column in the submissions table will sort by number.', 'ninja-forms' ), ), 'personally_identifiable' => array( 'name' => 'personally_identifiable', 'type' => 'toggle', 'group' => 'advanced', 'label' => esc_html__( 'This Field Is Personally Identifiable Data', 'ninja-forms' ), 'width' => 'full', 'value' => '', 'help' => esc_html__( 'This option helps with privacy regulation compliance', 'ninja-forms' ), ), /* |-------------------------------------------------------------------------- | Display Settings |-------------------------------------------------------------------------- */ // Multi-Select List Only 'multi_size' => array( 'name' => 'multi_size', 'type' => 'number', 'label' => esc_html__( 'Multi-Select Box Size', 'ninja-forms'), 'width' => 'one-half', 'group' => 'advanced', 'value' => 5, ), /* |-------------------------------------------------------------------------- | Un-Grouped Settings |-------------------------------------------------------------------------- | | Hidden from grouped listings, but still searchable. | */ 'manual_key' => array( 'name' => 'manual_key', 'type' => 'bool', 'value' => FALSE, ), 'timed_submit_label' => array( 'name' => 'timed_submit_label', 'type' => 'textbox', 'label' => esc_html__( 'Label', 'ninja-forms' ), //The following text appears below the element //'Submit button text after timer expires' 'width' => '', 'group' => '', 'value' => '', 'use_merge_tags' => TRUE, ), /* * Timed Submit Timer */ 'timed_submit_timer' => array( 'name' => 'timed_submit_timer', 'type' => 'textbox', 'label' => esc_html__( 'Label' , 'ninja-forms' ), // This text was located below the element '%n will be used to signfify the number of seconds' 'value' => sprintf( esc_textarea( __( 'Please wait %s seconds', 'ninja-forms' ) ), '%n'), 'width' => '', 'group' => '', ), /* * Timed Submit Countdown */ 'timed_submit_countdown' => array ( 'name' => 'timed_submit_countdown', 'type' => 'number', 'label' => esc_html__( 'Number of seconds for the countdown', 'ninja-forms' ), //The following text appears to the right of the element //"This is how long the user must waitin to submit the form" 'value' => 10, 'width' => '', 'group' => '', ), /* * Password Registration checkbox */ 'password_registration_checkbox' => array( 'name' => 'password_registration_checkbox', 'type' => 'checkbox', 'value' => 'unchecked', 'label' => esc_html__( 'Use this as a registration password field. If this box is check, both password and re-password textboxes will be output', 'ninja-forms' ), 'width' => '', 'group' => '', ), /* * Number of Stars Textbox */ 'number_of_stars' => array( 'name' => 'number_of_stars', 'type' => 'textbox', 'value' => 5, 'label' => esc_html__( 'Number of stars', 'ninja-forms' ), 'width' => 'full', 'group' => '', ), /* * Disable Browser Autocomplete */ 'disable_browser_autocomplete' => array( 'name' => 'disable_browser_autocomplete', 'type' => 'toggle', 'label' => esc_html__( 'Disable Browser Autocomplete', 'ninja-forms' ), 'width' => 'full', 'group' => 'restrictions', ), /* * Disable input */ 'disable_input' => array( 'name' => 'disable_input', 'type' => 'toggle', 'label' => esc_html__( 'Disable Input', 'ninja-forms' ), 'width' => 'full', 'group' => 'restrictions', ), //TODO: Ask about the list of states and countries. /* * Country - Use Custom First Option */ 'use_custom_first_option' => array( 'name' => 'use_custom_first_option', 'type' => 'checkbox', 'value' => 'unchecked', 'label' => esc_html__( 'Use a custom first option', 'ninja-forms' ), 'width' => '', 'group' => '', ), /* * Country - Custom first option */ 'custom_first_option' => array( 'name' => 'custom_first_option', 'type' => 'textbox', 'label' => esc_html__( 'Custom first option', 'ninja-forms' ), 'width' => '', 'group' => '', 'value' => FALSE, ), 'type' => array( 'name' => 'type', 'type' => 'select', 'options' => array(), 'label' => esc_html__( 'Type', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => 'single', ), 'fieldset' => array( 'name' => 'fieldset', 'type' => 'fieldset', 'label' => esc_html__( 'Settings', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'settings' => array(), ), 'confirm_field' => array( 'name' => 'confirm_field', 'type' => 'field-select', 'label' => esc_html__( 'Confirm', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary' ), /* |-------------------------------------------------------------------------- | Textarea Settings |-------------------------------------------------------------------------- */ 'textarea_rte' => array( 'name' => 'textarea_rte', 'type' => 'toggle', 'label' => esc_html__( 'Show Rich Text Editor', 'ninja-forms' ), 'width' => 'one-third', 'group' => 'display', 'value' => '', 'help' => esc_html__( 'Allows rich text input.', 'ninja-forms' ), ), 'textarea_media' => array( 'name' => 'textarea_media', 'type' => 'toggle', 'label' => esc_html__( 'Show Media Upload Button', 'ninja-forms' ), 'width' => 'one-third', 'group' => 'display', 'value' => '', 'deps' => array( 'textarea_rte' => 1 ) ), 'disable_rte_mobile' => array( 'name' => 'disable_rte_mobile', 'type' => 'toggle', 'label' => esc_html__( 'Disable Rich Text Editor on Mobile', 'ninja-forms' ), 'width' => 'one-third', 'group' => 'display', 'value' => '', 'deps' => array( 'textarea_rte' => 1 ) ), /* |-------------------------------------------------------------------------- | Submit Button Settings |-------------------------------------------------------------------------- */ 'processing_label' => array( 'name' => 'processing_label', 'type' => 'textbox', 'label' => esc_html__( 'Processing Label', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => esc_textarea( __( 'Processing', 'ninja-forms' ) ) ), /* |-------------------------------------------------------------------------- | Calc Value that is used for checkbox fields |-------------------------------------------------------------------------- */ 'checked_calc_value' => array( 'name' => 'checked_calc_value', 'type' => 'textbox', 'label' => esc_html__( 'Checked Calculation Value', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'advanced', 'help' => esc_html__( 'This number will be used in calculations if the box is checked.', 'ninja-forms' ), ), 'unchecked_calc_value' => array( 'name' => 'unchecked_calc_value', 'type' => 'textbox', 'label' => esc_html__( 'Unchecked Calculation Value', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'advanced', 'help' => esc_html__( 'This number will be used in calculations if the box is unchecked.', 'ninja-forms' ), ), /* |-------------------------------------------------------------------------- | DISPLAY CALCULATION SETTINGS |-------------------------------------------------------------------------- */ 'calc_var' => array( 'name' => 'calc_var', 'type' => 'select', 'label' => esc_html__( 'Display This Calculation Variable', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'options' => array(), 'select_product' => array( 'value' => '', 'label' => esc_html__( '- Select a Variable', 'ninja-forms' ), ), ), /* |-------------------------------------------------------------------------- | Pricing Fields Settings |-------------------------------------------------------------------------- */ 'product_price' => array( 'name' => 'product_price', 'type' => 'textbox', 'label' => esc_html__( 'Price', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'value' => '1.00', 'mask' => array( 'type' => 'currency', // 'numeric', 'currency', 'custom' 'options' => array() ) ), 'product_use_quantity' => array( 'name' => 'product_use_quantity', 'type' => 'toggle', 'label' => esc_html__( 'Use Inline Quantity', 'ninja-forms' ), 'width' => 'one-half', 'group' => 'primary', 'value' => TRUE, 'help' => esc_html__( 'Allows users to choose more than one of this product.', 'ninja-forms' ), ), 'product_type' => array( 'name' => 'product_type', 'type' => 'select', 'label' => esc_html__( 'Product Type', 'ninja-forms' ), 'width' => 'full', 'group' => '', 'options' => array( array( 'label' => esc_html__( 'Single Product (default)', 'ninja-forms' ), 'value' => 'single' ), array( 'label' => esc_html__( 'Multi Product - Dropdown', 'ninja-forms' ), 'value' => 'dropdown' ), array( 'label' => esc_html__( 'Multi Product - Choose Many', 'ninja-forms' ), 'value' => 'checkboxes' ), array( 'label' => esc_html__( 'Multi Product - Choose One', 'ninja-forms' ), 'value' => 'radiolist' ), array( 'label' => esc_html__( 'User Entry', 'ninja-forms' ), 'value' => 'user' ), array( 'label' => esc_html__( 'Hidden', 'ninja-forms' ), 'value' => 'hidden' ), ), 'value' => 'single', 'use_merge_tags' => FALSE ), 'shipping_cost' => array( 'name' => 'shipping_cost', 'type' => 'textbox', 'label' => esc_html__( 'Cost', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => '0.00', 'mask' => array( 'type' => 'currency', // 'numeric', 'currency', 'custom' 'options' => array() ), 'deps' => array( 'shipping_type' => 'single', ), ), 'shipping_options' => array( 'name' => 'shipping_options', 'type' => 'option-repeater', 'label' => esc_html__( 'Cost Options', 'ninja-forms' ) . ' ' . esc_html__( 'Add New', 'ninja-forms' ) . '', 'width' => 'full', 'group' => 'primary', 'value' => array( array( 'label' => esc_textarea( __( 'One', 'ninja-forms' ) ), 'value' => '1.00', 'order' => 0 ), array( 'label' => esc_textarea( __( 'Two', 'ninja-forms' ) ), 'value' => '2.00', 'order' => 1 ), array( 'label' => esc_textarea( __( 'Three', 'ninja-forms' ) ), 'value' => '3.00', 'order' => 2 ), ), 'columns' => array( 'label' => array( 'header' => esc_html__( 'Label', 'ninja-forms' ), 'default' => '', ), 'value' => array( 'header' => esc_html__( 'Value', 'ninja-forms' ), 'default' => '', ), ), 'deps' => array( 'shipping_type' => 'select' ), ), 'shipping_type' => array( 'name' => 'shipping_type', 'type' => 'select', 'options' => array( array( 'label' => esc_html__( 'Single Cost', 'ninja-forms' ), 'value' => 'single', ), array( 'label' => esc_html__( 'Cost Dropdown', 'ninja-forms' ), 'value' => 'select', ), ), 'label' => esc_html__( 'Cost Type', 'ninja-forms' ), 'width' => 'full', 'group' => '', //'primary', 'value' => 'single', ), 'product_assignment' => array( 'name' => 'product_assignment', 'type' => 'select', 'label' => esc_html__( 'Product', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'options' => array(), 'select_product' => array( 'value' => '', 'label' => esc_html__( '- Select a Product', 'ninja-forms' ), ), ), /* |-------------------------------------------------------------------------- | Anti-Spam Field Settings |-------------------------------------------------------------------------- */ /* * Spam Answer */ 'spam_answer' => array( 'name' => 'spam_answer', 'type' => 'textbox', 'label' => esc_html__( 'Answer', 'ninja-forms'), 'width' => 'full', 'group' => 'primary', 'value' => '', 'help' => esc_html__( 'A case sensitive answer to help prevent spam submissions of your form.', 'ninja-forms' ), ), /* |-------------------------------------------------------------------------- | Term Field Settings |-------------------------------------------------------------------------- */ /* * Taxonomy */ 'taxonomy' => array( 'name' => 'taxonomy', 'type' => 'select', 'label' => esc_html__( 'Taxonomy', 'ninja-forms'), 'width' => 'full', 'group' => 'primary', 'options' => array( array( 'label' => "-", 'value' => '' ) ) ), /* * Add New Terms */ 'add_new_terms' => array( 'name' => 'add_new_terms', 'type' => 'toggle', 'label' => esc_html__( 'Add New Terms', 'ninja-forms'), 'width' => 'full', 'group' => 'advanced', ), /* |-------------------------------------------------------------------------- | Backwards Compatibility Field Settings |-------------------------------------------------------------------------- */ 'user_state' => array( 'name' => 'user_state', 'type' => 'toggle', 'label' => esc_html__( 'This is a user\'s state.', 'ninja-forms' ), 'width' => 'full', 'group' => 'administration', 'value' => FALSE, 'help' => esc_html__( 'Used for marking a field for processing.', 'ninja-forms' ), ), )); // Example of settings // Add all core settings. Fields can unset if unneeded. // $this->_settings = $this->load_settings( // array( 'label', 'label_pos', 'required', 'number', 'spam_question', 'mask', 'input_limit_set','rich_text_editor', 'placeholder', 'textare_placeholder', 'default', 'checkbox_default_value', 'classes', 'timed_submit' ) // ); includes/Config/ActionSaveSettings.php000064400000005420152331132460014046 0ustar00 array( 'name' => 'submitter_email', 'type' => 'email-select', 'options' => array(), 'group' => 'advanced', 'label' => esc_html__( 'Designated Submitter\'s Email Address', 'ninja-forms' ), 'value' => '', 'help' => esc_html__( 'The email address used in this field will be allowed to make data export and delete requests on behalf of their form submission.', 'ninja-forms' ), ), 'fields_save_toggle' => array( 'name' => 'fields-save-toggle', 'type' => 'button-toggle', 'width' => 'full', 'options' => array( array( 'label' => esc_html__( 'Save All', 'ninja-forms' ), 'value' => 'save_all' ), array( 'label' => esc_html__( 'Save None', 'ninja-forms' ), 'value' => 'save_none' ) ), 'group' => 'advanced', 'label' => esc_html__( 'Fields', 'ninja-forms' ), 'value' => 'save_all', ), /* |-------------------------------------------------------------------------- | Exception Field |-------------------------------------------------------------------------- */ 'exception_fields' => array( 'name' => 'exception_fields', 'type' => 'option-repeater', 'label' => esc_html__( 'Except', 'ninja-forms' ) . ' ' . esc_html__( 'Add New', 'ninja-forms' ) . '', 'width' => 'full', 'group' => 'advanced', 'tmpl_row' => 'nf-tmpl-save-field-repeater-row', 'value' => array(), 'columns' => array( 'form_field' => array( 'header' => esc_html__( 'Form Field', 'ninja-forms' ), 'default' => '', 'options' => array(), ), ), ), /* * Set subs to expire. */ 'set_subs_to_expire' => array( 'name' => 'set_subs_to_expire', 'type' => 'toggle', 'group' => 'advanced', 'label' => esc_html__( 'Set Submissions to expire?', 'ninja-forms' ), 'value' => 0, 'help' => esc_html__( 'Sets submissions to be trashes after a certain number of days, it affects all existing and new submissions', 'ninja-forms' ), 'width' => 'one-half', ), /* * Subs expire in? */ 'subs_expire_time' => array( 'name' => 'subs_expire_time', 'type' => 'number', 'group' => 'advanced', 'label' => esc_html__( 'How long in days until subs expire?', 'ninja-forms' ), 'value' => '90', 'min_val' => 1, // new minimum value setting 'max_val' => null, // new maximum value setting 'width' => 'one-half', 'deps' => array( 'set_subs_to_expire' => 1 ) ), )); includes/Config/FormCalculationSettings.php000064400000002332152331132460015073 0ustar00 array( 'name' => 'calculations', 'type' => 'option-repeater', 'label' => ' ' . esc_html__( 'Add New', 'ninja-forms' ) . '', 'width' => 'full', 'group' => 'primary', 'tmpl_row' => 'tmpl-nf-edit-setting-calculation-repeater-row', 'columns' => array( 'name' => array( 'header' => esc_html__( 'Variable Name', 'ninja-forms' ), 'default' => '', ), 'eq' => array( 'header' => esc_html__( 'Equation', 'ninja-forms' ), 'default' => '', ), 'dec' => array( 'header' => esc_html__( 'Precision', 'ninja-forms' ), 'default' => '2', ), ), 'use_merge_tags' => array( 'exclude' => array( 'user', 'system', 'post' ), ), ), ));includes/Config/ActionTypeOrder.php000064400000000204152331132460013337 0ustar00 array( 'name' => 'title', 'type' => 'textbox', 'label' => esc_html__( 'Form Title', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => '', ), /* * SHOW FORM TITLE */ 'show_title' => array( 'name' => 'show_title', 'type' => 'toggle', 'label' => esc_html__( 'Display Form Title', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => 1, ), /* * ALLOW PUBLIC LINK */ 'allow_public_link' => array( 'name' => 'allow_public_link', 'type' => 'toggle', 'label' => esc_html__( 'Allow a public link?', 'ninja-forms' ), 'width' => 'full', 'group' => '', 'value' => 0, 'help' => esc_html__( 'If this box is checked, Ninja Forms will create a public link to access the form.', 'ninja-forms' ), ), 'public_link' => array( 'name' => 'public_link', 'type' => 'copyresettext', 'label' => esc_html__( 'Link To Your Form', 'ninja-forms' ), 'width' => 'full', 'group' => '', 'help' => esc_html__( 'A public link to access the form.', 'ninja-forms' ), 'deps' => array( 'allow_public_link' => 1 ), ), 'embed_form' => array( 'name' => 'embed_form', 'type' => 'copytext', 'label' => esc_html__( 'Embed Your Form', 'ninja-forms' ), 'width' => 'full', 'group' => '', 'value' => '', 'help' => esc_html__( 'The shortcode you can use to embed this form on a page or post.', 'ninja-forms' ), ), /* * CLEAR SUCCESSFULLY COMPLETED FORM */ 'clear_complete' => array( 'name' => 'clear_complete', 'type' => 'toggle', 'label' => esc_html__( 'Clear successfully completed form?', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => 1, 'help' => esc_html__( 'If this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.', 'ninja-forms' ), ), /* * HIDE SUCCESSFULLY COMPLETED FORMS */ 'hide_complete' => array( 'name' => 'hide_complete', 'type' => 'toggle', 'label' => esc_html__( 'Hide successfully completed form?', 'ninja-forms' ), 'width' => 'full', 'group' => 'primary', 'value' => 1, 'help' => esc_html__( 'If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.', 'ninja-forms' ), ), /* * Default Label Position */ 'default_label_pos' => array( 'name' => 'default_label_pos', 'type' => 'select', 'label' => esc_html__( 'Default Label Position', 'ninja-forms' ), 'width' => 'full', 'group' => 'advanced', 'options' => array( array( 'label' => esc_html__( 'Above Element', 'ninja-forms' ), 'value' => 'above' ), array( 'label' => esc_html__( 'Below Element', 'ninja-forms' ), 'value' => 'below' ), array( 'label' => esc_html__( 'Left of Element', 'ninja-forms' ), 'value' => 'left' ), array( 'label' => esc_html__( 'Right of Element', 'ninja-forms' ), 'value' => 'right' ), array( 'label' => esc_html__( 'Hidden', 'ninja-forms' ), 'value' => 'hidden' ), ), 'value' => 'above', ), /* * Classes */ 'classes' => array( 'name' => 'classes', 'type' => 'fieldset', 'label' => esc_html__( 'Custom Class Names', 'ninja-forms' ), 'width' => 'full', 'group' => 'advanced', 'settings' => array( array( 'name' => 'wrapper_class', 'type' => 'textbox', 'placeholder' => '', 'label' => esc_html__( 'Wrapper', 'ninja-forms' ), 'width' => 'one-half', 'value' => '', 'use_merge_tags' => FALSE, ), array( 'name' => 'element_class', 'type' => 'textbox', 'label' => esc_html__( 'Element', 'ninja-forms' ), 'placeholder' => '', 'width' => 'one-half', 'value' => '', 'use_merge_tags' => FALSE, ), ), ), /* * KEY */ 'key' => array( 'name' => 'key', 'type' => 'textbox', 'label' => esc_html__( 'Form Key', 'ninja-forms'), 'width' => 'full', 'group' => 'administration', 'value' => '', 'help' => esc_html__( 'Programmatic name that can be used to reference this form.', 'ninja-forms' ), ), /* * ADD SUBMIT CHECKBOX */ 'add_submit' => array( 'name' => 'add_submit', 'type' => 'toggle', 'label' => esc_html__( 'Add Submit Button', 'ninja-forms'), 'width' => 'full', 'group' => '', 'value' => 1, 'help' => esc_html__( 'We have noticed that you do not have a submit button on your form. We can add one for you automatically.', 'ninja-forms' ), ), /* * Form Labels */ 'custom_messages' => array( 'name' => 'custom_messages', 'type' => 'fieldset', 'label' => esc_html__( 'Custom Labels', 'ninja-forms' ), 'width' => 'full', 'group' => 'advanced', 'settings' => array( array( 'name' => 'changeEmailErrorMsg', 'type' => 'textbox', 'label' => esc_html__( 'Please enter a valid email address!', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'changeDateErrorMsg', 'type' => 'textbox', 'label' => esc_html__( 'Please enter a valid date!', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'confirmFieldErrorMsg', 'type' => 'textbox', 'label' => esc_html__( 'These fields must match!', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'fieldNumberNumMinError', 'type' => 'textbox', 'label' => esc_html__( 'Number Min Error', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'fieldNumberNumMaxError', 'type' => 'textbox', 'label' => esc_html__( 'Number Max Error', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'fieldNumberIncrementBy', 'type' => 'textbox', 'label' => esc_html__( 'Please increment by ', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'formErrorsCorrectErrors', 'type' => 'textbox', 'label' => esc_html__( 'Please correct errors before submitting this form.', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'validateRequiredField', 'type' => 'textbox', 'label' => esc_html__( 'This is a required field.', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'honeypotHoneypotError', 'type' => 'textbox', 'label' => esc_html__( 'Honeypot Error', 'ninja-forms' ), 'width' => 'full' ), array( 'name' => 'fieldsMarkedRequired', 'type' => 'textbox', 'label' => sprintf( esc_html__( 'Fields marked with an %s*%s are required', 'ninja-forms' ), '', '' ), 'width' => 'full' ), ) ), /* * CURRENCY */ 'currency' => array( 'name' => 'currency', 'type' => 'select', 'options' => array_merge( array( array( 'label' => esc_html__( 'Plugin Default', 'ninja-forms' ), 'value' => '' ) ), Ninja_Forms::config( 'Currency' ) ), 'label' => esc_html__( 'Currency', 'ninja-forms' ), 'width' => 'full', 'group' => 'advanced', 'value' => '' ), /* * Repeatable fieldsets option */ 'repeatable_fieldsets' => array( 'name' => 'repeatable_fieldsets', 'type' => 'textbox', 'label' => esc_html__( 'Repeatable fieldsets', 'ninja-forms' ), 'width' => 'full', 'group' => 'advanced', 'value' => '' ), )); includes/Config/FormActionDefaults.php000064400000001451152331132460014022 0ustar00 'tmp-1', 'label' => esc_html__( 'Success Message', 'ninja-forms' ), 'type' => 'successmessage', 'message' => esc_textarea( __( 'Your form has been successfully submitted.', 'ninja-forms' ) ), 'order' => 1, 'active' => TRUE, ), array( 'id' => 'tmp-2', 'label' => esc_html__( 'Admin Email', 'ninja-forms' ), 'type' => 'email', 'order' => 2, 'active' => TRUE, ), array( 'id' => 'tmp-3', 'label' => esc_html__( 'Store Submission', 'ninja-forms' ), 'type' => 'save', 'order' => 3, 'active'=> TRUE, ), )); includes/Config/PluginSettingsDefaults.php000064400000000630152331132460014736 0ustar00 'm/d/Y', 'currency' => 'USD', 'recaptcha_site_key' => '', 'recaptcha_secret_key' => '', 'recaptcha_lang' => '', 'delete_on_uninstall' => 0, 'disable_admin_notices' => 0, 'builder_dev_mode' => 1, // Enable "Dev Mode" for existing installs. )); includes/Config/PluginSettingsReCaptcha.php000064400000004416152331132460015027 0ustar00 array( 'id' => 'recaptcha_site_key', 'type' => 'textbox', 'label' => esc_html__( 'reCAPTCHA Site Key', 'ninja-forms' ), 'desc' => sprintf( esc_html__( 'Get a site key for your domain by registering %shere%s', 'ninja-forms' ), '', '' ) ), /* |-------------------------------------------------------------------------- | Secret Key |-------------------------------------------------------------------------- */ 'recaptcha_secret_key' => array( 'id' => 'recaptcha_secret_key', 'type' => 'textbox', 'label' => esc_html__( 'reCAPTCHA Secret Key', 'ninja-forms' ), 'desc' => '', ), /* |-------------------------------------------------------------------------- | Language |-------------------------------------------------------------------------- */ 'recaptcha_lang' => array( 'id' => 'recaptcha_lang', 'type' => 'textbox', 'label' => esc_html__( 'reCAPTCHA Language', 'ninja-forms' ), 'desc' => 'e.g. en, da - ' . sprintf( esc_html__( 'Language used by reCAPTCHA. To get the code for your language click %shere%s', 'ninja-forms' ), '', '' ) ), /* |-------------------------------------------------------------------------- | Theme |-------------------------------------------------------------------------- */ 'recaptcha_theme' => array( 'id' => 'recaptcha_theme', 'type' => 'select', 'options' => array( array( 'label' => esc_html__( 'Light', 'ninja-forms' ), 'value' => 'light' ), array( 'label' => esc_html__( 'Dark', 'ninja-forms' ), 'value' => 'dark' ), ), 'label' => esc_html__( 'reCAPTCHA Theme', 'ninja-forms' ), 'desc' => '', ), )); includes/Config/ActionExportDataRequestSettings.php000064400000001626152331132460016600 0ustar00 array( 'name' => 'message', 'type' => 'html', 'group' => 'primary', 'label' => esc_html__( 'This is a message', 'ninja-forms' ), 'value' => esc_html__( 'This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.', 'ninja-forms' ), 'width' => 'full', 'use_merge_tags' => true, ), 'email' => array( 'name' => 'email', 'type' => 'textbox', 'group' => 'primary', 'label' => esc_html__( 'Email', 'ninja-forms' ), 'placeholder' => esc_attr__( 'Email address field', 'ninja-forms' ), 'width' => 'one-half', 'use_merge_tags' => true, ), ) );includes/Config/PluginSettingsGroups.php000064400000001201152331132460014441 0ustar00 array( 'id' => 'general', 'label' => esc_html__( 'General Settings', 'ninja-forms' ), ), 'recaptcha' => array( 'id' => 'recaptcha', 'label' => esc_html__( 'reCaptcha Settings', 'ninja-forms' ), ), 'advanced' => array( 'id' => 'advanced', 'label' => esc_html__( 'Advanced Settings', 'ninja-forms' ), ), 'saved_fields' => array( 'id' => 'saved_fields', 'label' => esc_html__( 'Favorite Fields', 'ninja-forms' ), ), )); includes/PromotionManager.php000064400000010445152331132460012350 0ustar00set_promotions(); $this->maybe_remove_personal(); $this->maybe_remove_sendwp(); $this->sort_active_promotions_by_locations(); } public function get_promotions() { return $this->promotions; } /** * Set our promtions array to our promotions property. */ private function set_promotions() { if ( apply_filters( 'ninja_forms_disable_marketing', false ) ) { $this->promotions = array(); } else { $this->promotions = Ninja_Forms()->config( 'DashboardPromotions' ); } } /************************************************************************** * Membership Checks * * These funcitons all check to see if the individual add-ons that make up * our personal membership are active. ****************************************************************************/ private function is_layout_styles_active() { return class_exists( 'NF_Layouts', false ); } private function is_conditional_logic_active() { return class_exists( 'NF_ConditionalLogic', false ); } private function is_multi_part_active() { return class_exists( 'NF_MultiPart', false ); } private function is_file_uploads_active() { return class_exists( 'NF_FU_File_Uploads', false ); } /** * Utilizes the helper methods above to determine if a * a Membership is active on a site. */ private function is_personal_active() { if( $this->is_conditional_logic_active() && $this->is_file_uploads_active() && $this->is_layout_styles_active() && $this->is_multi_part_active() ) { return true; } return false; } /************************************************************************** * Promotion Removal Methods * * These funcitons all check for different add-ons/products and remove * promotions for them if they are in use. ****************************************************************************/ private function maybe_remove_sendwp() { if( phpversion() < '5.6.0' ) { $this->remove_promotion( 'sendwp' ); return; } if( $this->is_sendwp_active() ) { $this->remove_promotion( 'sendwp' ); } elseif( $this->is_ninja_mail_active() ) { $this->remove_promotion( 'sendwp' ); } } private function maybe_remove_personal() { if( $this->is_personal_active() ) { $this->remove_promotion( 'personal' ); } } /*************************************************************************** * Helper Methods ****************************************************************************/ /** * Pass in a promotion type to have it removed from * the list of active promotions. * * @return void */ private function remove_promotion( $type ) { // Loops over promotions and removes unused types of promotions. foreach( $this->promotions as $promotion ) { if( $type == $promotion[ 'type' ] ) { unset( $this->promotions[ $promotion[ 'id' ] ] ); } } } /** * Sorts our promotions by where they will appear in app. * * @return void */ private function sort_active_promotions_by_locations() { $sorted_locations = array(); foreach( $this->promotions as $promotion ) { $sorted_locations[ $promotion[ 'location' ] ][] = $promotion; } $this->promotions = $sorted_locations; } private function is_sendwp_active() { if( class_exists( '\SendWP\Mailer', FALSE ) ) { return true; } return false; } private function is_ninja_mail_active() { if( class_exists('\NinjaMail\Plugin', FALSE ) ) { return true; } return false; } }includes/Dispatcher.php000064400000020500152331132460011146 0ustar00tracking->is_opted_in() || Ninja_Forms()->tracking->is_opted_out() ) ) { return false; } return true; } /** * Package up our environment variables and send those to our API endpoint. * * @since 3.2 * @return void * * @updated 3.3.17 */ public function update_environment_vars() { global $wpdb; // Plugins $active_plugins = (array) get_option( 'active_plugins', array() ); //WP_DEBUG if ( defined('WP_DEBUG') && WP_DEBUG ){ $debug = 1; } else { $debug = 0; } //WPLANG if ( defined( 'WPLANG' ) && WPLANG ) { $lang = WPLANG; } else { $lang = 'default'; } $ip_address = ''; if ( array_key_exists( 'SERVER_ADDR', $_SERVER ) ) { $ip_address = $_SERVER[ 'SERVER_ADDR' ]; } else if ( array_key_exists( 'LOCAL_ADDR', $_SERVER ) ) { $ip_address = $_SERVER[ 'LOCAL_ADDR' ]; } // If we have a valid IP Address... if ( filter_var( $ip_address, FILTER_VALIDATE_IP ) ) { // Get the hostname. $host_name = gethostbyaddr( $ip_address ); } else { $host_name = 'unknown'; } if ( is_multisite() ) { $multisite_enabled = 1; } else { $multisite_enabled = 0; } $environment = array( 'nf_version' => Ninja_Forms::VERSION, 'nf_db_version' => get_option( 'ninja_forms_db_version', '1.0' ), 'wp_version' => get_bloginfo('version'), 'multisite_enabled' => $multisite_enabled, 'server_type' => $_SERVER['SERVER_SOFTWARE'], 'php_version' => phpversion(), 'mysql_version' => $wpdb->db_version(), 'wp_memory_limit' => WP_MEMORY_LIMIT, 'wp_debug_mode' => $debug, 'wp_lang' => $lang, 'wp_max_upload_size' => size_format( wp_max_upload_size() ), 'php_max_post_size' => ini_get( 'post_max_size' ), 'hostname' => $host_name, 'smtp' => ini_get('SMTP'), 'smtp_port' => ini_get('smtp_port'), 'active_plugins' => $active_plugins, ); $this->send( 'update_environment_vars', $environment ); } /** * Package up our form data and send it to our API endpoint. * * @since 3.2 * @return void */ public function form_data() { global $wpdb; // If we have not finished the process... if ( ! get_option( 'nf_form_tel_sent' ) || 'false' == get_option( 'nf_form_tel_sent' ) ) { // Get our list of already processed forms (if it exists). $forms_ref = get_option( 'nf_form_tel_data' ); // Get a list of Forms on this site. $sql = "SELECT id FROM `" . $wpdb->prefix . "nf3_forms`"; $forms = $wpdb->get_results( $sql, 'ARRAY_A' ); // If our list of processed forms already exists... if ( ! empty( $forms_ref ) ) { // Break those into an array. $forms_ref = explode( ',', $forms_ref ); } // Otherwise... else { // Make sure we have an array. $forms_ref = array(); } $match_found = false; // For each form... foreach ( $forms as $form ) { // If the current form is not in our list of sent values... if ( ! in_array( $form[ 'id' ], $forms_ref ) ) { // Set our target ID. $id = $form[ 'id' ]; // Record that we found a match. $match_found = true; } } // If we didn't find a match. if ( ! $match_found ) { // Record that we're done. update_option( 'nf_form_tel_sent', 'true', false ); // Exit. return false; }// Otherwise... (We did find a match.) // Get our form. $form_data = Ninja_Forms()->form( intval( $id ) )->get(); // Setup our data value. $data = array(); // Set the form title. $data[ 'title' ] = $form_data->get_setting( 'title' ); $sql = "SELECT COUNT(meta_id) AS total FROM `" . $wpdb->prefix . "postmeta` WHERE meta_key = '_form_id' AND meta_value = '" . intval( $id ) . "'"; $result = $wpdb->get_results( $sql, 'ARRAY_A' ); // Set the number of submissions. $data[ 'subs' ] = $result[ 0 ][ 'total' ]; // Get our fields. $field_data = Ninja_Forms()->form( intval( $id ) )->get_fields(); $data[ 'fields' ] = array(); // For each field on the form... foreach ( $field_data as $field ) { // Add that data to our array. $data[ 'fields' ][] = $field->get_setting( 'type' ); } // Get our actions. $action_data = Ninja_Forms()->form( intval( $id ) )->get_actions(); $data[ 'actions' ] = array(); // For each action on the form... foreach ( $action_data as $action ) { // Add that data to our array. $data[ 'actions' ][] = $action->get_setting( 'type' ); } // Add this form ID to our option. $forms_ref[] = $id; // Update our option. update_option( 'nf_form_tel_data', implode( ',', $forms_ref ), false ); $this->send( 'form_data', $data ); } } /** * Sends a campaign slug and data to our API endpoint. * Checks to ensure that the user has 1) opted into tracking or 2) they have a premium add-on installed. * * @since 3.2 * @param string $slug Campaign slug * @param array $data Array of data being sent. Should NOT already be a JSON string. * @return void */ public function send( $slug, $data = array() ) { if ( ! $this->should_we_send() ) { return false; } /** * Gather site data before we send. * * We send the following site data with our passed data: * IP Address * Email * Site Url */ $ip_address = ''; if ( array_key_exists( 'SERVER_ADDR', $_SERVER ) ) { $ip_address = $_SERVER[ 'SERVER_ADDR' ]; } else if ( array_key_exists( 'LOCAL_ADDR', $_SERVER ) ) { $ip_address = $_SERVER[ 'LOCAL_ADDR' ]; } /** * Email address of the current user. * (if one was provided) */ $email = isset( $data[ 'user_email' ] ) ? $data[ 'user_email' ] : ''; $site_data = array( 'url' => site_url(), 'ip_address' => $ip_address, 'email' => $email, ); /* * Send our data using wp_remote_post. */ $response = wp_remote_post( $this->api_url, array( 'body' => array( 'slug' => $slug, 'data' => wp_json_encode( $data ), 'site_data' => wp_json_encode( $site_data ), ), ) ); } } includes/Session.php000064400000010070152331132460010504 0ustar00session = WP_Session::get_instance(); return $this->session; } /** * Retrieve session ID * * @access public * @since 2.9.18 * @return string Session ID */ public function get_id() { return $this->session->session_id; } /** * Retrieve a session variable * * @access public * @since 2.9.18 * @param string $key Session key * @return string Session variable */ public function get( $key ) { $key = sanitize_key( $key ); return isset( $this->session[ $key ] ) ? maybe_unserialize( $this->session[ $key ] ) : false; } /** * Set a session variable * * @since 2.9.18 * @param string $key Session key * @param integer $value Session variable * @return string Session variable */ public function set( $key, $value ) { /* * Manually Set Cookie */ $this->session->set_cookie(); $key = sanitize_key( $key ); if ( is_array( $value ) ) { $this->session[ $key ] = serialize( $value ); } else { $this->session[ $key ] = $value; } return $this->session[ $key ]; } /** * Delete a session variable * * @since 2.9.28 * @param string $key * @return void */ public function delete() { delete_option( '_wp_session_' . $this->session->session_id ); delete_option( '_wp_session_expires_' . $this->session->session_id ); } /** * Force the cookie expiration variant time to 23 minutes * * @access public * @since 2.9.18 * @param int $exp Default expiration (1 hour) * @return int */ public function set_expiration_variant_time( $exp ) { return 60 * 23; } /** * Force the cookie expiration time to 24 minutes * * @access public * @since 2.9.18 * @param int $exp Default expiration (1 hour) * @return int */ public function set_expiration_time( $exp ) { return 60 * 24; } } includes/Actions/CollectPayment.php000064400000006166152331132460013417 0ustar00_nicename = $cp_nice_name; // Set name to what we passed in. 'collectpayment' is default $this->_name = strtolower( $cp_name ); $settings = Ninja_Forms::config( 'ActionCollectPaymentSettings' ); /** * if we pass in something other than 'collectpayment', set the value * of the gateway drop-down **/ if ( 'collectpayment' != $this->_name ) { $settings[ 'payment_gateways' ][ 'value' ] = $this->_name; } $this->_settings = array_merge( $this->_settings, $settings ); add_action( 'ninja_forms_loaded', array( $this, 'register_payment_gateways' ), -1 ); add_filter( 'ninja_forms_action_type_settings', array( $this, 'maybe_remove_action' ) ); } public function save( $action_settings ) { } public function process( $action_settings, $form_id, $data ) { $payment_gateway = $action_settings[ 'payment_gateways' ]; $payment_gateway_class = $this->payment_gateways[ $payment_gateway ]; $handler = NF_Handlers_LocaleNumberFormatting::create(); $converted = $handler->locale_decode_number( $action_settings['payment_total'] ); $action_settings['payment_total'] = $converted; return $payment_gateway_class->process( $action_settings, $form_id, $data ); } public function register_payment_gateways() { $this->payment_gateways = apply_filters( 'ninja_forms_register_payment_gateways', array() ); foreach( $this->payment_gateways as $gateway ){ if( ! is_subclass_of( $gateway, 'NF_Abstracts_PaymentGateway' ) ){ continue; } $this->_settings[ 'payment_gateways' ][ 'options' ][] = array( 'label' => $gateway->get_name(), 'value' => $gateway->get_slug(), ); $this->_settings = array_merge( $this->_settings, $gateway->get_settings() ); } } public function maybe_remove_action( $action_type_settings ) { if( empty( $this->payment_gateways ) ){ unset( $action_type_settings[ $this->_name ] ); } return $action_type_settings; } } includes/Actions/ExportDataRequest.php000064400000003174152331132460014114 0ustar00_nicename = esc_html__( 'Export Data Request', 'ninja-forms' ); $settings = Ninja_Forms::config( 'ActionExportDataRequestSettings' ); $this->_settings = array_merge( $this->_settings, $settings ); } /* * PUBLIC METHODS */ public function save( $action_settings ) { } /** * Creates a Export Personal Data request for the user with the email * provided * * @param $action_settings * @param $form_id * @param $data * * @return array */ public function process( $action_settings, $form_id, $data ) { $data = array(); if( isset( $data['settings']['is_preview'] ) && $data['settings']['is_preview'] ){ return $data; } // get the email setting $email = $action_settings[ 'email' ]; // create request for user $request_id = wp_create_user_request( $email, 'export_personal_data' ); /** * Basically ignore if we get a user error as it will be one of two * things. * * 1) The email in question is already in the erase data request queue * 2) The email does not belong to an actual user. */ if( ! $request_id instanceof WP_Error ) { wp_send_user_request( $request_id ); } return $data; } } includes/Actions/Akismet.php000064400000006670152331132460012071 0ustar00_nicename = esc_html__( 'Akismet Anti-Spam', 'ninja-forms' ); $settings = Ninja_Forms::config( 'ActionAkismetSettings' ); $this->_settings = array_merge( $this->_settings, $settings ); add_filter( 'ninja_forms_action_type_settings', array( $this, 'maybe_remove_action' ) ); } /** * Remove the action registration if Akismet functions not available. * * @param array $action_type_settings * * @return array */ public function maybe_remove_action( $action_type_settings ) { if ( ! $this->akismet_available() ) { unset( $action_type_settings[ $this->_name ] ); } return $action_type_settings; } /** * Is Akismet installed and connected with a valid key? * * @return bool */ protected function akismet_available() { if ( ! is_callable( array( 'Akismet', 'get_api_key' ) ) ) { // Not installed and activated return false; } $akismet_key = Akismet::get_api_key(); if ( empty( $akismet_key ) ) { // No key entered return false; } return 'valid' === Akismet::verify_key( $akismet_key ); } /** * Process the action * * @param array $action_settings * @param int $form_id * @param array $data * * @return array */ public function process( $action_settings, $form_id, $data ) { if ( ! $this->akismet_available() ) { return $data; } if ( $this->is_submission_spam( $action_settings['name'], $action_settings['email'], $action_settings['url'], $action_settings['message'] ) ) { $data['errors']['form']['spam'] = esc_html__( 'There was an error trying to send your message. Please try again later', 'ninja-forms' ); } return $data; } /** * Verify submission * * @param $name * @param $email * @param $url * @param $message * * @return bool */ protected function is_submission_spam( $name, $email, $url, $message ) { $body_request = array( 'blog' => get_option( 'home' ), 'blog_lang' => get_locale(), 'permalink' => get_permalink(), 'comment_type' => 'contact-form', 'comment_author' => $name, 'comment_author_email' => $email, 'comment_author_url' => $url, 'comment_content' => $message, 'user_agent' => ( isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : null ), ); if ( method_exists( 'Akismet', 'http_post' ) ) { $body_request['user_ip'] = Akismet::get_ip_address(); $response = Akismet::http_post( build_query( $body_request ), 'comment-check' ); } else { global $akismet_api_host, $akismet_api_port; $body_request['user_ip'] = ( isset( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : null ); $response = akismet_http_post( build_query( $body_request ), $akismet_api_host, '/1.1/comment-check', $akismet_api_port ); } if ( ! empty( $response ) && isset( $response[1] ) && 'true' == trim( $response[1] ) ) { // Spam! return true; } return false; } }includes/Actions/Custom.php000064400000002167152331132460011743 0ustar00_nicename = esc_html__( 'WP Hook', 'ninja-forms' ); $settings = Ninja_Forms::config( 'ActionCustomSettings' ); $this->_settings = array_merge( $this->_settings, $settings ); } /* * PUBLIC METHODS */ public function save( $action_settings ) { } public function process( $action_settings, $form_id, $data ) { if( isset( $action_settings[ 'tag' ] ) ) { ob_start(); // Use the Output Buffer to suppress output do_action($action_settings[ 'tag' ], $data); ob_end_clean(); } return $data; } } includes/Actions/DeleteDataRequest.php000064400000003476152331132460014042 0ustar00_nicename = esc_html__( 'Delete Data Request', 'ninja-forms' ); $settings = Ninja_Forms::config( 'ActionDeleteDataRequestSettings' ); $this->_settings = array_merge( $this->_settings, $settings ); } /* * PUBLIC METHODS */ public function save( $action_settings ) { } /** * Creates a Erase Personal Data request for the user with the email * provided * * @param $action_settings * @param $form_id * @param $data * * @return array */ public function process( $action_settings, $form_id, $data ) { $data = array(); if( isset( $data['settings']['is_preview'] ) && $data['settings']['is_preview'] ){ return $data; } // get the email setting $email = $action_settings[ 'email' ]; // create request for user $request_id = wp_create_user_request( $email, 'remove_personal_data' ); /** * Basically ignore if we get a user error as it will be one of two * things. * * 1) The email in question is already in the erase data request queue * 2) The email does not belong to an actual user. */ if( ! $request_id instanceof WP_Error ) { // send the request if it's not an error. // to anonymize or not to anonymize, that is the question add_post_meta( $request_id, 'nf_anonymize_data', $action_settings[ 'anonymize' ] ); wp_send_user_request( $request_id ); } return $data; } } includes/Actions/SuccessMessage.php000064400000004351152331132460013403 0ustar00_nicename = esc_html__( 'Success Message', 'ninja-forms' ); $settings = Ninja_Forms::config( 'ActionSuccessMessageSettings' ); $this->_settings = array_merge( $this->_settings, $settings ); add_action( 'nf_before_import_form', array( $this, 'import_form_action_success_message' ), 11 ); } /* * PUBLIC METHODS */ public function save( $action_settings ) { } public function process( $action_settings, $form_id, $data ) { if( isset( $action_settings[ 'success_msg' ] ) ) { if( ! isset( $data[ 'actions' ] ) || ! isset( $data[ 'actions' ][ 'success_message' ] ) ) { $data[ 'actions' ][ 'success_message' ] = ''; } ob_start(); do_shortcode( $action_settings['success_msg'] ); $ob = ob_get_clean(); if( $ob ) { $data[ 'debug' ][ 'console' ][] = sprintf( esc_html__( 'Shortcodes should return and not echo, see: %s', 'ninja-forms' ), 'https://codex.wordpress.org/Shortcode_API#Output' ); $data['actions']['success_message'] .= $action_settings['success_msg']; } else { $message = do_shortcode( $action_settings['success_msg'] ); $data['actions']['success_message'] .= wpautop( $message ); } } return $data; } public function import_form_action_success_message( $import ) { if( ! isset( $import[ 'actions' ] ) ) return $import; foreach( $import[ 'actions' ] as &$action ){ if( 'success_message' == $action[ 'type' ] ){ $action[ 'type' ] = 'successmessage'; } } return $import; } } includes/Actions/Save.php000064400000020177152331132460011370 0ustar00_nicename = esc_html__( 'Store Submission', 'ninja-forms' ); $settings = Ninja_Forms::config( 'ActionSaveSettings' ); $this->_settings = array_merge( $this->_settings, $settings ); } /* * PUBLIC METHODS */ public function save( $action_settings ) { if( ! isset( $_POST[ 'form' ] ) ) return; // Get the form data from the Post variable and send it off for processing. $form = json_decode( stripslashes( $_POST[ 'form' ] ) ); $this->submission_expiration_processing( $action_settings, $form->id ); } /** * Submission Expiration Processing * Decides if the submission expiration data should be added to the * submission expiration option or not. * * @param $action_settings - array. * @param $form_id - ( int ) The ID of the Form. * * @return void */ public function submission_expiration_processing( $action_settings, $form_id ) { /* * Comma separated value of the form id and action setting. * Example: 5,90 */ $expiration_value = $form_id . ',' . $action_settings[ 'subs_expire_time' ]; // Check for option value... $option = get_option( 'nf_sub_expiration', array() ); // If our expiration setting is turned on... if( 1 == $action_settings[ 'set_subs_to_expire' ] ) { // Send our data to the compare method to be added to the expiration option $this->compare_expiration_option( $expiration_value, $option ); } else { // Otherwise send the data to be removed from the expiration option. $this->remove_expiration_option( $expiration_value, $option ); } } /** * Compare Expiration Option * Accepts $expiration_data and checks to see if the values already exist in the array. * @since 3.3.2 * * @param array $expiration_value - key/value pair * $expiration_value[ 'form_id' ] = form_id(int) * $expiration_value[ 'expire_time' ] = subs_expire_time(int) * @param array $expiration_option - list of key/value pairs of the expiration options. * * @return void */ public function compare_expiration_option( $expiration_value, $expiration_option ) { /* * Breaks a part our options. * $value[ 0 ] - ( int ) Form ID * $value[ 1 ] - ( int ) Expiration time in days */ $values = explode( ',', $expiration_value ); // Find the position of the value we are tyring to update. $array_position = array_search( ( int ) $values[ 0 ], $expiration_option ); /* * TODO: Refactor this to only run when needed. * Remove this value from the array. */ if( isset( $array_position ) ) { unset( $expiration_option[ $array_position ] ); } // Check for our value in the options and then add it if it doesn't exist. if( ! in_array( $expiration_value, $expiration_option ) ) { $expiration_option[] = $expiration_value; } // Update our option. update_option( 'nf_sub_expiration', $expiration_option ); } /** * Remove Expiration Option * If the expiration action setting is turned off this helper method * removes the form id and expiration time from the option. * * @param array $expiration_value - key/value pair * $expiration_value[ 'form_id' ] = form_id(int) * $expiration_value[ 'expire_time' ] = subs_expire_time(int) * @param array $expiration_option - list of key/value pairs of the expiration options. * * @return void */ public function remove_expiration_option( $expiration_value, $expiration_option ) { $values = explode( ',', $expiration_value ); // Find the position of the value we are tyring to update. $array_position = array_search( ( int ) $values[ 0 ], $expiration_option ); /* * TODO: Refactor this to only run when needed. * Remove this value from the array. */ if( isset( $array_position ) ) { unset( $expiration_option[ $array_position ] ); } // Update our option. update_option( 'nf_sub_expiration', $expiration_option ); } public function process( $action_settings, $form_id, $data ) { if( isset( $data['settings']['is_preview'] ) && $data['settings']['is_preview'] ){ return $data; } if( ! apply_filters ( 'ninja_forms_save_submission', true, $form_id ) ) return $data; $sub = Ninja_Forms()->form( $form_id )->sub()->get(); $hidden_field_types = apply_filters( 'nf_sub_hidden_field_types', array() ); // For each field on the form... foreach( $data['fields'] as $field ){ // If this is a "hidden" field type. if( in_array( $field[ 'type' ], array_values( $hidden_field_types ) ) ) { // Do not save it. $data[ 'actions' ][ 'save' ][ 'hidden' ][] = $field[ 'type' ]; continue; } $field[ 'value' ] = apply_filters( 'nf_save_sub_user_value', $field[ 'value' ], $field[ 'id' ] ); $save_all_none = $action_settings[ 'fields-save-toggle' ]; $save_field = true; // If we were told to save all fields... if( 'save_all' == $save_all_none ) { $save_field = true; // For each exception to that rule... foreach( $action_settings[ 'exception_fields' ] as $exception_field ) { // Remove it from the list. if( $field[ 'key' ] == $exception_field[ 'field'] ) { $save_field = false; break; } } } // Otherwise... (We were told to save no fields.) else if( 'save_none' == $save_all_none ) { $save_field = false; // For each exception to that rule... foreach( $action_settings[ 'exception_fields' ] as $exception_field ) { // Add it to the list. if( $field[ 'key' ] == $exception_field[ 'field'] ) { $save_field = true; break; } } } // If we're supposed to save this field... if( $save_field ) { // Do so. $sub->update_field_value( $field[ 'id' ], $field[ 'value' ] ); } // Otherwise... else { // If this field is not a list... // AND If this field is not a checkbox... // AND If this field is not a product... // AND If this field is not a termslist... if ( false == strpos( $field[ 'type' ], 'list' ) && false == strpos( $field[ 'type' ], 'checkbox' ) && 'products' !== $field[ 'type' ] && 'terms' !== $field[ 'type' ] ) { // Anonymize it. $sub->update_field_value( $field[ 'id' ], '(redacted)' ); } } } // If we have extra data... if( isset( $data[ 'extra' ] ) ) { // Save that. $sub->update_extra_values( $data[ 'extra' ] ); } do_action( 'nf_before_save_sub', $sub->get_id() ); $sub->save(); do_action( 'nf_save_sub', $sub->get_id() ); do_action( 'nf_create_sub', $sub->get_id() ); do_action( 'ninja_forms_save_sub', $sub->get_id() ); $data[ 'actions' ][ 'save' ][ 'sub_id' ] = $sub->get_id(); return $data; } } includes/Actions/Email.php000064400000034373152331132460011524 0ustar00_nicename = esc_html__( 'Email', 'ninja-forms' ); $settings = Ninja_Forms::config( 'ActionEmailSettings' ); $this->_settings = array_merge( $this->_settings, $settings ); $this->_backwards_compatibility(); } /* * PUBLIC METHODS */ public function process( $action_settings, $form_id, $data ) { $action_settings = $this->sanitize_address_fields( $action_settings ); $errors = $this->check_for_errors( $action_settings ); $headers = $this->_get_headers( $action_settings ); if ( has_filter( 'ninja_forms_get_fields_sorted' ) ) { $fields_by_key = array(); foreach( $data[ 'fields' ] as $field ){ if( is_null( $field ) ) continue; if( is_array( $field ) ){ if( ! isset( $field[ 'key' ] ) ) continue; $key = $field[ 'key' ]; } else { $key = $field->get_setting('key'); } $fields_by_key[ $key ] = $field; } $data[ 'fields' ] = apply_filters( 'ninja_forms_get_fields_sorted', array(), $data[ 'fields' ], $fields_by_key, $form_id ); } $attachments = $this->_get_attachments( $action_settings, $data ); if( 'html' == $action_settings[ 'email_format' ] ) { $message = wpautop( $action_settings['email_message'] ); } else { $message = $this->format_plain_text_message( $action_settings[ 'email_message_plain' ] ); } $message = apply_filters( 'ninja_forms_action_email_message', $message, $data, $action_settings ); try { /** * Hook into the email send to override functionality. * @return bool True if already sent. False to fallback to default behavior. Throw a new Exception if there is an error. */ if( ! $sent = apply_filters( 'ninja_forms_action_email_send', false, $action_settings, $message, $headers, $attachments ) ){ $sent = wp_mail($action_settings['to'], strip_tags( $action_settings['email_subject'] ), $message, $headers, $attachments); } } catch ( Exception $e ){ $sent = false; $errors[ 'email_not_sent' ] = $e->getMessage(); } if( is_user_logged_in() && current_user_can( 'manage_options' ) ) { $data[ 'actions' ][ 'email' ][ 'to' ] = $action_settings[ 'to' ]; $data[ 'actions' ][ 'email' ][ 'headers' ] = $headers; $data[ 'actions' ][ 'email' ][ 'attachments' ] = $attachments; } $data[ 'actions' ][ 'email' ][ 'sent' ] = $sent; // Only show errors to Administrators. if( $errors && current_user_can( 'manage_options' ) ){ $data[ 'errors' ][ 'form' ] = $errors; } if ( ! empty( $attachments ) ) { $this->_drop_csv(); } return $data; } /** * Sanitizes email address settings * @since 3.2.2 * * @param array $action_settings * @return array */ protected function sanitize_address_fields( $action_settings ) { // Build a look array to compare our email address settings to. $email_address_settings = array( 'to', 'from_address', 'reply_to', 'cc', 'bcc' ); // Loop over the look up values. foreach( $email_address_settings as $setting ) { // If the loop up values are not set in the action settings continue. if ( ! isset( $action_settings[ $setting ] ) ) continue; // If action settings do not match the look up values continue. if ( ! $action_settings[ $setting ] ) continue; // This is the array that will contain the sanitized email address values. $sanitized_array = array(); /* * Checks to see action settings is array, * if not explodes to comma delimited array. */ if( is_array( $action_settings[ $setting ] ) ) { $email_addresses = $action_settings[ $setting ]; } else { $email_addresses = explode( ',', $action_settings[ $setting ] ); } // Loop over our email addresses. foreach( $email_addresses as $email ) { // Updated to trim values in case there is a value with spaces/tabs/etc to remove whitespace $email = trim( $email ); if ( empty( $email ) ) continue; // Build our array of the email addresses. $sanitized_array[] = $email; } // Sanitized our array of settings. $action_settings[ $setting ] = implode( ',' ,$sanitized_array ); } return $action_settings; } protected function check_for_errors( $action_settings ) { $errors = array(); $email_address_settings = array( 'to', 'from_address', 'reply_to', 'cc', 'bcc' ); foreach( $email_address_settings as $setting ){ if( ! isset( $action_settings[ $setting ] ) ) continue; if( ! $action_settings[ $setting ] ) continue; $email_addresses = is_array( $action_settings[ $setting ] ) ? $action_settings[ $setting ] : explode( ',', $action_settings[ $setting ] ); foreach( (array) $email_addresses as $email ){ $email = trim( $email ); if ( false !== strpos( $email, '<' ) && false !== strpos( $email, '>' ) ) { preg_match('/(?:<)([^>]*)(?:>)/', $email, $email); $email = $email[ 1 ]; } if( ! is_email( $email ) ) { $errors[ 'invalid_email' ] = sprintf( esc_html__( 'Your email action "%s" has an invalid value for the "%s" setting. Please check this setting and try again.', 'ninja-forms'), $action_settings[ 'label' ], $setting ); } } } return $errors; } private function _get_headers( $settings ) { $headers = array(); $headers[] = 'Content-Type: text/' . $settings[ 'email_format' ]; $headers[] = 'charset=UTF-8'; $headers[] = 'X-Ninja-Forms:ninja-forms'; // Flag for transactional email. $headers[] = $this->_format_from( $settings ); $headers = array_merge( $headers, $this->_format_recipients( $settings ) ); return $headers; } private function _get_attachments( $settings, $data ) { $attachments = array(); if( isset( $settings[ 'attach_csv' ] ) && 1 == $settings[ 'attach_csv' ] ){ $attachments[] = $this->_create_csv( $data[ 'fields' ] ); } if( ! isset( $settings[ 'id' ] ) ) $settings[ 'id' ] = ''; // Allow admins to attach files from media library if (isset($settings['file_attachment']) && 0 < strlen($settings['file_attachment'])) { $file_path = ''; $media_id = attachment_url_to_postid($settings['file_attachment']); if($media_id !== 0) { $file_path = get_attached_file($media_id); if (0 < strlen($file_path)) { $attachments[] = $file_path; } } } $attachments = apply_filters( 'ninja_forms_action_email_attachments', $attachments, $data, $settings ); return $attachments; } private function _format_from( $settings ) { $from_name = get_bloginfo( 'name', 'raw' ); $from_name = apply_filters( 'ninja_forms_action_email_from_name', $from_name ); $from_name = ( $settings[ 'from_name' ] ) ? $settings[ 'from_name' ] : $from_name; $from_address = get_bloginfo( 'admin_email' ); $from_address = apply_filters( 'ninja_forms_action_email_from_address', $from_address ); $from_address = ( $settings[ 'from_address' ] ) ? $settings[ 'from_address' ] : $from_address; return $this->_format_recipient( 'from', $from_address, $from_name ); } private function _format_recipients( $settings ) { $headers = array(); $recipient_settings = array( 'Cc' => $settings[ 'cc' ], 'Bcc' => $settings[ 'bcc' ], 'Reply-to' => $settings[ 'reply_to' ], ); foreach( $recipient_settings as $type => $emails ){ $emails = explode( ',', $emails ); foreach( $emails as $email ) { if( ! $email ) continue; $matches = array(); if (preg_match('/^"?(?[^<"]+)"? <(?[^>]+)>$/', $email, $matches)) { $headers[] = $this->_format_recipient($type, $matches['email'], $matches['name']); } else { $headers[] = $this->_format_recipient($type, $email); } } } return $headers; } private function _format_recipient( $type, $email, $name = '' ) { $type = ucfirst( $type ); if( ! $name ) $name = $email; $recipient = "$type: $name <$email>"; return $recipient; } private function _create_csv( $fields ) { $csv_array = array(); // Get our current date. $date_format = Ninja_Forms()->get_setting( 'date_format' ); $today = date( $date_format, current_time( 'timestamp' ) ); $csv_array[ 0 ][] = 'Date Submitted'; $csv_array[ 1 ][] = $today; foreach( $fields as $field ){ $ignore = array( 'hr', 'submit', 'html', 'creditcardcvc', 'creditcardexpiration', 'creditcardfullname', 'creditcardnumber', 'creditcardzip', ); $ignore = apply_filters( 'ninja_forms_csv_ignore_fields', $ignore ); if( ! isset( $field[ 'label' ] ) ) continue; if( in_array( $field[ 'type' ], $ignore ) ) continue; $label = ( '' != $field[ 'admin_label' ] ) ? $field[ 'admin_label' ] : $field[ 'label' ]; $value = WPN_Helper::stripslashes( $field[ 'value' ] ); if ( empty( $value ) && ! isset( $value ) ) { $value = ''; } if ( is_array( $value ) ) { $value = implode( ',', $value ); } // add filter to add single quote if first character in value is '=' $value = apply_filters( 'ninja_forms_subs_export_field_value_' . $field[ 'type' ], $value, $field ); $csv_array[ 0 ][] = $label; $csv_array[ 1 ][] = $value; } $csv_content = WPN_Helper::str_putcsv( $csv_array, apply_filters( 'ninja_forms_sub_csv_delimiter', ',' ), apply_filters( 'ninja_forms_sub_csv_enclosure', '"' ), apply_filters( 'ninja_forms_sub_csv_terminator', "\n" ) ); $upload_dir = wp_upload_dir(); $path = trailingslashit( $upload_dir['path'] ); // create temporary file $path = tempnam( $path, 'Sub' ); $temp_file = fopen( $path, 'r+' ); // write to temp file fwrite( $temp_file, $csv_content ); fclose( $temp_file ); // find the directory we will be using for the final file $path = pathinfo( $path ); $dir = $path['dirname']; $basename = $path['basename']; // create name for file $new_name = apply_filters( 'ninja_forms_submission_csv_name', 'ninja-forms-submission' ); // remove a file if it already exists if( file_exists( $dir.'/'.$new_name.'.csv' ) ) { unlink( $dir.'/'.$new_name.'.csv' ); } // move file rename( $dir.'/'.$basename, $dir.'/'.$new_name.'.csv' ); return $dir.'/'.$new_name.'.csv'; } /** * Function to delete csv file from temp directory after Email Action has completed. */ private function _drop_csv() { $upload_dir = wp_upload_dir(); $path = trailingslashit( $upload_dir['path'] ); // create name for file $new_name = apply_filters( 'ninja_forms_submission_csv_name', 'ninja-forms-submission' ); // remove a file if it already exists if( file_exists( $path.'/'.$new_name.'.csv' ) ) { unlink( $path.'/'.$new_name.'.csv' ); } } /* * Backwards Compatibility */ private function _backwards_compatibility() { add_filter( 'ninja_forms_sub_csv_delimiter', array( $this, 'ninja_forms_sub_csv_delimiter' ), 10, 1 ); add_filter( 'ninja_sub_csv_enclosure', array( $this, 'ninja_sub_csv_enclosure' ), 10, 1 ); add_filter( 'ninja_sub_csv_terminator', array( $this, 'ninja_sub_csv_terminator' ), 10, 1 ); add_filter( 'ninja_forms_action_email_attachments', array( $this, 'ninja_forms_action_email_attachments' ), 10, 3 ); } public function ninja_forms_sub_csv_delimiter( $delimiter ) { return apply_filters( 'nf_sub_csv_delimiter', $delimiter ); } public function ninja_sub_csv_enclosure( $enclosure ) { return apply_filters( 'nf_sub_csv_enclosure', $enclosure ); } public function ninja_sub_csv_terminator( $terminator ) { return apply_filters( 'nf_sub_csv_terminator', $terminator ); } public function ninja_forms_action_email_attachments( $attachments, $form_data, $action_settings ) { return apply_filters( 'nf_email_notification_attachments', $attachments, $action_settings[ 'id' ] ); } private function format_plain_text_message( $message ) { $message = str_replace( array( '', '
    ', '', '' ), '', $message ); $message = str_replace( '', ' ', $message ); $message = str_replace( '', "\r\n", $message ); return strip_tags( $message ); } } includes/Actions/Redirect.php000064400000001753152331132460012232 0ustar00_nicename = esc_html__( 'Redirect', 'ninja-forms' ); $settings = Ninja_Forms::config( 'ActionRedirectSettings' ); $this->_settings = array_merge( $this->_settings, $settings ); } /* * PUBLIC METHODS */ public function save( $action_settings ) { } public function process( $action_settings, $form_id, $data ) { $data[ 'actions' ][ 'redirect' ] = $action_settings[ 'redirect_url' ]; return $data; } } includes/Widget.php000064400000007250152331132460010312 0ustar00 esc_html__( 'Ninja Forms Widget', 'ninja-forms' ), ) // Args ); } /** * Front-end display of widget. * * @see WP_Widget::widget() * * @param array $args Widget arguments. * @param array $instance Saved values from database. */ public function widget( $args, $instance ) { $form = Ninja_Forms()->form( $instance['form_id'] )->get(); $title = $form->get_setting( 'title' ); $title = apply_filters( 'widget_title', $title ); $display_title = $instance['display_title']; echo $args[ 'before_widget' ]; if ( ! empty( $title ) AND $display_title == 1 ) echo $args[ 'before_title' ] . esc_html( $title ) . $args[ 'after_title' ]; Ninja_Forms()->display( $instance['form_id'] ); echo $args[ 'after_widget' ]; } /** * Sanitize widget form values as they are saved. * * @see WP_Widget::update() * * @param array $new_instance Values just sent to be saved. * @param array $old_instance Previously saved values from database. * * @return array Updated safe values to be saved. */ public function update( $new_instance, $old_instance ) { $instance = array(); $instance['form_id'] = $new_instance['form_id']; $instance['display_title'] = $new_instance['display_title']; return $instance; } /** * Back-end widget form. * * @see WP_Widget::form() * * @param array $instance Previously saved values from database. */ public function form( $instance ) { if( isset( $instance['form_id'] ) ){ $form_id = $instance['form_id']; }else{ $form_id = ''; } if( isset( $instance['display_title'] ) ){ $display_title = $instance['display_title']; }else{ $display_title = 0; } ?>

    use_safe = true; } else { $this->use_safe = false; } } $subject = $this->replace( $subject ); // Make sure we reset use_safe after we finish replacing. $this->use_safe = false; return $subject; } public function replace( $subject ) { if( is_array( $subject ) ){ foreach( $subject as $i => $s ){ $subject[ $i ] = $this->replace( $s ); } return $subject; } preg_match_all("/{([^}]*)}/", $subject, $matches ); if( empty( $matches[0] ) ) return $subject; foreach( $this->merge_tags as $merge_tag ){ if( ! isset( $merge_tag[ 'tag' ] ) || ! in_array( $merge_tag[ 'tag' ], $matches[0] ) ) continue; if( ! isset($merge_tag[ 'callback' ])) continue; if ( is_callable( array( $this, $merge_tag[ 'callback' ] ) ) ) { $replace = $this->{$merge_tag[ 'callback' ]}(); } elseif ( is_callable( $merge_tag[ 'callback' ] ) ) { $replace = $merge_tag[ 'callback' ](); } else { $replace = ''; } $subject = str_replace( $merge_tag[ 'tag' ], $replace, $subject ); } return $subject; } public function get_id() { return $this->id; } public function get_title() { return $this->title; } public function get_merge_tags() { return $this->merge_tags; } public function is_default_group() { return $this->_default_group; } } // END CLASS NF_Abstracts_MergeTags includes/Abstracts/UserInfo.php000064400000002472152331132460012550 0ustar00_settings = $this->load_settings( array( 'key', 'label', 'label_pos', 'required', 'default', 'placeholder', 'classes', 'admin_label', 'help', 'description', 'custom_name_attribute', 'personally_identifiable', 'disable_browser_autocomplete' ) ); $this->_settings[ 'default' ][ 'settings' ][ 'default_type' ][ 'options' ][] = array( 'label' => esc_html__( 'User Meta (if logged in)', 'ninja-forms' ), 'value' => 'user-meta' ); $this->_settings[ 'default' ][ 'settings' ][ 'default_type' ][ 'value' ] = 'user-meta'; add_filter( 'ninja_forms_render_default_value', array( $this, 'filter_default_value' ), 10, 3 ); } abstract public function filter_default_value( $default_value, $field_class, $settings ); } includes/Abstracts/Controller.php000064400000003154152331132460013137 0ustar00_data; } if( isset( $this->_data['debug'] ) ) { $this->_debug = array_merge( $this->_debug, $this->_data[ 'debug' ] ); } if( isset( $this->_data['errors'] ) && $this->_data[ 'errors' ] ) { $this->_errors = array_merge( $this->_errors, $this->_data[ 'errors' ] ); } // allow for accessing and acting on $data before responding do_action( 'ninja_forms_before_response', $data ); $response = array( 'data' => $data, 'errors' => $this->_errors, 'debug' => $this->_debug ); echo wp_json_encode( $response ); wp_die(); // this is required to terminate immediately and return a proper response } }includes/Abstracts/Model.php000064400000055533152331132460012064 0ustar00_db = $db; /* * Assign Database Tables using the DB prefix */ $this->_table_name = $this->_db->prefix . $this->_table_name; $this->_meta_table_name = $this->_db->prefix . $this->_meta_table_name; $this->_relationships_table = $this->_db->prefix . $this->_relationships_table; /* * Set the object ID * Check if the ID is Permanent (int) or Temporary (string) */ if( is_numeric( $id ) ) { $this->_id = absint( $id ); } elseif( $id ) { $this->_tmp_id = $id; } /* * Set the Parent ID for context */ $this->_parent_id = $parent_id; } /** * Get the Permanent ID * * @return int */ public function get_id() { return intval( $this->_id ); } /** * Get the Temporary ID * * @return null|string */ public function get_tmp_id() { return $this->_tmp_id; } /** * Get the Type * * @return string */ public function get_type() { return $this->_type; } /** * Get a single setting with a default fallback * * @param string $setting * @param bool $default optional * @return string|int|bool */ public function get_setting( $setting, $default = FALSE ) { if( isset( $this->_settings[ $setting ] )){ $return = $this->_settings[ $setting ]; } else { $return = $this->get_settings($setting); if( is_array( $return ) && empty( $return ) ) $return = false; } return ( $return !== false ) ? $return : $default; } /** * Get Settings * * @param string ...$only returns a subset of the object's settings * @return array */ public function get_settings() { // If the ID is not set, then we cannot pull settings from the Database. if( ! $this->_id ) return $this->_settings; if( ! $this->_settings && 'field' == $this->_type ) { global $wpdb; $results = $wpdb->get_results( " SELECT Meta.key, Meta.value FROM $this->_table_name as Object JOIN $this->_meta_table_name as Meta ON Object.id = Meta.parent_id WHERE Object.id = '$this->_id' " , ARRAY_A ); foreach( $results as $result ) { $key = $result[ 'key' ]; $this->_settings[ $key ] = $result[ 'value' ]; } $field = $wpdb->get_row( " SELECT `label`, `key`, `type` FROM $this->_table_name WHERE `id` = '$this->_id' ", ARRAY_A ); if( ! is_wp_error( $field ) ){ $this->_settings[ 'label' ] = $field[ 'label' ]; $this->_settings[ 'key' ] = $field[ 'key' ]; $this->_settings[ 'type' ] = $field[ 'type' ]; $this->_settings[ 'field_label' ] = $field[ 'label' ]; $this->_settings[ 'field_key' ] = $field[ 'key' ]; } } if( ! $this->_settings ) { if( WPN_Helper::use_cache() ) { $form_cache = WPN_Helper::get_nf_cache( $this->_parent_id ); if ($form_cache) { if ('field' == $this->_type) { if (isset($form_cache['fields'])) { foreach ($form_cache['fields'] as $object) { if ($this->_id != $object['id']) continue; $this->update_settings($object['settings']); break; } } } } } } // Only query if settings haven't been already queried or cache is FALSE. if( ! $this->_settings || ! $this->_cache ) { // Build query syntax from the columns property. $columns = '`' . implode( '`, `', $this->_columns ) . '`'; // Query column settings $results = $this->_db->get_row( " SELECT $columns FROM `$this->_table_name` WHERE `id` = $this->_id " ); /* * If the query returns results then * assign settings using the column name as the setting key. */ if( $results ) { foreach ($this->_columns as $column) { $this->_settings[$column] = $results->$column; } } $meta_select_fields = "SELECT `key`, `value`";//, `meta_key`, //`meta_value`"; // Query settings from the meta table. $meta_results = $this->_db->get_results( $meta_select_fields . " FROM `$this->_meta_table_name` WHERE `parent_id` = $this->_id " ); // Assign settings to the settings property. foreach ($meta_results as $meta) { // If we don't already have a value from the main table... // OR If that value was NULL... if ( ! isset( $this->_settings[ $meta->key ] ) || NULL == $this->_settings[ $meta->key ] ) { // TODO: Update this logic after removal of original meta columns. // Set the value from meta. $this->_settings[ $meta->key ] = $meta->value; } } } // Un-serialize queried settings results. foreach( $this->_settings as $key => $value ){ $this->_settings[ $key ] = maybe_unserialize( $value ); } // Check for passed arguments to limit the returned settings. $only = func_get_args(); if ( $only && is_array($only) // And if the array is NOT multidimensional && (count($only) == count($only, COUNT_RECURSIVE))) { // If only one setting, return a single value if( 1 == count( $only ) ){ if( isset( $this->_settings[ $only[0] ] ) ) { return $this->_settings[$only[0]]; } else { return NULL; } } // Flip the array to match the settings property $only_settings = array_flip( $only ); // Return only the requested settings return array_intersect_key( $this->_settings, $only_settings ); } // Return all settings return $this->_settings; } /** * Update Setting * * @param $key * @param $value * @return bool|false|int */ public function update_setting( $key, $value ) { $this->_settings[ $key ] = $value; return $this; } /** * Update Settings * * @param $data * @return bool */ public function update_settings( $data ) { if( is_array( $data ) ) { foreach ($data as $key => $value) { $this->update_setting($key, $value); } } return $this; } /** * Delete * * Delete the object, its children, and its relationships. * * @return bool */ public function delete() { if( ! $this->get_id() ) return; $results = array(); // Delete the object from the model's table $results[] = $this->_db->delete( $this->_table_name, array( 'id' => $this->_id ) ); // Delete settings from the model's meta table. $results[] = $this->_db->delete( $this->_meta_table_name, array( 'parent_id' => $this->_id ) ); // Query for child objects using the relationships table. $children = $this->_db->get_results( " SELECT child_id, child_type FROM $this->_relationships_table WHERE parent_id = $this->_id AND parent_type = '$this->_type' " ); // Delete each child model foreach( $children as $child ) { $model = Ninja_Forms()->form()->get_model( $child->child_id, $child->child_type ); $model->delete(); } // Delete all relationships $this->_db->delete( $this->_relationships_table, array( 'parent_id' => $this->_id, 'parent_type' => $this->_type ) ); // return False if there are no query errors. return in_array( FALSE, $results ); } /** * Find * * @param string $parent_id * @param array $where * @return array */ public function find( $parent_id = '', array $where = array() ) { // Build the query using the $where argument $query = $this->build_meta_query( $parent_id, $where ); // Get object IDs from the query $ids = $this->_db->get_col( $query ); // Get the current class name $class = get_class( $this ); $results = array(); foreach( $ids as $id ){ // Instantiate a new object for each ID $results[] = $object = new $class( $this->_db, $id, $parent_id ); } if( ! WPN_Helper::use_cache() ) { $results = $this->get_object_settings($results); } // Return an array of objects return $results; } public function get_object_settings($obj_array ) { global $wpdb; $id_array = array(); $generic_object_array = array(); foreach($obj_array as $obj) { $id_array[] = $obj->get_id(); $generic_object_array[$obj->get_id()] = $obj; } if( 0 < count($id_array) ) { $obj_query = "SELECT `id`, `" . implode( '`, `', $this->_columns) . "` FROM {$this->_table_name} WHERE id IN (" . implode(',', $id_array) . ")"; $table_data = $wpdb->get_results($obj_query, ARRAY_A); foreach($table_data as $data_item) { foreach($data_item as $label => $val ) { $generic_object_array[$data_item['id']]->_settings[$label] = maybe_unserialize( $val ); } } $meta_query = "SELECT * FROM {$this->_meta_table_name} WHERE parent_id IN (" . implode(',', $id_array) . ")"; $meta_data = $wpdb->get_results($meta_query, ARRAY_A); foreach($meta_data as $meta) { // if( ! isset($generic_object_array[$meta['parent_id']]->_settings[$meta['meta_key']])) { $generic_object_array[$meta['parent_id']]->_settings[$meta['meta_key']] = maybe_unserialize( $meta['meta_value'] ); // } } } $obj_array = array_values($generic_object_array); return $obj_array; } /* * UTILITY METHODS */ /** * Save */ public function save() { /** * Check to see if we've completed stage 1 of our db update. */ $sql = "SHOW COLUMNS FROM {$this->_db->prefix}nf3_fields LIKE 'field_key'"; $results = $this->_db->get_results( $sql ); /** * If we don't have the field_key column, we need to remove our new columns. * * Also, set our db stage 1 tracker to false. */ if ( empty ( $results ) ) { $this->db_stage_1_complete = false; } $data = array ( 'updated_at' => current_time( 'mysql' )); // If the ID is not set, assign an ID if( ! $this->_id ){ $data[ 'created_at' ] = current_time( 'mysql' ) ; if( $this->_parent_id ){ $data['parent_id'] = $this->_parent_id; } // Create a new row in the database $result = $this->_db->insert( $this->_table_name, $data ); // Assign the New ID $this->_id = $this->_db->insert_id; } else { $result = $this->_db->get_row( "SELECT * FROM $this->_table_name WHERE id = $this->_id" ); if( ! $result ){ $this->_insert_row( array( 'id' => $this->_id ) ); } } $this->_save_settings(); // If a Temporary ID is set, return it along with the newly assigned ID. if( $this->_tmp_id ){ return array( $this->_tmp_id => $this->_id ); } } public function _insert_row( $data = array() ) { $data[ 'created_at' ] = current_time( 'mysql' ); if( $this->_parent_id ){ $data['parent_id'] = $this->_parent_id; } // Create a new row in the database $result = $this->_db->insert( $this->_table_name, $data ); } /** * Cache Flag * * @param string $cache * @return $this */ public function cache( $cache = '' ) { // Set the Cache Flag Property. if( $cache !== '' ) { $this->_cache = $cache; } // Return the current object for method chaining. return $this; } /** * Add Parent * * Set the Parent ID and Parent Type properties * * @param $parent_id * @param $parent_type * @return $this */ public function add_parent( $parent_id, $parent_type ) { $this->_parent_id = $parent_id; $this->_parent_type = $parent_type; // Return the current object for method chaining. return $this; } //----------------------------------------------------- // Protected Methods //----------------------------------------------------- /** * Save Setting * * Save a single setting. * * @param $key * @param $value * @return bool|false|int */ protected function _save_setting( $key, $value ) { // If the setting is a column, save the settings to the model's table. if( in_array( $key, $this->_columns ) ){ $format = null; if( in_array( $key, array( 'show_title', 'clear_complete', 'hide_complete', 'logged_in' ) ) ) { // gotta set the format for the columns that use bit type $format = '%d'; } if( 'form' === $this->_type && 'title' == $key ) { $this->_db->update( $this->_table_name, array( 'form_title' => $value ), array( 'id' => $this->_id ), $format ); } // Don't update the form_title. Duplicating issue for now if( 'form_title' !== $key ) { $update_model = $this->_db->update( $this->_table_name, array( $key => $value ), array( 'id' => $this->_id ), $format ); } else { return 1; } /* * if it's not a form, you can return, but we are still saving some * settings for forms in the form_meta table */ if( 'form' != $this->_type || ( 'form' == $this->_type && 'title' == $key ) ) { return $update_model; } } $meta_row = $this->_db->get_row( " SELECT `value` FROM `$this->_meta_table_name` WHERE `parent_id` = $this->_id AND `key` = '$key' " ); if( $meta_row ){ $update_values = array( 'value' => $value, ); // for forms we need to update the meta_key and meta_value columns if( 'form' == $this->_type || $this->db_stage_1_complete ) { $update_values[ 'meta_key' ] = $key; $update_values[ 'meta_value' ] = $value; } $result = $this->_db->update( $this->_meta_table_name, $update_values, array( 'key' => $key, 'parent_id' => $this->_id ) ); } else { $insert_values = array( 'key' => $key, 'value' => $value, 'parent_id' => $this->_id ); // for forms we need to update the meta_key and meta_value columns if( 'form' == $this->_type || $this->db_stage_1_complete ) { $insert_values[ 'meta_key' ] = $key; $insert_values[ 'meta_value' ] = $value; } $result = $this->_db->insert( $this->_meta_table_name, $insert_values, array( '%s', '%s', '%d' ) ); } return $result; } /** * Save Settings * * Save all settings. * * @return bool */ protected function _save_settings() { if( ! $this->_settings ) return; foreach( $this->_settings as $key => $value ) { $value = maybe_serialize( $value ); $this->_results[] = $this->_save_setting( $key, $value ); } $this->_save_parent_relationship(); return $this->_results; } /** * Save Parent Relationship * * @return $this */ protected function _save_parent_relationship() { // ID, Type, Parent ID, and Parent Type are required for creating a relationship. if( ! $this->_id || ! $this->_type || ! $this->_parent_id || ! $this->_parent_type ) return $this; // Check to see if a relationship exists. $this->_db->get_results( " SELECT * FROM $this->_relationships_table WHERE `child_id` = $this->_id AND `child_type` = '$this->_type' " ); // If a relationship does not exists, then create one. if( 0 == $this->_db->num_rows ) { $this->_db->insert( $this->_relationships_table, array( 'child_id' => $this->_id, 'child_type' => $this->_type, 'parent_id' => $this->_parent_id, 'parent_type' => $this->_parent_type ), array( '%d', '%s', '%d', '%s', ) ); } // Return the current object for method chaining. return $this; } /** * Build Meta Query * * @param string $parent_id * @param array $where * @return string */ protected function build_meta_query( $parent_id = '', array $where = array() ) { $join_statement = array(); $where_statement = array(); if( $where AND is_array( $where ) ) { $where_conditions = array(); foreach ($where as $key => $value) { $conditions['key'] = $key; $conditions['value'] = $value; $where_conditions[] = $conditions; } $count = count($where); for ($i = 0; $i < $count; $i++) { $join_statement[] = "INNER JOIN " . $this->_meta_table_name . " as meta$i on meta$i.parent_id = " . $this->_table_name . ".id"; $where_statement[] = "( meta$i.key = '" . $where_conditions[$i]['key'] . "' AND meta$i.value = '" . $where_conditions[$i]['value'] . "' )"; } } $join_statement = implode( ' ', $join_statement ); $where_statement = implode( ' AND ', $where_statement ); // TODO: Breaks SQL. Needs more testing. // if( $where_statement ) $where_statement = "AND " . $where_statement; if( $parent_id ){ $where_statement = "$this->_table_name.parent_id = $parent_id $where_statement"; } if( ! empty( $where_statement ) ) { $where_statement = "WHERE $where_statement"; } return "SELECT DISTINCT $this->_table_name.id FROM $this->_table_name $join_statement $where_statement"; } } includes/Abstracts/ActionNewsletter.php000064400000010717152331132460014311 0ustar00 'List', 'fields' => 'List Field Mapping', 'groups' => 'Interest Groups', ); /** * Constructor */ public function __construct() { parent::__construct(); if( ! $this->_transient ){ $this->_transient = $this->get_name() . '_newsletter_lists'; } /** * Ajax call handled in '_get_lists', but bulk of work could be done in * the NewsLetter class that extends this class */ add_action( 'wp_ajax_nf_' . $this->_name . '_get_lists', array( $this, '_get_lists' ) ); $this->get_list_settings(); } /* * PUBLIC METHODS */ public function save( $action_settings ) { } public function process( $action_settings, $form_id, $data ) { } public function _get_lists() { check_ajax_referer( 'ninja_forms_builder_nonce', 'security' ); $lists = $this->get_lists(); array_unshift( $lists, array( 'value' => 0, 'label' => '-', 'fields' => array(), 'groups' => array() ) ); $this->cache_lists( $lists ); echo wp_json_encode( array( 'lists' => $lists ) ); wp_die(); // this is required to terminate immediately and return a proper response } /* * PROTECTED METHODS */ abstract protected function get_lists(); /* * PRIVATE METHODS */ private function get_list_settings() { $label_defaults = array( 'list' => 'List', 'fields' => 'List Field Mapping', 'groups' => 'Interest Groups', ); $labels = array_merge( $label_defaults, $this->_setting_labels ); $prefix = $this->get_name(); $lists = get_transient( $this->_transient ); if( ! $lists ) { $lists = $this->get_lists(); $this->cache_lists( $lists ); } if( empty( $lists ) ) return; $this->_settings[ $prefix . 'newsletter_list' ] = array( 'name' => 'newsletter_list', 'type' => 'select', 'label' => $labels[ 'list' ] . ' ', 'width' => 'full', 'group' => 'primary', 'value' => '0', 'options' => array(), ); $fields = array(); foreach( $lists as $list ) { $this->_settings[ $prefix . 'newsletter_list' ][ 'options' ][] = $list; //Check to see if list has fields array set. if ( isset( $list[ 'fields' ] ) ) { foreach ( $list[ 'fields' ] as $field ) { $name = $list[ 'value' ] . '_' . $field[ 'value' ]; $fields[] = array( 'name' => $name, 'type' => 'textbox', 'label' => $field[ 'label' ], 'width' => 'full', 'use_merge_tags' => array( 'exclude' => array( 'user', 'post', 'system', 'querystrings' ) ) ); } } } $this->_settings[ $prefix . 'newsletter_list_fields' ] = array( 'name' => 'newsletter_list_fields', 'label' => esc_html__( 'List Field Mapping', 'ninja-forms' ), 'type' => 'fieldset', 'group' => 'primary', 'settings' => array() ); $this->_settings[ $prefix . 'newsletter_list_groups' ] = array( 'name' => 'newsletter_list_groups', 'label' => esc_html__( 'Interest Groups', 'ninja-forms' ), 'type' => 'fieldset', 'group' => 'primary', 'settings' => array() ); } private function cache_lists( $lists ) { set_transient( $this->_transient, $lists, $this->_transient_expiration ); } } includes/Abstracts/ModelFactory.php000064400000034074152331132460013411 0ustar00_db = $db; $this->_object = $this->_form = new NF_Database_Models_Form( $this->_db, $id ); if(WPN_Helper::use_cache()) { $form_cache = WPN_Helper::get_nf_cache( $id ); if( $form_cache && isset ( $form_cache[ 'settings' ] ) ){ $this->_object->update_settings( $form_cache[ 'settings' ] ); } } return $this; } /** * PHP MAGIC method for catching undefined methods. * Use this as a passthrough for methods of the form model. * * @param $method (String) The name of the called method. * @param $args (Array) The arguments supplied to the method. * * @return (Mixed) Will match the return type of the supplied method. * * @since UPDATE_VERSION_ON_MERGE */ public function __call( $method, $args ) { // If this is a method of the form model... if ( method_exists( $this->_object, $method ) ) { // Instantiate a reflector method. $mirror = new ReflectionMethod( get_class( $this->_object ), $method ); // If the method is not private... if ( ! $mirror->isPrivate() ) { // If args were supplied... if ( ! empty( $args ) ) { // Pass them into the function. return $this->_object->{$method}( $args ); } return $this->_object->{$method}(); } } } /** * Returns the parent object set by the constructor for chained methods. * * @return object */ public function get() { $object = $this->_object; $this->_object = $this->_form; return $object; } /** * Get Forms * * Returns an array of Form Model Objects. * * @param array $where * @return array|bool */ public function get_forms( array $where = array() ) { if( 'form' != $this->_object->get_type() ) return FALSE; return $this->_object->find( NULL, $where ); } /** * Export Form * * A wrapper for the Form Model export method. * * @param bool|FALSE $return * @return array */ public function export_form( $return = FALSE ) { $form_id = $this->_object->get_id(); return NF_Database_Models_Form::export( $form_id, $return ); } /** * Import Form * * A wrapper for the Form Model import method. * * @param $import * @param $decode_utf8 * @param $id * @param $is_conversion */ public function import_form( $import, $decode_utf8 = TRUE, $id = FALSE, $is_conversion = FALSE ) { if( ! is_array( $import ) ){ // Check to see if user turned off UTF-8 encoding if( $decode_utf8 ) { $data = WPN_Helper::utf8_decode( json_decode( WPN_Helper::json_cleanup( html_entity_decode( $import ) ), true ) ); } else { $data = json_decode( WPN_Helper::json_cleanup( html_entity_decode( $import ) ), true ); } if( ! is_array( $data ) ) { if( $decode_utf8 ) { $data = WPN_Helper::utf8_decode( json_decode( WPN_Helper::json_cleanup( $import ), true ) ); } else { $data = json_decode( WPN_Helper::json_cleanup( $import ), true ); } } if( ! is_array( $data ) ){ $data = WPN_Helper::maybe_unserialize( $import ); if( ! is_array( $data ) ){ return false; } } $import = $data; } return NF_Database_Models_Form::import( $import, $id, $is_conversion ); } /* * FIELDS */ /** * Sets the parent object for chained methods as a Field. * * @param string $id * @return $this */ public function field( $id = '' ) { $form_id = $this->_object->get_id(); $this->_object = new NF_Database_Models_Field( $this->_db, $id, $form_id ); return $this; } /** * Returns a field object. * * @param $id * @return NF_Database_Models_Field */ public function get_field( $id ) { if( isset( $this->_fields[ $id ] ) ){ return $this->_fields[ $id ]; } /* MISSING FORM ID FALLBACK */ /* if( ! $form_id ){ $form_id = $wpdb->get_var( $wpdb->prepare( "SELECT parent_id from {$wpdb->prefix}nf3_fields WHERE id = %d", $id )); $this->_object = $this->_form = new NF_Database_Models_Form( $this->_db, $id ); } */ if( ! $this->_fields ){ $this->get_fields(); } if( ! isset( $this->_fields[ $id ] ) ){ $form_id = $this->_object->get_id(); $this->_fields[ $id ] = new NF_Database_Models_Field( $this->_db, $id, $form_id ); } return $this->_fields[ $id ]; } /** * Returns an array of field objects for the set form (object). * * @param array $where * @param bool|FALSE $fresh * @return array */ public function get_fields( $where = array(), $fresh = FALSE) { $field_by_key = array(); $form_id = $this->_object->get_id(); if ( ! $form_id && empty( $where ) ) { $this->_fields = array(); } if( $where || $fresh || ! $this->_fields ){ // @TODO: Remove the second half of this IF block and replace it with a required update check. if(0 !== $form_id && (WPN_Helper::use_cache() || 1 == $form_id)) { $form_cache = WPN_Helper::get_nf_cache( $form_id ); } else { $form_cache = false; } if( ! $form_cache ) { $model_shell = new NF_Database_Models_Field($this->_db, 0); $fields = $model_shell->find($form_id, $where); foreach ($fields as $field) { $this->_fields[$field->get_id()] = $field; $field_by_key[ $field->get_setting( 'key' ) ] = $field; } } else { foreach( $form_cache[ 'fields' ] as $cached_field ){ $field = new NF_Database_Models_Field( $this->_db, $cached_field[ 'id' ], $form_id ); $field->update_settings( $cached_field[ 'settings' ] ); $this->_fields[$field->get_id()] = $field; $field_by_key[ $field->get_setting( 'key' ) ] = $field; } } /* * If a filter is registered to modify field order, then use that filter. * If not, then usort??. */ $order = apply_filters( 'ninja_forms_get_fields_sorted', array(), $this->_fields, $field_by_key, $form_id ); if ( ! empty( $order ) ) { $this->_fields = $order; } } /* * Broke the sub edit screen order when I have this enabled. */ // usort( $this->_fields, "NF_Abstracts_Field::sort_by_order" ); return $this->_fields; } /** * Import Field * * A wrapper for the Form Model import method. * * @param $import */ public function import_field( $settings, $field_id = '', $is_conversion = FALSE ) { $settings = maybe_unserialize( $settings ); NF_Database_Models_Field::import( $settings, $field_id, $is_conversion ); } /* * ACTIONS */ /** * Sets the parent object for chained methods as an Action. * * @param string $id * @return $this */ public function action( $id ='' ) { $form_id = $this->_object->get_id(); $this->_object = new NF_Database_Models_Action( $this->_db, $id, $form_id ); return $this; } /** * Returns an action object. * * @param $id * @return NF_Database_Models_Action */ public function get_action( $id ) { $form_id = $this->_object->get_id(); return $this->_actions[ $id ] = new NF_Database_Models_Action( $this->_db, $id, $form_id ); } /** * Returns an array of action objects for the set form (object). * * @param array $where * @param bool|FALSE $fresh * @return array */ public function get_actions( $where = array(), $fresh = FALSE) { if( $where || $fresh || ! $this->_actions ){ $form_id = $this->_object->get_id(); $model_shell = new NF_Database_Models_Action($this->_db, 0); $actions = $model_shell->find($form_id, $where); foreach ($actions as $action) { $action->get_setting( 'type' ); // Pre-load the type of action for usort() $this->_actions[$action->get_id()] = $action; } } usort( $this->_actions, 'NF_Abstracts_Action::sort_actions' ); return $this->_actions; } /* * OBJECTS */ /** * Sets the parent object for chained methods as an Object. * * @param string $id * @return $this */ public function object( $id = '' ) { $parent_id = $this->_object->get_id(); $parent_type = $this->_object->get_type(); $this->_object = new NF_Database_Models_Object( $this->_db, $id, $parent_id, $parent_type ); return $this; } /** * Returns an object. * * @param $id * @return NF_Database_Models_Object */ public function get_object( $id ) { return $this->_objects[ $id ] = new NF_Database_Models_Object( $this->_db, $id ); } /** * Returns an array of objects for the set object. * * @param array $where * @param bool|FALSE $fresh * @return array */ public function get_objects( $where = array(), $fresh = FALSE) { if( $where || $fresh || ! $this->_objects ){ $form_id = $this->_object->get_id(); $model_shell = new NF_Database_Models_Object( $this->_db, 0 ); $objects = $model_shell->find( $form_id, $where ); foreach( $objects as $object ){ $this->_objects[ $object->get_id() ] = $object; } } return $this->_objects; } /* * SUBMISSIONS */ /** * Submission * * Returns a single submission by ID, * or an empty submission. * * @param string $id * @return $this */ public function sub( $id = '' ) { $form_id = $this->_object->get_id(); $this->_object = new NF_Database_Models_Submission( $id, $form_id ); return $this; } /** * Get Submission * * Returns a single submission by ID. * * @param $id * @return NF_Database_Models_Submission */ public function get_sub( $id ) { $parent_id = $this->_object->get_id(); return $this->_objects[ $id ] = new NF_Database_Models_Submission( $id, $parent_id ); } /** * Get Submissions * * Returns an array of Submission Model Objects. * * @param array $where * @param bool|FALSE $fresh * @return array */ public function get_subs( $where = array(), $fresh = FALSE, $sub_ids = array() ) { if( $where || $fresh || $sub_ids || ! $this->_objects ){ $form_id = $this->_object->get_id(); $model_shell = new NF_Database_Models_Submission( 0 ); $objects = $model_shell->find( $form_id, $where, $sub_ids ); foreach( $objects as $object ){ $this->_objects[ $object->get_id() ] = $object; } } return $this->_objects; } /** * Export Submissions * * A wrapper for the Submission Model export method. * * @param array $sub_ids * @param bool|FALSE $return * @return string */ public function export_subs( array $sub_ids = array(), $return = FALSE ) { $form_id = $this->_object->get_id(); return NF_Database_Models_Submission::export( $form_id, $sub_ids, $return ); } /* * GENERIC */ /** * Get Model * * A generic method call for any object model type. * * @param $id * @param $type * @return bool|NF_Database_Models_Action|NF_Database_Models_Field|NF_Database_Models_Form|NF_Database_Models_Object */ public function get_model( $id, $type ) { global $wpdb; switch( $type ){ case 'form': return new NF_Database_Models_Form( $wpdb, $id ); break; case 'field': return new NF_Database_Models_Field( $wpdb, $id ); break; case 'action': return new NF_Database_Models_Action( $wpdb, $id ); break; case 'object': return new NF_Database_Models_Object( $wpdb, $id ); break; default: return FALSE; } } } // End Class NF_Abstracts_ModelFactory includes/Abstracts/Migration.php000064400000011026152331132460012742 0ustar00table_name = $table_name; } /** * Function to retrieve the full table name of the extension. * * @return (String) The full table name, including database prefix. * * @since 3.0.28 */ public function table_name() { global $wpdb; return $wpdb->prefix . $this->table_name; } /** * Function to check for the existence of a column in the extension's table. * * @param $column (String) The name of the column to search for. * * @return (Boolean) Whether or not the column exists. * * @since 3.4.0 */ public function column_exists( $column ) { global $wpdb; $response = false; // Fetch any records of the target column. $sql = $wpdb->prepare( "SHOW COLUMNS FROM `{$this->table_name()}` WHERE `Field` = '%s';", $column ); $result = $wpdb->query( $sql ); // If we got anything back, say so. if ( ! empty( $result ) ) $response = true; return $response; } /** * Funciton to get the charset and collate for migrations. * * @param $use_default (Boolean) Whether or not to include the DEFAULT keyword in the return pattern. * * @return (String) A SQL formatted charset and collate for use by table definition. * * @since 3.0.28 * @updated 3.1.14 */ public function charset_collate( $use_default = false ) { $response = ''; global $wpdb; // If our mysql version is 5.5.3 or higher... if ( version_compare( $wpdb->db_version(), '5.5.3', '>=' ) ) { // We can use mb4. $response = 'CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci'; } // Otherwise... else { // We use standard utf8. $response = 'CHARACTER SET utf8 COLLATE utf8_general_ci'; } // If we need to use default... if ( $use_default ) { // Append that to the response. $response = 'DEFAULT ' . $response; } return $response; } /** * Function to run our required update functions. * * @param $callback (String) The function to be run by this call. * * @since 3.4.0 */ public function _do_upgrade( $callback ) { // If the method exists... if ( method_exists( $this, $callback ) ) { $blacklist = array( '__construct', '_do_upgrade', '_run', 'run', '_drop', 'drop' ); // If this callback method isn't blacklisted... if ( ! in_array( $callback, $blacklist ) ) { // Run it. $this->{$callback}(); } } } /** * Function to run our initial migration. * * @since 3.0.0 */ public function _run() { // Check the flag if( get_option( $this->flag, FALSE ) ) return; // Run the migration $this->run(); // Set the Flag update_option( $this->flag, TRUE ); } /** * Abstract protection of inherited funciton run. * * @since 3.0.0 */ protected abstract function run(); /** * Function to drop the table managed by this migration. * * @since 3.0.28 */ public function _drop() { global $wpdb; // If we don't have a table name, exit early. if( ! $this->table_name ) return; // If the table doesn't exist, exit early. if( 0 == $wpdb->query( $wpdb->prepare( "SHOW TABLES LIKE '%s'", $this->table_name() ) ) ) return; // Drop the table. $wpdb->query( "DROP TABLE " . $this->table_name() ); return $this->drop(); } /** * Protection of inherited function drop. * * @since 3.0.28 */ protected function drop() { // This section intentionally left blank. } } includes/Abstracts/List.php000064400000006501152331132460011726 0ustar00form( $form_id )->get_field( $id ); $settings = $field->get_settings(); $settings[ 'options' ] = apply_filters( 'ninja_forms_render_options', $settings[ 'options' ], $settings ); $settings[ 'options' ] = apply_filters( 'ninja_forms_render_options_' . $field->get_setting( 'type' ), $settings[ 'options' ], $settings ); $options = ''; if ( is_array( $settings[ 'options' ] ) ) { foreach( $settings[ 'options' ] as $option ){ $selected = ( $value == $option[ 'value' ] ) ? "selected" : ''; $options .= ""; } } return ""; } /* * Appropriate output for a column cell in submissions list. */ public function custom_columns( $value, $field ) { if( $this->_name != $field->get_setting( 'type' ) ) return $value; //Consider & to be the same as the & values in database in a selectbox saved value: if( ! is_array( $value ) ) $value = array( htmlspecialchars_decode($value) ); $settings = $field->get_settings(); $options = $field->get_setting( 'options' ); $options = apply_filters( 'ninja_forms_render_options', $options, $settings ); $options = apply_filters( 'ninja_forms_render_options_' . $field->get_setting( 'type' ), $options, $settings ); $output = ''; if( ! empty( $options ) ) { foreach ($options as $option) { if ( ! in_array( $option[ 'value' ], $value ) ) continue; $output .= esc_html( $option[ 'label' ] ) . "
    "; } } return $output; } public function query_string_default( $options, $settings ) { if( ! isset( $settings[ 'key' ] ) ) return $options; $field_key = $settings[ 'key' ]; if( ! isset( $_GET[ $field_key ] ) ) return $options; foreach( $options as $key => $option ){ if( ! isset( $option[ 'value' ] ) ) continue; if( $option[ 'value' ] != $_GET[ $field_key ] ) continue; $options[ $key ][ 'selected' ] = 1; } return $options; } } includes/Abstracts/BatchProcess.php000064400000011455152331132460013377 0ustar00 false ); /** * Constructor */ public function __construct( $data = array() ) { //Bail if we aren't in the admin. if ( ! is_admin() ) return false; global $wpdb; /** * Set $_db to $wpdb. * This helps us by not requiring us to declare global $wpdb in every class method. */ $this->_db = $wpdb; // Run init. $this->init(); } /** * Decides whether we need to run startup or restart and then calls processing. * * @since 3.4.0 * @return void */ public function init() { if ( ! get_option( 'nf_doing_' . $this->_slug ) ) { // Run the startup process. $this->startup(); } else { // Otherwise... (We've already run startup.) $this->restart(); } // Determine how many steps this will take. $this->response[ 'step_total' ] = $this->get_steps(); add_option( 'nf_doing_' . $this->_slug, true ); // Run processing $this->process(); } /** * Function to loop over the batch. * * @since 3.4.0 * @return void */ public function process() { /** * This function intentionlly left empty. */ } /** * Function to run any setup steps necessary to begin processing. * * @since 3.4.0 * @return void */ public function startup() { /** * This function intentionally left empty. */ } /** * Function to run any setup steps necessary to begin processing for steps after the first. * * @since 3.4.0 * @return void */ public function restart() { /** * This function intentionally left empty. */ } /** * Returns how many steps we have in this process. * * If this method isn't overwritten by a child, it defaults to 1. * * @since 3.4.0 * @return int */ public function get_steps() { return 1; } /** * Adds an error to the response object. * * @param $slug (String) The slug for this error code. * @param $msg (String) The error message to be displayed. * @param $type (String) warning or fatal, depending on the error. * Defaults to warning. * * @since 3.4.11 */ public function add_error( $slug, $msg, $type = 'warning' ) { // Setup our errors array if it doesn't exist already. if ( ! isset( $this->response[ 'errors' ] ) ) { $this->response[ 'errors' ] = array(); } $this->response[ 'errors' ][] = array( 'code' => $slug, 'message' => $msg, 'type' => $type ); } /** * Function to cleanup any lingering temporary elements of a batch process after completion. * * @since 3.4.0 * @return void */ public function cleanup() { /** * This function intentionally left empty. */ } /** * Method called when we are finished with this process. * * Deletes our "doing" option. * Set's our response 'batch_complete' to true. * Runs cleanup(). * Responds to the JS front-end. * * @since 3.4.0 * @return void */ public function batch_complete() { // Delete our options. delete_option( 'nf_doing_' . $this->_slug ); // Tell our JS that we're done. $this->response[ 'batch_complete' ] = true; $this->cleanup(); $this->respond(); } /** * Method that immediately moves on to the next step. * * Used in child methods to stop processing the current step an dmove to the next. * * @since 3.4.0 * @return void */ public function next_step() { // ..see how many steps we have left, update our option, and send the remaining step to the JS. $this->response[ 'step_remaining' ] = $this->get_steps(); $this->respond(); } /** * Method that encodes $this->response and sends the data to the front-end. * * @since 3.4.0 * @updated 3.4.11 * @return void */ public function respond() { if ( ! empty( $this->response[ 'errors' ] ) ) { $this->response[ 'errors' ] = array_unique( $this->response[ 'errors' ] ); } echo wp_json_encode( $this->response ); wp_die(); } }includes/Abstracts/FieldOptIn.php000064400000004450152331132460013011 0ustar00_settings[ 'type' ][ 'options' ] = array( array( 'label' => esc_html__( 'Single', 'ninja-forms' ), 'value' => 'single', ), array( 'label' => esc_html__( 'Multiple', 'ninja-forms' ), 'value' => 'multiple', ), ); /* * Add a refresh extra for the groups fieldset. */ $this->_settings[ 'fieldset' ][ 'label' ] = esc_html__( 'Lists', 'ninja-forms' ) . ' ' . esc_html__( 'refresh', 'ninja-forms' ) . ''; $this->_settings[ 'fieldset' ][ 'deps' ] = array( 'type' => 'multiple' ); /* * Hide the 'type' and 'fieldset' ('groups') settings until they are ready for use. */ $this->_settings[ 'type' ][ 'group' ] = ''; $this->_settings[ 'fieldset' ][ 'group' ] = ''; } protected function addList( $name, $label ) { $this->_settings[ 'fieldset' ][ 'settings' ][] = array( 'name' => $name, 'type' => 'toggle', 'label' => $label, 'width' => 'full', 'value' => '' ); } protected function addLists( array $lists = array() ) { if( empty( $lists ) ) return; foreach( $lists as $name => $label ){ $this->addList( $name, $label ); } } public function get_parent_type(){ return $this->_parent_type; } }includes/Abstracts/Submenu.php000064400000005354152331132460012436 0ustar00priority ); } /** * Register the menu page. */ public function register() { $function = ( $this->function ) ? array( $this, $this->function ) : NULL; add_submenu_page( $this->parent_slug, $this->get_page_title(), $this->get_menu_title(), apply_filters( 'ninja_forms_submenu_' . $this->get_menu_slug() . '_capability', $this->get_capability() ), $this->get_menu_slug(), $function, $this->position ); } public function get_page_title() { return $this->page_title; } public function get_menu_title() { return ( $this->menu_title ) ? $this->menu_title : $this->get_page_title(); } public function get_menu_slug() { return ( $this->menu_slug ) ? $this->menu_slug : 'nf-' . strtolower( preg_replace( '/[^A-Za-z0-9-]+/', '-', $this->get_menu_title() ) ); } public function get_capability() { return $this->capability; } /** * Display the menu page. */ public abstract function display(); }includes/Abstracts/Logger.php000064400000006233152331132460012234 0ustar00log(NF_Abstracts_LogLevel::EMERGENCY, $message, $context); } /** * Action must be taken immediately. * * Example: Entire website down, database unavailable, etc. This should * trigger the SMS alerts and wake you up. * * @param string $message * @param array $context * * @return null */ public function alert($message, array $context = array()) { $this->log(NF_Abstracts_LogLevel::ALERT, $message, $context); } /** * Critical conditions. * * Example: Application component unavailable, unexpected exception. * * @param string $message * @param array $context * * @return null */ public function critical($message, array $context = array()) { $this->log(NF_Abstracts_LogLevel::CRITICAL, $message, $context); } /** * Runtime errors that do not require immediate action but should typically * be logged and monitored. * * @param string $message * @param array $context * * @return null */ public function error($message, array $context = array()) { $this->log(NF_Abstracts_LogLevel::ERROR, $message, $context); } /** * Exceptional occurrences that are not errors. * * Example: Use of deprecated APIs, poor use of an API, undesirable things * that are not necessarily wrong. * * @param string $message * @param array $context * * @return null */ public function warning($message, array $context = array()) { $this->log(NF_Abstracts_LogLevel::WARNING, $message, $context); } /** * Normal but significant events. * * @param string $message * @param array $context * * @return null */ public function notice($message, array $context = array()) { $this->log(NF_Abstracts_LogLevel::NOTICE, $message, $context); } /** * Interesting events. * * Example: User logs in, SQL logs. * * @param string $message * @param array $context * * @return null */ public function info($message, array $context = array()) { $this->log(NF_Abstracts_LogLevel::INFO, $message, $context); } /** * Detailed debug information. * * @param string $message * @param array $context * * @return null */ public function debug($message, array $context = array()) { $this->log(NF_Abstracts_LogLevel::DEBUG, $message, $context); } } includes/Abstracts/Action.php000064400000011360152331132460012227 0ustar00_settings_all = apply_filters( 'ninja_forms_actions_settings_all', $this->_settings_all ); if( ! empty( $this->_settings_only ) ){ $this->_settings = array_merge( $this->_settings, $this->_settings_only ); } else { $this->_settings = array_merge( $this->_settings_all, $this->_settings ); $this->_settings = array_diff( $this->_settings, $this->_settings_exclude ); } $this->_settings = $this->load_settings( $this->_settings ); } //----------------------------------------------------- // Public Methods //----------------------------------------------------- /** * Save */ public function save( $action_settings ) { // This section intentionally left blank. } /** * Process */ public abstract function process( $action_id, $form_id, $data ); /** * Get Timing * * Returns the timing for an action. * * @return mixed */ public function get_timing() { $timing = array( 'early' => -1, 'normal' => 0, 'late' => 1 ); return intval( $timing[ $this->_timing ] ); } /** * Get Priority * * Returns the priority for an action. * * @return int */ public function get_priority() { return intval( $this->_priority ); } /** * Get Name * * Returns the name of an action. * * @return string */ public function get_name() { return $this->_name; } /** * Get Nicename * * Returns the nicename of an action. * * @return string */ public function get_nicename() { return $this->_nicename; } /** * Get Section * * Returns the drawer section for an action. * * @return string */ public function get_section() { return $this->_section; } /** * Get Image * * Returns the url of a branded action's image. * * @return string */ public function get_image() { return $this->_image; } /** * Get Settings * * Returns the settings for an action. * * @return array|mixed */ public function get_settings() { return $this->_settings; } /** * Sort Actions * * A static method for sorting two actions by timing, then priority. * * @param $a * @param $b * @return int */ public static function sort_actions( $a, $b ) { if( ! isset( Ninja_Forms()->actions[ $a->get_setting( 'type' ) ] ) ) return 1; if( ! isset( Ninja_Forms()->actions[ $b->get_setting( 'type' ) ] ) ) return 1; $a->timing = Ninja_Forms()->actions[ $a->get_setting( 'type' ) ]->get_timing(); $a->priority = Ninja_Forms()->actions[ $a->get_setting( 'type' ) ]->get_priority(); $b->timing = Ninja_Forms()->actions[ $b->get_setting( 'type' ) ]->get_timing(); $b->priority = Ninja_Forms()->actions[ $b->get_setting( 'type' ) ]->get_priority(); // Compare Priority if Timing is the same if( $a->timing == $b->timing) return $a->priority > $b->priority ? 1 : -1; // Compare Timing return $a->timing < $b->timing ? 1 : -1; } protected function load_settings( $only_settings = array() ) { $settings = array(); // Loads a settings array from the FieldSettings configuration file. $all_settings = Ninja_Forms::config( 'ActionSettings' ); foreach( $only_settings as $setting ){ if( isset( $all_settings[ $setting ]) ){ $settings[ $setting ] = $all_settings[ $setting ]; } } return $settings; } } // END CLASS NF_Abstracts_Action includes/Abstracts/Menu.php000064400000004547152331132460011727 0ustar00get_page_title(), $this->get_menu_title(), apply_filters( 'ninja_forms_menu_' . $this->get_menu_slug() . '_capability', $this->get_capability() ), $this->menu_slug, array( $this, $this->function ), $this->icon_url, $this->position ); } public function get_page_title() { return $this->page_title; } public function get_menu_title() { return ( $this->menu_title ) ? $this->menu_title : $this->get_page_title(); } public function get_menu_slug() { return ( $this->menu_slug ) ? $this->menu_slug : 'nf-' . strtolower( preg_replace( '/[^A-Za-z0-9-]+/', '-', $this->get_menu_title() ) ); } public function get_capability() { return $this->capability; } /** * Display the menu page. */ public abstract function display(); }includes/Abstracts/Element.php000064400000000171152331132460012401 0ustar00_title = esc_html__( 'Submission Metabox', 'ninja-forms' ); $post_id = absint( $_GET[ 'post' ] ); $this->sub = Ninja_Forms()->form()->get_sub( $post_id ); add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) ); add_action( 'save_post', array( $this, '_save_post' ) ); } }includes/Abstracts/Extension.php000064400000006117152331132460012772 0ustar00autoloader_prefix ) { $class = explode( '_', __CLASS__ ); $this->autoloader_prefix = $class[ 0 ]; } if ( false !== strpos( $class_name, $this->autoloader_prefix ) ) { $class_name = str_replace($this->autoloader_prefix, '', $class_name); $classes_dir = realpath(plugin_dir_path(__FILE__)) . DIRECTORY_SEPARATOR . 'includes' . DIRECTORY_SEPARATOR; $class_file = str_replace('_', DIRECTORY_SEPARATOR, $class_name) . '.php'; if (file_exists($classes_dir . $class_file)) { require_once $classes_dir . $class_file; } } } } /** * The main function responsible for returning The Highlander Plugin * Instance to functions everywhere. * * Use this function like you would a global variable, except without needing * to declare the global. * * Example: * * @since 3.0 * @return Plugin Highlander Instance */ function NF_Abstracts_Extension() { return NF_Abstracts_Extension::instance(); } NF_Abstracts_Extension(); includes/Abstracts/Metabox.php000064400000003005152331132460012406 0ustar00_id = strtolower( get_class( $this ) ); $this->_title = esc_html__( 'Metabox', 'ninja-forms' ); add_action( 'save_post', array( $this, '_save_post' ) ); add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) ); } public function add_meta_boxes() { add_meta_box( $this->_id, $this->_title, array( $this, $this->_callback ), $this->_post_types, $this->_context, $this->_priority, $this->_callback_args ); } abstract public function render_metabox( $post, $metabox ); public function _save_post( $post_id ) { // If this is an autosave, our form has not been submitted, so we don't want to do anything. if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; $this->save_post( $post_id ); } protected function save_post( $post_id ) { // This section intentionally left blank. } }includes/Abstracts/Input.php000064400000001174152331132460012113 0ustar00_settings_only ) ){ $this->_settings = array_merge( $this->_settings, $this->_settings_only ); } else { $this->_settings = array_merge( $this->_settings_all_fields, $this->_settings ); $this->_settings = array_diff( $this->_settings, $this->_settings_exclude ); } $this->_settings = $this->load_settings( $this->_settings ); $this->_test_value = apply_filters( 'ninja_forms_field_' . $this->_name . '_test_value', $this->_test_value ); add_filter( 'ninja_forms_localize_field_settings_' . $this->_type, array( $this, 'localize_settings' ), 10, 2 ); } /** * Validate * * @param $field * @param $data * @return array $errors */ public function validate( $field, $data ) { $errors = array(); // Required check. if( is_array( $field[ 'value' ] ) && "repeater" !== $field[ 'type' ] ){ $field[ 'value' ] = implode( '', $field[ 'value' ] ); } if( isset( $field['required'] ) && 1 == intval( $field['required'] ) ) { $val = trim( $field['value'] ); if( empty( $val ) && '0' !== $val ){ $errors['slug'] = 'required-error'; $errors['message'] = esc_html__('This field is required.', 'ninja-forms'); } } return $errors; } public function process( $field, $data ) { return $data; } /** * Admin Form Element * * Returns the output for editing fields in a submission. * * @param $id * @param $value * @return string */ public function admin_form_element( $id, $value ) { return ''; } public function get_name() { return $this->_name; } public function get_nicename() { return $this->_nicename; } public function get_section() { return $this->_section; } public function get_icon() { return $this->_icon; } public function get_aliases() { return $this->_aliases; } public function get_type() { return $this->_type; } public function get_parent_type() { if( $this->_parent_type ){ return $this->_parent_type; } // If a type is not set, return 'textbox' return ( get_parent_class() && isset ( parent::$_type ) ) ? parent::$_type : 'textbox'; } public function get_settings() { return $this->_settings; } public function use_merge_tags() { $use_merge_tags = array_merge( $this->_use_merge_tags, $this->_use_merge_tags_include ); $use_merge_tags = array_diff( $use_merge_tags, $this->_use_merge_tags_exclude ); return $use_merge_tags; } public function get_test_value() { return $this->_test_value; } public function get_templates() { $templates = (array) $this->_templates; // Create a reflection for examining the parent $reflection = new ReflectionClass( $this ); $parent_class = $reflection->getParentClass(); if ( $parent_class->isAbstract() ) { $parent_class_name = $parent_class->getName(); $parent_templates = call_user_func( array( $parent_class_name, 'get_base_template' ) ); // Parent Class' Static Property return array_merge( $templates, (array) $parent_templates ); } $parent_class_name = strtolower( str_replace('NF_Fields_', '', $parent_class->getName() ) ); if( ! isset( Ninja_Forms()->fields[ $parent_class_name ] ) ) return $templates; $parent = Ninja_Forms()->fields[ $parent_class_name ]; return array_merge($templates, $parent->get_templates()); } public function get_wrap_template() { return $this->_wrap_template; } public function get_old_classname() { return $this->_old_classname; } protected function load_settings( $only_settings = array() ) { $settings = array(); // Loads a settings array from the FieldSettings configuration file. $all_settings = Ninja_Forms::config( 'FieldSettings' ); foreach( $only_settings as $setting ){ if( isset( $all_settings[ $setting ]) ){ $settings[ $setting ] = $all_settings[ $setting ]; } } return $settings = apply_filters( 'ninja_forms_field_load_settings', $settings, $this->_name, $this->get_parent_type() ); } public static function get_base_template() { return self::$_base_template; } public static function sort_by_order( $a, $b ) { return $a->get_setting( 'order' ) - $b->get_setting( 'order' ); } public function localize_settings( $settings, $form_id ) { return $settings; } } includes/Abstracts/PaymentGateway.php000064400000001603152331132460013750 0ustar00_slug; } public function get_name() { return $this->_name; } public function get_settings() { return $this->_settings; } public function _process( $action_settings, $form_id, $data ) { if( $this->_slug == $action_settings[ 'payment_gateway' ] ){ return $this->process( $action_settings, $form_id, $data ); } } abstract protected function process( $action_settings, $form_id, $data ); } includes/Abstracts/LoggerInterface.php000064400000005542152331132460014057 0ustar00db = $wpdb; //Bail if we aren't in the admin. if ( ! is_admin() ) return false; // If we weren't provided with a slug or a class name... if ( ! isset( $data[ 'slug' ] ) || ! isset( $data[ 'class_name' ] ) ) { // Bail. return false; } $this->_slug = $data[ 'slug' ]; $this->_class_name = $data[ 'class_name' ]; // Record debug settings if provided. if ( isset( $data[ 'debug' ] ) ) $this->debug = $data[ 'debug' ]; } /** * Function to loop over the batch. * * @since 3.4.0 */ public function process() { /** * This function intentionlly left empty. */ } /** * Function to run any setup steps necessary to begin processing. * * @since 3.4.0 */ public function startup() { /** * This function intentionally left empty. */ } /** * Function to cleanup any lingering temporary elements of required updates after completion. * * @since 3.4.0 */ public function cleanup() { // Delete our required updates data. delete_option( 'ninja_forms_doing_required_updates' ); // Flag that updates are done. update_option( 'ninja_forms_needs_updates', 0 ); // Set our new db version. update_option( 'ninja_forms_db_version', Ninja_Forms::DB_VERSION ); // Fetch our list of completed updates. $updates = get_option( 'ninja_forms_required_updates', array() ); // If we got something back... if ( ! empty( $updates ) ) { // Send out a call to telemetry. Ninja_Forms()->dispatcher()->send( 'required_updates_complete', $updates ); } // Output that we're done. $this->response[ 'updatesRemaining' ] = 0; $this->respond(); } /** * Function to dump our JSON response and kill processing. * * @since 3.4.0 */ public function respond() { // Dump the response. echo( json_encode( $this->response ) ); // Terminate processing. die(); } /** * Function to run our table migrations. * * @param $callback (String) The callback function in the migration file. * * @since 3.4.0 */ protected function migrate( $callback ) { $migrations = new NF_Database_Migrations(); $migrations->do_upgrade( $callback ); } /** * Function to prepare our query values for insert. * * @param $value (Mixed) The value to be escaped for SQL. * @return (String) The escaped (and possibly serialized) value of the string. * * @since 3.4.0 */ public function prepare( $value ) { // If our value is a number... if ( is_float( $value ) ) { // Exit early and return the value. return $value; } // Serialize the value if necessary. $escaped = maybe_serialize( $value ); // Escape it. $escaped = $this->db->_real_escape( $escaped ); return $escaped; } /** * Function used to call queries that are gated by debug. * * @param $sql (String) The query to be run. * @return (Object) The response to the wpdb query call. * * @since 3.4.0 */ protected function query( $sql ) { // If we're not debugging... if ( ! $this->debug ) { // Run the query. return $this->db->query( $sql ); } // Otherwise... // Append the query to the response object. $this->response[ 'queries' ][] = $sql; // Return false. return false; } /** * Function to record the completion of our update in the DB. * * @since 3.4.0 */ protected function confirm_complete() { // If we're not debugging... if ( ! $this->debug ) { // Fetch our required updates array. $updates = get_option( 'ninja_forms_required_updates', array() ); // Get a timestamp. date_default_timezone_set( 'UTC' ); $now = date( "Y-m-d H:i:s" ); // Append the current update to the array. $updates[ $this->_slug ] = $now; // Save it. update_option( 'ninja_forms_required_updates', $updates ); } } /** * Enable Maintenance mode * Enables maintenance mode so the form will not render on the front end while updates are running. * * @since 3.4.0 * * @param $prefix - the db prefix. * @param $form_id - The id of the form. */ public function enable_maintenance_mode( $prefix, $form_id ) { // Change maintenance column value to 1, run the query and then return. $sql = $this->db->prepare( 'UPDATE `' . $prefix . 'nf3_upgrades` SET `maintenance` = 1 WHERE `id` = %d', $form_id ); $this->db->query( $sql ); return; } /** * Disable Maintenance Mode * Disables maintenance mode, so the form will be displayed on the front end.. * * @since 3.4.0 * * @param $prefix - the db prefix. * @param $form_id - The id of the form. */ public function disable_maintenance_mode( $prefix, $form_id ) { // Change maintenance column value to 0, run the query and then return. $sql = $this->db->prepare( 'UPDATE `' . $prefix . 'nf3_upgrades` SET `maintenance` = 0 WHERE `id` = %d', $form_id ); $this->db->query( $sql ); return; } }includes/deprecated.php000064400000026331152331132460011170 0ustar00display( $form_id, $is_preview )', debug_backtrace() ); Ninja_Forms()->display( $form_id ); } function ninja_forms_get_fields_by_form_id($form_id, $orderby = 'ORDER BY `order` ASC'){ $fields = Ninja_Forms()->form( $form_id )->get_fields(); $field_results = array(); foreach( $fields as $field ){ $field_results[] = array( 'id' => $field->get_id(), 'form_id' => $form_id, 'type' => $field->get_setting( 'type' ), 'order' => $field->get_setting( 'order' ), 'data' => $field->get_settings(), 'fav_id' => null, 'def_id' => null, ); } return $field_results; } /** * Included for backwards compatibility with Visual Composer. */ function ninja_forms_get_all_forms(){ // Ninja_Forms::deprecated_notice( 'ninja_forms_get_all_forms', '3.0', 'Ninja_Forms()->form()->get_forms()', debug_backtrace() ); $forms = array(); foreach( Ninja_Forms()->form()->get_forms() as $form ){ $forms[] = array( 'id' => $form->get_id(), 'data' => $form->get_settings(), 'name' => $form->get_setting( 'title' ) ); } return $forms; } function nf_is_func_disabled( $function ){ Ninja_Forms::deprecated_notice( 'nf_is_func_disabled', '3.0', 'WPN_Helper::is_func_disabled()', debug_backtrace() ); return WPN_Helper::is_func_disabled( $function ); } /* |-------------------------------------------------------------------------- | Deprecated Hooks |-------------------------------------------------------------------------- */ add_action( 'init', '_nf_get_actions', 999 ); function _nf_get_actions() { if ( isset( $_POST['nf_action'] ) ) { do_action( 'nf_' . WPN_Helper::sanitize_text_field($_POST['nf_action']), $_POST ); } } add_action( 'init', '_nf_post_actions', 999 ); function _nf_post_actions() { if ( isset( $_GET['nf_action'] ) ) { do_action( 'nf_' . WPN_Helper::sanitize_text_field($_GET['nf_action']), $_GET ); } } // add_action( 'shutdown', '_nf_removed_hooks' ); function _nf_removed_hooks() { global $wp_filter; $hooks = array( /* Removed Action Hooks */ 'ninja_forms_insert_sub', 'nf_email_notification_after_settings', 'nf_edit_notification_settings', 'ninja_forms_edit_field_before_li', 'ninja_forms_edit_field_after_li', 'ninja_forms_edit_field_before_closing_li', 'ninja_forms_edit_field_before_registered', // 'nf_edit_field_*', 'ninja_forms_edit_field_after_registered', 'ninja_forms_edit_field_before_ul', 'ninja_forms_edit_field_ul', 'ninja_forms_edit_field_after_ul', 'ninja_forms_email_admin', 'ninja_forms_email_user', 'ninja_forms_display_before_field_label', 'ninja_forms_display_field_label', 'ninja_forms_display_after_field_label', 'ninja_forms_display_field_help', 'ninja_forms_display_field_label', 'ninja_forms_display_field_help', 'nf_before_display_loading', 'ninja_forms_display_open_form_wrap', 'ninja_forms_display_form_title', 'ninja_forms_display_open_form_tag', 'ninja_forms_display_fields', 'ninja_forms_display_close_form_tag', 'ninja_forms_display_close_form_wrap', 'nf_notification_before_process', 'nf_save_notification', 'nf_sub_table_after_row_actions_trash', 'nf_sub_table_after_row_actions', 'nf_sub_table_before_row_actions_trash', 'nf_sub_table_before_row_actions', 'ninja_forms_after_import_form', 'ninja_forms_display_after_closing_field_wrap', 'ninja_forms_display_after_field_function', 'ninja_forms_display_after_field_label', 'ninja_forms_display_after_field', 'ninja_forms_display_after_opening_field_wrap', 'ninja_forms_display_before_closing_field_wrap', 'ninja_forms_display_before_field_function', 'ninja_forms_display_before_field_label', 'ninja_forms_display_before_field', 'ninja_forms_display_before_opening_field_wrap', 'ninja_forms_display_css', 'ninja_forms_save_admin_metabox_option', 'ninja_forms_save_admin_metabox', 'ninja_forms_save_admin_sidebar', 'ninja_forms_save_admin_tab', 'ninja_forms_before_pre_process', 'ninja_forms_display_after_fields', 'ninja_forms_display_after_form_title', 'ninja_forms_display_after_form_wrap', 'ninja_forms_display_after_open_form_tag', 'ninja_forms_display_before_fields', 'ninja_forms_display_before_form_title', 'ninja_forms_display_before_form_wrap', 'ninja_forms_display_before_form', 'ninja_forms_post_process', 'ninja_forms_pre_process', 'ninja_forms_process', /* Removed Filter Hooks */ 'nf_export_form_row', 'nf_notification_admin_js_vars', 'nf_success_message_locations', 'nf_notification_types', 'ninja_forms_admin_submissions_datepicker_args', 'ninja_forms_starter_form_contents', 'ninja_forms_preview_page_title', 'nf_input_limit_types', 'ninja_forms_edit_field_li_label', 'nf_edit_field_settings_sections', 'ninja_forms_use_post_fields', 'nf_general_settings_advanced', 'nf_new_form_defaults', 'ninja_forms_use_post_fields', 'ninja_forms_form_settings_basic', 'ninja_forms_form_settings_restrictions', 'nf_upgrade_handler_register', 'ninja_forms_save_sub', 'ninja_forms_export_subs_csv_file_name', 'ninja_forms_export_sub_label', 'ninja_forms_export_subs_label_array', 'ninja_forms_export_sub_pre_value', 'ninja_forms_export_sub_value', 'ninja_forms_export_subs_value_array', 'ninja_forms_csv_bom', 'ninja_forms_csv_delimiter', 'ninja_forms_csv_enclosure', 'ninja_forms_csv_terminator', 'ninja_forms_sub_table_row_actions', 'ninja_forms_csv_delimiter', 'ninja_forms_csv_enclosure', 'ninja_forms_csv_terminator', 'ninja_forms_admin_menu_capabilities', 'ninja_forms_email_all_fields_array', 'nf_email_user_values_title', 'ninja_forms_email_field_label', 'ninja_forms_email_user_value', 'ninja_forms_email_field_list', 'ninja_forms_admin_email_message_wpautop', 'ninja_forms_admin_email_from', 'ninja_forms_user_email_message_wpautop', 'ninja_forms_submission_csv_name', 'ninja_forms_success_msg', 'nf_delete_form_capabilities', 'ninja_forms_field', 'ninja_forms_display_field_type', 'ninja_forms_use_post_fields', 'ninja_forms_list_terms', 'ninja_forms_display_form_form_data', 'ninja_forms_admin_subject', 'ninja_forms_user_subject', 'ninja_forms_admin_email', 'ninja_forms_user_email', 'ninja_forms_save_msg', 'ninja_forms_display_script_field_data', 'ninja_forms_display_form_form_data', 'ninja_forms_enable_credit_card_field', 'ninja_forms_post_credit_card_field', 'ninja_forms_credit_card_field_desc_pos', 'ninja_forms_hide_cc_field', 'ninja_forms_display_list_options_span_class', 'nf_import_notification_meta', 'ninja_forms_labels/timed_submit_error', 'ninja_forms_form_list_template_function', 'nf_all_fields_field_value', 'nf_all_fields_table', 'nf_before_import_field', 'nf_delete_field_capabilities', 'nf_download_all_filename', 'nf_email_notification_attachment_types', 'nf_email_notification_attachments', 'nf_email_notification_process_setting', 'nf_general_settings_recaptcha', 'nf_new_field_capabilities', 'nf_notification_process_setting', 'nf_step_processing_labels', 'nf_sub_csv_bom', 'nf_sub_edit_status', 'nf_sub_human_time', 'nf_sub_table_row_actions', 'nf_sub_table_status', 'nf_sub_table_user_value_max_items', 'nf_sub_table_user_value_max_len', 'nf_sub_title_time', 'nf_subs_csv_field_label', 'nf_subs_csv_filename', 'nf_subs_csv_label_array_before_fields', 'nf_subs_csv_value_array', 'nf_subs_export_pre_value', 'nf_subs_table_qv', 'nf_success_msg', 'ninja_forms_admin_email_message_wpautop', 'ninja_forms_admin_metabox_rte', 'ninja_forms_ajax_url', 'ninja_forms_before_import_form', 'ninja_forms_cont_class', 'ninja_forms_credit_card_cvc_desc', 'ninja_forms_credit_card_cvc_label', 'ninja_forms_credit_card_exp_month_desc', 'ninja_forms_credit_card_exp_month_label', 'ninja_forms_credit_card_exp_year_desc', 'ninja_forms_credit_card_exp_year_label', 'ninja_forms_credit_card_name_desc', 'ninja_forms_credit_card_name_label', 'ninja_forms_credit_card_number_desc', 'ninja_forms_display_field_class', 'ninja_forms_display_field_desc_class', 'ninja_forms_display_field_processing_error_class', 'ninja_forms_display_fields_wrap_visibility', 'ninja_forms_display_form_visibility', 'ninja_forms_display_required_items_class', 'ninja_forms_display_response_message_class', 'ninja_forms_display_show_form', 'ninja_forms_dropdown_open_tag', 'ninja_forms_dropdown_placeholder', 'ninja_forms_edit_field_rte', 'ninja_forms_field_post_process_user_value', 'ninja_forms_field_pre_process_user_value', 'ninja_forms_field_process_user_value', 'ninja_forms_field_shortcode', 'ninja_forms_field_wrap_class', 'ninja_forms_fields_wrap_class', 'ninja_forms_form_class', 'ninja_forms_form_list_forms', 'ninja_forms_form_wrap_class', 'ninja_forms_label_class', 'ninja_forms_labels/currency_symbol', 'ninja_forms_labels/date_format', 'ninja_forms_labels/honeypot_error', 'ninja_forms_labels/invalid_email', 'ninja_forms_labels/javascript_error', 'ninja_forms_labels/password_mismatch', 'ninja_forms_labels/process_label', 'ninja_forms_labels/req_div_label', 'ninja_forms_labels/req_error_label', 'ninja_forms_labels/req_field_error', 'ninja_forms_labels/req_field_symbol', 'ninja_forms_labels/spam_error', 'ninja_forms_display_fields_array', ); foreach( $hooks as $hook ){ apply_filters( $hook, '' ); // add_action() is just a wrapper for add_filter(), so use add_filter() for both. if( ! isset( $wp_filter[ $hook ] ) || ! $wp_filter[ $hook ] ) continue; Ninja_Forms::deprecated_notice( $hook, '3.0', null ); } } function ninja_forms_get_form_by_id( $form_id ) { Ninja_Forms::deprecated_notice( $hook, '3.0', null ); return array(); }LICENSE000064400000104513152331132460005555 0ustar00 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . index.php000064400000000034152331132460006361 0ustar00 array ( 'NinjaForms\\Blocks\\' => 18, ), ); public static $prefixDirsPsr4 = array ( 'NinjaForms\\Blocks\\' => array ( 0 => __DIR__ . '/../..' . '/blocks/views/includes', ), ); public static $classMap = array ( 'NinjaForms\\Blocks\\Authentication\\KeyFactory' => __DIR__ . '/../..' . '/blocks/views/includes/Authentication/KeyFactory.php', 'NinjaForms\\Blocks\\Authentication\\SecretStore' => __DIR__ . '/../..' . '/blocks/views/includes/Authentication/SecretStore.php', 'NinjaForms\\Blocks\\Authentication\\Token' => __DIR__ . '/../..' . '/blocks/views/includes/Authentication/Token.php', 'NinjaForms\\Blocks\\Authentication\\TokenFactory' => __DIR__ . '/../..' . '/blocks/views/includes/Authentication/TokenFactory.php', 'NinjaForms\\Blocks\\DataBuilder\\FieldsBuilder' => __DIR__ . '/../..' . '/blocks/views/includes/DataBuilder/FieldsBuilder.php', 'NinjaForms\\Blocks\\DataBuilder\\FieldsBuilderFactory' => __DIR__ . '/../..' . '/blocks/views/includes/DataBuilder/FieldsBuilderFactory.php', 'NinjaForms\\Blocks\\DataBuilder\\FormsBuilder' => __DIR__ . '/../..' . '/blocks/views/includes/DataBuilder/FormsBuilder.php', 'NinjaForms\\Blocks\\DataBuilder\\FormsBuilderFactory' => __DIR__ . '/../..' . '/blocks/views/includes/DataBuilder/FormsBuilderFactory.php', 'NinjaForms\\Blocks\\DataBuilder\\SubmissionsBuilder' => __DIR__ . '/../..' . '/blocks/views/includes/DataBuilder/SubmissionsBuilder.php', 'NinjaForms\\Blocks\\DataBuilder\\SubmissionsBuilderFactory' => __DIR__ . '/../..' . '/blocks/views/includes/DataBuilder/SubmissionsBuilderFactory.php', ); public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { $loader->prefixLengthsPsr4 = ComposerStaticInit62a2d24be264cb3867db031361caf978::$prefixLengthsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInit62a2d24be264cb3867db031361caf978::$prefixDirsPsr4; $loader->classMap = ComposerStaticInit62a2d24be264cb3867db031361caf978::$classMap; }, null, ClassLoader::class); } } vendor/composer/autoload_classmap.php000064400000002627152331132460014103 0ustar00 $baseDir . '/blocks/views/includes/Authentication/KeyFactory.php', 'NinjaForms\\Blocks\\Authentication\\SecretStore' => $baseDir . '/blocks/views/includes/Authentication/SecretStore.php', 'NinjaForms\\Blocks\\Authentication\\Token' => $baseDir . '/blocks/views/includes/Authentication/Token.php', 'NinjaForms\\Blocks\\Authentication\\TokenFactory' => $baseDir . '/blocks/views/includes/Authentication/TokenFactory.php', 'NinjaForms\\Blocks\\DataBuilder\\FieldsBuilder' => $baseDir . '/blocks/views/includes/DataBuilder/FieldsBuilder.php', 'NinjaForms\\Blocks\\DataBuilder\\FieldsBuilderFactory' => $baseDir . '/blocks/views/includes/DataBuilder/FieldsBuilderFactory.php', 'NinjaForms\\Blocks\\DataBuilder\\FormsBuilder' => $baseDir . '/blocks/views/includes/DataBuilder/FormsBuilder.php', 'NinjaForms\\Blocks\\DataBuilder\\FormsBuilderFactory' => $baseDir . '/blocks/views/includes/DataBuilder/FormsBuilderFactory.php', 'NinjaForms\\Blocks\\DataBuilder\\SubmissionsBuilder' => $baseDir . '/blocks/views/includes/DataBuilder/SubmissionsBuilder.php', 'NinjaForms\\Blocks\\DataBuilder\\SubmissionsBuilderFactory' => $baseDir . '/blocks/views/includes/DataBuilder/SubmissionsBuilderFactory.php', ); vendor/composer/autoload_psr4.php000064400000000331152331132460013156 0ustar00 array($baseDir . '/blocks/views/includes'), ); vendor/composer/LICENSE000064400000002056152331132460010700 0ustar00 Copyright (c) Nils Adermann, Jordi Boggiano Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. vendor/composer/installed.json000064400000000003152331132460012533 0ustar00[] vendor/composer/autoload_real.php000064400000003342152331132460013216 0ustar00= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; call_user_func(\Composer\Autoload\ComposerStaticInit62a2d24be264cb3867db031361caf978::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { $loader->set($namespace, $path); } $map = require __DIR__ . '/autoload_psr4.php'; foreach ($map as $namespace => $path) { $loader->setPsr4($namespace, $path); } $classMap = require __DIR__ . '/autoload_classmap.php'; if ($classMap) { $loader->addClassMap($classMap); } } $loader->register(true); return $loader; } } vendor/composer/ClassLoader.php000064400000032223152331132460012577 0ustar00 * Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Autoload; /** * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. * * $loader = new \Composer\Autoload\ClassLoader(); * * // register classes with namespaces * $loader->add('Symfony\Component', __DIR__.'/component'); * $loader->add('Symfony', __DIR__.'/framework'); * * // activate the autoloader * $loader->register(); * * // to enable searching the include path (eg. for PEAR packages) * $loader->setUseIncludePath(true); * * In this example, if you try to use a class in the Symfony\Component * namespace or one of its children (Symfony\Component\Console for instance), * the autoloader will first look for the class under the component/ * directory, and it will then fallback to the framework/ directory if not * found before giving up. * * This class is loosely based on the Symfony UniversalClassLoader. * * @author Fabien Potencier * @author Jordi Boggiano * @see http://www.php-fig.org/psr/psr-0/ * @see http://www.php-fig.org/psr/psr-4/ */ class ClassLoader { // PSR-4 private $prefixLengthsPsr4 = array(); private $prefixDirsPsr4 = array(); private $fallbackDirsPsr4 = array(); // PSR-0 private $prefixesPsr0 = array(); private $fallbackDirsPsr0 = array(); private $useIncludePath = false; private $classMap = array(); private $classMapAuthoritative = false; private $missingClasses = array(); private $apcuPrefix; public function getPrefixes() { if (!empty($this->prefixesPsr0)) { return call_user_func_array('array_merge', $this->prefixesPsr0); } return array(); } public function getPrefixesPsr4() { return $this->prefixDirsPsr4; } public function getFallbackDirs() { return $this->fallbackDirsPsr0; } public function getFallbackDirsPsr4() { return $this->fallbackDirsPsr4; } public function getClassMap() { return $this->classMap; } /** * @param array $classMap Class to filename map */ public function addClassMap(array $classMap) { if ($this->classMap) { $this->classMap = array_merge($this->classMap, $classMap); } else { $this->classMap = $classMap; } } /** * Registers a set of PSR-0 directories for a given prefix, either * appending or prepending to the ones previously set for this prefix. * * @param string $prefix The prefix * @param array|string $paths The PSR-0 root directories * @param bool $prepend Whether to prepend the directories */ public function add($prefix, $paths, $prepend = false) { if (!$prefix) { if ($prepend) { $this->fallbackDirsPsr0 = array_merge( (array) $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, (array) $paths ); } return; } $first = $prefix[0]; if (!isset($this->prefixesPsr0[$first][$prefix])) { $this->prefixesPsr0[$first][$prefix] = (array) $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( (array) $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], (array) $paths ); } } /** * Registers a set of PSR-4 directories for a given namespace, either * appending or prepending to the ones previously set for this namespace. * * @param string $prefix The prefix/namespace, with trailing '\\' * @param array|string $paths The PSR-4 base directories * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException */ public function addPsr4($prefix, $paths, $prepend = false) { if (!$prefix) { // Register directories for the root namespace. if ($prepend) { $this->fallbackDirsPsr4 = array_merge( (array) $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, (array) $paths ); } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { // Register directories for a new namespace. $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( (array) $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], (array) $paths ); } } /** * Registers a set of PSR-0 directories for a given prefix, * replacing any others previously set for this prefix. * * @param string $prefix The prefix * @param array|string $paths The PSR-0 base directories */ public function set($prefix, $paths) { if (!$prefix) { $this->fallbackDirsPsr0 = (array) $paths; } else { $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; } } /** * Registers a set of PSR-4 directories for a given namespace, * replacing any others previously set for this namespace. * * @param string $prefix The prefix/namespace, with trailing '\\' * @param array|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException */ public function setPsr4($prefix, $paths) { if (!$prefix) { $this->fallbackDirsPsr4 = (array) $paths; } else { $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } } /** * Turns on searching the include path for class files. * * @param bool $useIncludePath */ public function setUseIncludePath($useIncludePath) { $this->useIncludePath = $useIncludePath; } /** * Can be used to check if the autoloader uses the include path to check * for classes. * * @return bool */ public function getUseIncludePath() { return $this->useIncludePath; } /** * Turns off searching the prefix and fallback directories for classes * that have not been registered with the class map. * * @param bool $classMapAuthoritative */ public function setClassMapAuthoritative($classMapAuthoritative) { $this->classMapAuthoritative = $classMapAuthoritative; } /** * Should class lookup fail if not found in the current class map? * * @return bool */ public function isClassMapAuthoritative() { return $this->classMapAuthoritative; } /** * APCu prefix to use to cache found/not-found classes, if the extension is enabled. * * @param string|null $apcuPrefix */ public function setApcuPrefix($apcuPrefix) { $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; } /** * The APCu prefix in use, or null if APCu caching is not enabled. * * @return string|null */ public function getApcuPrefix() { return $this->apcuPrefix; } /** * Registers this instance as an autoloader. * * @param bool $prepend Whether to prepend the autoloader or not */ public function register($prepend = false) { spl_autoload_register(array($this, 'loadClass'), true, $prepend); } /** * Unregisters this instance as an autoloader. */ public function unregister() { spl_autoload_unregister(array($this, 'loadClass')); } /** * Loads the given class or interface. * * @param string $class The name of the class * @return bool|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { includeFile($file); return true; } } /** * Finds the path to the file where the class is defined. * * @param string $class The name of the class * * @return string|false The path if found, false otherwise */ public function findFile($class) { // class map lookup if (isset($this->classMap[$class])) { return $this->classMap[$class]; } if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { return false; } if (null !== $this->apcuPrefix) { $file = apcu_fetch($this->apcuPrefix.$class, $hit); if ($hit) { return $file; } } $file = $this->findFileWithExtension($class, '.php'); // Search for Hack files if we are running on HHVM if (false === $file && defined('HHVM_VERSION')) { $file = $this->findFileWithExtension($class, '.hh'); } if (null !== $this->apcuPrefix) { apcu_add($this->apcuPrefix.$class, $file); } if (false === $file) { // Remember that this class does not exist. $this->missingClasses[$class] = true; } return $file; } private function findFileWithExtension($class, $ext) { // PSR-4 lookup $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; $first = $class[0]; if (isset($this->prefixLengthsPsr4[$first])) { $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); $search = $subPath . '\\'; if (isset($this->prefixDirsPsr4[$search])) { $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); foreach ($this->prefixDirsPsr4[$search] as $dir) { if (file_exists($file = $dir . $pathEnd)) { return $file; } } } } } // PSR-4 fallback dirs foreach ($this->fallbackDirsPsr4 as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { return $file; } } // PSR-0 lookup if (false !== $pos = strrpos($class, '\\')) { // namespaced class name $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); } else { // PEAR-like class name $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; } if (isset($this->prefixesPsr0[$first])) { foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { if (0 === strpos($class, $prefix)) { foreach ($dirs as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { return $file; } } } } } // PSR-0 fallback dirs foreach ($this->fallbackDirsPsr0 as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { return $file; } } // PSR-0 include paths. if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { return $file; } return false; } } /** * Scope isolated include. * * Prevents access to $this/self from included files. */ function includeFile($file) { include $file; } blocks/form/block.json000064400000000225152331132460010750 0ustar00{ "icon": "feedback", "category": "common", "attributes": { "formID": { "type": "integer" }, "formTitle": { "type": "string" } } } blocks/ninja-forms-blocks.php000064400000001666152331132460012241 0ustar00

    %s

    ', esc_html__( 'Autoloader not found for Ninja Forms Blocks - try running composer install', 'ninja-forms' ) ); } else { echo sprintf( '

    %s

    ', esc_html__( 'Ninja Forms Blocks was unable to load.', 'ninja-forms' ) ); } } return; } include_once plugin_dir_path(__FILE__) . '/bootstrap.php'; blocks/views/includes/DataBuilder/FormsBuilderFactory.php000064400000000523152331132460017602 0ustar00 $form->get_id(), ], $form->get_settings() ); }, Ninja_Forms()->form()->get_forms() ); return new FormsBuilder( $forms ); } } blocks/views/includes/DataBuilder/FieldsBuilder.php000064400000001122152331132460016366 0ustar00fields = $fields; } public function get() { $fields = array_filter( $this->fields, function( $field ) { return ! in_array( $field[ 'type' ], [ 'submit', 'html', 'hr' ] ); }); return array_map( [ $this, 'toArray' ], $fields ); } protected function toArray( $field ) { extract( $field ); return [ 'id' => $id, 'label' => $label ]; } }blocks/views/includes/DataBuilder/FormsBuilder.php000064400000001130152331132460016245 0ustar00forms = $forms; } public function get() { $forms = array_map( [ $this, 'toArray' ], $this->forms ); return array_reduce( $forms, function( $forms, $form ) { $forms[ $form[ 'formID' ] ] = $form; return $forms; }, []); } protected function toArray( $form ) { extract($form); return [ 'formID' => $id, 'formTitle' => $title, ]; } } blocks/views/includes/DataBuilder/FieldsBuilderFactory.php000064400000000554152331132460017726 0ustar00 $field->get_id(), ], $field->get_settings() ); }, Ninja_Forms()->form( $formID )->get_fields() ); return new FieldsBuilder( $fields ); } }blocks/views/includes/DataBuilder/SubmissionsBuilder.php000064400000003403152331132460017502 0ustar00get_field_values(); }, Ninja_Forms()->form( $formID )->get_subs() ); return new self( $submissions ); } public function __construct( $submissions ) { $this->submissions = $submissions; } public function get() { return array_map( [ $this, 'toArray' ], $this->submissions ); } protected function toArray( $values ) { $values = array_map([$this, 'formatValue'], $values ); $values = array_filter( $values, function( $value, $key ) { return 0 === strpos( $key, '_field_' ); }, ARRAY_FILTER_USE_BOTH ); return $this->normalizeArrayKeys( $values ); } protected function formatValue( $value ) { /** * Basic File Uploads support. * * Auto-detect a file uploads value, by format, as a serialized array. * @note using a preliminary `is_serialized()` check to determine * if the value is from File Uploads, since we do not have * access to the field information in this context. */ if(is_serialized($value)) { $unserialized = unserialize($value); if(is_array($unserialized)) { return implode(', ', array_values($unserialized)); } } return $value; } protected function normalizeArrayKeys( $values ) { $keys = array_map( function( $key ) { return str_replace( '_field_', '', $key ); }, array_flip( $values ) ); return array_flip( $keys ); } }blocks/views/includes/DataBuilder/SubmissionsBuilderFactory.php000064400000001651152331132460021035 0ustar00 $perPage, 'paged' => $page, 'post_type' => 'nf_sub', 'meta_query' => [[ 'key' => '_form_id', 'value' => $formID ]] ]; $submissions = array_map( function( $post ) { return array_map( [ self::class, 'flattenPostmeta' ], get_post_meta( $post->ID ) ); }, get_posts( $args ) ); return new SubmissionsBuilder( $submissions ); } protected static function flattenPostmeta( $postmeta ) { $postmeta = (array) $postmeta; return reset( $postmeta ); } }blocks/views/includes/Authentication/SecretStore.php000064400000002554152331132460016724 0ustar00privateKey = $privateKey; } /** * @param string $publicKey * * @return string */ public function create( $publicKey ) { return base64_encode( $this->hash( $publicKey ) . ':' . $publicKey ); } /** * @param string $token * * @return bool */ public function validate( $token ) { // If the token is malformed, then list() may return an undefined index error. // Pad the exploded array to add missing indexes, see https://www.php.net/manual/en/function.list.php#113189. list( $hash, $publicKey ) = array_pad( explode( ':', base64_decode( $token ) ), 2, false ); return hash_equals( $hash, $this->hash( $publicKey ) ); } /** * @param string $publicKey * * @return string */ protected function hash( $publicKey ) { return hash( 'sha256', $this->privateKey.$publicKey ); } }blocks/views/includes/Authentication/KeyFactory.php000064400000001274152331132460016540 0ustar00= $length ) $length = 40; // Min key length. if( 255 <= $length ) $length = 255; // Max key length. $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $random_string = ''; for ( $i = 0; $i < $length; $i ++ ) { $random_string .= $characters[ rand( 0, strlen( $characters ) - 1 ) ]; } return $random_string; } }blocks/views/includes/Authentication/TokenFactory.php000064400000000436152331132460017067 0ustar00 esc_attr__('Ninja Form', 'ninja-forms'), 'render_callback' => function ($atts) { $formID = isset($atts['formID']) ? $atts['formID'] : 1; ob_start(); Ninja_Forms()->display( absint($formID), true ); return ob_get_clean(); }, 'editor_script' => 'ninja-forms/form' ])); /** * Views Block */ $token = NinjaForms\Blocks\Authentication\TokenFactory::make(); $publicKey = NinjaForms\Blocks\Authentication\KeyFactory::make(); // automatically load dependencies and version $block_asset_file = include dirname(__DIR__) . '/build/sub-table-block.asset.php'; wp_register_script( 'ninja-forms/submissions-table/block', plugins_url('../build/sub-table-block.js', __FILE__), $block_asset_file['dependencies'], $block_asset_file['version'] ); wp_localize_script('ninja-forms/submissions-table/block', 'ninjaFormsViews', [ 'token' => $token->create($publicKey), ]); $render_asset_file = include dirname(__DIR__) . '/build/sub-table-render.asset.php'; wp_register_script( 'ninja-forms/submissions-table/render', plugins_url('../build/sub-table-render.js', __FILE__), $render_asset_file['dependencies'], $render_asset_file['version'] ); wp_localize_script('ninja-forms/submissions-table/render', 'ninjaFormsViews', [ 'token' => $token->create($publicKey), ]); register_block_type('ninja-forms/submissions-table', array( 'editor_script' => 'ninja-forms/submissions-table/block', 'render_callback' => function ($attributes, $content) { if (isset($attributes['formID']) && $attributes['formID']) { wp_enqueue_script('ninja-forms/submissions-table/render'); $className = 'ninja-forms-views-submissions-table'; if (isset($attributes['alignment'])) { $className .= ' align' . $attributes['alignment']; } return sprintf("
    ", esc_attr($className), esc_attr(wp_json_encode($attributes))); } } )); /** * Have Translations set in scripts via i18n package * https://developer.wordpress.org/block-editor/packages/packages-i18n/ * https://developer.wordpress.org/reference/functions/wp_set_script_translations/ * https://developer.wordpress.org/block-editor/developers/internationalization/ */ wp_set_script_translations( "ninja-forms/form", "ninja-forms", plugin_dir_path( __FILE__ ) . 'lang' ); wp_set_script_translations( "ninja-forms/submissions-table/block", "ninja-forms", plugin_dir_path( __FILE__ ) . 'lang' ); wp_set_script_translations( "ninja-forms/submissions-table/render", "ninja-forms", plugin_dir_path( __FILE__ ) . 'lang' ); }); /** * Localize data for blocks */ add_action('admin_enqueue_scripts', function () { //Conditionally load data for Blocks $screen = get_current_screen(); if( ! $screen->is_block_editor() ) return; //Get all forms, to base form selector on. $formsBuilder = (new NinjaForms\Blocks\DataBuilder\FormsBuilderFactory)->make(); $forms = $formsBuilder->get(); if (!empty($forms)) { //Escape for use in JavaScript foreach ($forms as $key => $form) { $forms[$key] = [ 'formID' => absint($form['formID']), 'formTitle' => esc_textarea($form['formTitle']) ]; } } wp_localize_script('ninja-forms/form', 'nfFormsBlock', [ 'forms' => $forms,//array keys escaped above 'homeUrl' => esc_url_raw( home_url() ), //URL to serve the iFrame that displays the form in blocks editor 'previewToken' => wp_create_nonce('nf_iframe' ) ]); }); /** * Register REST API routes related to blocks */ add_action('rest_api_init', function () { $tokenAuthenticationCallback = function (WP_REST_Request $request) { $token = NinjaForms\Blocks\Authentication\TokenFactory::make(); return $token->validate($request->get_header('X-NinjaFormsViews-Auth')); }; register_rest_route('ninja-forms-views', 'forms', array( 'methods' => 'GET', 'callback' => function (WP_REST_Request $request) { $formsBuilder = (new NinjaForms\Blocks\DataBuilder\FormsBuilderFactory)->make(); return $formsBuilder->get(); }, 'permission_callback' => '__return_true', )); register_rest_route('ninja-forms-views', 'forms/(?P\d+)/fields', [ 'methods' => 'GET', 'args' => [ 'id' => [ 'required' => true, 'description' => esc_attr__('Unique identifier for the object.', 'ninja-forms'), 'type' => 'integer', 'validate_callback' => 'rest_validate_request_arg', ], ], 'callback' => function (WP_REST_Request $request) { $fieldsBuilder = (new NinjaForms\Blocks\DataBuilder\FieldsBuilderFactory)->make( $request->get_param('id') ); return $fieldsBuilder->get(); }, 'permission_callback' => $tokenAuthenticationCallback, ]); register_rest_route('ninja-forms-views', 'forms/(?P\d+)/submissions', [ 'methods' => 'GET', 'args' => [ 'id' => [ 'required' => true, 'description' => esc_attr__('Unique identifier for the object.', 'ninja-forms'), 'type' => 'integer', 'validate_callback' => 'rest_validate_request_arg', ], 'perPage' => [ 'description' => esc_attr__('Maximum number of items to be returned in result set.', 'ninja-forms'), 'type' => 'integer', 'minimum' => 1, 'maximum' => 100, 'sanitize_callback' => 'absint', 'validate_callback' => 'rest_validate_request_arg', ], 'page' => [ 'description' => esc_attr__('Current page of the collection.', 'ninja-forms'), 'type' => 'integer', 'default' => 1, 'sanitize_callback' => 'absint', 'validate_callback' => 'rest_validate_request_arg', 'minimum' => 1, ] ], 'callback' => function (WP_REST_Request $request) { $submissionsBuilder = (new NinjaForms\Blocks\DataBuilder\SubmissionsBuilderFactory)->make( $request->get_param('id'), $request->get_param('perPage'), $request->get_param('page') ); return $submissionsBuilder->get(); }, 'permission_callback' => $tokenAuthenticationCallback, ]); }); /** * Handler for form preview iFrame used in Forms block */ add_action( 'wp_head', function () { // check for preview and iframe get parameters if( isset( $_GET[ 'nf_preview_form' ] ) && isset( $_GET[ 'nf_iframe' ] ) ){ if( ! wp_verify_nonce( $_GET['nf_iframe'], 'nf_iframe') ){ wp_die( esc_html__('Preview token failed validation', 'ninja-forms')); exit; } //Attempt to get theme background color $background = '#fff'; $supports = get_theme_support('editor-color-palette','background'); if( is_array($supports) ){ foreach($supports[0] as $index => $support ){ if( 'background' === $support['slug']){ $background = $support['color']; break; } } } $js_dir = Ninja_Forms::$url . 'assets/js/min/'; $form_id = absint( $_GET[ 'nf_preview_form' ] ); // Style below: update width and height for particular form ?> $form_id ) ); wp_enqueue_script( 'ninja-forms-block-setup' ); } }); blocks/README.md000064400000005046152331132460007305 0ustar00# Ninja Forms Views Ninja Forms Views is a submissions table display application integrated with the WordPress Block Editor. ## Development Compilation, testing and local development are documented in the main plugin readme file. ## Key Concepts The application is deployed in two main parts, the JavaScript "block" and the PHP REST API. ### The "Block" The JavaScript "block" consists of two entry points: the block editor (`entry point blocks.js`) and the "front end" (entry point `render.js`). Both entry points share the `` component, which is an implementation of the `react-table-component` - a headless table UI component for React. ### Things to Know #### Block Attributes on the "Front End" Block attributes are passed to the block's `render_callback` function, but are not otherwise directly available in a "front end" script. Additionally, attributes are per-block-instance. Because of this, each of the block attributes are localized within the `render_callback` as a JSON encoded array, which is then parsed when rendered to the DOM. #### Form Data Store with @wordpress/data Form data is managed by a centralized data registry using `@wordpress/data`). The `Store` provides an API for `select`ing data from the centralized data registry, known as `selectors`. This includes support for resolving missing data from an external source, which is fulfilled by a REST API. #### Block Alignment Implementation The `` provides alignment and **width** settings which allow the width of a block to break-out of the page container - this includes **wide** and **full** widths, which are often use for "cover images". Due to the nature of tables, the `` is implemented as a means by which to provide additional width to a table display. Unfortunately, this is not a straight forward implementation, because of the different needs of the block editor vs the page display of a block. - The `registerBlockType` definition uses the `getEditWrapperProps()` property to inject a `data-align` attribute to the Edit component wrapper. - The `render_callback` function parses the block attributes to inject an additional `align{alignment}` class name to the `
    ` placeholder. #### The REST API The REST API provides asynchronous access to the Ninja Forms data: Forms, Fields, and Submissions. Currently, all form data is served via a single Route (`ninja-forms-views/forms`), but will be refactored into seperate endpoints for forms, fields, and submissions - with submissions supporting pagination. lang/ninja-forms-fi.po000064400000637727152331132460010672 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Huomautus: JavaScript vaaditaan tätä sisältöä varten." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Huijaatko?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Tähdellä %s*%s merkityt kentät ovat pakollisia" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Varmista, että kaikki pakolliset kentät on täytetty." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Tämä on pakolinen kenttä" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Ole hyvä ja vastaa roskapostinestoviestiin oikein." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Jätä roskapostikenttä tyhjäksi." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Odota ennen lomakkeen lähettämistä." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Et voi lähettää lomaketta, ellei Javascript ole käytössä." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Ole hyvä ja anna oikea sähköpostiosoite." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Lähetetään" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Annetut salasanat eivät täsmää." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Lisää lomake" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Valitse lomake tai haettava tyyppi" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Peru" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Lisää" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Virheellinen lomaketunnus" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Kasvata konversioita" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Tiesitkö, että voit lisätä konversioiden määrää jakamalla suuremmat lomakkeen " "pienempiin, helpommin sulatettavissa oleviin osiin?

    Ninja Forms " "-lomakkeiden Multi-Part Forms -laajennus tekee tästä nopeaa ja helppoa.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Lisätietoja Multi-Part Forms -laajennuksesta" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Ehkä myöhemmin" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Piilota tämä huomautus." #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Käyttäjät täyttävät pitkät lomakkeet halukkaammin, jos he voivat tallentaa ja " "palauttaa ne täytettyinä myöhemmin.

    Ninja Forms -lomakkeiden Save Progress " "-laajennus tekee tästä nopeaa ja helppoa.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Lisätietoja Save Progress -laajennuksesta" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Sähköposti" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Lähettäjän nimi" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Nimi tai kentät" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Sähköpostiviestin lähettäjänä näytetään tämä nimi." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Lähetysosoite" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Yksi sähköpostiosoite tai kenttä" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Sähköpostiviestin lähetysosoitteena näytetään tämä osoite." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Vastaanottaja" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Sähköpostiosoitteet tai etsi kenttää" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Kenelle tämä sähköpostiviesti tulisi lähettää?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Aihe" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Aiherivin teksti tai etsi kenttää" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Tämä tulee olemaan sähköpostiviestin aihe." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Sähköpostiviesti" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Liitteet" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Lähetys-CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Yleiset asetukset" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Muoto" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML-muotoilu" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Tavallinen teksti" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Vastaa" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Kopio" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Piilokopio" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Ohjaa uudelleen" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Onnistumisen ilmoitus" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Ennen lomaketta" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Lomakkeen jälkeen" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Sijainti" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Viesti" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "kaksoiskappale" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Poista käytöstä" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Aktivoi" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Muokkaa" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Poista" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Monista" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nimi" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Laji" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Päivitetty" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Näytä kaikki tyypit" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Hae lisää tyyppejä" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Sähköposti ja toiminnot" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Lisää uusi" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Uusi toiminto" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Muokkaa toimintoa" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Takaisin luetteloon" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Toiminnon nimi" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Hae lisää toimintoja" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Toiminto päivitetty" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Valitse kenttä tai haettava tyyppi" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Lisää kenttä" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Lisää kaikki kentät" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Valitse lomake lähetettyjen tietojen tarkastelemista varten" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Lähetettyjä tietoja ei löytynyt" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Lähetetyt" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Lähetys" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Lisää uusi lähetys" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Muokkaa lähetystä" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Uusi lähetys" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Tarkastele lähetystä" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Etsi lähetyksiä" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Lähetyksiä ei löytynyt roskakorista" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "nro." #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Päivämäärä" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Muokkaa tuotetta" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Vie tämän kohteen" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Vie" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Siirrä kohde roskakoriin" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Roskakori" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Palaute kohde roskakorista" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Palauta" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Poista tuote pysyvästi" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Poista pysyvästi" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Julkaisematon" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s sitten" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Lähetetty" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Valitse lomake" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Alkupäivämäärä" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Päättymispäivä" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s päivitetty." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Custom field updated." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Custom field deleted." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s palautettiin tarkistukseen tästä kohteesta: %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s julkaistu." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s tallennettu." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s lähetetty. Esikatsele: %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s ajoitettu: %2$s. Esikatsele: %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s luonnos päivitetty. Esikatsele: %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Lataa kaikki lähetetyt lomakkeet" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Takaisin luetteloon" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Käyttäjän antamat arvot" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Lähetystilastot" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Kenttä" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Arvo" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Tila" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Lomake" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Lähetetty" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Muokattu" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Lähettäjä" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Päivitä" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Lähetyspäivämäärä" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms -ohjelmaa ei voida aktivoida verkon kautta. Aktivoi laajennus " "vierailemalla kunkin sivuston koontinäytössä." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Löydät tämän ostoksen jälkeen vastaanottamastasi sähköpostiviestistä." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Avain" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Käyttöoikeuden aktivointi epäonnistui. Vahvista käyttöoikeusavaimesi" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Poista käyttöoikeuden aktivointi" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Käyttäjän lähettämät tiedot:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Kiitos lomakkeen täyttämisestä!" #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "%1$s – käytettävissä on uusi versio. Näytä version %3$s tiedot." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "%1$s – käytettävissä on uusi versio. Näytä version %3$s tiedot tai päivitä nyt." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Sinulla ei ole oikeutta asentaa laajennusten päivityksiä." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Virhe" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Vakiokentät" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Asetteluelementit" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Luomisen jälkeen" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Arvioi %sNinja Forms%s -laajennus %s%sWordPress.org%s-sivustossa ja auta " "meitä pitämään se ilmaisena. Kiitokset WP-ninjatiimiltä!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms -vimpain" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Näytä nimike" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Ei mikään" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Lomakkeet" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Kaikki lomakkeet" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms -päivitykset" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Päivitykset ylempiin versioihin" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Tuo/vie" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Tuo / vie" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Forms -asetukset" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Asetukset" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Järjestelmän tila." #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Laajennukset" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Esikatselu" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Tallenna" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "merkkiä jäljellä" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Älä näytä näitä termejä" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Tallennusasetukset" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Esikatsele lomake" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Päivitä Ninja Forms THREE -versioon" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Olet oikeutettu päivittämään Ninja Forms THREE -esijulkistusversioon! " "%sPäivitä nyt%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE on tulossa!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Ninja Forms -ohjelmistoon on tulossa mittava päivitys. %sLue lisää uusista " "ominaisuuksista, yhteensopivuudesta vanhempien versioiden kanssa ja muista " "usein kysytyistä kysymyksistä.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Miten menee?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Kiitos, että käytät Ninja Forms -laajennusta! Toivomme, että olet löytänyt " "kaiken tarvitsemasi. Jos sinulla on kysymyksiä:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "tutustu tarjoamaamme dokumentaatioon." #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Pyydä apua" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Muokkaa valikkokohdetta" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Valitse kaikki" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "LIsää perään Ninja Form -lomake" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Minkä nimen haluat antaa tälle suosikille?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Sinun on annettava tälle suosikille nimi." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Haluatko todella poistaa kaikkien käyttöoikeuksien aktivoinnin?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Nollaa lomakkeen konversioprosessi tämän version kohdalla: v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Poistetaanko KAIKKI Ninja Forms -tiedot asennuksen poiston yhteydessä?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Muokkaa lomaketta" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Tallennettu" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Tallenetaan..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Poista tämä kenttä? Se poistetaan, vaikka et tallentaisi sitä." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Näytä lähetetyt lomakkeet" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms – käsitellään" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms – käsitellään" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Ladataan..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Mitään toimintoa ei ole määritetty..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Prosessi on käynnistetty. Odota. Tämä saattaa kestää joitakin minuutteja. " "Sinut siirretään automaattisesti, kun prosessi on suoritettu loppuun." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Tervetuloa – Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Kiitos päivityksestä! Ninja Forms %s tekee lomakkeiden suunnittelusta " "helpompaa kuin koskaan!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Tervetuloa – Ninja Forms " #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms -muutosloki" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Aloitusopas – Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Ninja Forms -suunnittelun taustalla olevat henkilöt" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Mitä uutta" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Aluksi" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Tunnustukset" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versio %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Yksinkertaisempi ja tehokkaampi tapa lomakkeiden suunnitteluun." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Uusi Builder-välilehti" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Kun luot tai muokkaat lomakkeita, siirry suoraan olennaisimpaan osioon." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Paremmin järjestellyt kenttäasetukset" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Yleisimmät asetukset näytetään välittömästi kun taas muut (ei-olennaiset) " "asetukset on sijoitettu laajennettavien osioiden sisälle." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Selkeämpi asettelu" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "”Suunnittele lomakkeesi\" -välilehden lisäksi olemme poistaneet ”Ilmoitukset” " "ja korvanneet sen ”Sähköpostiviestit ja toiminnot” -osiolla. Tämä ilmaisee " "paljon selkeämmin, mitä tässä välilehdessä voidaan tehdä." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Poista kaikki Ninja Forms -tiedot" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Olemme lisänneet vaihtoehdon kaikkien Ninja Forms -tietojen (lähetetyt " "tiedot, kentät, asetukset) poistamista varten, kun poistat itse laajennuksen. " "Kutsumme tätä ”täystuho”-vaihtoehdoksi." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Tehokkaampi käyttöoikeuksien hallinta" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Voit poistaa Ninja Forms -käyttöoikeudet käytöstä joko yksittäin tai ryhmänä Asetukset-välilehdestä." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Lisää on tulossa" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Tämän version sisältämät liittymäpäivitykset luovat pohjaa tietyille " "tuleville uudistuksille. Versio 3.0 tulee perustumaan näille muutoksille. Se " "tekee Ninja Forms -laajennuksesta entistäkin vakaamman, tehokkaamman ja " "käyttäjäystävällisemmän lomakkeiden suunnittelutyökalun." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Ohjeet" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Tutustu kattavaan Ninja Forms -dokumentaatioomme alla." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms -dokumentaatio" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Pyydä tukea" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Palaa Ninja Forms -laajennukseen" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Tarkastele täydellistä muutoslokia" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Täydellinen muutosloki" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Siirry Ninja Forms -laajennukseen" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Pääset alkuun Ninja Forms -laajennuksen käytössä alla olevien vinkkien " "avulla. Opit käytön tuossa tuokiossa!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Kaikki lomakkeista" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Forms-valikon kautta pääset kaikkiin Ninja Forms -laajennukseen liittyvin " "osioihin. Olemme jo luoneet ensimmäisen %skontaktilomakkeesi%s, jotta sinulla " "olisi käytettävissäsi esimerkki. Voit myös luoda oman lomakkeen " "napsauttamalla %sAdd New%s (”Lisää uusi”)." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Suunnittele oma lomakkeesi" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Tämän toiminnon kautta voit suunnitella oman lomakkeesi lisäämällä siihen " "kenttiä ja vetämällä ne haluamaasi järjestykseen. Kuhunkin kenttään liittyy " "joukko eri vaihtoehtoja, kuten selite, selitteen asema ja paikkamerkki." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Sähköpostiviestit ja toiminnot" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Jos haluat saada sähköposti-ilmoituksen käyttäjän lähettäessä lomakkeesi, " "voit määrittää sen tämän välilehden kautta. Voit luoda rajoittamattoman " "määrän sähköpostiviestejä, mukaan lukien viestit lomakkeen täyttäneelle käyttäjälle." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Tämä välilehti sisältää lomakkeen yleiset asetukset, kuten nimikkeen ja " "lähetystavan, sekä sen esittämiseen liittyviä asetuksia, kuten lomakkeen " "piilottaminen sen jälkeen, kun se on täytetty onnistuneesti." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Lomakkeen esittäminen" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Liitä sivulle" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Basic Form Behavior -osiossa (”lomakkeen perusmääritykset”) Form Settings " "-asetusten (”lomakkeen asetukset”) alla voit helposti valita sivun, jonka " "sisällön loppuun haluat liittää lomakkeen automaattisesti. Samankaltainen " "vaihtoehto on käytettävissä jokaisen sisällönmuokkausnäytön sivupalkissa." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Lyhytkoodi" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Aseta %s johonkin kohtaan, joka hyväksyy pikakoodeja. Näin voit esittää " "lomakkeesi missä tahansa haluamassasi paikassa – jopa keskellä sivuasi tai " "viestien sisältöä." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms tarjoaa käyttöösi widget-pienoissovelluksen, jonka voit sijoittaa " "mihin tahansa pienoissovelluksille sopivaan osioon sivustossasi, ja valita " "sitten, minkä lomakkeen haluat esittää kyseisessä kohdassa." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Mallipohjan funktio" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Lisäksi Ninja Forms sisältää yksinkertaisen mallipohjatoiminnon, joka on " "mahdollista asettaa suoraan php-mallipohjatiedostoon. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Tarvitsetko apua?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Kattava dokumentaatio" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Käytettävissä oleva dokumentaatio kattaa kaikki aiheet %svianmäärityksestä%s " "aina %sohjelmointirajapintaan%s asti. Uusia asiakirjoja lisätään jatkuvasti." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Alan paras asiakastuki" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Teemme kaikkemme tarjotaksemme jokaiselle Ninja Forms -käyttäjälle parasta " "mahdollista tukea. Jos sinulla on kysyttävää tai ongelmia, %sota meihin yhteyttä%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Kiitos päivityksestä viimeisimpään versioon! Ninja Forms %s on suunniteltu " "tekemään lähetettyjen tietojen hallinnasta niin helppoa kuin mahdollista!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms -lomakkeiden taustalla on maailmanlaajuinen sovelluskehittäjien " "tiimi, jonka tavoitteena on tarjota sinulle WordPressin paras lomakkeiden luomistyökalu." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Kelvollista muutoslokia ei löydetty." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "%s - tarkastelu" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Poista automaattinen täydennys käytöstä selaimessa" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sTarkistettu %s laskenta-arvo" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Tämä on arvo, jota käytetään, jos %starkistettu%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sEi-tarkistettu%s laskenta-arvo" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Tämä on arvo, jota käytetään, jos %s ei tarkistettu%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Sisällytä mukaan automaattiseen yhteismäärään? (Jos käytössä)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Mukautetut CSS-luokat" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Ennen mitään" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Ennen selitettä" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Selitteen jälkeen" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Kaiken jälkeen" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Jos \"desc text\" (kuvausteksti) on käytössä, syötekentän vieressä näytetään " "kysymysmerkki %s. Kohdistimen pitäminen kysymysmerkin päällä näyttää kuvaustekstin." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Lisää kuvaus" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Kuvauksen asema" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Kuvauksen sisältö" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Jos ”help text\" (ohjeteksti) on käytössä, syötekentän vieressä näytetään " "kysymysmerkki %s. Kohdistimen pitäminen kysymysmerkin päällä näyttää ohjetekstin." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Näytä ohjeteksti" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Ohjeteksti" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Jos jätä ruudun tyhjäksi, mitään rajoja ei käytetä." #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Rajoita syötteet tähän määrään" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr " / " #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "merkkiä" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Sanat" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Teksti, joka näkyy merkki- tai sanalaskurin jälkeen" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Elementin vasemmalla puolella" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Elementin yläpuolella" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Elementin alapuolella" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Elementin oikealla puolella" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Elementin sisällä" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Selitteen sijainti" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Kentän tunnus" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Rajoitusten asetukset" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Laskenta-asetukset" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Poista" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Täytä tämä taksonomialla" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr " - Ei mikään" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Paikanvaraus" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Pakollinen" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Tallenna kenttäasetukset" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Lajittele numeerisesti" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Jos tämä ruutu on valittuna, tämä lähetystaulukon sarake lajitellaan " "numeroiden perusteella." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Admin-selite" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Tämä on selite, jota käytetään lähetysten tarkastelussa/muokkauksessa/viennissä." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Laskutus:" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Toimitus" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Oma" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Käyttäjätietojen kenttäryhmä" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Mukautettu kenttäryhmä" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Sisällytä nämä tiedot mukaan tukipyyntöihin:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Lataa järjestelmän tila -raportti" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Ympäristö" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Etusivun verkko-osoite" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Sivuston verkko-osoite" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms -versio" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP-versio" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite käytössä" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Kyllä" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Ei" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web-palvelimen tiedot" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP:n versio" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL-versio" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP-alue" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP-muistinvaraus" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP-testaustila" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP-kieli" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Oletus" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP:n maks. palvelimeen lataus" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP 'post' -suurin koko" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Syötteiden maks. sisäkkäisyystaso" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP max suoritusaika" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input -muuttujat" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN asennettu" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Oletusaikavyöhyke" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Oletus aikavyöhyke on %s – sen pitäisi olla UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Oletusaikavyöhyke on %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Palvelimessasi on käytössä fsockopen ja cURL." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Palvelimessasi on käytössä fsockopen; cURL ei ole käytössä." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Palvelimessasi on käytössä cURL; fsockopen ei ole käytössä." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Palvelimella ei ole käytössä fsockopen, cURL. PayPal IPN ja muut skriptit " "eivät toimi. – Ota yhteyttä palvelimen ylläpitäjään ja selvitä tilanne." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP-asiakasohjelma" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Palvelimessasi on käytössä SOAP-asiakasohjelmaluokka." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "%sSOAP-asiakasohjelma%s ei ole käytössä palvelimessasi. Jotkin SOAP:ia " "käyttävät yhdyskäytävälaajennukset eivät ehkä toimi odotetulla tavalla." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP-etälähetys" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() onnistui - PayPal IPN toimii." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() epäonnistui. PayPal IPN ei toimi palvelimesi kanssa. Ota " "yhteyttä verkkohotellipalvelun tarjoajaan. Virhe:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() epäonnistui. PayPal IPN ei ehkä toimi palvelimesi kanssa." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugin-laajennukset" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Asennetut laajennukset" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Käy lisäosan kotisivulla" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "by" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "versio" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Anna lomakkeellesi nimi. Näin löydät lomakkeen myöhemmin." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Et ole lisännyt lähetyspainiketta lomakkeeseesi." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Syötteen peite" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Mikä tahansa merkki, jonka asetat ”mukautettu peite” -ruutuun ja joka ei ole " "alla olevassa luettelossa, syötetään automaattisesti käyttäjän puolesta hänen " "kirjoittaessaan. Kyseinen merkki ei ole poistettavissa." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Nämä ovat ennalta määritetyt peitemerkit" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Edustaa aakkosellisia merkkejä (A-Z,a-z) - Sallii vain kirjainten syöttämisen" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Edustaa numeerisia merkkejä (0-9) - Sallii vain numeroiden syöttämisen" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Edustaa aakkosnumeerisia merkkejä (A-Z,a-z,0-9) - Sallii sekä numeroiden " "että kirjainten syöttämisen" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Jos haluaisit esimerkiksi luoda maskin yhdysvaltalaisille " "sosiaaliturvatunnuksille, kirjoittaisit ruutuun 999-99-9999" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "9-merkit edustaisivat mitä tahansa numeroa, ja -s lisättäisiin automaattisesti." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Tämä estää käyttäjiä syöttämästä kenttään muita merkkejä kuin numeroita." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Voit myös yhdistellä näitä erityiskäyttöä varten." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Jos sinulla olisi esimerkiksi tuotekoodi, jonka muoto on A4B51.989.B.43C, " "voisit käyttää seuraavaa maskia: a9a99.999.a.99a. Tämä pakottaisi kaikkien " "a-merkkien olevan kirjaimia ja kaikkien 9-merkkien olevan numeroita." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Määritellyt kentät" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Suosikkikentät" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Maksukentät" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Mallipohjakentät" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Käyttäjätiedot" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Kaikki" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Massatoiminnot" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Toteuta" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Lomakkeita per sivu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Toteuta" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Siirry ensimmäiselle sivulle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Siirry edelliselle sivulle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Tämä sivu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Siirry seuraavalle sivulle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Siirry viimeiselle sivulle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Lomakkeen otsikko" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Poista tämä lomake" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Lomakkeen kaksoiskappale" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Poistetut lomakkeet" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Poistettu lomake" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Lomakkeen esikatselu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Näytä" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Näytä lomakkeen otsikko" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Lisää lomake tälle sivulle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Lähetä AJAX:in kautta (ilman sivun uudelleenlatausta)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Tyhjennä menestyksellisesti täytetty lomake?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Jos tämä ruutu on valittuna, Ninja Forms tyhjentää lomakkeen arvot sen " "jälkeen, kun se on lähetetty." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Piilota menestyksellisesti täytetty lomake?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Jos tämä ruutu on valittuna, Ninja Forms piilottaa lomakkeen sen jälkeen, kun " "se on lähetetty." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Rajoitukset" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Vaadi käyttäjän olevan kirjautuneena lomakkeen tarkastelua varten?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Ei kirjautuneena sisään -viesti" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Viesti, joka näytetään käyttäjälle siinä tapauksessa, että yllä oleva " "valintaruutu on valittuna, eikä käyttäjä ole kirjautuneena sisään." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Rajoita lähetyksiä" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Valitse se lähetyksien määrä, jonka tämä lomake hyväksyy. Jätä tyhjäksi, jos " "et halua määrittää rajaa." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Raja saavutettu -viesti" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Kirjoita viesti, jonka haluat näytettävän, kun tämän lomakkeen lähetysraja on " "saavutettu, eikä uusia lähetyksiä enää sallita." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Lomakkeen asetukset tallennettu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Perusasetukset" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms -perusohje näytetään tässä." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Laajenna Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Dokumentaatio tulossa pian." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktiivinen" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Asennettu" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Lue lisää" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Varmuuskopio / palautus" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Varmuuskopioi Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Palauta Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Tietojen palautus onnistui!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Tuo suosikkikentät" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Valitse tiedosto" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Tuo suosikkikentät" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Suosikkikenttiä ei löydetty" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Vie suosikkikentät" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Vie kentät" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Ole hyvä ja valitse vietävät suosikkikentät." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Suosikkikentät tuotu onnistuneesti." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Ole hyvä ja valitse oikein muotoiltu suosikkikenttätiedosto." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Tuo lomake" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Tuo lomake" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Vie lomake" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Vie lomake" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Ole hyvä ja valitse lomake." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Lomake tuotu onnistuneesti." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Valitse kelvollinen viety lomaketiedosto." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Lähetettyjen tietojen tuonti/ vienti" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Päivämääräasetukset" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Yleinen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Yleiset asetukset" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Päiväyksen muoto" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Yrittää noudattaa %sPHP päivämäärä() funktio%s -määrityksiä, mutta kaikkia " "muotoja ei tueta." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Valuutan symboli" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Roskapostin esto -asetukset (reCaptcha)" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Sivuston reCAPTCHA-avain" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Hanki sivustoavain verkkotunnuksellesi rekisteröitymällä %stäällä%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA salainen avain" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA-kieli" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Kieli, jota käytetään reCAPTCHA-todennuksessa. Hae oman kielesi koodi " "napsauttamalla %stätä%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Jos tämä ruutu on valittuna, KAIKKI Ninja Forms -tiedot poistetaan " "tietokannasta asennuksen poiston yhteydessä. %sKaikki lomaketiedot ja " "lähetetyt tiedot poistetaan siten, että ne eivät ole palautettavissa.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Poista pääkäyttäjän ilmoitukset käytöstä" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Et enää koskaan joudu katselemaan pääkäyttäjän ilmoituksia Ninja Forms " "-koontinäytössä. Poistamalla valinnan näet ne jälleen." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Tämä asetus poistaa TÄYSIN kaikki Ninja Forms -laajennukseen liittyvät tiedot " "sen poistamisen yhteydessä. Tämä sisältää LÄHETETYT TIEDOT sekä LOMAKKEET. " "Tätä toimintoa ei voida kumota." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Jatka" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Asetukset tallennettu" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Käyttöliittymäviestit" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Käyttöliittymän viestit" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Pakollisen kentän teksti" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Pakollisen kentän merkki" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Virheilmoitus pakollisten kenttien puuttuessa" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Pakollisen kentän virheilmoitus" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Roskapostinestoviesti" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot-virheilmoitus" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Ajastimen virheilmoitus" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript poisti virheilmoituksen käytöstä" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Ole hyvä ja anna oikea sähköpostiosoite" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Lähetystä käsitellään -selite" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Tämä viesti näytetään lähetyspainikkeen sisällä aina käyttäjän napsautettua " "”Lähetä”. Näin käyttäjä näkee, että käsittely on meneillään." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Salasanavirhe-selite" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Tämä viesti näytetään käyttäjälle hänen antaessaan virheelliset arvot salasanakenttään." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Lisenssit" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Tallenna ja aktivoi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Poista kaikkien käyttöoikeuksien aktivointi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Jos haluat aktivoida Ninja Forms -laajennusten käyttöoikeuksia, sinun täytyy " "ensin %sasentaa ja aktivoida%s kyseinen laajennus. Käyttöoikeusasetukset " "tulevat tämän jälkeen näkyviin alla." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Nollaa lomakkeiden konversio" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Nollaa lomakkeen konversio" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Jos lomakkeesi ovat ”kadonneet” päivitettyäsi 2.9-versioon, tämä painikkeen " "painaminen yrittää muuntaa vanhat lomakkeesi uudelleen ja esittää ne " "2.9-versiossa. Kaikki nykyiset lomakkeet pysyvät ”Kaikki lomakkeet” -taulukossa." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Kaikki nykyiset lomakkeet pysyvät ”Kaikki lomakkeet” -taulukossa. Joissakin " "tapauksissa jotkin lomakkeet saatetaan monistaa tämän prosessin aikana." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Ylläpidon sähköposti" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Käyttäjän sähköpostiosoite" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms edellyttää, että lomakeilmoituksesi päivitetään. Käynnistä " "päivitys napsauttamalla %stätä%s." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms edellyttää, että sähköpostiasetuksesi päivitetään. Käynnistä " "päivitys napsauttamalla %stätä%s." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms edellyttää, että lähetystaulukkosi päivitetään. Käynnistä " "päivitys napsauttamalla %stätä%s." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Kiitos päivityksestä Ninja Forms 2.7 -versioon. Päivitä kaikki Ninja Forms " "-laajennukset tästä kohteesta: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Oma Ninja Forms ”File Upload” -laajennuksesi ei ole yhteensopiva Ninja Forms " "2.7 -version kanssa. Version on oltava vähintään 1.3.5. Päivitä tämä " "laajennus – " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Oma Ninja Forms ”Save Progress” -laajennuksesi ei ole yhteensopiva Ninja " "Forms 2.7 -version kanssa. Version on oltava vähintään 1.1.3. Päivitä tämä " "laajennus – " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Lomaketietokantaa päivitetään" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms edellyttää, että lomakeasetuksesi päivitetään. Käynnistä päivitys " "napsauttamalla %stätä%s." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms -päivitystä käsitellään" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sOta yhteyttä asiakastukeen%s ja ilmoita yllä näkemästäsi virheestä." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms on asentanut kaikki saatavilla olevat päivitykset!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Siirry lomakkeisiin" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms -päivitys" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Korota tasoa" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Päivitykset ovat valmiita" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms joutuu käsittelemään %s päivitystä. Tämä voi kestää muutamia " "minuutteja. %sKäynnistä päivitys%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Vaihe %d / n. %d meneillään" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms -järjestelmän tila" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Salasanan vahvuus" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Hyvin heikko" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Heikko" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Keskitaso" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Vahva" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Epävastaavuus" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "– Valitse yksi" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Jos olet ihminen ja näet tämän kentän, jätä se tyhjäksi." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Tähdellä * merkityt kentät ovat pakollisia." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Tämä on pakollinen kenttä." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Ole hyvä ja tarkista pakolliset kentät." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Laskenta" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Desimaalien määrä." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Tekstilaatikko" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Tuloksen laskennan muoto" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Tunnus" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Poista syöte käytöstä?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Lisää lopullinen laskentatulos käyttäen seuraavaa pikakoodia: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Voit syöttää laskentayhtälöitä tässä käyttäen kaavaa field_x , jossa x on sen " "kentän tunnus, jota haluat käyttää. Esimerkki: %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Monimutkaisia yhtälöitä voidaan luoda lisäämällä sulkeet: %s( field_45 * " "field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Käytä näitä operaattoreita: + - * /. Tämä on lisäominaisuus Pidä silmällä eri " "tekijöitä, kuten jakaminen nollalla." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Laske lopputulosten arvot automaattisesti" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Määritä operaatiot ja kentät (lisäominaisuus)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Käytä yhtälöä (lisäominaisuus)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Laskentatapa" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Kenttäoperaatiot" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Lisää operaatio" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Lisäyhtälö" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Laskennan nimi" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Tämä on kenttäsi ohjelmallinen nimi. Esimerkkejä: oma_lask, hinta_yht, käytt-yht." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Oletusarvo" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Mukautettu CSS-luokka" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Valitse kenttä" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Valintaruutu" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Ei valittu" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Tarkistettu" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Näytä tämä" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Piilota tämä" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Vaihda arvoa" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeria" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Amerikan Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Etelämanner" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua ja Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentiina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Itävalta" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaidžan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahama" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Valko-Venäjä" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgia" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia ja Hertsegovina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Island" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasilia" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Brittiläinen Intian valtameren alue" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Kambodza" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Kamerun" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Kanada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Kap Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Caymansaaret" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Keski-Afrikan tasavalta" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Kiina" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Joulusaari" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Kookossaaret" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Kolumbia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Komorit" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Kongo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Kongon demokraattinen tasavalta" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cookinsaaret" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Norsunluurannikko" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Kroatia (paikallinen nimi: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Kuuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Kypros" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Tsekki" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Tanska" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominikaaninen tasavalta" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Itä-Timor" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypti" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Päiväntasaajan Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Viro" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falklandinsaaret" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Färsaaret" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fidži" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Suomi" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Ranska" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Ranska" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Ranskan Guayana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Ranskan Polynesia" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Ranskan eteläiset alueet" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Saksa" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Kreikka" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Grönlanti" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissaun" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard ja McDonaldinsaaret" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Vatikaanivaltio" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hongkong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Unkari" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islanti" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Intia" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlanti" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italia" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaika" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japani" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenia" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korean demokraattinen kansantasavalta" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korean tasavalta" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirgisia" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laosin demokraattinen kansantasavalta" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Libanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libya" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Liettua" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemburg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macao" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Makedonia, entinen Jugoslavian tasavalta" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malesia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Malediivit" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshallinsaaret" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Meksiko" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Mikronesian liittovaltio" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldovan tasavalta" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marokko" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Hollanti" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Alankomaiden Antillit" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Uusi-Kaledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Uusi-Seelanti" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolkinsaari" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Pohjois-Mariaanit" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norja" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua-Uusi-Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filippiinit" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Puola" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugali" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Réunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Venäjä" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts ja Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent ja Grenadiinit" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "São Tomé ja Príncipe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi-Arabia" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychellit" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakia (Slovakian tasavalta)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Salomonsaaret" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Etelä-Afrikka" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Etelä-Georgia ja Eteläiset Sandwichsaaret" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Espanja" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Saint Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint Pierre ja Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Surinam" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Huippuvuoret ja Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swazimaa" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Ruotsi" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Sveitsi" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syyrian arabitasavalta" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tadžikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tansanian yhdistynyt tasavalta" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thaimaa" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad ja Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turkki" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks- ja Caicossaaret" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraina" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Yhdistyneet Arabiemiirikunnat" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Yhdistynyt kuningaskunta" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Yhdysvallat" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Yhdysvaltain Tyynenmeren erillissaaret" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Brittiläiset Neitsytsaaret" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Yhdysvaltain Neitsytsaaret" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis ja Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Länsi-Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Sambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Valtio" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Oletusmaa" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Käytä mukautettua ensimmäistä vaihtoehtoa" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Mukautettu ensimmäinen vaihtoehto" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Etelä-Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Luottokortti" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Korttinumeron selite" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Kortin numero" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Korttinumeron kuvaus" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "(Yleensä) 16 numeroa luottokorttisi etupuolella." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Kortin turvakoodin selite" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Kortin turvakoodin kuvaus" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Kortin takapuolella (3 numeroa) tai etupuolella (4 numeroa) esitetty luku." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Kortin nimen selite" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Kortin haltijan nimi" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Kortin nimen kuvaus" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Luottokortin etupuolelle painettu nimi." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Kortin vanhentumiskuukauden selite" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Vanhentumiskuukausi (KK)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Kortin vanhentumiskuukauden kuvaus" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Se kuukausi, jolloin luottokorttisi vanhentuu – yleensä merkitty kortin etupuolelle." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Kortin vanhentumisvuoden selite" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Vanhentumisvuosi (VVVV)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Kortin vanhentumisvuoden kuvaus" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Se vuosi, jolloin luottokorttisi vanhentuu – yleensä merkitty kortin etupuolelle." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Teksti" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Tekstikenttä" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Piilotettu kenttä" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Käyttäjätunnus (jos kirjautuneena sisään)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Käyttäjän etunimi (jos kirjautuneena sisään)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Käyttäjän sukunimi (jos kirjautuneena sisään)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Käyttäjän näyttönimi (jos kirjautuneena sisään)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Käyttäjän sähköposti (jos kirjautuneena sisään)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Viestin/sivun tunnus (jos käytettävissä)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Viestin/sivun nimike (jos käytettävissä)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Viestin/sivun URL-osoite (jos käytettävissä)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Nykyinen päivämäärä" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Kyselymerkkijonon muuttuja" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "WordPress on varannut tämän avainsanan käytön. Yritä jotakin muuta vaihtoehtoa." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Onko tämä sähköpostiosoite?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Jos tämä valintaruutu on valittuna, Ninja Forms vahvistaa tämän syötteen sähköpostiosoitteena." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Lähetä kopio lomakkeesta tähän osoitteeseen?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Jos tämä valintaruutu on valittuna, Ninja Forms lähettää kopion tästä " "lomakkeesta (ja siihen mahdollisesti liitetyt viestit) tähän osoitteeseen." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "t" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Lista" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Tämä on käyttäjän osavaltio" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valittu arvo" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Lisää arvo" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Poista arvo" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Laskenta" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Pudotusvalikko" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Valintaruudut" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Monivalinta" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Luettelotyyppi" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Monivalintaruudun koko" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Tuo luettelokohteet" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Näytä luettelokohteiden arvot" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Tuo" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Tämä toiminnon käyttämiseksi voit liittää CSV-tiedostosi yllä olevaan tekstialueeseen." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Muodon tulisi näyttää tältä:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Selite,arvo,laskenta" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Jos haluat lähettää tyhjän arvon tai laskennan, sinun tulee käyttää ''-merkkiä." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Valittu" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Numero" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimiarvo" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maksimiarvo" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Askel (lisäysten määrä)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Järjestelytoiminto" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Salasana" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Käytä tätä rekisteröinnin salasanakenttänä" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Jos tämä valintaruutu on valittuna, sekä salasanaruutu että salasanan " "uudelleensyöttöruutu näytetään." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Salasanan uudelleensyötön selite" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Anna salasana uudelleen" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Näytä salasanan vahvuuden ilmaisin" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Vihje: Salasanan tulisi olla vähintään 7 merkkiä pitkä. Vinkki: tee siitä " "vahvempi käyttämällä isoja ja pieniä kirjaimia, numeroita sekä " "erikoismerkkejä, kuten ! \" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Salasanat eivät täsmää" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Tähtiluokitus" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Tähtien lukumäärä" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Vahvista, että et ole robotti" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Suorita captcha-todennus" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Varmista, että olet antanut sivuston ja salaisen avaimen oikein" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha-virhe. Anna captcha-kentän oikea arvo" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Roskapostin torjunta" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Roskapostikysymys" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Roskapostivastaus" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Lähetä" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Verot" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Veroprosentti" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Tulee antaa prosenttilukuna, esim. 8,25 %, 4 %" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Tekstialue" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Näytä RTF-editori" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Näytä medialatauspainikkeet" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Poista RTF-editori käytöstä mobiililaitteissa" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Vahvista sähköpostiosoitteena? (Kentän on oltava pakollinen)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Poista syöte käytöstä" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Päivämäärän valitsin" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Puhelin - (011) 222 3333" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Valuutta" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Mukautetun peitteen määritelmä" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Tuki" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Ajastettu lähetys" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Lähetä painikkeen teksti ajastimen ajan päätyttyä" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Odota %n sekuntia" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n ilmaisee sekuntien lukumäärää" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Sekuntien määrä loppulaskentaan" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Tämä on se aika, jonka käyttäjän on odotettava ennen lomakkeen lähettämistä" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Jos olet ihminen, ole hyvä ja hidasta vauhtiasi." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Tämän lomakkeen lähettäminen edellyttää JavaScriptiä. Ota se käyttöön ja " "yritä uudelleen." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Luettelokenttien määritykset" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Ryhmät" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Yksinkertainen" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Useita" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listat" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Päivitä" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Lähetys-Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Käyttäjän Meta (jos kirjautuneena sisään)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Kerää maksu" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Lomakkeita ei löytynyt" #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Luontipäivä" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "otsikko" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "päivitetty" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Yrityksesi on epäonnistunut" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Ylätason kohde" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Kaikki kohteet" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Lisää uusi kohde" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Uusi kohde" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Muokkaa kohdetta" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Päivitä kohde" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Tarkastele kohdetta" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Etsi kohde" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Ei löytynyt roskakorista" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Lomakkeiden lähetys" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Lähetyksen tiedot" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Lisää uusi lomake" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Lomakemallin tuontivirhe" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Kentät" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Lähetetty tiedosto ei ole oikeassa muodossa" #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Virheellinen lomakkeen lähetys." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Tuo lomakkeita" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Lomakkeiden vienti" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Yhtälö (lisäominaisuus)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operaatiot ja kentät (lisäominaisuus)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Laske kentät yhteen automaattisesti" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Palvelimeen siirretyn tiedoston koko ylittää upload_max_filesize-direktiivin (php.ini)." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Palvelimeen siirretyn tiedoston koko ylittää MAX_FILE_SIZE-direktiivin, joka " "määritettiin HTML-lomakkeessa." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Vain osa tiedostosta latautui." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Yhtään tiedostoa ei siirretty." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Väliaikaista hakemistoa ei löytynyt." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Tiedoston tallennus levylle epäonnistui." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Tiedoston lataaminen keskeytyi tiedostopäätteen vuoksi." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Tuntematon siirtovirhe." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Tiedoston latausvirhe" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Laajennuksen käyttöoikeudet" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Siirtymiset ja valetiedot valmiit. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Näytä lomakkeet" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Tallenna asetukset" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Palvelimen IP-osoite" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Isäntänimi" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Liitä Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Lomaketta ei löytynyt" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Kenttää ei löytynyt" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Odottamaton virhe tapahtui." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Esikatselua ei ole olemassa." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Maksutavat" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Maksu yhteensä" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Liitä tunniste" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Sähköpostiosoite tai etsi kenttää" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Aiheteksti tai etsi kenttää" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Liitä CSV-tiedosto" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Linkki" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Selite tähän" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Ohjeteksti tähän" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Anna lomakekentän selite. Tällä tavoin käyttäjät tunnistavat yksilölliset kentät." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Lomakkeen oletus" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Piilotettu" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Valitse selitteesi asema suhteessa itse kenttäelementtiin." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Pakollinen kenttä" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Varmista, että tämä kenttä on täytetty ennen kuin lomakkeen lähetys sallitaan." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Numerovaihtoehdot" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Minimi" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Maksimi" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Vaihe" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Valinnat" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Yksi" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "yksi" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Kaksi" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "kaksi" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Kolme" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "kolme" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Laskenta-arvo" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Rajoittaa syötetyyppejä, joita käyttäjät voivat kirjoittaa tähän kenttään." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "ei toistoa" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Puhelin" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "mukautettu" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Mukautettu peite" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Edustaa aakkosellista merkkiä " "(A-Z,a-z) - Vain kirjainten syöttö " "sallitaan.
    • \n
    • 9 - Edustaa numeerista " "merkkiä (0-9) - Vain numeroiden syöttö " "sallitaan.
    • \n
    • * - Edustaa aakkosnumeerista " "merkkiä (A-Z,a-z,0-9) - Tämä sallii sekä numeroiden " "että\n kirjainten syötön.
    \n " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Rajoita syötteet tähän määrään" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Merkit" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Sanat" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Laskurin jälkeen näytettävä teksti" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Merkkejä jäljellä" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Kirjoita teksti, jonka haluat näkyvän kentässä ennen kuin käyttäjä kirjoittaa " "siihen mitään." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Mukautettu luokkien nimet" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Säilö" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Lisää ylimääräisen luokan kenttien paketoijaan." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Elementti" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Lisää ylimääräisen luokan kenttien elementtiin." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "VVVV-KK-PP" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Perjantai, 18. marraskuuta 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Oletuksena nykyinen päivämäärä" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Sekuntien määrä ajastettuun lähetykseen." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Kenttäavain" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Luo yksilöllisen avaimen, joka tunnistaa kenttäsi ja kohdistaa siihen " "mukautettua kehitystä." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Selite, jota käytetään lähetysten tarkastelun ja viennin yhteydessä." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Näytetään käyttäjille, kun kohdistinta pidetään tämän päällä." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Kuvaus" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Lajittele numeerisesti" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Tämä sarake lähetysten taulukossa lajitellaan numeroiden perusteella." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Sekuntien määrä loppulaskentaan" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Käytä tätä rekisteröinnin salasanakenttänä Jos tämä valintaruutu on " "valittuna, sekä\n salasanaruutu että salasanan " "uudelleensyöttöruutu näytetään." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Vahvista" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Salli RTF-syötteet" #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Selitettä käsitellään" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Valittu laskenta-arvo" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Tätä lukua käytetään laskennoissa, jos valintaruutu on valittuna." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Valitsematon laskenta-arvo" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Tätä lukua käytetään laskennoissa, jos valintaruutu ei ole valittuna." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Näytä tämä laskentamuuttuja" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Valitse muuttuja" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Hinta" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Käytä määrää" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Sallii käyttäjien valita useamman kuin yhden näistä tuotteista." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Tuotetyyppi" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Yksi tuote (oletus)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Useita tuotteita – avattava valikko" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Useita tuotteita – valitse useita" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Useita tuotteita – valitse yksi" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Käyttäjän merkintä" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Hinta" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Hintavaihtoehdot" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Yksittäishinta" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Avattava hintavalikko" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Hintatyyppi" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Tuote" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Valitse tuote" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Vastaus" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Vastaus, jonka kirjainkoko on merkitsevä roskapostiin liittyvien lomaketäyttöjen estämiseksi." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Luokittelu" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Lisää uusia termejä" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Tämä on käyttäjän osavaltio/alue." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Käytetään kenttien merkitsemiseksi käsittelyä varten." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Tallennetut kentät" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Yleiskentät" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Käyttäjätietokentät" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Hinnoittelukentät" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Asettelukentät" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Sekalaiset kentät" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Lomakkeesi lähetys onnistui." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Ninja Forms -lomakkeiden lähetys" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Tallenna lähetys" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Muuttujan nimi" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Yhtälö" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Selitteen oletussijainti" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Paketoija" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Lomakeavain" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Ohjelmallinen nimi, jota voidaan käyttää tämän lomakkeen viitteenä." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Lisää lähetyspainike" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Huomasimme, että lomakkeesi ei sisällä lähetyspainiketta. Voimme lisätä sen automaattisesti." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Kirjautunut" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Koskee lomakkeen esikatselua." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Lähetysraja" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "EI koske lomakkeen esikatselua." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Näyttämisen asetukset" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Laskelmat" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja-lomakkeet" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Hinta:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Määrä:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Lisää" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Avaa uudessa ikkunassa" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Jos näet tämän kentän, jätä se tyhjäksi." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Saatavilla" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Anna voimassa oleva sähköpostiosoite!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Näiden kenttien on täsmättävä!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Numero minimi virhe" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Numero maksimi virhe" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Lisää määrällä " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Lisää linkki" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Lisää media" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Korjaa virheet, ennen kuin lähetät tämän lomakkeen." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot-virhe" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Tiedoston lähettäminen menossa." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "TIEDOSTON LÄHETTÄMINEN" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Kaikki kentät" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Alasarja" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Post ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Artikkelin otsikko" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Artikkelin URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP-osoite" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "Käyttäjän tunnus/ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Etunimi" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Sukunimi" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Näytä nimi" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Määritetyt tyylit" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Vaalea" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Tumma" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Käytä Ninja Forms -oletustyyliasetuksia." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Palautus" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Palautus v2.9.x-versioon" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Palautus viimeiseen 2.9.x-versioon." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha-asetukset" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA-teema" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "RTF-editori (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Edistynyt" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Ylläpito" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Tyhjät lomakkeet" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Ottakaa minuun yhteyttä" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Menestysviestin valetoiminto" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Kiitos {field:name} lomakkeeni täyttämisestä!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Valesähköpostitoiminto" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Tämä on sähköpostitoiminto." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hei, Ninja-lomakkeet!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Valetallennustoiminto" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Tämä on testi" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Tämä on toinen testi." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Pyydä ohjeita" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Kuinka voimme olla avuksi?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Hyväksytkö?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Paras yhteydenottotapa?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Puhelin" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Postilähetys" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Lähetä" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kaikenkattava" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Valitse luettelo" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Vaihtoehto yksi" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Vaihtoehto kaksi" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Vaihtoehto kolme" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Valintanappiluettelo" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Kylpyamme" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Valintaruutuluettelo" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Nämä ovat kaikki kentät Käyttäjän tiedot -osassa." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Osoite" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Kaupunki/postitoimipaikka" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Postinumero" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Nämä ovat kaikki kentät Hinnoittelu-osassa." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Tuote (sisältää määrän)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Tuote (erillinen määrä)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Määrä" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Yhteensä" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Luottokortin koko nimi" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Luottokortin numero" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Luottokortin CVV-turvakoodi" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Luottokortin vanhentuminen" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Luottokortin postinumero" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Nämä ovat erilaisia erikoiskenttiä." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Roskapostin torjuntakysymys (Vastaus = vastaus)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "vastaus" #: includes/Database/MockData.php:805 msgid "processing" msgstr "käsitellään..." #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Pitkä muoto - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Kentät" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Kentän numero" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Sähköpostitilauslomake" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Sähköpostiosoite" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Anna sähköpostiosoitteesi" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Tilaa" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Tuotelomake (määräkentän kanssa)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Osta" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Ostit " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "tuotetta hintaan " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Tuotelomake (sisäinen määrä)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " tuotetta hintaan " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Tuotelomake (useita tuotteita)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Tuote A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Tuotteen A määrä" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Tuote B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Tuotteen B määrä" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "tuotetta A ja " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "tuotetta B hintaan $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Lomake laskentojen kanssa" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Ensimmäinen laskentani" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Toinen laskentani" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Laskennat palautetaan AJAX-vastauksen kanssa (vastaus -> tiedot -> laskennat" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Kopioi" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Tallenna lomake" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Luottokortin postinumero" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Sinun on oltava kirjautuneena sisään lomakkeen esikatselua varten." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Kenttiä ei löytynyt." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Huomautus: Ninja Forms -pikakoodia käytetty lomaketta määrittämättä." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms -pikakoodia käytetty lomaketta määrittämättä." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Osoite 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Painike" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Yksittäinen valintaruutu" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "valittu" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "ei valittu" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Luottokortin turvakoodi" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "j.n.Y" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Jakaja" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Valinta" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Lääni" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Huomautuksen tekstiä voidaan muokata huomautuskentän lisäasetuksissa alla." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Kommentti" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Salasanan vahvistus" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "salasana" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Suorita recaptcha-todennus" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Lähetyksen lisäasetukset" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Kysymys" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Kysymyksen asema" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Virheellinen vastaus" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Tähtien lukumäärä" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Termiluettelo" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Ei käytettävissä olevia termejä tälle taksonomialle. %sLisää termi%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Taksonomiaa ei ole valittu." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Käytettävissä olevat termit" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Kappaleen teksti" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Yksittäisen rivin teksti" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Postinro" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Artikkeli" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Kyselymerkkijonot" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Kyselymerkkijono" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Järjestelmä" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Käyttäjä" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " vaatii päivityksen. Sinulla on versio " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " asennettu. Nykyinen versio on " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Muokkauskenttä" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Selitteen nimi" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Kentän yläpuolella" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Kentän alapuolella" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Kentän vasemmalla puolella" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Kentän oikealla puolella" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Piilota selite" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Luokan nimi" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Peruskentät" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Monivalinta" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Lisää uusi kenttä" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Lisää uusi toiminto" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Laajenna valikkoa" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Julkaise" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "JULKAISE" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Ladataan" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Näytä muutokset" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Lisää lomakekenttiä" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Aloita lisäämällä ensimmäinen lomakekenttäsi." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Lisää uusi kenttä" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Napsauta tästä ja valitse haluamasi kentät" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Se on näin helppoa. Tai..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Aloita mallista" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Ota yhteyttä" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Anna käyttäjille mahdollisuus ottaa sinuun yhteyttä tämän " "yhteydenottolomakkeen avulla. Voit lisätä ja poistaa kenttiä tarvittaessa." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Hintatarjouspyyntö" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Hallitse hintatarjouspyyntöjä verkkosivustostasi helposti tämän mallin " "avulla. Voit lisätä ja poistaa kenttiä tarvittaessa." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Tapahtumaan rekisteröityminen" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Anna käyttäjälle mahdollisuus rekisteröityä seuraavaan tapahtumaasi tämän " "lomakkeen avulla. Voit lisätä ja poistaa kenttiä tarvittaessa." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Uutiskirjeen tilauslomake" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Lisää tilaajia ja kasvata sähköpostituslistaasi tämän tilauslomakkeen avulla. " "Voit lisätä ja poistaa kenttiä tarvittaessa." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Lisää lomaketoimintoja" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Aloita lisäämällä ensimmäinen lomakekenttäsi. Napsauta plusmerkkiä ja valitse " "haluamasi toiminnot. Se on näin helppoa." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Monista (^ + C + napsauta)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Poista (^ + D + napsauta)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Actions" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Toggle Drawer" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Kokonäyttö" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Puolinäyttö" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Kumoa" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Valmis" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Kumoa kaikki" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Kumoa kaikki" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Melkein valmista" #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Ei vielä" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Avaa uudessa ikkunassa" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Poista käytöstä" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Korjaa." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Valitse lomake" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Päivämäärä" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Ennen kuin pyydät apua tukitiimiltämme, tarkista:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE -dokumentaatio" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Mitä voit kokeilla ennen kuin otat yhteyttä tukeen?" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Tuen laajuus" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Tuo kentät" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Päivitetty: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Lähetetty: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Lähettäjä: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Lähetystiedot" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Katso" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Näytä enemmän" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Muokkauskenttä" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Lomakekentät" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Esikatsele muutoksia" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Yhteydenottolomake" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Hups! Tämä lisäosa ei ole toistaiseksi yhteensopiva Ninja Forms THREE " "-version kanssa. %sLisätietoja%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s – aktivointi peruutettiin." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Auta meitä parantamaan Ninja-lomakkeita!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Jos annat suostumuksesi, joitakin Ninja-lomakkeiden asennustasi koskevia " "tietoja lähetetään NinjaForms.comiin (tämä EI koske mitään antamiasi tietoja)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Jos päätät ohittaa tämän, se on tietenkin ok! Ninja-lomakkeet toimivat edelleen niin kuin pitääkin." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sSuostun%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sEn suostu%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Sinulla ei ole tarvittavia oikeuksia." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Lupaa ei myönnetty" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja-lomakkeiden kehitt." #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "VIRHEENKORJAUS: Vaihda versioon 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "VIRHEENKORJAUS: Vaihda versioon 3.0.x" lang/ninja-forms-it_IT.po000064400000636646152331132460011303 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Avviso: JavaScript è obbligatorio per questo contenuto." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Stai barando eh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "I campi contrassegnati con %s*%s sono obbligatori." #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Assicurati di compilare tutti i campi obbligatori." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Questo è un campo obbligatorio" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Rispondi alla domanda anti-spam correttamente." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Lascia vuoto il campo spam." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Attendi prima di inviare il modulo." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Non puoi inviare il modulo senza JavaScript attivato." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Inserire un indirizzo email valido." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Trattamento" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Le password non corrispondono." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Aggiungi form" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Seleziona un form o digita per cercare" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Cancella" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Inserisci" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "ID form non valido" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Aumenta le conversioni" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Lo sapevi che puoi aumentare la conversione dei form suddividendoli in parti " "più piccole e più facilmente gestibili?

    Questa operazione è rapida e " "semplice con l'estensione Multi-Part Forms di Ninja Forms.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Scopri i dettagli di Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Forse più tardi" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Chiudi" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "È più probabile che gli utenti compilino i form più lunghi quando possono " "salvare i dati inseriti per tornare a completare la compilazione in un " "secondo momento.

    Con l'estensione Save Progress di Ninja Forms è facile e " "rapido includere questa funzione.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Scopri i dettagli di Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Email" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Nome mittente" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Digita un nome o inserisci dei campi" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Questo nome apparirà come mittente delle email." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Indirizzo mittente" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Digita un indirizzo email o inserisci un campo" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Questo indirizzo apparirà come mittente delle email." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "A" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Digita gli indirizzi email o cerca un campo" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "A chi vuoi inviare questa email?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Oggetto" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Digita il testo dell'oggetto o cerca un campo" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Questo è l'oggetto della email." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Messaggio email" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Allegati" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV dati inviati" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Impostazioni avanzate" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Formato" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Testo semplice" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Destinatario risposte" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Ccn" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Reindirizza" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Messaggio di operazione completata" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Form prima" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Form dopo" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Luogo dell’evento" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Messaggio" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplicato" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Disattiva" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Attiva" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Modifica" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Cancella" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplica" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nome" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Tipo" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Data aggiornamento" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Visualizza tutti i tipi" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Altri tipi" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email e azioni" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Aggiungi nuovo" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Nuova azione" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Modifica azione" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Torna all'elenco" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Nome azione" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Altre azioni" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Azione aggiornata" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Seleziona un campo o digita per cercare" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Inserisci campo" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Inserisci tutti i campi" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Seleziona un form per vedere i dati inviati" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Non trovati dati inviati" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Invii" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Invio" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Aggiungi nuovo invio" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Modifica invio" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Nuovo invio" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Visualizza invio" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Cerca dati inviati" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Non trovati dati inviati nel Cestino" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Data" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Modifica questo oggetto" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Esporta questo elemento" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Esporta" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Spostare questo elemento nel cestino" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Cestino" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Ripristinare questo elemento dal cestino" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Ripristina" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Eliminare l'elemento in modo permanente" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Rimuovi definitivamente" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Non pubblicato" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s trascorsi" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Inviato" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Seleziona un form" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Data di inizio" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Data di fine" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s aggiornati." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Campo\n \npersonalizzato\n \naggiornato\n." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Campo\n \npersonalizzato\n \neliminato\n." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s ripristinato alla versione del %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s pubblicato." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s salvato." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s inviato. Anteprima %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s programmato per: %2$s. Anteprima%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s bozza aggiornata. Anteprima %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Scarica tutti i dati inviati" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Torna all'elenco" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Valori inviati dagli utenti" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Statistiche dati inviati" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Campo" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Valore" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Stato" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Modulo" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Data invio" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modificato il" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Autore invio" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Aggiorna" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Data di invio" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms non può essere attivato a livello di rete. Per attivare il " "plug-in, visita la dashboard di ciascun sito." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Sarà inclusa nell'email di acquisto." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Chiave" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Impossibile attivare la licenza. Verifica la chiave di licenza." #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Disattiva la licenza" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Valori inviati dagli utenti:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Grazie per aver compilato il form." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "È disponibile una nuova versione di %1$s. Visualizza i dettagli della versione %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "È disponibile una nuova versione di %1$s. Visualizza i dettagli della versione " "%3$s oppure aggiorna adesso." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Non disponi dell'autorizzazione necessaria per installare gli aggiornamenti dei plug-in." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Errore" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Campi standard" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Elementi di layout" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Creazione post" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Valuta %sNinja Forms%s %s su %sWordPress.org%s per aiutarci a far sì che " "questo plug-in rimanga gratuito. Il team WP Ninjas ti ringrazia!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Widget di Ninja Forms" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Visualizza titolo" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Nessuno" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Moduli" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Tutti i form" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Aggiornamenti Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Aggiornamenti" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importa/esporta" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importa/esporta" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Impostazioni Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Impostazioni" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Stato del Sistema" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Componenti aggiuntivi" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Anteprima" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Salva" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "carattere/i rimasto/i" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Non mostrare questi termini" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Salva opzioni" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Anteprima form" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Passa a Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Il tuo account è idoneo per il passaggio alla release candidate di Ninja " "Forms THREE! %sPassa subito a%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "È in arrivo Ninja Forms THREE!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Sta arrivando un aggiornamento epocale di Ninja Forms. %sScopri le nuove " "funzioni, la compatibilità retroattiva e le risposte a tante domande frequenti.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Come va?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Grazie per aver scelto Ninja Forms. Ci auguriamo che tu abbia trovato tutto " "il necessario. Se, però, tu avessi dei dubbi, ecco qualche utile risorsa:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Consulta la nostra documentazione" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Chiedi aiuto" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Voce del menu Modifica" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Seleziona tutto" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Aggiungi un form Ninja" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Che nome vuoi dare a questo preferito?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Devi dare un nome a questo preferito." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Vuoi davvero disattivare tutte le licenze?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Reimposta il procedimento di conversione dei form per v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Vuoi rimuovere TUTTI i dati di Ninja Forms al momento della disinstallazione?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Modifica form" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Salvato" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Salvataggio..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Vuoi rimuovere questo campo? Verrà rimosso anche se non salvi." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Visualizza invii" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Elaborazione Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Elaborazione" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Caricamento in corso..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Nessuna azione specificata..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "L'elaborazione è iniziata. Potrebbe durare diversi minuti. Al termine, verrai " "reindirizzato automaticamente." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Benvenuto in Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Grazie dell'aggiornamento. Ninja Forms %s rende ancor più semplice la " "creazione di form!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Benvenuto in Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Registro modifiche Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Informazioni preliminari su Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Gli sviluppatori di Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Cosa c'è di nuovo" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Iniziare" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Riconoscimenti" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versione %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Un ambiente di creazione dei form più semplice e più potente." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Nuova scheda dello strumento di creazione" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Per creare e modificare i form, puoi andare direttamente alla sezione di pertinenza." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Migliore organizzazione delle impostazioni dei campi" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Le impostazioni più comuni sono immediatamente visibili, mentre le altre, non " "essenziali, sono nascoste in sezioni espansibili." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Maggiore chiarezza" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Assieme alla scheda \"Crea il tuo form\", abbiamo sostituito \"Notifiche\" " "con \"Email e azioni\". Questo cambiamento rende più chiaro quali siano le " "operazioni che possono essere eseguite in questa scheda." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Rimozione di tutti i dati di Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Abbiamo aggiunto l'opzione che consente di rimuovere tutti i dati di Ninja " "Forms (dati inviati, form, campi, opzioni) quando si elimina il plug-in. È la " "nostra opzione \"nucleare\"." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Migliore gestione delle licenze" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Ora è possibile disattivare le licenze delle estensioni di Ninja Forms " "singolarmente o in gruppo dalla scheda delle impostazioni." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Altre novità in futuro" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Gli aggiornamenti apportati all'interfaccia in questa versione pongono le " "basi per alcuni importanti miglioramenti futuri. La versione 3.0 si evolverà " "ulteriormente per rendere Ninja Forms uno strumento per la creazione di form " "ancor più stabile, efficace e facile da usare." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Documentazione" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Consulta la documentazione dettagliata di Ninja Forms, qui sotto." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Documentazione Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Richiedi assistenza" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Torna a Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Visualizza registro modifiche completo" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Registro modifiche completo" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Vai a Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Attieniti ai suggerimenti seguenti per iniziare a usare Ninja Forms. I tuoi " "form saranno pronti in un istante." #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Dettagli sui form" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Il menu Form è il punto di accesso per tutto ciò che riguarda Ninja Forms. " "Abbiamo preparato un esempio di %sform di contatto%s, che puoi usare come " "base. Puoi creare il tuo form personale facendo clic su %sAggiungi nuovo%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Crea il tuo form" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Qui elaborerai il tuo form aggiungendo i campi e trascinandoli nell'ordine in " "cui vorrai visualizzarli. Ogni campo avrà una serie di opzioni, come " "etichetta, posizione dell'etichetta e segnaposto." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Email e azioni" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "In questa scheda puoi definire opzioni come le notifiche da ricevere via " "email quando gli utenti fanno clic per inviare il form. Puoi creare un numero " "illimitato di email, incluse quelle inviate all'utente che ha compilato il form." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Questa scheda contiene le impostazioni generali del form, come il titolo e il " "metodo di invio, oltre a impostazioni che permettono di nascondere il form " "quando è stato inviato con successo, e altro ancora." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Visualizzazione del form" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Aggiungi alla pagina" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Nella sezione relativa al comportamento di base del form nelle impostazioni, " "puoi selezionare una pagina al fondo della quale aggiungere automaticamente " "il form. Un'opzione simile è disponibile nella barra laterale di ogni " "schermata di modifica dei contenuti." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Shortcode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Inserisci %s in qualsiasi area che accetta shortcode per visualizzare il form " "ovunque tu voglia. Anche in mezzo a una pagina o nel contenuto dei post." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms offre un widget che puoi inserire in qualsiasi area del tuo sito " "predisposta per i widget e che permette di selezionare esattamente il form da " "visualizzare in quello spazio." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Funzione modello" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms offre anche una semplice funzione con modelli che possono essere " "inseriti direttamente in un file di modello PHP. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Hai bisogno di aiuto?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Documentazione sempre più esauriente" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "La nostra documentazione copre tutti gli argomenti possibili, dalla " "%sRisoluzione dei problemi%s alla nostra %sAPI per sviluppatori%s. E la " "raccolta si arricchisce sempre di nuovi documenti." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "La migliore assistenza del settore" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Facciamo tutto ciò che possiamo per offrire a ogni utente Ninja Forms la " "migliore assistenza possibile. Se si verifica un problema o per qualsiasi " "quesito, %scontattaci%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Grazie per aver eseguito l'aggiornamento all'ultima versione. Ninja Forms %s " "ha tutto il necessario per rendere efficiente la gestione dei form." #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms è stato creato da un team di sviluppatori a livello globale per " "fornire il migliore plug-in di creazione di form per la community di WordPress." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Non trovato alcun registro modifiche valido." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Visualizza %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Disabilita completamento automatico browser" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "Valore di calcolo %sselezionato%s" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Questo è il valore che verrà usato se l'opzione è %sselezionata%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "Valore di calcolo %snon selezionato%s" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Questo è il valore che verrà usato se l'opzione è %snon selezionata%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Includi nel totale automatico? (se abilitato)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Classi CSS personalizzate" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Prima di tutto" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Prima dell'etichetta" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Dopo l'etichetta" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Dopo di tutto" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Se \"testo descrizione\" è abilitato, accanto al campo di immissione ci sarà " "un punto di domanda %s. Passando il cursore sul punto di domanda, comparirà " "la descrizione." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Aggiungi descrizione" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Posizione descrizione" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Contenuto descrizione" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Se \"testo aiuto\" è abilitato, accanto al campo di immissione ci sarà un " "punto di domanda %s. Passando il cursore sul punto di domanda, comparirà il " "testo di aiuto." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Mostra testo di aiuto" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Testo di aiuto" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Se lasci vuota la casella, non verrà imposto alcun limite." #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limita valore immesso a questo numero" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "di" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Caratteri" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Parole" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Testo da visualizzare dopo il contatore di caratteri/parole" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Sinistra dell'elemento" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Sopra l'elemento" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Sotto l'elemento" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Destra dell'elemento" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Dentro l'elemento" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Posizione etichetta" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "ID campo" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Impostazioni restrizioni" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Impostazioni calcoli" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Elimina" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Compila con tassonomia" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Nessuno" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Segnaposto" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Obbligatorio" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Salva impostazioni campo" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Ordina numericamente" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Se questa casella è selezionata, questa colonna nella tabella dati inviati " "sarà ordinata in base al numero." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Etichetta amministratore" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Questa è l'etichetta usata quando si visualizzano, modificano, esportano i dati inviati." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Fatturazione" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Spedizione" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Personalizzato" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Gruppo campi info utente" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Gruppo campi personalizzati" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Queste devono essere incluse nelle richieste di assistenza:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Report di sistema" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Ambiente" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL home" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL sito" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Versione di Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP multisito abilitato" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Sì" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "No" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Info server web" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Versione PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "Impostazioni locali PHP" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Debug Mode" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Lingua WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Predefinito" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Dimensioni di caricamento max WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Max livello di nesting immissioni" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Installato" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Fuso orario predefinito" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Il fuso orario predefinito è %s - Dovrebbe essere UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Il fuso orario predefinito è %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Questo server ha fsockopen e cURL abilitati." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Questo server ha fsockopen abilitato e cURL disabilitato." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Questo server ha cURL abilitato e fsockopen disabilitato." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Il server non ha né fsockopen né cURL abilitati - PayPal IPN ed altri script " "che comunicano con gli altri server non funzioneranno. Rivolgersi al " "fornitore di hosting." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Client SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Questo server ha la classe del client SOAP abilitata." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Questo server non ha la classe del %sclient SOAP%s abilitata; alcuni plug-in " "gateway che usano SOAP potrebbero non funzionare come previsto." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "Post WP remoto" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() riuscito; IPN PayPal funzionante." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() non riuscito. L'IPN PayPal non funzionerà con questo server. " "Contatta il provider di hosting. Errore:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() non riuscito. L'IPN PayPal potrebbe non funzionare con questo server." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugin" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Plug-in installati" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visita homepage plugin" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "da" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "versione" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Assegna un titolo al form. In questo modo lo potrai reperire facilmente in un secondo momento." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Non hai aggiunto il pulsante di invio al form." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Maschera di immissione" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Qualsiasi carattere specificato nella casella \"maschera personalizzata\", e " "non incluso nell'elenco qui sotto, sarà inserito automaticamente nel campo " "man mano che l'utente digita e non potrà essere cancellato." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Questi sono i caratteri di mascheratura predefiniti" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Rappresenta un carattere alfabetico (A-Z, a-z) e permette unicamente " "l'immissione di lettere" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Rappresenta un carattere numerico (0-9) e permette unicamente " "l'immissione di cifre" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Rappresenta un carattere alfanumerico (A-Z, a-z, 0-9) e consente " "l'immissione sia di lettere che di cifre" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Quindi, per creare la maschera per un numero di carta di credito con trattini " "di separazione, nella casella devi semplicemente digitare 999-99-9999." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "I \"9\" rappresentano qualsiasi cifra e i trattini vengono inseriti automaticamente." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "In questo modo, all'utente viene impedito di digitare qualsiasi carattere che non sia un numero." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Questi caratteri possono anche essere abbinati per applicazioni specifiche." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Ad esempio, per l'inserimento di codici prodotto nel formato A4B51.989.B.43C, " "la maschera è a9a99.999.a.99a, che richiede l'immissione di lettere in " "corrispondenza delle \"a\" e di numeri in corrispondenza dei \"9\"." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Campi definiti" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Campi preferiti" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Campi di pagamento" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Campi di modelli" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Informazioni utente" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Tutte" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Azioni di gruppo" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Applica" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Form per pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Vai" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Vai alla prima pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Vai alla pagina precedente" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Pagina attuale" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Vai alla prossima pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Vai all'ultima pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Titolo form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Elimina questo form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplica form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Form eliminati" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Form eliminato" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Anteprima form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Visualizzazione" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Visualizza titolo del form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Aggiungi form a questa pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Vuoi inviare tramite AJAX (senza ricaricare la pagina)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Vuoi cancellare i form completati correttamente?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Se questa casella è selezionata, Ninja Forms cancellerà i valori del form " "dopo l'invio." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Vuoi nascondere i form completati correttamente?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Se questa casella è selezionata, Ninja Forms nasconderà il form dopo l'invio." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Limitazioni" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "L'utente deve essere collegato per poter visualizzare il form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Messaggio utente non collegato" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Se la casella di controllo \"collegato\" è selezionata, questo messaggio " "appare agli utenti che non hanno eseguito l'accesso." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limita invii" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Seleziona il numero di invii che questo form potrà accettare Lascia il campo " "vuoto se vuoi omettere il limite." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Messaggio di limite raggiunto" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Digita il messaggio che deve essere visualizzato quando questo form ha " "raggiunto il limite di invii e non saranno accettati ulteriori nuovi invii." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Impostazioni form salvate" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Impostazioni di base" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "L'aiuto di base di Ninja Forms va inserito qui." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Estendi Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "La documentazione sarà disponibile a breve." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Attivo" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Installato" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Impara di Più" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup/ripristino" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup di Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Ripristino di Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Ripristino dei dati riuscito." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importa campi preferiti" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Seleziona un file" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importa preferiti" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Non trovati campi preferiti" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Esporta campi preferiti" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Esporta campi" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Seleziona i campi preferiti da esportare." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Importazione preferiti riuscita." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Seleziona un file di campi preferiti valido." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importa un form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importa form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Esporta un form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Esporta form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Seleziona un form." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Importazione form riuscita." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Seleziona un file di form esportati valido." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importa/esporta dati inviati" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Impostazioni data" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Generale" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Impostazioni generali" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versione" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Formato data" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Il campo tenta di seguire le specifiche della %sfunzione date() del " "linguaggio PHP%s, ma non tutti i formati sono supportati." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Simbolo valuta" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Impostazioni reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Chiave sito reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Per ottenere la chiave sito per il tuo dominio, registrati %squi%s." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Chiave segreta reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Lingua reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "È la lingua usata per il test reCAPTCHA. Per ottenere il codice della lingua " "selezionata, fai clic %squi%s." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Se questa casella è selezionata, TUTTI i dati di Ninja Forms verranno rimossi " "dal database al momento dell'eliminazione. %sTutti i form e i dati inviati " "saranno irrecuperabili.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Disabilita avvisi amministratore" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Impedisce la visualizzazione da parte di Ninja Forms degli avvisi di " "amministrazione sulla dashboard. Per visualizzarli di nuovo, deseleziona l'opzione." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Questa impostazione rimuove COMPLETAMENTE qualsiasi componente correlato a " "Ninja Forms al momento dell'eliminazione del plug-in. Questo include i DATI " "INVIATI e i FORM. L'operazione è irreversibile." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Continua" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Impostazioni salvate" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etichette" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Etichette messaggio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Etichetta campo obbligatorio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Simbolo campo obbligatorio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Messaggio di errore visualizzato quando i campi obbligatori non sono tutti compilati." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Errore campo obbligatorio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Messaggio di errore antispam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Messaggio di errore Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Messaggio di errore timer" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Messaggio di errore JavaScript disabilitato" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Per favore inserisci un indirizzo email valido" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Etichetta di elaborazione invio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Ogni volta che un utente fa clic su \"Invio\", questo messaggio compare " "all'interno del pulsante per segnalare l'elaborazione dell'invio." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Etichetta password non corrispondente" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Questo messaggio compare quando un utente inserisce un valore non " "corrispondente nel campo della password." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licenze" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Salva e attiva" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Disattiva tutte le licenze" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Per attivare le licenze delle estensioni di Ninja Forms, bisogna prima " "%sinstallare e attivare%s le estensioni scelte. Le impostazioni delle licenze " "appaiono qui sotto." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Reimposta conversione dei form" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Reimposta conversione del form" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Se i tuoi vecchi form sono \"scomparsi\" dopo l'aggiornamento alla versione " "2.9, questo pulsante tenterà di riconvertirli per visualizzarli in 2.9. " "Tutti i form attuali rimarranno nella tabella \"Tutti i form\"." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Tutti i form attuali rimarranno nella tabella \"Tutti i form\". Durante " "questo procedimento, alcuni form potrebbero risultare duplicati." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Email amministratore" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Email utente" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms ha bisogno di aggiornare le notifiche dei form; fai clic %squi%s " "per iniziare l'aggiornamento." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms ha bisogno di aggiornare le impostazioni email; fai clic %squi%s " "per iniziare l'aggiornamento." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms ha bisogno di aggiornare la tabella dei dati inviati; fai clic " "%squi%s per iniziare l'aggiornamento." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Grazie per l'aggiornamento alla versione 2.7 di Ninja Forms. Aggiorna le " "eventuali estensioni Ninja Forms da " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "La versione dell'estensione File Upload di Ninja Forms in uso non è " "compatibile con la versione 2.7 di Ninja Forms. Deve essere almeno la " "versione 1.3.5. Aggiorna l'estensione con " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "La versione dell'estensione Save Progress di Ninja Forms in uso non è " "compatibile con la versione 2.7 di Ninja Forms. Deve essere almeno la " "versione 1.1.3. Aggiorna l'estensione con " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Aggiornamento database form" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms ha bisogno di aggiornare le impostazioni dei form; fai clic " "%squi%s per iniziare l'aggiornamento." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Elaborazione aggiornamento Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sContatta l'assistenza%s comunicando l'errore indicato sopra." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms ha completato tutti gli aggiornamenti disponibili." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Vai ai form" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Aggiornamento Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Aggiornamento" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Aggiornamenti completati" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms deve elaborare %s aggiornamento/i. L'operazione può richiedere " "alcuni minuti. %sAvvia aggiornamento %s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Esecuzione fase %d su approssimativamente %d" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Stato sistema Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Livello di sicurezza" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Molto debole" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Vulnerabile" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Media" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Solido" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Non corrispondente" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Seleziona una voce" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Se sei un essere umano e vedi questo campo, lascialo vuoto." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "I campi contrassegnati con * sono obbligatori." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Campo obbligatorio." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Verifica i campi obbligatori." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Calcolo" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Numero di cifre decimali." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Casella di testo" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Visualizza calcolo come" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etichetta" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Vuoi disabilitare l'immissione?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Usa il seguente shortcode per inserire il calcolo finale: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Puoi inserire le equazioni di calcolo qui usando \"field_x\", dove x è l'ID " "del campo che vuoi usare. Ad esempio, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Puoi formulare equazioni più complesse aggiungendo le parentesi: %s( field_45 " "* field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Usa questi operatori: + - * /. Questa è una funzione avanzata. Fai attenzione " "a dettagli come la divisione per 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Calcola automaticamente i totali" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Specifica operazioni e campi (funzione avanzata)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Usa un'equazione (funzione avanzata)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Metodo di calcolo" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Operazioni nei campi" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Aggiungi operazione" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Equazione avanzata" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Nome calcolo" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Questo è il nome di programmazione del campo. Ad esempio: mio_calc, " "prezzo_totale, totale-utente." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Valore predefinito" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Classe CSS personalizzata" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Seleziona un campo" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Casella di controllo" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Deselezionato" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Selezionato" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Mostra questo" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Nascondi questo" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Cambia valore" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeria" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Samoa Americane" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antartide" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua e Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaigian" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrein" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Bielorussia" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgio" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia ed Erzegovina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Isola Bouvet" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasile" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Territorio britannico dell'Oceano Indiano" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Sultanato del Brunei" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambogia" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Camerun" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Capo Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Isole Cayman" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Repubblica Centrafricana" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Ciad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Cile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Cina" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Isola di Natale" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Isole Cocos (Keeling)" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comore" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Congo, Repubblica Democratica del" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Isole Cook" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Costa d'Avorio" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croazia (nome locale: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cipro" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Repubblica Ceca" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Danimarca" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Gibuti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Repubblica Dominicana" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Timor Est)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egitto" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Guinea Equatoriale" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Isole Falkland (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Isole Faroe" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Figi" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlandia" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Francia" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Francia, area metropolitana" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Guyana francese" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polinesia Francese" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Terre australi e antartiche francesi" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Germania" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibilterra" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grecia" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Groenlandia" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadalupa" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Isole Heard e McDonald" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Stato della Città del Vaticano (Santa Sede)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Ungheria" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islanda" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran, Repubblica Islamica di" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraq" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlanda" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israele" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italia" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Giamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Giappone" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Giordania" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakistan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Corea, Repubblica Popolare Democratica di" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Corea, Repubblica di" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirghizistan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos, Repubblica Popolare Democratica del" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Lettonia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Libano" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Gran Giamahiria Araba Libica" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lituania" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Lussemburgo" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macao" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Macedonia, ex Repubblica Jugoslava di" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malesia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldive" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Isole Marshall" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinica" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Messico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Micronesia, Stati Federati di" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldova, Repubblica di" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marocco" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambico" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Paesi Bassi" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antille Olandesi" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nuova Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nuova Zelanda" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Isola Norfolk" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Isole Marianne Settentrionali" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norvegia" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua Nuova Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Perù" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filippine" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polonia" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portogallo" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Porto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Federazione Russa" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts e Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Santa Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent e Grenadine" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "São Tomé e Príncipe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Arabia Saudita" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovacchia (Repubblica Slovacca)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Isole Salomone" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Sud Africa" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Georgia del Sud e Isole Sandwich Meridionali" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spagna" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Sant'Elena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint Pierre e Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Isole Svalbard e Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Svezia" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Svizzera" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Repubblica Araba Siriana" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tagikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania, Repubblica Unita di" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Tailandia" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad e Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turchia" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Isole Turks e Caicos" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ucraina" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Emirati Arabi Uniti" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Regno Unito" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Stati Uniti" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Isole Minori Esterne degli Stati Uniti d'America" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Isole Vergini (britanniche)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Virgin Islands (statunitensi)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis e Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Sahara Occidentale" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Jugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Paese" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Paese predefinito" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Usa una prima opzione personalizzata" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Prima opzione personalizzata" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sudan del Sud" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Carta di Credito" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etichetta numero di carta" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Numero di Carta di Credito" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Descrizione numero di carta" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "Il numero (generalmente di 16 cifre) sulla parte anteriore della carta di credito." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Etichetta numero CVC carta" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Descrizione numero CVC carta" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Il numero di sicurezza di 3 cifre (sul retro) o di 4 cifre (sul davanti) della carta di credito." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Etichetta nome carta" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Il nome sulla carta di credito." #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Descrizione nome carta" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Il nome stampato sulla parte anteriore della carta di credito." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Etichetta mese di scadenza carta" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Il mese di scadenza (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Descrizione mese di scadenza carta" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Il mese in cui scade la carta di credito, normalmente indicato sulla parte anteriore." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etichetta anno di scadenza carta" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "L'anno di scadenza (AAAA)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Descrizione anno di scadenza carta" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "L'anno in cui scade la carta di credito, normalmente indicato sulla parte anteriore." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Testo" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Elemento di testo" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Campo nascosto" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID utente (se collegato)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Nome utente (se collegato)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Cognome Utente(se loggato)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Nome pubblico dell’utente (se loggato)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Email Utente (se loggato)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "ID Articolo / Pagina (se disponibile)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Titolo Articolo / Pagina (se disponibile)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL Articolo / Pagina (se disponibile)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Data Odierna" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variabile della querystring" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Questa è una parola chiave riservata di WordPress. Riprova." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Questo è un indirizzo email?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Se questa casella è selezionata, Ninja Forms valida l’input come un " "indirizzo mail." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Inoltra una copia del form a questo indirizzo?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Se questo campo è selezionato, Ninja Forms inoltrerà una copia di questo form " "(e qualsiasi messaggio allegato) a questo indirizzo." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honeypot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "ora" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Elenco" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Questo è lo stato dell'utente." #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valore selezionato" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Aggiungi valore" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Rimuovi valore" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calcolo" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Menù a discesa" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Caselle di controllo" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multiselezione" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Tipo elenco" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Dimensioni casella multiselezione" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importa voci elenco" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Mostra valori voci elenco" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importa" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Per usare questa funzione, puoi incollare il file CSV nell'area di testo qui sopra." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Il formato dovrebbe essere il seguente:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "etichetta,valore,calcolo" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "Se vuoi inviare un valore o un calcolo vuoto, inserisci il simbolo \"." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Selezione effettuata" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Numero" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Valore minimo" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Valore massimo" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Incremento (quantità dell'incremento)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizzatore" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Password" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Usa questo campo come password di registrazione" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Se questa casella è selezionata, verrà visualizzato il campo della password e " "anche quello della password di conferma." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Etichetta password di conferma" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Password di conferma" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Mostra indicatore dell'efficacia della password" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Suggerimento: La password deve contenere almeno sette caratteri. Per renderla " "più complessa, usa lettere sia maiuscole sia minuscole, numeri e simboli come " "! \" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Le password non corrispondono" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Valutazione con stelline" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Numero di stelline" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Conferma di non essere un bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Compila il campo CAPTCHA" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Assicurati di aver immesso le chiavi del sito e segreta correttamente." #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Mancata corrispondenza CAPTCHA. Immetti il valore corretto nel campo CAPTCHA." #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Antispam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Domanda spam" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Risposta spam" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Invia" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Tassa" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Percentuale tassa" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Deve essere immessa come percentuale (es., 8,25%, 4%)" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Area testo" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Mostra editor testo RTF" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Mostra pulsante di caricamento media" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Disabilita editor testo RTF su cellulari" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Vuoi convalidare come indirizzo email? (Il campo deve essere obbligatorio)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Disabilita l'immissione" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Calendario" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefono - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Valuta" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Definizione maschera personalizzata" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Aiuto" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Invio temporizzato" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Testo del pulsante Invio dopo la scadenza del timer" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Attendi %n secondi" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "Il segnaposto %n indica il numero di secondi." #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Numero di secondi per il conto alla rovescia" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Questo è il tempo che l'utente deve attendere prima di poter inviare il form" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Se sei un essere umano, rallenta." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Per l'invio di questo form, è necessario JavaScript. Abilitalo e riprova." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Mappatura campi di elenco" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Gruppi di interesse" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Singolo" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Più" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "List" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Aggiorna" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Metabox invio" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "User Meta (se collegato)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Acquisisci pagamento" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Nessun form trovato." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Data di creazione" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "titolo" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "aggiornato" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Tentativo non riuscito" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Articolo genitore:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Tutti gli Elementi" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Aggiungi Nuovo Elemento" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nuovo elemento" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Modifica Elemento" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Aggiorna Elemento" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Vedi elemento" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Cerca elemento" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Non trovato nel carrello" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Modulo di sottoscrizione" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Info invio" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Aggiungi un Nuovo Form" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Errore di importazione modello del form." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Campi" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Il formato del file caricato non è valido." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Caricamento form non valido." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importa form" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Esporta form" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Equazione (funzione avanzata)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operazioni e campi (funzione avanzata)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Campi totale automatico" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Il file caricato supera la specifica upload_max_filesize definita in php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Il file caricato supera la specifica MAX_FILE_SIZE definita nel form HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Il file è stato solo parzialmente caricato." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Nessun file caricato" #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Manca una cartella temporaria." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Impossibile scrivere il file su disco." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Il file ha una estensione non permessa." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Errore di caricamento sconosciuto." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Errore di caricamento del file" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Licenze componente aggiuntivo" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrazioni e dati di simulazione completi. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Visualizza form" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Salva i settaggi" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Indirizzo IP del server" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Nome host" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Aggiungi form Ninja" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Form non trovato" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Campo non trovato" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Si è verificato un errore inaspettato." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "L'anteprima non esiste" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Gateway pagamento" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Totale del pagamento" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Tag di ancoraggio" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Digita l'indirizzo email o cerca un campo" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Digita il testo dell'oggetto o cerca un campo" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Allega CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Indirizzo URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Etichetta qui" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Testo di aiuto qui" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Digita l'etichetta del campo del form. Permette agli utenti di identificare i " "singoli campi." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Valore predefinito form" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Nascondi" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Seleziona la posizione dell'etichetta in relazione al campo stesso." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Campo obbligatorio" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Garantisce che il campo sia compilato prima di consentire l'invio del form." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Opzioni numeriche" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Massimo" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Step" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Options" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Uno" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "uno" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Due" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "due" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Tre" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "tre" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Calcolo" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Limita il tipo di immissioni consentite dal campo." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "none" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Telefono USA" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "personalizzato" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Maschera personalizzata" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Rappresenta un carattere alfabetico " "(A-Z, a-z) e permette unicamente l'immissione di lettere.
    • " "\n
    • 9 - Rappresenta un carattere numerico (0-9) " "e permette unicamente l'immissione di " "cifre.
    • \n
    • * - Rappresenta un carattere " "alfanumerico (A-Z, a-z, 0-9) e consente l'immissione sia di lettere che di " "cifre.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Limita valore immesso a questo numero" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Carattere/i" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Parola/e" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Testo da visualizzare dopo il contatore" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Caratteri rimasti" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Digita il testo che vuoi visualizzare nel campo prima dell'immissione da " "parte dell'utente." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Nomi classi personalizzate" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Contenitore" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Aggiunge un'ulteriore classe al wrapper del campo." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Elemento" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Aggiunge un'ulteriore classe all'elemento del campo." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "GG/MM/AAAA" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "GG-MM-AAAA" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/GG/AAAA" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-GG-AAAA" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "AAAA-MM-GG" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "AAAA/MM/GG" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Venerdì 18 novembre 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Usa la data odierna come predefinita" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Numero di secondi per l'invio temporizzato." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Chiave Modulo" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Crea una chiave univoca che identifica il campo per lo sviluppo personalizzato." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Etichetta usata quando si visualizzano ed esportano i dati inviati." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Compare agli utenti quando ci passano sopra il mouse." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Descrizione" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Ordina numericamente" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Questa colonna nella tabella dati inviati sarà ordinata in base al numero." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Numero di secondi per il conto alla rovescia" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Usa questo campo come password di registrazione. Se questa casella è " "selezionata, verrà visualizzato il campo della password e anche quello della " "password di conferma." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Conferma" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Permette di immettere testo formattato." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Etichetta di elaborazione" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Valore di calcolo selezionato" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Questo è il numero che verrà usato nei calcoli se la casella è selezionata." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Valore di calcolo non selezionato" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Questo è il numero che verrà usato nei calcoli se la casella non è selezionata." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Visualizza questa variabile di calcolo" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Seleziona una variabile" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Prezzo" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Usa quantità" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Permette agli utenti di scegliere più di un'unità di prodotto." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Tipo di prodotto" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Prodotto singolo (predefinito)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multiprodotto - Elenco a discesa" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multiprodotto - Scelta fra molti" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multiprodotto - Scelta singola" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Immissione utente" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Prezzo" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Opzioni di costo" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Costo singolo" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Elenco a discesa di costo" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Tipo di costo" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Prodotto" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Seleziona un prodotto" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Rispondere" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Risposta che aiuta a impedire che il form venga usato per inviare spam (fa differenza tra maiuscole e minuscole)." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Tassonomia" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Aggiungi nuovi termini" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Questo è uno stato dell'utente." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Usato per contrassegnare un campo per l'elaborazione." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Campi salvati" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Campi comuni" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Campi di informazioni utente" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Campi di prezzi" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Campi di layout" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Campi vari" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Il modulo è stato inviato." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Inoltro moduli ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Salva inoltro" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Nome variabile" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Equazione" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Posizione etichetta predefinita" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Chiave Modulo" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Nome di programmazione utilizzabile per fare riferimento al form." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Aggiungi pulsante di invio" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Abbiamo notato che il tuo form non include il pulsante di invio. Possiamo " "aggiungerlo automaticamente, se vuoi." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Login Eseguito" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Si applica all'anteprima del form." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Limite sottoscrizioni" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "NON si applica all'anteprima del form." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Impostazioni di visualizzazione" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Calcoli" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Prezzo:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Quantità:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Aggiungi" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Apri in una nuova finestra" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Se sei un essere umano e vedi questo campo, lascialo vuoto." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Disponibile" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Immetti un indirizzo email valido." #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Questi campi devono corrispondere." #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Errore numero min" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Errore numero max" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Incrementa di " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Inserisci link" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Inserisci media" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Correggi gli errori prima di inviare il form." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Errore Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Caricamento file in corso." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "CARICAMENTO FILE" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Tutti i Campi" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Sequenza secondaria" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Post ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Titolo post" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL articolo" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP Address" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID Utente" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Nome" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Cognome" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Nome da visualizzare" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Stili \"opinionated\"" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Chiaro" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Scuro" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Usa le convenzioni di stile Ninja Forms predefinite." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Ripristina" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Ripristina la versione 2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Ripristina la release 2.9.x più recente." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/g/A" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Impostazioni reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Tema reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Editor testo RTF" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Configurazione avanzata" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Amministrazione" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Form vuoti" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Contattatemi" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Simulazione messaggio di operazione completata" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "{field:name}, grazie per aver compilato il form." #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Simulazione email" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Questa è un’azione email." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Salve, Ninja Forms." #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Simulazione salvataggio" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Questo è un test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Questo è un altro test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Aiuto" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "In che cosa possiamo aiutarti?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "D’accordo?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Metodo di contatto preferito?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telefono" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Posta ordinaria" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Invia" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Lavello della cucina" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Seleziona elenco" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Opzione uno" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Opzione due" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Opzione tre" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Elenco pulsanti di scelta" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Lavandino" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Elenco caselle di controllo" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Questi sono tutti i campi nella sezione Informazioni utente." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Indirizzo" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Città" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "CAP" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Questi sono tutti i campi nella sezione Prezzi." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Prodotto (inclusa quantità)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Prodotto (esclusa quantità)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Quantità" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Totale" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Nome completo carta di credito" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Numero carta di credito" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Numero CVC carta di credito" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Scadenza carta di credito" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "CAP carta di credito" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Questi sono vari campi speciali." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Domanda antispam (Risposta = risposta)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "risposta" #: includes/Database/MockData.php:805 msgid "processing" msgstr "elaborazione in corso" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Form lungo - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Campi" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Campo n." #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Form di iscrizione email" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Indirizzo email" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Immetti il tuo indirizzo email" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Iscriviti" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Form prodotto (con campo Quantità)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Acquisto" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Hai acquistato " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "prodotti per " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Form prodotto (quantità in linea)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " prodotti per " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Form prodotto (molteplici prodotti)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Prodotto A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Quantità di prodotto A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Prodotto B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Quantità di prodotto B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "di prodotto A e " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "di prodotto B per $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Form con calcoli" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "I miei primi calcoli" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "I miei secondi calcoli" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "I calcoli vengono presentati con la risposta AJAX (risposta -> dati -> calcoli" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Copia" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Salva modulo" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "CAP carta di credito" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Per vedere l'anteprima di un form, devi aver eseguito il login." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Nessun campo trovato." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Avviso: shortcode Ninja Forms usato senza specificare il form." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "shortcode Ninja Forms usato senza specificare il form." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Indirizzo (riga 2)" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Pulsante" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Casella di controllo singola" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "selezionata" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "non selezionata" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Numero CVC carta di credito" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "g-m-A" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-g-A" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "A-m-g" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divisore" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Scegli" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Regione/Stato" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Il testo della nota può essere modificato nelle impostazioni avanzate del campo nota, qui sotto." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Note" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Conferma password" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "password" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "ReCAPTCHA" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Completa il test reCAPTCHA" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Spedizione avanzata" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Domanda" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Posizione domanda" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Risposta errata" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Numero di stelline" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Elenco termini" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Nessun termine disponibile per questa tassonomia. %sAggiunti un termine%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Nessuna tassonomia selezionata" #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Termini disponibili" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Testo del paragrafo" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Testo su una linea sola" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Codice di avviamento postale (CAP) " #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Articolo" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Stringhe di query" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Stringa di query" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Sistema" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Utilizzatore" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " necessita di aggiornamento. Hai la versione " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " installata. La versione attuale è " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Modifica campo" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Nome etichetta" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Sopra il campo" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Sotto il campo" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "A sinistra del campo" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "A destra del campo" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Nascondi etichetta" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Nome classe" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Campi base" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Multiselezione" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Aggiungi nuovo campo" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Aggiungi nuova azione" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Espandi menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Pubblica" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBBLICA" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Caricamento in corso" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Visualizza modifiche" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Aggiungi campi form" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Inizia aggiungendo il tuo primo campo al form." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Aggiungi nuovo campo" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Fai clic qui e seleziona i campo che preferisci." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Facile, no? Oppure..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Inizia con un modello" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Contattaci" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Permetti agli utenti di contattarti con questo semplice form di contatto. " "Puoi aggiungere e rimuovere campi secondo la necessità." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Richiesta di preventivo" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Gestisci con facilità le richieste di preventivo dal tuo sito web con questo " "modello. Puoi aggiungere e rimuovere campi secondo la necessità." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Registrazione a eventi" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Consenti agli utenti di registrarsi al tuo prossimo evento con questo form di " "facile compilazione. Puoi aggiungere e rimuovere campi secondo la necessità." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Form di iscrizione alla newsletter" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Aumenta il numero di iscritti e amplia la tua mailing list con questo form di " "iscrizione alla newsletter. Puoi aggiungere e rimuovere campi secondo la necessità." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Aggiungi azioni al form" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Inizia aggiungendo il tuo primo campo al form. Fai clic sul segno più e " "seleziona le azioni da aggiungere. Facile, no?" #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplica (^ + C + clic)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Elimina (^ + D + clic)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Azione" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Apri/chiudi cassetto" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Schermo intero" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Metà schermo" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Annulla" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Fatto" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Annulla tutto" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Annulla tutto" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Abbiamo quasi terminato..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Non ancora" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Apri in una nuova finestra" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Disattiva" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Aggiustalo." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Seleziona un form" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Data" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Prima di chiedere aiuto al nostro team dell’assistenza, consulta:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Documentazione Ninja Forms THREE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Che cosa provare prima di contattare l’assistenza" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Ambito dell'assistenza" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importa campi" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Data aggiornamento: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Data invio: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Autore invio: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Dati invio" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Vedi" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Mostra tutto" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Modifica campo" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Campi form" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Anteprima modifiche" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Modulo di contatto" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Ops! Tale componente aggiuntivo non è ancora compatibile con Ninja Forms " "THREE. %sPer saperne di più%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "È stata eseguita la disattivazione di %s." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Aiutaci a migliorare Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Se ti iscrivi, alcuni dati riguardanti l'installazione di Ninja Forms " "verranno inviati a NinjaForms.com (ESCLUSI i tuoi invii)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Se preferisci ignorare questo invito, non importa. Ninja Forms funzionerà bene ugualmente." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sPermetti%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sNon permettere%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Non hai l'autorizzazione." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Autorizzazione negata" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEBUG: Passa a 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEBUG: Passa a 3.0.x" lang/ninja-forms-da_DK.po000064400000634232152331132460011222 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Bemærk: JavaScript er nødvendig til dette indhold." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Snyder du?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Felter markeret med en %s*%s skal udfyldes" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Sørg for, at alle påkrævede felter er udfyldt." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Dette felt skal udfyldes" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Du bedes besvarer anti-spam spørgsmålet korrekt." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Efterlad spamfeltet tomt." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Vent med at indsende formularen." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Du kan ikke indsende formularen uden af have Javascript aktiveret." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Indtast venligst en gyldig e-mail-adresse." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Behandler" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "De angivne adgangskoder stemmer ikke overens" #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Tilføj formular" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Vælg en formular eller en type, som der skal søges efter" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Annuller" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Sæt ind" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Ugyldigt formular-id" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Forøg konverteringer" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Vidste du, at du kan forøge formularkonverteringer ved at bryde store " "formularer op i mindre, mere brugervenlige dele?

    Udvidelsen Multi-Part " "Forms for Ninja Forms gør dette nemt og hurtigt.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Lær mere om Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Måske senere" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Afbryd" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Det er mere sandsynligt, at brugere vil fuldføre lange formularer, når de kan " "gemme og vende tilbage for at gøre deres indsendelse færdig på et senere " "tidspunkt.

    Udvidelsen Save User Progress for Ninja Forms gør dette nemt og hurtigt.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Lær mere om Save User Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "E-mail" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Fra-navn" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Navn eller felter" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "E-mail vil se ud til at være fra dette navn." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Fra-adresse" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "En e-mailadresse eller felt" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "E-mail vil se ud til at være fra denne e-mailadresse." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Til" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "E-mailadresser eller søg efter et felt" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Hvem skal denne e-mail sendes til?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Emne" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Emnetekst eller søg efter et felt" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Dette vil være e-mailens emne." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "E-mailbesked" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Vedhæftninger" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Indsendelses-CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Avancerede indstillinger" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Ren tekst" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Svar til" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Videresend" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Success besked" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Før-formular" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Efter-formular" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Område" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Besked" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "dupliker" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Deaktiver" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Aktivér" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Rediger" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Slet" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplikat" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Navn" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Type" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Dato er opdateret" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "– Vis alle typer" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Få flere typer" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "E-mail og handlinger" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Tilføj ny" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Ny handling" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Rediger handling" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Tilbage til liste" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Handlingsnavn" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Få flere handlinger" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Handling opdateret" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Vælg et felt eller en type, som der skal søges efter" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Indsæt felt" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Indsæt alle felter" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Vælg en formular for at se indsendelser" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Ingen indsendelser fundet" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Indsendelser" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Indsendelse" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Tilføj ny indsendelse" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Rediger indsendelse" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Ny indsendelse" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Vis indsendelse" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Søg indsendelser" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Der blev ikke fundet nogen indsendelser i papirkurven" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Dato" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Rediger dette produkt" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Eksportér dette element" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Eksportér" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Flyt dette produkt til papirkurven" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Papirkurv" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Genskab dette produkt fra papirkurven" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Genskab" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Slet dette produkt permanent" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Slet Permanent" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Ikke offentliggjort" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s siden" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Indsendt" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Vælg en formular" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Start dato" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Slut dato" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s opdateret." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Brugerdefineret felt opdateret." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Brugerdefineret felt slettet.." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s gendannet til revision fra %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s udgivet." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s gemt." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s indsendt. Forhåndsvisning af %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s planlagt for: %2$s. Forhåndsvisning af %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s kladde er opdateret. Forhåndsvisning af %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Hent alle indsendelser" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Tilbage til liste" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Brugerindsendte værdier" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Indsendelsesstatistikker" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Felt" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Værdi" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formular" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Indsendt d." #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Ændret d." #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Indsendt af" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Opdatér" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Dato indsendt" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms kan ikke netværkaktiveres. Gå til hver websites kontrolpanel for " "at aktivere plugin-programmet." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Du vil finde dette inkluderet i din købs-e-mail." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Nøgle" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Kunne ikke aktivere licens. Bekræft din licensnøgle." #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Deaktivér licens" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Bruger indsendte værdier" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Tak fordi at du udfyldte denne formular." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Der er en ny version af %1$s tilgængelig. Vis detaljer om version %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Der er en ny version af %1$s tilgængelig. Vis detaljer om version %3$s eller opdater nu." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Du har ikke tilladelse til at installere plugin-opdateringer" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Fejl 404" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standardfelter" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Layoutelementer" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Oprettelse af postering" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Vurder %sNinja Forms%s %s på %sWordPress.org%s for at hjælpe os, så dette " "plugin-program kan forblive gratis. Tak fra WP Ninjas-teamet!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Vis titel" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Ingen" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formularer" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Alle formularer" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Opgraderinger til Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Opgraderinger" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importér/Eksportér" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importér/Eksportér" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja-formularindstillinger" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Indstillinger" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "System Status" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Tilføjelsesprogrammer" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Forhåndsvisning" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Gem" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "tegn tilbage" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Vis ikke disse betingelser" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Gem valg" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Forhåndsvisning af formular" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Opgrader til Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Du er kvalificeret til at opgradere til Ninja Forms THREE Release Candidate! " "%sOpgrader nu%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE kommer snart!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "En større opdatering til Ninja Forms er på vej. %sLær mere om nye funktioner, " "bagudkompabilitet og flere ofte stillede spørgsmål.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Hvordan går det?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Tak fordi du bruger Ninja Forms! Vi håber, at du har fundet alt det, du skal " "bruge, men hvis du har nogen spørgsmål:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Se vores dokumentation" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Få hjælp" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Rediger menu punkt" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Vælg alle" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Tilføj en Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Hvilket navn vil du give denne favorit?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Du skal give denne favorit et navn." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Er du sikker på, at du vil deaktivere alle licenser?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Nulstil formularkonverteringsprocessen for v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Fjern ALLE Ninja Forms-data ved afinstallering?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Rediger formular" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Gemt" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Gemmer ..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Fjern dette felt? Den vil blive fjernet, selvom du ikke gemmer." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Vis indsendelser" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms behandler" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms – behandler" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Indlæser..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Ingen handling angivet..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Processen er begyndt, vent venligst. Dette kan vare adskillige minutter. Du " "vil automatisk blive omdirigeret, når processen er færdig." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Velkommen til Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Tak fordi du opdaterer! Ninja Forms %s gør det nemmere end nogensinde før at " "bygge formularer!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Velkommen til Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ændringslog til Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Kom godt i gang med Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "De personer, som bygger Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Hvad er nyt" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Introduktion" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Anerkendelser" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Version %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "En simplificeret og mere effektiv oplevelse med at bygge formularer." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Ny byggefane" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Når du opretter og redigerer formularer, kan du gå direkte til den sektion, " "der betyder mest." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Feltindstillinger, som er organiseret bedre" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "De mest almindelige indstillinger vises øjeblikkeligt, mens andre ikke så " "vigtige indstillinger er gemt væk indeni sektioner, som kan udvides." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Forbedret tydelighed" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Sammen med fanen \"Byg din formular\" har vi fjernet \"Notifikationer\" til " "fordel for \"E-mails og handlinger\". Dette er en meget mere tydelig " "indikation af, hvad der kan gøres fra dette faneblad." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Fjern alle Ninja Forms-data" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Vi har tilføjet valget om at fjerne alle Ninja Forms-data (indsendelser, " "formularer, felter, valgmuligheder), når du sletter plugin-programmet. Vi " "kalder det for kernevalget." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Bedre licensadministration" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Deaktivér Ninja Forms-udvidelseslicenser individuelt eller som en gruppe fra " "fanebladet med indstillinger." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Der kommer mere" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Opdateringerne til grænsefladen i denne version lægger fundamentet for nogle " "fantastiske forbedringer i fremtiden. Version 3.0 vil bygge på disse " "ændringer for at gøre Ninja Forms til et endnu mere stabilt, effektivt og " "brugervenligt formularbyggeprogram." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Dokumentation" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Se vores dybdegående dokumentation til Ninja Forms nedenfor." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Dokumentation til Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Få support" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Vend tilbage til Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Vis den fulde ændringslog" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Fuld ændringslog" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Gå til Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Brug de gode råd nedenfor for at komme i gang med at bruge Ninja Forms. Du " "vil være oppe og køre på ingen tid!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Alt om formularer" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Menuen Formularer er dit adgangspunkt for alt, hvad der har med Ninja Forms " "at gøre. Vi har allerede oprettet din første %skontaktformular%s, så du har " "et eksempel. Du kan også oprette din egen ved at klikke på %sTilføj ny%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Byg din formular" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Det er her, at du kan bygge din formular ved at tilføje felter og trække dem " "i den rækkefølge, som du vil have dem vist. Hvert felt vil have forskellige " "valgmuligheder, såsom etiket, etiketplacering og pladsholder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "E-mails og handlinger" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Hvis du ønsker, at din formular skal underrette dig via e-mail, når en bruger " "klikker på Indsend, kan du opstille disse på dette faneblad. Du kan oprette " "et ubegrænset antal e-mails, inklusive e-mails, som sendes til den bruger, " "der udfyldte formularen." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Dette faneblad indeholder generelle formularindstillinger, såsom titel og " "indsendelsesmetode, såvel som visningsindstillinger, såsom at skjule en " "formular, når der er blevet udfyldt." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Visning af din formular" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Føj til side" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Under Grundlæggende formularadfærd i Formularindstillinger kan du nemt vælge " "en side, som du ønsker formularen automatisk tilføjet til i slutningen af den " "pågældende sides indhold. Et lignende valg er tilgængeligt i hver skærm til " "indholdsredigering i dens sidepanel." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Kortkode (Shortcode)" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Anbring %s i ethvert område, som accepterer shortcodes for at vise din " "formular, hvor som helst du ønsker den. Selv midt på siden eller i midten af " "af posteringsindhold." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms stiller en widget til rådighed, som du kan anbringe i ethvert " "widgetiseret område på din website, og vælge nøjagtigt hvilken formular, du " "ønsker vist i det pågældende område." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Skabelonfunktion" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms leveres også med en simpel skabelonfunktion, som kan anbringes " "direkte i en php-skabelonfil. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Har du brug for hjælp?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Voksende dokumentation" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Dokumentation er tilgængelig, som dækker alt fra %sFejlfinding%s til vores " "%sUdvikler-API%s. Der tilføjes hele tiden nye dokumenter." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Den bedste support i branchen" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Vi gør alt hvad vi kan for at give hver Ninja Forms-bruger den bedst mulige " "support. Hvis du kommer ud for at problem eller har et spørgsmål, %sbedes du " "kontakte os%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Tak fordi du opdaterer til den seneste version! Ninja Forms %s er instrueret " "til at gøre din oplevelse med at administrere indsendelser til en fornøjelse!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms er udviklet af et verdensomspændende team af udviklere, hvis mål " "det er at levere det bedste WordPress community formularoprettelses-plugin." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Der blev ikke fundet nogen gyldig ændringslog." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Vis %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Deaktivér Autofuldførelse i browser" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sAfkrydset%s beregningsværdi" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Dette er den værdi, der vil blive brugt, hvis %safkrydset%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sIkke afkrydset%s beregningsværdi" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Dette er den værdi, der vil blive brugt, hvis %sikke afkrydset%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Inkludér i auto-total (hvis funktionen er aktiveret)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Brugerdefinerede CSS-klasser" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Før alt" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Før etiket" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Efter etiket" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Efter alt" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Hvis \"desc text\" er aktiveret, vil der være et spørgsmålstegn %s ved siden " "af indtastningsfeltet. Hvis du peger på dette spørgsmålstegn med musen, vil " "det vise beskrivelsesteksten." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Tilføj beskrivelse" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Placering af beskrivelse" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Beskrivelsesindhold" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Hvis \"Hjælpe tekst\" er aktiveret, så vil der være et " "spørgsmålstegn %s placeres ved siden af indtastningsfeltet. " "Når man holder muse markøren over dette " "spørgsmålstegn, vil hjælpeteksten vise sig." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Vis hjælpe tekst" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Hjælpe tekst" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Hvis du lader feltet være tomt, vil der ikke være nogen grænse" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Begræns indtastning til dette tal" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "af" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Tegn" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Ord" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Tekst, som skal vises efter tegn/ordtæller" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Til venstre for elementet" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Over elementet" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Under elementet" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Til højre for elementet" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Inden i elementet" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Etikette placering" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Felt-id" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Indstillinger for begrænsning" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Beregningsindstillinger" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Fjern" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Udfyld dette med taksonomien" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Ingen" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Placeholder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "påkrævet" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Gem feltindstillinger" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sortér som numerisk" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Hvis dette felt er afkrydset, vil denne kolonne i indsendelsesskemaet blive " "sorteret efter tal." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Administrationsetiket" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Dette er den etiket, som vil blive brugt, når der vises/redigeres/eksporteres indsendelser." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Fakturering" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Forsendelse" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Brugerdefineret" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Feltgruppe for brugerinfo" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Brugerdefineret feltgruppe" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Inkluder disse oplysninger, når der bedes om support:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Generér systemrapport" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Miljø" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Hjemme URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Hjemmeside URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Version af Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite aktiveret" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Ja" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Nej" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Oplysninger om webserver" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP Version" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP-lokalitet" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Debug Mode" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP-sprog" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Standard" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Maks. størrelse på upload på WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Indlæg Max Størrelse" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Maks. input indlejringsniveau" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Installed" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Standardtidszone" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Standard tidszone er %s - Det bør være UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Standardtidszone er %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Din server har fsockopen og cURL aktiveret." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Din server har fsockopen aktiveret, og cURL er deaktiveret." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Din server har cURL aktiveret, og fsockopen er deaktiveret." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Din server har ikke fsockopen eller cURL aktiveret - PayPal IPN og andre " "script som kommunikerer med andre servere vil ikke fungere. Kontakt din " "webhosting leverandør." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP-klient" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Din server har SOAP-klientklassen aktiveret." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Din server har ikke %sSOAP-klientklassen%s aktiveret – visse gateway-plugins, " "som bruger SOAP, vil måske ikke fungere som forventet." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP-fjernpostering" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() lykkedes – PayPal IPN fungerer." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() mislykkedes. PayPal IPN vil ikke fungere med din server. " "Kontakt din hostingudbyder. Fejl:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() mislykkedes. PayPal IPN fungerer måske ikke med din server." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Installerede plugins" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Gå Til Plugin Siden" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "af" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "version" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Giv din formular en titel. Sådan finder du formularen på et senere tidspunkt." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Du har ikke føjet en indsendelsesknap til din formular." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Indtastnings maske" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Et tegn, du placere i \"Brugerdefineret Maske\" boksen, der ikke er i listen " "nedenfor, vil automatisk blive registreret for brugeren, imens der tastes og " "vil ikke kunne fjernes igen" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Disse er de foruddefinerede maskerings tegn" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Repræsenterer et alpha tegn (A-Z, a-z) - Kun muligt bogstaver skal indtastes" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Repræsenterer en numerisk tegn (0-9) - Kun muligt tal skal indtastes" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Repræsenterer et alfanumerisk tegn (A-Z, a-z,0-9) - Dette tillader, " "at både tal og bogstaver kan indtastes" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Så hvis du ville oprette en maske for et amerikansk cpr-nr., skal du indtaste " "999-99-9999 i feltet" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "9'erne repræsentere et vilkårligt nummer, og -s automatisk vil " "blive tilføjet " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Dette ville forhindre brugeren at indsætte andet end tal" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Du kan også kombinere disse til specifikke applikationer" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "For eksempel, hvis du havde en produktnøgle, der var i form af " "A4B51.989.B.43C kan du maskere det med: a9a99.999.a.99a, som ville tvinge " "alle a'erne til at være bogstaver og 9'erne til være tal" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Definerede felter" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Yndlingsfelter" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Betalingsfelter" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Skabelonfelter" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Brugeroplysninger" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Alle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Bulk Handlinger" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Anvend" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formularer per side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Fortsæt" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Gå til første side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Gå til forrige side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Nuværende side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Gå til næste side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Gå til den sidste side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Formulartitel" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Slet denne formular" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Kopiér formular" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formularer er slettet" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formular er slettet" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Forhåndsvising af formular" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Visning" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Vis formular titel" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Føj formular til denne side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Indsend via AJAX (uden genindlæsning af side)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Ryd fuldført formular?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Hvis dette felt er afkrydset, vil Ninja Forms rydde formularværdierne, efter " "den er blevet indsendt." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Skjul fuldført formular?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Hvis dette felt er afkrydset, vil Ninja Forms skjule formularen, når " "den er blevet korrekt indsendt." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Begrænsninger" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Skal det kræves at brugeren er logget ind for at se formularen?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Meddelelse for ikke logget ind" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Meddelelse, som vises til brugere, hvis afkrydsningsfeltet \"Logget ind\" " "ovenfor er afkrydset, og de ikke er logget ind." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Begræns indsendelser" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Vælg det antal indsendelser, som denne formular vil acceptere. Lad det være " "tomt, hvis ikke er nogen grænse." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Meddelelse om grænse nået" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Indtast en meddelelse, som du ønsker vist, når denne formular har nået dens " "indsendelsesgrænse, og ikke vil acceptere nye indsendelser." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Formular indstilingerne er gemt" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Grundindstillinger" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms grundlæggende hjælp skal være her." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Forlæng Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Dokumentation kommer snart." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktiv" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Installeret" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Lær mere" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup / Genskab" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Genskab Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Vellykket gendannelse af data!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importér favorit felter" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Vælg en fil" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importér favoriter" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Ingen favorit felter er fundet" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Eksportér favorit felter" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Eksportér felter" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Vælg venligst hvilke favorit felter, der skal Eksportéres" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoritter er importerét." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Vælg en gyldig fil til favorit felter." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importér en formular" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importér formular" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Eksportér en formular" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Eksportér formular" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Vælg en formular" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formular er importéret" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Vælg en gyldig fil til eksportéring af formular." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importér / eksportér indsendelser" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Dato indstillinger" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Generelt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Generelle indstillinger" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Version" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Datoformat" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Prøver at følge specifikationerne for %sPHP date() function%s, men det er " "ikke hvert format, som understøttes." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Valuta symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Indstillinger for reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Websitenøgle for reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Få en websitenøgle til dit domæne ved at registrere %sher%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Hemmelig nøgle for reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Sprog for reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Sprog, som benyttes af reCAPTCHA. Klik %sher%sfor at få koden til dit sprog" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Hvis dette felt afkrydses, vil ALLE Ninja Forms-data blive fjernet fra " "databasen ved sletning. %sIngen formular- og indsendelsesdata vil kunne genoprettes.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Deaktivér administratormeddelelser" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Se aldrig nogen administratormeddelelse på kontrolpanelet fra Ninja Forms. " "Fjern afkrydsning for at se dem igen." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Denne indstilling vil FULDSTÆNDIG fjerne alt Ninja Forms-relateret ved " "sletning af plugin-programmet. Dette inkluderer INDSENDELSER og FORMULARER. " "Det kan ikke fortrydes." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Fortsæt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Indstillingerne er gemt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etiketter" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Beskeds etikette" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Påkrævet felt etikette" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Påkrævet felt symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Fejlmeddelelse, hvis alle påkrævede felter ikke er udfyldt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Påkrævet felt fejl" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Anti-spam fejl besked" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot-fejlmeddelelse" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Timer-fejlmeddelelse" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript deaktiverede fejlmeddelelse" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Skriv en gyldig email adresse" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Behandler indsendelsesetiket" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Denne meddelelse vises indeni indsendelsesknappen, hver gang en bruger " "klikker på \"indsend\" for at lade dem vide, at den behandler." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Etiket for forkert adgangskode" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Brugeren vises denne meddelelse, når der indtastes forkerte værdier i adgangskodefeltet." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licenser" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Gem og aktivér" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Deaktivér alle licenser" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Hvis du vil aktivere licenser for Ninja Forms-udvidelser, skal du først " "%sinstallere og aktivere%s den valgte udvidelse. Licensindstillinger vil " "derefter blive vist nedenfor." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Nulstil formularkonvertering" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Nulstil formularkonvertering" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Hvis dine formularer \"mangler\" efter opdatering til 2.9, vil denne knap " "forsøge at konvertere dine gamle formularer igen for at vise dem i 2.9. Alle " "aktuelle formularer vil forblive i skemaet med \"Alle formularer\"." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Alle aktuelle formularer vil forblive i skemaet med \"Alle formularer\". I " "visse tilfælde kan visse formularer være duplikeret under denne proces." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Administrators e-mail" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Bruger e-mail" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms skal opgradere dine formularnotifikationer. Klik %sher%s for at " "starte opgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms skal opdatere dine e-mailindstillinger. Klik %sher%s for at " "starte opgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms skal opgradere indsendelsesskemaet. Klik %sher%s for at starte opgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Tak fordi du opdaterer til version 2.7 af Ninja Forms. Opdater eventuelle " "Ninja Forms-udvidelser fra " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Din version af Ninja Forms File Uploads-udvidelsen er ikke kompatibel med " "version 2.7 af Ninja Forms. Den skal mindst være version 1.3.5. Opdater denne " "udvidelse hos " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Din version af Ninja Forms Save User Progress-udvidelsen er ikke kompatibel " "med version 2.7 af Ninja Forms. Den skal mindst være version 1.1.3. Opdater " "denne udvidelse hos " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Opdatering af formulardatabase" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms skal opgradere dine formularindstillinger. Klik %sher%s for at " "starte opgraderingen." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Behandler opgradering af Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sKontakt support%s angående den fejl, som vises ovenfor." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms har fuldført alle tilgængelige opgraderinger!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Gå til formularer" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Opgradering til Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Opgrader" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Opgraderinger fuldført" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms skal behandle %s opgradering(er). Dette kan tage et par minutter " "at gøre færdig. %sStart opgradering%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Trin %d af cirka %d kører" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Systemstatus for Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Styrkeindikator" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Meget svag" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Svag" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Medium" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Stærk" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Ej ens" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "– Vælg en" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Hvis du er et menneske og kan se dette felt, skal du lade det være tomt." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Felter markeret med en * er påkrævet." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Dette er et påkrævet felt." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Tjek venligst påkrævede felter." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Beregning" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Antal decimal pladser" #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Tekstboks" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Udbytte af beregningen som" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etiket" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Deaktiver indtastninger?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Brug følgende kortkode (shortcode) til, at indsætte den endelige " "beregning: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Du kan indtaste beregningsligninger her ved brug af field_x, hvor x er id'et " "på det felt, som du ønsker at bruge. F.eks. %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Komplicerede ligninger kan oprettes ved at tilføje parenteser: %s( field_45 * " "field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Brug venligst disse beregningstegn: + - * /. Dette er en avanceret funktion. " "Hold øje med ting, som at dividere med 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automatisk Total Beregningsværdier" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Angiv funktioner og felter (Avanceret)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Brug en ligning (Avanceret)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Beregnings metode" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Felt funktioner" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Tilføj funktion" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Avanceret ligning" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Beregningens navn" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Dette er det programmatiske navn på dit felt. eksempler er: " "min_beregning, pris_total, bruger-total. (brug ikke æ, ø eller å.)" #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Standardværdi" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Brugerdefineret CSS klasse" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Vælg et felt" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Afkrydsningsfelt" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Ikke afkrydset" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Afkrydset" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Vis dette" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Skjul dette" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Skift værdi" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albanien" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeriet" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "American Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarktis" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua og Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenien" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australien" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Østrig" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Hviderusland" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgien" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnien og Herzegovina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Island" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasilien" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgarien" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambodja" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Cameroon" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cape Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Caymanøerne" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Centrale Afrikanske Republik" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Kina" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Island" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocosøerne" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Congo, Den Demokratiske Republik" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cookøerne" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Elfenbenskysten" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Kroatien (lokal navn: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cypern" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Tjekkiet" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Danmark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Den Dominikanske Republik" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Østtimor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypten" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Ækvatorial Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estland" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiopien" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falklandsøerne (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Færøerne" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Frankrig" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Frankrig, Metropol-" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Fransk Guyana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Fransk Polynesien" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Franske Sydlige og Antarktiske Territorier" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgien" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Tyskland" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grækenland" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Grønland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard- og McDonaldøerne" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Den Hellige Stol (Vatikanstaten)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Ungarn" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Island" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Indien" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesien" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Den Islamiske Republik)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irland" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italien" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakhstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korea, Den Demokratiske Folkerepublik" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea, Republikken" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos, Den Demokratiske Folkerepublik" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Libanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libyen, Arabiske Jamahiriya" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Litauen" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemborg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macao" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Makedonien, Den Tidligere Jugoslaviske Republik" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldiverne" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshalløerne" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Mikronesien, Forenede Stater" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldova, Republikken" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongoliet" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marokko" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Holland" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "De Nederlandske Antiller" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Ny Kaledonien" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "New Zealand" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Øen" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norge" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua Ny Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filippinerne" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polen" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Rumænien" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Rusland" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts og Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Sankt Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent og Grenadinerne" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tome og Principe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi Arabien" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbien" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychellerne" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakiet (Slovakiske Republik)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenien" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Salomonøerne" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Sydafrika" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "South Georgia og South Sandwich Islands" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spanien" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint-Pierre og Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard og Jan Mayen Øerne" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Sverige" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Switzerland" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syrien, Arabiske Republik" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania, Den Forenede Republik" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad og Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Tyrkiet" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks- og Caicosøerne" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraine" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "De forenede arabiske emmigrater" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Storbritannien" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "USA" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "USA's ydre småøer" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Britiske Jomfruøer" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Amerikanske Jomfruøer" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis og Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "det vestlige Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Jugoslavien" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Land" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Standard land" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Brug et brugerdefineret første valg" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Brugerdefineret første valg" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sydsudan (sydlige Sudan)" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Kreditkort" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etiket for kortnummer" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Kortnummer" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Beskrivelse af kortnummer" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "De (typiske) 16 cifre på forsiden af dit kreditkort." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Etiket for kort-CVC" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Beskrivelse af kort-CVC" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "De 3 cifre (på bagsiden) eller 4 cifre (på forsiden) af dit kort." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Etiket for kortnavn" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Navn på kortet" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Beskrivelse af kortnavn" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Det trykte navn på forsiden af dit kreditkort." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Etiket for kortets udløbsmåned" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Udløbsmåned (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Beskrivelse af kortets udløbsmåned" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Den måned dit kreditkort udløber, typisk på forsiden af kortet." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etiket for kortets udløbsår" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Udløbsår (ÅÅÅÅ)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Beskrivelse af kortets udløbsår" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Det år dit kreditkort udløber, typisk på forsiden af kortet." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Tekst" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Tekst element" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Skjult felt" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Bruger ID (hvis logget ind)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Bruger fornavn (hvis logget ind)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Bruger efternavn (hvis logget ind)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Bruger visnings navn (hvis logget ind)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Bruger E-mail (hvis logget ind)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Posterings-/Side-id (hvis tilgængeligt)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Posterings-/Sidetitel (hvis tilgængeligt)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Posterings-/Side-URL (hvis tilgængeligt)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Dags dato" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variabel for forespørgselsstreng" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Dette nøgleord er reserveret af WordPress. Prøv et andet." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Er dette en email-adresse?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Hvis dette felt er afkrydset, vil Ninja Forms validere denne indtastning som " "en email-adresse." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Send en kopi af formularen til denne adresse?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Hvis dette felt er afkrydset, vil Ninja Forms sende en kopi af denne formular " "(og eventuelle vedlagte meddelelser) til denne adresse." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honeypot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "time" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Liste" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Dette er brugerens tilstand" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valgte værdi" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Tilføj værdi" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Fjern værdi" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Beregning" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Afkrydsningsfelter" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Markér flere" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Listetype" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Multi-valg boks størrelse" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importér listeelementer" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Vis værdier af listeelementer" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importér" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "For at bruge denne funktion, kan du indsætte din CSV i tekstområdet ovenfor." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Formatet skal se ud som følgende:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Etiket,Værdi,Beregn" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Hvis du vil sende en tom værdi eller beregning, skal du bruge '' til dem." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Valgt" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Antal" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimumsværdi" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maksimumsværdi" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Trin (gradvis forøgelse med mængde)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organisator" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Kodeord" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Brug dette som et registrering af adgangskode felt" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Hvis dette felt er afkrydset, vil både adgangskode og " "gentast-adgangskode tekstbokse blive udsendt." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Indtast adgangskode etikette" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Genindtast kodeordet" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Vis adgangskode styrke måler" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Tip: Dit kodeord skal være mindst syv tegn langt. For at gøre det " "stærkere bør du bruge store og små bogstaver, tal og symboler " "som ! \" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Kodeordene er ikke ens" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Stjernevurdering" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Antal af stjerner" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Bekræft at du ikke er en bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Udfyld captcha-feltet" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Sørg for at du har indtastet dine website- og hemmelige nøgler korrekt" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Uoverensstemmelse i captcha. Indtast den korrekte værdi i captcha-feltet" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Spam spørgsmål" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Spam svar" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Send" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Moms" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Skatteprocent (moms)" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Skal indtastes som en procent. f.eks. 8,25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Tekstområde" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Vis RTF-editor" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Vis knap til medie-upload" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Deaktiver Rich Text Editor på mobil" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Bekræft som en e-mailadresse? (Felt skal være obligatorisk)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Deaktivér input" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datovælger" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefon - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Valuta" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Brugerdefineret Maske definition" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Hjælp" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Timet indsendelse" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Tekst på Indsend-knap, efter timer udløber" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Vent %n sekunder" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n vil blive brugt til at angive antallet af sekunder" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Antal sekunder til nedtælling" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Dette er hvor længe en bruger skal vente for at indsende formularen" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Sæt hastigheden ned, hvis du er et menneske." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Du skal bruge JavaScript for at indsende denne formular. Aktivér den og prøv igen." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Kortlægning over listefelter" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Interessegrupper" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Enkel" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Flere" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Lister" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "opdater" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Metabox for indsendelse" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Brugermeta (hvis logget ind)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Modtag betaling" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Ingen formularer blev fundet." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Dato oprettet" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "titel" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "opdateret" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Dit forsøg lykkedes ikke" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Overordnet element:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Alle elementer" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Tilføj nyt element" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nyt element" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Rediger element" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Opdater element" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Vis element" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Søg efter element" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Ikke fundet i papirkurv" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Formularindsendelser" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Indsendelsesoplysninger" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Tilføj ny formular" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Fejl ved import af formularskabelon." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Feltnavne" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Den overførte fil er ikke et gyldigt format" #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Ugyldig formularoverførsel." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importér formularer" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Eksportér formularer" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Ligning (avanceret)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Styringer og felter (avanceret)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Felter med automatisk total" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Den uploadede fil overgår upload_max_filesize direktivet i php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Den uploadede fil overgår MAX_FILE_SIZE direktivet, som blev angivet i HTML-formularen." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Den uploadede fil blev kun delvist uploadet." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Ingen fil blev overført." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Fil kunne ikke skrives til disk." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Fil-upload stoppet af udvidelse." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Ukendt uploadingsfejl." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Overførselsfejl for fil" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Licenser for tilføjelsesprogrammer" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Overførsler og eksempeldata gennemført. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Vis formularer" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Gem indstillinger" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Serverens IP-adresse" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Værtsnavn" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Tilføj en Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Formular blev ikke fundet" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Felt blev ikke fundet" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Der opstod en uventet fejl." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Forhåndsvisning findes ikke" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Betalings Gateways" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Betaling i alt" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Hook Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "E-mailadresse eller søg efter et felt" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Emnetekst eller søg efter et felt" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Vedhæft CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Etiket her" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Hjælpetekst her" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Indtast etiketten til formularfeltet. Det er sådan, at brugere kan " "identificere individuelle felter." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Formularstandard" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Skjul" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Vælg placeringen af din etiket i forhold til selve feltelementet." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Obligatorisk felt" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Sørg for at dette felt er udfyldt, før du tillader, at formularen indsendes." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Talmuligheder" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Trin" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Valg" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "En" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "en" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "To" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "to" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Tre" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "tre" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Beregnet værdi" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Begrænser den slags indtastninger, som dine brugere kan indtaste i dette felt." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "ingen" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "USA-telefon" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "brugerdefineret" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Brugerdefineret maske" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a – Repræsenterer et alfanumerisk tegn " "(A-Z,a-z) – Tillader kun at der indtastes bogstaver.
    • " "\n
    • 9 – Repræsenterer et numerisk tegn (0-9) – " "Tillader kun at der indtastes tal.
    • \n
    • * – " "Repræsenterer et alfanumerisk tegn (A-Z,a-z,0-9) – Dette tillader at der " "indtastes\n både bogstaver og " "tal.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Begræns indtastning til dette tal" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Tegn" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Ord" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Tekst, som skal vises efter tæller" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Tegn tilbage" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Indtast den tekst, som du vil have vist i feltet, før en bruger indtaster " "nogen data." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Brugerdefinerede klassenavne" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Beholder" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Tilføjer en ekstra klasse til din felt-wrapper." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Tilføjer en ekstra klasse til dit feltelement." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "ÅÅÅÅ-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Fredag d. 18. november 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Aktuelle dato som standard" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Antal sekunder til indsendelse med timer" #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Felt Key" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Opretter en unik nøgle til at identificere og målrette dit felt til " "brugerdefineret udvikling." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Etiket, som benyttes, når der vises og eksporteres indsendelser." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Vist til brugere, når der peges med musen." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Beskrivelse" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sortér som numerisk" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Denne kolonne i indsendelsesskemaet vil blive sorteret efter tal." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Antal sekunder til nedtællingen" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Brug dette som et felt til registreringsadgangskode. Hvis dette felt er " "afkrydset, vil både\n adgangskode og indtast " "adgangskode igen-tekstfelterne blive udlæst" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Bekræft" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Tillader RTF-input." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Etiket for behandling" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Afkrydset beregningsværdi" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Dette nummer vil blive brugt i beregninger, hvis feltet er afkrydset." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Ikke afkrydset beregningsværdi" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Dette nummer vil blive brugt i beregninger, hvis feltet ikke er afkrydset." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Vis denne beregningsvariabel" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "– Vælg en variabel" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Pris" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Brug kvantitet" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Gør det muligt for brugere at vælge mere end ét af dette produkt." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Produkt Type" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Enkelt produkt (standard)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multi produkt – Rullemenu" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multi produkt – Vælg mange" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multi produkt – Vælg ét" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Brugerindtastning" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Omkostning" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Udgiftsmuligheder" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Enkelt udgift" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Rullemenu til udgift" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Udgiftstype" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produkt" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "– Vælg et produkt" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Svar:" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Et svar, der tager hensyn til store og små bogstaver, som en hjælp til at forhindre spam-indsendelser af din formular." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taksonomi" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Tilføj nye betingelser" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Dette er en brugers stat." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Bruges til at markere et felt til behandling." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Gemte felter" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Almindelige felter" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Felter til brugeroplysninger" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Prisfelter" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Layoutfelter" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Diverse felter" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Din formular er blevet sendt." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Ninja-anmodningsformularer" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Gem anmodning" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Variabelt navn" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Ligning" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Standardplacering for etiket" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Formular key" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Programmatisk navn, som kan bruges til at henvise til denne formular." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Tilføj Indsend-knap" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Vi har lagt mærke til, at du ikke har en Indsend-knap på din formular. Vi kan " "tilføje en for dig automatisk." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Logget Ind" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Gør sig gældende for forhåndsvisning af formular." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Indsendelsesgrænse" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Gør sig IKKE gældende for forhåndsvisning af formular." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Visnings indstillinger" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Beregninger" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja-formularer" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Pris:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Mængde:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Tilføj" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Åbn i et nyt vindue" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Hvis du er et menneske og kan se dette felt, skal du lade det være tomt." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Til rådighed" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Angiv en gyldig e-mailadresse!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Disse felter skal være identiske!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Antal min. fejl" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Antal maks. fejl" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Øg med " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Indsæt link" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Indsæt medie" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Ret fejlene, før indsendelse af formularen." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot-fejl" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Filoverførsel er i gang." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "OVERFØRSEL AF FIL" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Alle felter" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Undersekvens" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Indlæg (ID)" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Indlæg titel" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Posterings-URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IPadresse" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "Bruger ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Fornavn" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Efternavn" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Offentligt navn" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Forudindtagede stile" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Lyst" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Mørk" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Brug Ninja Forms standardkonventioner for design." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Tilbageførsel" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Tilbageførsel til v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Tilbageførsel til den seneste 2.9.x udgivelse." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Indstillinger for reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Tema for reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "RTF-editor (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Advanceret" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administration" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Blanke formularer" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Kontakt mig" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Eksempel på meddelelse om vellykket handling" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Tak {field:name} fordi du udfyldte min formular!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Eksempel på e-mailhandling" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Dette er en e-mailhandling." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hej Ninja-formularer!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Eksempel på Gem-handling" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Dette er en test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "Jens Hansen" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "bruger@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Dette er en anden test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Få hjælp" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Hvad kan vi hjælpe dig med?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Enig?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Foretrukket kontaktmetode?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Tlf." #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Post" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Send" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Køkkenvask" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Vælg liste" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Mulighed et" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Mulighed to" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Mulighed tre" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Liste med alternativknapper" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Håndvask til badeværelse" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Liste med afkrydsningsfelter" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Dette er alle felterne i afsnittet Brugeroplysninger." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Adresse" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "By" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Postnummer" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Dette er alle felterne i afsnittet Priser." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produkt (antal inkluderet)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produkt (separat antal)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Mængde" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Totalt" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Fulde navn på kreditkort" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Kreditkortnummer" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Kreditkorts CVC" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Kreditkorts udløbsdato" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Kreditkorts postnr." #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Dette er forskellige særlige felter." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Anti-spamspørgsmål (svar = svar)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "svar" #: includes/Database/MockData.php:805 msgid "processing" msgstr "behandler" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Lang formular – " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Felter" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Felt nr." #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "E-mail-abonnementsformular" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "E-mailadresse" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Indtast din e-mailadresse" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Abonnér" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Produktformular (med feltet Antal)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Køb" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Du købte " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "produkt(er) for " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Produktformular (indbygget antal)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " produkt(er) for " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Produktformular (flere produkter)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produkt A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Antal for Produkt A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produkt B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Antal for Produkt B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "af Produkt A og " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "af Produkt B for $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formular med beregninger" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Min første beregning" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Min anden beregning" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "Beregninger returneres med AJAX-svaret ( svar -> data -> beregn." #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Kopier" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Gem formular" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Kreditkorts postnr." #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Du skal være logget ind for at se forhåndsvisning af en formular." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Ingen felter fundet." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Bemærk: Ninja Forms-shortcode anvendt uden at angive en formular." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms-shortcode anvendt uden at angive en formular." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Adresse 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Knap" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Enkelt afkrydsningsfelt" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "afkrydset" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "ikke afkrydset" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Kreditkorts CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Adskiller" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Vælg" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Kommune" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Notattekst kan redigeres i notatfeltets avancerede indstillinger nedenfor." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Bemærk" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Bekræft adgangskode" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "adgangskode" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Fuldfør recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Avanceret levering" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Spørgsmål" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Placering af spørgsmål" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Forkert svar" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Antal stjerner" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Betingelsesliste" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Ingen tilgængelige betingelser for denne taksonomi. %sTilføj en betingelse%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Ingen taksonomi valgt." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Tilgængelige betingelser" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Afsnitstekst" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Enkel linje tekst" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Postnummer" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Indlæg" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Forespørgselsstrenge" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Forespørgselsstreng" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "UR = uregistreret bruger, R = registreret bruger" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " kræver opdatering. Du har version " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " installeret. Den aktuelle version er " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Feltet Redigering" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Etiketnavn" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Over feltet" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Under feltet" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Til venstre for feltet" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Til højre for feltet" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Skjul etiket" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Navn på klasse" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Grundlæggende felter" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Flervalg" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Tilføj nyt felt" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Tilføj ny handling" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Udvid menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Udgiv" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLICER" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Indlæser" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Vis ændringer" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Tilføj formularfelter" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Kom i gang ved at tilføje dit første formularfelt." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Tilføj nyt felt" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Klik her og vælg de felter, du ønsker." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Så nemt er det. Eller..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Start med en skabelon" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Kontakt os" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Lad dine brugere kontakte dig med den enkle kontaktformular. Du kan tilføje " "og fjerne felter efter behov." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Anmodning om tilbud" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Administrér nemt anmodninger om tilbud fra din website med denne skabelon. Du " "kan tilføje og fjerne felter efter behov." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Registrering til begivenhed" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Lad brugeren registrere sig til din næste begivenhed med denne brugervenlige " "formular. Du kan tilføje og fjerne felter efter behov." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Tilmeldingsformular til nyhedsbrev" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Tilføj abonnenter og skab vækst i din e-mailliste med denne " "tilmeldingsformular til nyhedsbrev. Du kan tilføje og fjerne felter efter behov." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Tilføj formularhandlinger" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Kom i gang ved at tilføje dit første formularfelt. Du skal blot klikke på " "plustegnet og vælg de ønskede handlinger. Så nemt er det." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Kopiér (^ + C + klik)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Slet (^ + D + klik)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Aktion" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Slå skuffe til/fra" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Fuld skærm" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Halv skærm" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Fortryd" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Udført" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Fortyd alt" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Fortyd alt" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Vi er næsten færdige ..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Ikke endnu" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Åbn i et nyt vindue" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Deaktivér" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Ret det" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "– Vælg en formular" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Startdato" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Før du beder om hjælp fra vores supportteam, bedes du se:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Dokumentation til Ninja-formular TRE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Prøv dette, før du kontakter support" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Supports omfang" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importér felter" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Opdateret: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Indsendt: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Indsendt af: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Indsendelsesdata" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Vis" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Vis mere" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Feltet Redigering" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Formularfelter" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Se udkast af ændringer" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Kontaktformular" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Hov! Det tilføjelsesprogram er endnu ikke kompatibel med Ninja Forms THREE. " "%sLær mere%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s blev deaktiveret." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Hjælp os med at forbedre Ninja-formularer!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Hvis du tilmelder dig, vil visse data om din installation af Ninja-formularer " "blive sendt til NinjaForms.com (dette inkluderer IKKE dine indsendelser)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Hvis du springer det her over, er det helt i orden! Ninja-formularer vil stadig fungere helt fint." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sTillad%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sTillad ikke%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Du har ikke tilladelse." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Tilladelse nægtet" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "FEJLFINDING: Skift til 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "FEJLFINDING: Skift til 3.0.x" lang/ninja-forms-sv_SE.po000064400000635002152331132460011273 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Meddelande: JavaScript krävs för detta innehåll." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Fuskar du?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Fält markerade med en %s*%s är obligatoriska" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Kontrollera att du har fyllt i alla obligatoriska fält." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Detta är ett obligatoriskt fält" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Besvara skräppostfrågan korrekt." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Lämna skräppostfältet tomt." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Vänta med att skicka in formuläret." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Du kan inte skicka formuläret om inte JavaScript är aktiverat." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Ange en giltig e-postadress." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Behandlas" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "De angivna lösenorden matchar inte varandra." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Lägg till formulär" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Välj ett formulär eller en typ som du vill söka efter" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Avsluta" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Infoga" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Ogiltigt formulär-ID" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Öka konverteringsgraderna" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Visste du att du kan öka konverteringsgraden för formulär genom att bryta upp " "större formulär i mindre formulärdelar som är lättare att " "konvertera?

    Tillägget Multi-Part Forms för Ninja Forms fixar det snabbt och lätt.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Lär dig mer om formulär i flera delar" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Kanske senare" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Avvisa" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Det är mer sannolikt att användarna fyller i långa formulär när de kan spara " "och sedan återgå för att slutföra överföringen av formuläret vid ett senare " "tillfälle.

    Det går snabbt och lätt med tillägget Save Progress för Ninja Forms.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Läs mer om att spara förlopp" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "E-post" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Från-namn" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Namn eller fält" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "E-postmeddelandet kommer att se ut som det kommer från det här namnet." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Från adress" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "En e-postadress eller ett fält" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "E-postmeddelandet kommer att se ut som det kommer från den här e-postadressen." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Till" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "E-postadresser eller sök efter ett fält" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Vem ska det här e-postmeddelandet skickas till?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Ämne" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Ämnestext eller sök efter ett fält" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Det här blir e-postmeddelandets ämne." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "E-postmeddelande" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Bilagor" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Sändnings-CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Avancerade inställningar" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Oformaterad text" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Svara till" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Kopia" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Hemlig kopia" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Dirigera om" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Webbadress" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Meddelande vid framgång" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Före formuläret" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Efter formuläret" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Plats" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Meddelande" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplicera" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Inaktivera" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Aktivera" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Ändra" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Radera" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Kopiera" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Namn" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Typ" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Uppdaterad datum" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Visa alla typer" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Få flera typer" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "E-post och åtgärder" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Lägg till ny" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Ny åtgärd" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Redigera åtgärd" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Tillbaka till listan" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Åtgärdsnamn" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Få flera åtgärder" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Åtgärden har uppdaterats" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Välj ett fält eller skriv för att söka" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Infoga fält" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Infoga alla fält" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Välj ett formulär för att visa inskickat material" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Inget inskickat material hittades" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "överföringar" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "överföring" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Lägg till nytt inskickat material" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Redigera inskickat material" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Nyligen inskickat material" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Visa inskickat material" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Sök efter inskickat material" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Det fanns inget inskickat material i papperskorgen" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Datum" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Redigera denna artikel" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Exportera det här objektet" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Exportera" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Flytta artikel till Papperskorgen" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Ta bort" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Återställ artikel från Papperskorgen" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Återställ" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Radera artikel permanent" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Radera permanent" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Opublicerat" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s sedan" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Skickat" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Välj ett formulär" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Startdatum" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Slutdatum" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s uppdaterad." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Custom-fält uppdaterat." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Custom-fält raderat." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s återställd till ändring from %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s publicerad." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s sparad." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s inskickad. Förhandsgranska%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s schemalagd för: %2$s. Förhandsgranska %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s utkast har uppdaterats. Förhandsgranska %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Hämta allt inskickat material" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Tillbaka till listan" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Värden inskickade av användaren" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Överföringsstatistik" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Fält" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Värde" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formulär" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Postad" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Ändrat den" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Inskickat av" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Uppdatera" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Inskickat datum" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms kan inte aktiveras via nätverket. Gå till varje webbplats " "instrumentpanel och aktivera plugin-programmet." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Det här finns i e-postmeddelandet du fick när du köpte produkten." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Nyckel" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Det gick inte att aktivera licensen. Bekräfta din licensnyckel" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Inaktivera licenser" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Värden inskickade av användaren:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Tack för att du fyllde i det här formuläret." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "En ny version av %1$s finns tillgänglig. Visa detaljer för version %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "En ny version av %1$s finns tillgänglig. Visa detaljer för version %3$s eller uppdatera nu." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Du har inte behörighet att installera tilläggsuppdateringar" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Fel" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standardfält" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Layoutelement" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Lägg upp det skapade formuläret" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Betygsätt %sNinja Forms%s %s på %sWordPress.org%s för att hjälpa oss att " "kunna fortsätta erbjuda detta insticksprogram gratis. Tack från WP:s Ninjas-team!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms-widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Visa titel" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Ingen" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formulär" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Alla formulär" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Uppgraderingar av Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Uppgraderingar" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importera/Exportera" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Import/export" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Inställningar för Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Inställningar" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Systemstatus" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Tillägg" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Förhandsgranska" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Spara" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "tecken kvar" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Visa inte dessa villkor" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Alternativ för Spara" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Förhandsgranska formulär" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Uppgradera till Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Du är kvalificerad för uppgradering till Release-kandidaten Ninja Forms " "THREE! %sUppgradera nu%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE kommer snart!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Snart finns en viktig uppdatering av Ninja Forms. %sLäs mer om nya " "funktioner, bakåtkompatibilitet och fler Vanliga frågor.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Hur är läget?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Tack för att du använder Ninja Forms! Vi hoppas att du hittade allt du " "behöver, men om du har frågor:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Läs vår dokumentation" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Få hjälp" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Redigera menyalternativ" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Välj alla" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Lägg till ett Ninja-formulär" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Vad vill döpa den här favoriten till?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Du måste ange ett namn för den här favoriten." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Vill du verkligen inaktivera alla licenser?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Återställ formulärkonverteringsproceduren för v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Radera ALLA data i Ninja Forms vid avinstallation?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Redigera formulär" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Sparat" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Sparar..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Vill du ta bort det här fältet? Det tas bort även om du inte sparar." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Visa inskickat material" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms bearbetar" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms – bearbetar" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Laddar ..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Ingen åtgärd har angetts..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Proceduren har startat, var tålmodig. Det här kan ta flera minuter. Du kommer " "automatiskt att omdirigeras när proceduren är klar." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Välkommen till Ninja Forms, %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Tack för att du uppdaterar! Ninja Forms %s gör det enklare att skapa formulär " "än någonsin!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Välkommen till Ninja Forms, " #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Changelog" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Kom igång med Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Människorna som skapar Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Nyheter" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Komma igång" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Omnämnanden" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Version %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Ett enklare och kraftfullare sätt att bygga." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Ny byggflik" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Gå direkt till den viktigaste delen när du skapar och redigerar formulär." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Inställningar för fältet Better Organized (Bättre organiserad)" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "De vanligaste inställningarna visas omedelbart, medan andra inställningar som " "inte är så viktiga är placerade inne i delar som kan expanderas." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Förbättrad tydlighet" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Tillsammans med fliken \"Build Your Form\" (Skapa ditt formulär) har vi tagit " "bort \"Notifications\" (Aviseringar) och har istället \"Emails & Actions” " "(E-post och åtgärder). Det här förtydligar vad du kan göra i den här fliken." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Radera alla Ninja Forms-data" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Vi har lagt till ett alternativ som innebär att alla Ninja Forms-data " "(inskickat material, formulär, fält, alternativ) raderas när du tar bort " "plugin-programmet. Vi kallar den för sprängaralternativet." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Bättre licenshantering" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Inaktivera licenser för Ninja Forms-tillägg var för sig eller som en grupp i inställningsfliken." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Det kommer mer" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Gränssnittsuppdateringarna i den här versionen lägger grunden för framtida " "förbättringar. Version 3.0 kommer att bygga vidare på de här ändringarna för " "att göra Ninja Forms till ett ännu stabilare, kraftfullare och mer " "användarvänligt verktyg för att skapa formulär." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Dokumentation" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Läs vår detaljerade dokumentation för Ninja Forms nedan." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms dokumentation" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Få support" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Återgå till Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Visa hela Changelog" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Hela Changelog" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Gå till Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Kom igång med att använda Ninja Forms med hjälp av nedanstående tips. Du " "kommer att vara igång på nolltid!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Allt om formulär" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Från menyn Formulär kommer du åt allt som har att göra med Ninja Forms. Vi " "har redan skapat ditt första %skontaktformulär%s så att du har ett exempel. " "Du kan också skapa ditt eget genom att klicka på %sLägg till nytt%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Skapa ditt formulär" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Det är här du skapar ditt formulär genom att lägga till fält och dra dem till " "beställningen där du vill att de ska visas. Varje fält kommer att ha ett " "antal alternativ, som beskrivning, beskrivningens position och platsmarkör." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "E-post och åtgärder" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Om du vill att ditt formulär skickar ett e-postmeddelande till dig när en " "användare klickar på Skicka, kan du ställa in det på den här fliken. Du kan " "skapa ett obegränsat antal e-postmeddelanden, inklusive meddelanden som " "skickas till användaren som fyllde i formuläret." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Den här fliken innehåller allmänna formulärinställningar som rubrik och " "överföringssätt, samt visningsinställningar såsom att formuläret ska döljas " "när det har skickats." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Visa ditt formulär" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Lägg till på sida" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Under inställningen för grundläggande formulärbeteende i " "formulärinställningarna är det enkelt att välja en sida där du vill att " "formuläret ska läggas till i slutet av den sidans innehåll. Det finns ett " "liknande alternativ i marginalen på varje skärm för redigering av innehåll." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Snabbkod" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Placera %s i valfritt område som tillåter att kortkoder visas i formuläret " "där du vill ha dem. Du kan t.o.m. placera dem mitt i innehållet på sidan " "eller i inlägget." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms innehåller en widget som du kan placera i valfritt område som " "tillåter widgets på din webbplats, och välja exakt vilket formulär som du " "vill visa i det området." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Mallfunktion" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms levereras även med en enkel mallfunktion som kan placeras direkt " "i en php-mallfil. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Behöver du hjälp?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Växande dokumentation" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Det finns dokumentation som täcker allt från %sFelsökning%s till vår " "%sUtvecklar-API%s. Nya dokument läggs till hela tiden." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Bästa supporten inom verksamhetsområdet" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Vi gör allt vi kan för att ge alla användare av Ninja Forms bästa möjliga " "support. %sKontakta oss%s om du stöter på ett på problem eller har en fråga." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Tack för att du uppdaterar till den senaste versionen! Ninja Forms %s är " "laddat med funktioner som gör att din hantering av inskickade formulär blir " "så rolig och problemfri som möjligt." #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms skapas av ett utvecklingsteam som är utspritt över världen och " "strävar efter att tillhandahålla det främsta plugin-programmet för formulär " "för WordPress-gemenskapen." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Ingen giltig changelog hittades." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Visa %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Inaktivera komplettera automatiskt för webbläsaren" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sMarkerat%s beräkningsvärde" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Det här värdet kommer att användas om det är %smarkerat%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sAvmarkerat%s beräkningsvärde" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Det här värdet kommer att användas om det är %savmarkerat%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Inkludera i automatisk totalsumma? (Om aktiverat)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Anpassade CSS-klasser" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Före allt" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Före beskrivning" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Efter beskrivning" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Efter allt" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Om \"beskr text\" har aktiverats, visas ett frågetecken %s bredvid " "inmatningsfältet. Om du hovrar över det här frågetecknet visas en beskrivning" #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Lägg till beskrivning" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Beskrivningens placering" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Beskrivningens innehåll" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Om \"hjälptext\" har aktiverats, visas ett frågetecken %s bredvid " "inmatningsfältet. Om du hovrar över det här frågetecknet visas hjälptexten." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Visa hjälptext" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Hjälptext" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Om du lämnar rutan tom används ingen begränsning" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Begränsa inmatningen till det här antalet" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "av" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Tecken" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Ord" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Text som ska visas efter tecken-/ordräknare" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Till vänster om elementet" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Ovanför elementet" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Under elementet" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Till höger om elementet" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Inne i elementet" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Position för etikett" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Fält-ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Begränsningsinställning" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Beräkningsinställning" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Ta bort" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Fyll i det här med taxonomin" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Ingen" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Platshållare" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Obligatoriskt" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Spara fältinställningarna" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sortera som numeriskt" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Om den här rutan har markerats sorteras den här kolumnen i tabellen med " "inskickat material efter nummer." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Admin-beskrivning" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Den här beskrivningen används vid visning/redigering/export av inskickat material." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Betalning" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Frakt" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Anpassade" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Fältgrupp med användarinfo" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Anpassad fältgrupp" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Inkludera följande information när du begär support:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Få en systemrapport" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Miljö" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Startsidans URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Webbplatsadress" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms-version" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite aktiverat" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Ja" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Nej" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Information om webbserver" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP version" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP-plats" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP felsökningsläge" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP-språk" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Standard" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Maximal överföringsstorlek för WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "Maxstorlek för PHP post" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Maximal kapslingsnivå för indata" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP tidsgräns" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN installerat" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Standardtidszon" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Standardtidzon är %s - den skall vara UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Standardtidszonen är %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Din server har fsockopen och cURL aktiverat." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Din server har fsockopen aktiverat, cURL är inaktiverat." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Din server har cURL aktiverat, fsockopen är inaktiverat." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Servern verkar ha varken fsockopen eller cURL aktiverat - PayPal IPN och " "andra skript som behöver kommunicera med servern kommer inte att fungera. " "Vänligen kontakta ditt webbhotell." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP-klient" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Din server har klassen SOAP-klient aktiverad." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Din server har inte klassen %sSOAP-klient%s aktiverad - vissa " "gateway-plugin-program som använder SOAP kanske inte fungerar som förväntat." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP fjärrinlägg" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() lyckades - PayPal IPN fungerar." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() misslyckades. PayPal IPN fungerar inte med din server. " "Kontakta leverantören av värdtjänsten. Fel:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() misslyckades. PayPal IPN kanske inte fungerar med din server." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Tillägg" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Installerade plugin-program" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Besök tilläggets webbplats" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "av" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "version" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Ge formuläret en rubrik. Det är så du hittar formuläret senare." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Du har inte lagt till en sändningsknapp i formuläret." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Inmatningsmask" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Om du anger ett tecken i rutan \"anpassad mask\", som inte finns med i " "nedanstående lista, anges det automatiskt för användaren medan de skriver och " "det kan inte tas bort" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Detta är de fördefinierade maskningstecknen:" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Representerar ett alfatecken (A-Z,a-z) – Endast bokstäver kan anges" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Representerar ett numeriskt tecken (0-9) – Endast siffror kan anges" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Representerar ett alfanumeriskt tecken (A-Z,a-z,0-9) – Medger att både " "siffror och bokstäver anges" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Så om du vill skapa en mask för ett personnummer skulle du kunna skriva in " "999999-9999 i rutan." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "Niorna representerar valfritt nummer och strecket läggs till automatiskt" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Det här förhindrar att användaren anger andra tecken än siffror" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Du kan också kombinera dem för vissa användningsområden" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Om du exempelvis har en produktnyckel som har formatet A4B51.989.B.43C, " "skulle du kunna maska detta med: a9a99.999.a.99a, vilket tvingar alla a:n att " "vara bokstäver och alla nior att vara siffror" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Definierade fält" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Favoritfält" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Betalningsfält" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Mallfält" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Användarinformation" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Alla" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Massåtgärder" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Genomför" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formulär per sida" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Kör" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Gå till första sidan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Gå till föregående sida" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Aktuell sida" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Gå till nästa sida" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Gå till sista sidan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Formulärtitel" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Ta bort det här formuläret" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicera formulär" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "formulär har tagits bort" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "formulär har tagits bort" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Förhandsgranskning av formulär" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Visning" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Visa formulärets rubrik" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Lägg till formulär på den här sidan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Vill du skicka via AJAX (utan att sidan uppdateras)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Vill du radera formulär som har skickats?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Om den här rutan markeras raderar Ninja Forms formulärvärdena när formuläret " "har skickats in." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Vill du dölja formulär som har skickats?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Om den här rutan markeras döljer Ninja Forms formuläret när det har skickats in." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Begränsningar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Vill du kräva att användaren är inloggad för att kunna visa formuläret?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Meddelande om ej inloggad" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Meddelande som visas för användare om ovanstående kryssruta är markerad och " "de inte är inloggade." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Begränsa antalet överföringar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Välj hur många överföringar det här formuläret tillåter. Lämna tomt om ingen " "begränsning krävs." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Meddelande om att gränsen har uppnåtts" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Ange ett meddelande som ska visas när gränsen för antalet överföringar har " "nåtts och du inte accepterar några nya överföringar." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Formulärinställningarna har sparats" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Grundläggande inställningar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Här ska Ninja Forms grundläggande hjälp vara." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Utöka Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Dokumentation kommer snart." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktiv" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Installerat" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Läs mer" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Säkerhetskopiera/återställ" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Säkerhetskopiera Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Återställ Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Data har återställts!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importera favoritfält" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Välj en fil" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importera favoriter" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Inga favoritfält hittades" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Exportera favoritfält" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Exportera fält" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Välj vilka favoritfält du vill exportera." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoriter har importerats." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Välj en giltig fil med favoritfält." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importera ett formulär" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importera formulär" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Exportera ett formulär" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Exportera formulär" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Välj ett formulär." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formuläret har importerats." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Välj en giltig fil med exporterat formulär." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importera/exportera inskickade formulär" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Datuminställningar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Allmänt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Allmänna inställningar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Version" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Datumformat" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Försöker följa specifikationerna för %sPHP-datumfunktion()%s, men alla format " "stöds inte." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Valutasymbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA-inställningar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA-platsnyckel" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Få en platsnyckel för din domän genom att registrera dig %shär%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Hemlig nyckel för reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Språk för reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Språk som används av reCAPTCHA. Hämta koden för ditt språk genom att klicka %shär%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Om den här rutan är markerad raderas ALLA data i Ninja Forms från databasen " "vid borttagning. %sDet kommer inte att gå att återställa data i formulär och " "inskickat material.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Inaktivera meddelanden från admin" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Visa aldrig adminmeddelanden på instrumentpanelen från Ninja Forms. " "Avmarkera för att visa dem igen." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Den här inställningen tar HELT OCH HÅLLET bort allt som har att göra med " "Ninja Forms när plugin-programmet tas bort. Detta inkluderar INSKICKAT " "MATERIAL och FORMULÄR. Det kan inte ångras." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Fortsätt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Inställningar sparade" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etiketter" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Meddelandebeskrivningar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Beskrivning av obligatoriskt fält" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Obligatorisk fältsymbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Felmeddelande ges om alla obligatoriska fält inte har fyllts i." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Fel - obligatoriskt fält" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Felmeddelande – Antispam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Felmeddelande – Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Felmeddelande – Timer" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript inaktiverade felmeddelandet" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Ange en giltig e-postadress" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Beskrivning för bearbetning av inskickat formulär" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Det här meddelandet visas inne i sändningsknappen när en användare klickar på " "”Skicka” så att de ska veta att materialet bearbetas." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Beskrivning för matchningsfel för lösenord" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Det här meddelandet visas för en användare när värden som inte matchar " "varandra anges i lösenordsfältet." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Rättigheter" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Spara och aktivera" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Inaktivera alla licenser" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Om du vill aktivera licenser för Ninja Forms-tillägg måste du först " "%sinstallera och aktivera%s det valda tillägget. Licensinställningarna visas " "sedan nedan." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Återställ konverteringen av formulär" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Återställ konverteringen av formulär" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Om dina formulär \"saknas\" efter uppdatering till 2.9, försöker den här " "knappen konvertera om dina gamla formulär och visa dem i 2.9. Alla nuvarande " "formulär blir kvar i tabellen ”Alla formulär”." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Alla nuvarande formulär blir kvar i tabellen ”Alla formulär”. I vissa fall " "kan det göras dubbletter av en del av formulären under den här proceduren." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Admin-e-post" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Användarens e-postadress" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms måste uppgradera dina formuläraviseringar. Klicka %shär%s för att " "starta uppgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms måste uppdatera dina e-postinställningar. Klicka %shär%s för att " "starta uppgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms måste uppgradera överföringstabellen. Klicka %shär%s för att " "starta uppgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Tack för att du uppdaterar till version 2.7 av Ninja Forms. Uppdatera alla " "Ninja Forms-tillägg från " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Din version av Ninja Forms filöverföringstillägg är inte kompatibel med " "version 2.7 av Ninja Forms. Det måste vara minst version 1.3.5. Uppdatera det " "här tillägget på " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Din version av Ninja Forms tillägg för att spara formulär är inte kompatibelt " "med version 2.7 av Ninja Forms. Det måste vara minst version 1.1.3. Uppdatera " "det här tillägget på " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Uppdatera formulärdatabasen" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms måste uppgradera dina formulärinställningar. Klicka %shär%s för " "att starta uppgraderingen." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms uppgradering – bearbetar" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sKontakta support%s angående felet som visas ovan." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms har slutfört alla tillgängliga uppgraderingar." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Gå till formulär" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Uppgradering av Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Uppgradera" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Uppgraderingarna är klara" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms måste bearbeta %s uppgradering(ar). Det kan ta några minuter " "innan det är klart. %sStarta uppgradering%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Steg %d av cirka %d körs" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms systemstatus" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Indikator för styrka" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Mycket svagt" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Svagt" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Medel" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Stark" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Matchningsfel" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "– Välj ett" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Om du är en människa och ser det här fältet ska du låta det vara tomt." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Fält markerade med * är obligatoriska." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Detta är ett obligatoriskt fält." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Kontrollera de obligatoriska fälten." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Beräkning" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Antal decimaler." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Textfält" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Spara beräkningen som" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etikett" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Vill du inaktivera indata?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Använd följande kortkod för att infoga den slutgiltiga beräkningen: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Du kan skriva in beräkningsekvationer här med hjälp av field_x där x är ID:t " "för fältet du vill använda. Exempel: %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Komplicerade ekvationer kan skapas genom att lägga till parenteser: %s( " "field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Använd följande matematiska tecken: + - * /. Det här är en avancerad " "funktion. Håll utkik efter sådant som division med 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Summera beräkningsvärden automatiskt" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Ange operationer och fält (avancerat)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Använd en ekvation (avancerat)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Beräkningsmetod" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Fältoperationer" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Lägg till operation" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Avancerad ekvation" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Beräkningsnamn" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Det här är fältets programmässiga namn. Exempel är: my_calc, price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Standardvärde" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Anpassad CSS-klass" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Välj ett fält" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Kryssruta" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Avmarkerat" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Markerat" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Visa detta" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Dölj detta" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Ändra värde" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afganistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albanien" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeriet" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Amerikanska Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarktis" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua och Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenien" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australien" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Österrike" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Vitryssland" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgien" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnien och Hercegovina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Island" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasilien" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "British Indian Oceanterritoriet" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgarien" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Kambodja" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Kamerun" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Kanada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Kap Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Caymanöarna" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Centralafrikanska republiken" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Tchad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Kina" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Julön" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Kokosöarna (Keeling)" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Komorerna" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Kongo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Kongo-Kinshasa" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cooköarna" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Elfenbenskusten" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Kratien (lokalt namn: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Kuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cypern" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Tjeckien" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Danmark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominikanska republiken" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Östtimor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypten" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Ekvatorialguinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estland" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiopien" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falklandsöarna" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Faroeöarna" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Frankrike" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Frankrike, storstads" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Franska Guyana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Franska Polynesien" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Franska södra territorierna" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgien" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Tyskland" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grekland" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Grönland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard- och McDonaldöarna" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Vatikanstaten (Heliga stolen)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Ungern" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Island" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Indien" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesien" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Islamiska republiken)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irland" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italien" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordanien" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korea, Demokratiska folkrepubliken" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea, Republiken" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirgizistan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos, Demokratiska folkrepubliken" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Lettland" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Libanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libyen, Staten" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Litauen" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemburg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macao" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Makedonien, Republiken, forna Jugoslavien" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagaskar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldiverna" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshallöarna" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauretanien" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexiko" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Mikronesiens federerade stater" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldavien, Republiken" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongoliet" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marocko" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Moçambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Nederländerna" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Nederländska Antillerna" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nya Caledonien" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nya Zeeland" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Island" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Nordmarianerna" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norge" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua Nya Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filippinerna" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polen" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Rumänien" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Ryssland" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts och Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent och Grenadinerna" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Självständiga staten Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "São Tomé och Príncipe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudiarabien" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbien" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychellerna" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakien (Slovakiska republiken)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenien" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Salomonöarna" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Sydafrika" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Sydgeorgien och Sydsandwichöarna" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spanien" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Sankta Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint-Pierre och Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Surinam" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard och Jan Mayen-öarna" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Sverige" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Schweiz" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syrien" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tadzjikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania, Förenade republiken" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad och Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisien" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turkiet" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks- och Caicosöarna" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraina" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Förenade Arabemiraten" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Storbritannien" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "USA" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Förenta staternas (USA) mindre öar i Oceanien och Västindien" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Jungfruöarna (Storbritannien)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Jungfruöarna (USA)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis- och Futunaöarna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Västra Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Jemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Jugoslavien" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Land" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Förvalt land" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Använd ett anpassat första alternativ" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Anpassat första alternativ" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sydsudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Kreditkort" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etikett för kortnummer" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Kortnummer" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Beskrivning för kortnummer" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "De (normalt sett) 16 siffrorna på kreditkortets framsida." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Etikett för kortets CVC-kod" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Beskrivning för kortets CVC-kod" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "De 3 (baksidan) eller 4 (framsidan) siffrorna på kortet." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Etikett för kortnamn" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Namn på kortet" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Beskrivning av kortnamn" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Namnet som är tryckt på kreditkortets framsida." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Etikett för kortets utgångsmånad" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Utgångsmånad (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Beskrivning av kortets utgångsmånad" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Den månad då kortet upphör att gälla, vanligtvis på kortets framsida." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etikett för kortets utgångsår" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Utgångsår (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Beskrivning av kortets utgångsår" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Det år då kortet upphör att gälla, vanligtvis på kortets framsida." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Text" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Textelement" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Dolt fält" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Användar-ID (om inloggad)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Användarens förnamn (om inloggad)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Användarens efternamn (om inloggad)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Användarens visningsnamn (om inloggad)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Användarens e-postadress (om inloggad)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Inläggets/sidans ID (om sådant finns)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Inläggets/sidans titel (om sådan finns)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Inläggets/sidans URL (om sådan finns)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Dagens datum" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variabel för frågesträng" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Detta nyckelord är reserverat för WordPress. Försök med ett annat nyckelord." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Är detta en e-postadress?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Om denna ruta är markerad kommer Ninja Forms att verifiera denna inmatning " "som e-postadress." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Skicka en kopia av formuläret till denna adress?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Om denna ruta är markerad kommer Ninja Forms att skicka en kopia av detta " "formulär (och eventuella bifogade meddelanden) till denna adress." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honeypot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "timme" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Lista" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Detta är användarens stat" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valt värde" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Lägg till värde" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Ta bort värde" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Beräkna" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown-meny" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radioknapp" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Kryssrutor" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Flerval" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Typ av lista:" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Rutstorlek för flerval" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importera listobjekt" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Visa värden för listobjekt" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importera" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "För att använda denna funktion kan du klistra in ditt CSV i textområdet ovan." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Formatet ska se ut som följer:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Etikett,värde,beräkna" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Om du vill skicka ett tomt värde eller beräkna ska du använda '' för dem." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Vald" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Siffror" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimivärde" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maximivärde" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Steg (belopp att öka med)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organisatör" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Lösenord" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Använd detta som ett lösenordsfält för registrering" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Om denna ruta är markerad, visas både textrutorna för lösenord och lösenordsbekräftelse." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Ange lösenordsbekräftelsen igen" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Ange lösenordet igen" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Visa indikator för lösenordsstyrka" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Tips: Lösenordet måste vara minst sju tecken långt. Skapa ett säkrare " "lösenord genom att använda små och stora bokstäver, siffror och symboler som " "! \" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Lösenorden stämmer inte överens" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Stjärnklassificering" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Antal stjärnor" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Bekräfta att du inte är en robot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Fyll i captcha-fältet" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Se till att du har angett din platsnyckel och din hemliga nyckel korrekt" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha-matchningsfel. Ange korrekt värde i captcha-fältet" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Skräppost" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Skräppostfråga" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Skräppostsvar" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Skicka" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Moms" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Skatteprocent" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Ska anges som procenttal, t.ex. 8,25 %, 4 %" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Textområde" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Visa RTF-redigerare" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Visa knapp för uppladdning av media" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Inaktivera RTF-redigerare på mobil" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Verifiera som e-postadress? (Fältet måste vara obligatoriskt)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Inaktivera inmatning" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datumväljare" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefon - (555) 555-5555iu" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Valuta" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Anpassa maskdefinition" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Hjälp" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Tidsgräns för sändning" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Skicka knapptext när timern går ut" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Vänta i %n sekunder" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n kommer att användas för att indikera antalet sekunder" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Antal sekunder för nedräkning" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Det här är den tid en användare måste vänta för att skicka formuläret" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Om du är människa måste du sakta ned." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Du behöver JavaScript för att skicka det här formuläret. Aktivera det och " "försök igen." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Listfältmappning" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Intressegrupper" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Singel" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Flera" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listor" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Uppdatera" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Sändning metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Användarens meta (om inloggad)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Ta betalt" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Inga formulär hittades." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Skapat den" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "titel" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "uppdaterat" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Försöket har misslyckats" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Överordnat objekt:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Alla objekt" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Lägg till nytt objekt" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nytt objekt" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Redigera objekt" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Uppdatera objekt" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Visa objekt" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Sökobjekt" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Hittades inte i papperskorgen" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Formulärsändningar" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Sändningsinfo" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Lägg till nytt formulär" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Importfel på formulärmall." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Fält" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Den uppladdade filen är inte ett giltigt format." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Uppladdning av ogiltigt formulär." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importera formulär" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Exportera formulär" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Ekvation (avancerad)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Åtgärder och fält (avancerade)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Fält med automatisk summa" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Den uppladdade filen överstiger direktivet upload_max_filesize i php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som angetts i HTML-formuläret." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Den uppladdade filen laddades endast upp delvis." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Filen laddades inte upp." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "En temporär mapp saknas." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Misslyckades med att skriva filen till disken." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Filuppladdning stoppades pga filändelse." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Okänt uppladdningsfel." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Fel vid filöverföring" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Tilläggslicenser" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migreringar och låtsasdata slutförda. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Visa formulär" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Spara inställningar" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Serverns IP-adress" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Värdnamn" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Lägg till ett Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Formuläret saknas" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Fältet saknas" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Ett oväntat fel uppstod." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Förhandsgranskning existerar inte." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Betalningsnätslussar" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Summa att betala" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Hook Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "E-postadress eller sökning för ett fält" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Ämnestext eller sökning för ett fält" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Bifoga CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Webbadress" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Etikett här" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Hjälptext här" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Ange etiketten för formulärfältet. Det är så här användarna kommer att " "identifiera individuella fält." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Formulärstandard" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Dold" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Välj position för din etikett i förhållande till själva fältelementet." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Obligatoriskt fält" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "Se till att detta fält fylls i innan formuläret tillåts skickas." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Sifferalternativ" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Från" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Till" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Steg" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Funktioner" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "En" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "ett" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Två" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "två" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Tre" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "tre" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Beräkna värde" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Begränsar vilken typ av inmatningar dina användare kan göra i detta fält." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "ingen" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Telefonnummer USA" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "anpassad" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Anpassa mask" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a – Står för alfatecken (A–Z,a–z) – " "tillåter endast inmatning av bokstäver.
    • \n " "
    • 9 – Står för siffror (0–9) – tillåter endast inmatning av " "siffror.
    • \n
    • * – Står för alfanumeriska " "tecken (A–Z,a–z,0– 9) – tillåter inmatning av både siffror och " "bokstäver.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Begränsa inmatning till detta antal" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Tecken" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Ord" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Text att visa efter räknaren" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Tecken kvar" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Ange den text du skulle vilja visa i fältet innan en användare anger data." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Anpassa klassnamn" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Behållare" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Lägger till en extra klass till din fältcontainer." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Lägger till en extra klass till ditt fältelement." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/ÅÅÅÅ" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-ÅÅÅÅ" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/ÅÅÅÅ" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-ÅÅÅÅ" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "ÅÅÅÅ-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "ÅÅÅÅ/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Fredagen den 18 november 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Ange innevarande datum som standard" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Antal sekunder för tidsgräns för sändning." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Fältnyckel" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Skapar en unik nyckel för att identifiera och använda ditt fält för anpassad utveckling." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Etikett används vid visning och export av sändningar." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Visas för användare som en hovring." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Beskrivning" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sortera som numerisk" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Denna kolumn i sändningstabellen kommer att sortera efter nummer." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Antal sekunder för nedräkningen" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Använd detta som ett lösenordsfält för registrering. Om denna ruta är " "markerad, visas både textrutorna för lösenord " "och lösenordsbekräftelse." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Bekräfta" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Tillåter RTF-inmatning." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Bearbetar etikett" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Markerat beräkningsvärde" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Denna siffra kommer att användas i beräkningar om rutan har markerats." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Omarkerat beräkningsvärde" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Denna siffra kommer att användas i beräkningar om rutan inte har markerats." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Visa denna beräkningsvariabel" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "– Välj en variabel" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Pris" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Använd kvantitet" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Tillåt användarna att välja mer än en av denna produkt." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Produkttyp" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "En enda produkt (standard)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Flera produkter – listruta" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Flera produkter – välj många" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Flera produkter – välj en" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Användarpost" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Pris" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Kostnadsalternativ" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "En enda kostnad" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Kostnad – listruta" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Kostnadstyp" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produkt:" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "– Välj en produkt" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Svara" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Ett skiftlägeskänsligt svar för att undvika skräppostsändningar av ditt formulär." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomi" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Lägg till nya termer" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Detta är en användares stat." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Används för att markera ett fält för bearbetning." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Sparade fält" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Vanliga fält" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Användarinformationsfält" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Prisfält" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Layoutfält" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Diversefält" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Ditt formulär har skickats in." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Ninja Formulärinlämning" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Spara inlämningen" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Namn på variabel" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Ekvation" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Position för standardetikett" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Container" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Formulärnyckel" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Programmässigt namn som kan användas för att hänvisa till detta formulär." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Lägg till skickaknapp" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Vi har lagt märke till att du inte har någon skickaknapp på ditt formulär. Vi " "kan lägga till en åt dig automatiskt." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Inloggad" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Gäller förhandsgranskning av formulär." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Sändningsgräns" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Gäller INTE förhandsgranskning av formulär." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Bildskärmsinställningar" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Beräkningar" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Pris:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Antal:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Lägg till" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Öppna i nytt fönster" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Om du är en människa och ser det här fältet ska du låta det vara tomt." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Tillgängligt" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Ange en giltig e-postadress!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Dessa fält måste stämma överens!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Nummer min fel" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Nummer max fel" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Öka i steg om " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Infoga länk" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Infoga media" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Korrigera fel innan du skickar in det här formuläret." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot-fel" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Filuppläggning pågår." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "FILUPPLADDNING" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Alla fält" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Undersekvens" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Inläggs-ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Inläggstitel" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Inläggsadress" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP-address" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "Användar ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Namn" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Efternamn" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Namn som visas" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Egensinniga stilar" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Light" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Mörkt" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Använd Ninja Forms standardtypsnitt." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Återställ" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Återställ till v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Återställ till den senaste 2.9.x-versionen." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Å" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha-inställningar" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA-tema" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "RTF-redigerare (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Avancerad" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administration" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Blanka formulär" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Kontakta mig" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Falsk - åtgärden lyckades" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Tack {field:name} för att du fyllde i det här formuläret!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Falsk - e-poståtgärd" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Detta är en e-poståtgärd" #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hej Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Falsk - sparåtgärd" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Detta är ett test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "Johan Svensson" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "anvandare@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Det här är ytterligare ett test" #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Få hjälp" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Vad kan vi stå till tjänst med?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Håller du med?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Bästa kontaktmetod?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Tel" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Snigelpost" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Skicka" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Diskbänk" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Välj lista" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Alternativ ett" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Alternativ två" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Alternativ tre" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Radiolista" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Köksbänken" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Kryssrutelista" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Det här är samtliga fälten i Användarinformation." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Adress" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Stad" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Postnummer" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Det här är samtliga fälten i Priser." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produkt (kvantitet som ingår)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produkt (separat kvantitet)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Antal:" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Summa" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Fullständigt namn på kreditkort" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Kreditkortsnummer" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "CVV-kod på kreditkort" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Kreditkortets sista giltighetsdatum" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Postnummer för kreditkort" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Det här är diverse specialfält." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Anti-spam fråga (svar = svar)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "svar" #: includes/Database/MockData.php:805 msgid "processing" msgstr "behandlar" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Långt formulär - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Fält" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Fält nr" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Formulär för e-postprenumeration" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "E-postadress" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Ange din e-postadress" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Prenumerera" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Produktformulär (med fältet Kvantitet)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Köp" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Du har köpt " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "produkt(-er) för " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Produktformulär (kvantitet inline)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " produkt(-er) för " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Produktformulär (flera produkter)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produkt A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Kvantitet för Produkt A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produkt B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Kvantitet för Produkt B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "av Produkt A och " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "av Produkt B för $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formulär med beräkningar" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Min första beräkning" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Min andra beräkning" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "Beräkningar returneras med AJAX-svar (svar -> data -> beräkningar" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Kopiera" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Spara mall" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Postnummer för kreditkort" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Du måste vara inloggad för att förhandsgranska ett formulär." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Inga fält hittades." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Meddelande: Ninja Forms kortkod används utan att specificera ett formulär." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms kortkod används utan att specificera ett formulär." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Adressrad 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Knapp" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "En enda kryssruta" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "markerad" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "avmarkerad" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "CVC på kreditkort" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Å" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Å" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Å-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y-m-d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Å" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Select" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Landskap" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Meddelanderutan kan redigeras i meddelandefältets avancerade inställningar nedan." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Notis" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Bekräfta lösenord" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "lösenordet" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Fyll i recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Avancerad leverans" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Fråga" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Frågeposition" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Felaktigt svar" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Antal stjärnor" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Termlista" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Inga tillgängliga termer för denna taxonomi. %sLägg till en term%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Ingen taxonomi har valts." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Tillgängliga termer" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Textstycke" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Enkelrad text" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Postkod" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Posta" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Frågesträngar" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Frågesträng" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Användare" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " behöver uppdateras. Version " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " är installerad. Den aktuella versionen är " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Redigera fält" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Etikettnamn" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Ovanför fält" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Nedanför fält" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Till vänster om fält" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Till höger om fält" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Dölj etikett" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Klassnamn" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Grundläggande fält" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Multi-val" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Lägg till nytt fält" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Lägg till ny åtgärd" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Expandera meny" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Publicera" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLICERA" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Laddar upp" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Visa ändringar" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Lägg till formulärfält" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Kom igång genom att lägga till ditt första formulärfält." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Lägg till nytt fält" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Klicka här och markerade önskade fält." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Så enkelt är det. Eller..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Börja med en mall" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Kontakata oss" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Låt dina användare kontakta dig med detta enkla kontaktformulär. Du kan lägga " "till och ta bort fält efter behov." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Offertförfrågan" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Hantera offertförfrågan enkelt från din webbplats med denna mall. Du kan " "lägga till och ta bort fält efter behov." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Anmälan till evenemang" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Låt användaren anmäla sig till ditt nästa evenemang med detta enkla formulär. " "Du kan lägga till och ta bort fält efter behov." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Registreringsformulär för nyhetsbrev" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Lägg till prenumeranter och utöka din e-postlista med detta " "registreringsformulär för nyhetsbrev. Du kan lägga till och ta bort fält " "efter behov." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Lägg till formulär - åtgärder" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Kom igång genom att lägga till ditt första formulärfält. Klicka på " "plustecknet och markera önskade åtgärder. Så enkelt är det." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicera (^ + C + klicka)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Ta bort (^ + D + klicka)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Åtgärder" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Växla låda" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Helskärm" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Halvskärm" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Ångra" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Klar" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Ångra alla" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Ångra alla" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Nästan klart ..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Inte ännu" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Öppna i nytt fönster" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Inaktivera" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Fixa detta." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Välj ett formulär" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Tillsvidaredatum" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Vänligen läs igenom innan du begär hjälp från vårt supportteam:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE-dokumentation" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Vad du kan pröva innan du kontaktar support" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Supporttjänsternas omfattning" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importera fält" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Uppdaterat: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Inskickat: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Inskickat av: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Sändningsdata" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Visa" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Visa mer" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Redigera fält" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Formulärfält" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Förhandsgranska ändringarna" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Kontaktformulär" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Hoppsan! Den tilläggskomponenten är inte kompatibel med Ninja Forms THREE " "ännu. %sLäs mer%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s har inaktiverats." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Hjälp oss att förbättra Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Om du samtycker kommer vissa data om din installation av Ninja Forms att " "skickas till NinjaForms.com (detta inkluderar INTE dina sändningar)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Om du hoppar över detta är det okej. Ninja Forms kommer ändå att fungera bra." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sTillåt%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sTillåt inte%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Du har inte behörighet." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Behörighet nekades." #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "FELSÖK: Växla till 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "FELSÖK: Växla till 3.0.x" lang/ninja-forms-pt_PT.mo000064400000276301152331132460011302 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 (EPG&aD!Af   .lO 'CW_~oI-?Q`rz  4Ic s$ 35-&c  !7 JT]f,ku*K5D'7S[bk t ($$$ *3 9D KV_-z  &+IQ Xcgp  A 0 ;IRYl * %9BW `l(s   ';T ePo  F6T-o*,)>Z!m   &;[o )$4 G Q_]g !- G T ^ hsy Fe~"$%/%U {;Z%q  !?Fdi{   n!& !*>iz" 7#&-Jx;! )%Gm$50 &0 FQmv  ); AMV\z256eMZ* 9_Eex 0XV_h {1D\u    2295l "5 ! ,:IMU $BX!n"% .!Pg  +IX `   G79 CPk pcz'B\w        3 F L [  o z   *  %          4 B R Z  j t V , z oarZsdAC<2'=ZO&`v=$-?Xr 2CVk r}   #&7^z,) 0 =5G }  *  -3Cw X( %.C U;`8  7 AN+T+     &4 :H ] h s~* j y  2 !0' +9Ig$,    $  .  9 D c l   "    !'! E!O!g!~!!!!!!!!!!!" """ " ""1" #!#(#1# M#Y#&s##### $#($L$-i$$$$$3k%z%<&W&''f({}(y(s)J)*t*y*~* ***%*D+!Z+|++;++ + ,",!*, L,W,u,_z,.,Q -[-c-{----+-+.)/.Y.m.r.,u.b./ /=/ R/ ]/ k/x/ /////"/0)080 A0L0R0Z0l00000,0 0 1 161I1]1 b1l1u111 i2 u292,2"2 3)34>3Ds335I46424#45 5 C5 O5Jp552Q667626) 7377"77778 #84089e858888 99)9F9"b9999 99"999: /: 9:,C:)p:-::L:%; .;9;B; H;S;k; ;;;;;;; <</<+J<;v< <<<>< =%#=MI= =S= =>>2>Q>&p>(>J> ??-?I? e?Tr???? @ @4@);@e@@@@@@@@ @@A A&A=AMAUAfAAAA AAA AAB B#B4B&EBlBB,ByBHCC CCC5CCCC D!D 8DBD HDRRDD7D D0E!2E TE"aE6E E EEE EE"F 7F!CF eF pF~FGGG6GMG'\G GGGG,G H HH3HBH^H{HHH3H HHHHH%I%+IQI WIdIsIIIIII5I8JMJ UJ aJ oJ yJ JJJJJ JJJJK K4KTK [K@hKKKK KKLL%L+L%=L:cLLL L(LLMr&NN61O?hOCO\OIP!OQqQ`wRR3_S.S$SSa{TOT7-U_eUU|V1W/2WCbW5W$WX>X]XxXX X*XXLYBSYVYYE ZHRZZL[[v\F\I@]]L^87_Sp___ _ _ ``P` aa+a0a9a?aEamJaaaaaabb bbb3b:b CbNbNkbc cc cc*d"-dPd _djdyd,dd"ddee#e"+eNe+be>eVeb$f6ff5ig gFg!gPhdh=zhh2h1h.i%Ji7pi9i i!j%j kQklkrkzk kk k kk kkkkkkl-lFlbl{l l l%ll(lm 6mDmTm&nmn:o(@oioooo4o8o 1pM;pCp pp ppp p qqqZqEtqq<ir>rr5rB0s)ssPssms*ettBuMu:CvM~v@v ww xx xxx\xBy Kyly pyyy yyyyyyy zzz z%z(z8zKzNz_z oz{z zzzzzz { '{ 2{<{B{J{ O{ Z{e{z{a{{Qo| Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Campos Abrir numa nova janela Desfazer tudo instalada. A versão atual é produto(s) por requer uma atualização Tem a versão #%1$s rascunho atualizado. Pré-visualizar%3$s%1$s restaurado para revisão de %2$s.%1$s agendado para: %2$s. Pré-visualizar%4$s%1$s enviado. Pré-visualizar%3$sSerá utilizada a variável %n para indicar o número de segundosHá %s%s publicado.%s guardados.%s actualizados.O %s foi desativado.%sPermitir%sValor do cálculo %smarcado%s%sNão permitir%sValor do cálculo %sdesmarcado%s* - Representa um carácter alfanumérico (A-Z, a-z, 0-9) - Isto permite a introdução de números e letras- Nenhum- Selecionar uma opção- Selecionar um campo- Selecionar um produto- Selecionar uma variável- Selecionar um formulário- Visualizar todos os tipos9 - Representa um carácter numérico (0-9) - Apenas permite a introdução de números
    • a - Representa um carácter alfabético (A-Z, a-z) - Apenas permite a introdução de letras.
    • 9 - Representa um carácter numérico (0-9) - Apenas permite a introdução de números.
    • * - Representa um carácter alfanumérico (A-Z, a-z, 0-9) - Isto permite a introdução de números e letras.
    Uma resposta que faz a distinção entre maiúsculas e minúsculas para ajudar a impedir os envios de spam do seu formulário.Está prestes a ser disponibilizada uma grande atualização do Ninja Forms. %sObtenha mais informações sobre as novas funcionalidades e a retrocompatibilidade desta versão. Além disso, consulte também as novas perguntas mais frequentes.%sUma experiência de criação de formulários mais simples e sofisticada.Acima do elementoPor cima do campoNome da açãoAção atualizadaTarefasActivarActivoAdicionarAdicionar descriçãoAdicionar formulárioAdicionar novoAdicionar novo campoAdicionar novo formulárioAdicionarAdicionar novo envioAdicionar novos termosAdicionar operaçãoAdicionar botão de envioAdicionar valorAdicionar ações de formulárioAdicionar campos de formulárioAdicionar formulário a esta páginaAdicionar nova açãoAdicionar novo campoAdicione subscritores e aumente a sua lista de endereços de correio eletrónico com este formulário de inscrição no boletim informativo. Pode adicionar ou remover campos conforme necessário.Licenças dos extrasSuplementosMoradaMorada 2Adiciona uma classe extra ao seu elemento de campo.Adiciona uma classe extra ao seu invólucro de campo.Correio eletrónico de administraçãoEtiqueta de administraçãoAdministraçãoAvançadoEquação avançadaConfigurações avançadasExpedição avançadaAfeganistãoDepois de tudoDepois do formulárioDepois da etiquetaConcorda?AlbâniaArgéliaTudoTodas as informações sobre os formuláriosTodos os camposTodos os formuláriosTodos os itensTodos os formulários atuais permanecerão na tabela "Todos os formulários". Em determinados casos, alguns formulários poderão ser duplicados durante este processo.Permita que os utilizadores se registem no seu próximo evento através deste formulário fácil de preencher. Pode adicionar ou remover campos conforme necessário.Permita que os seus utilizadores entrem em contacto consigo através deste simples formulário de contacto. Pode adicionar ou remover campos conforme necessário.Permite a introdução de texto formatado.Permite que os utilizadores escolham mais do que uma unidade deste produto.Está quase...Juntamente com o separador "Criar o seu formulário", substituímos as "Notificações" por "Mensagens de correio eletrónico e ações". Esta é uma indicação muito mais clara sobre o que pode ser realizado neste separador.Samoa AmericanaOcorreu um erro inesperado.AndorraAngolaAnguillaRespostaAntártidaAntisspamPergunta anti-spam (Resposta = resposta)Mensagem de erro do filtro antisspamAntígua e BarbudaQualquer carácter que colocar na caixa "máscara personalizada" que não esteja incluído na lista abaixo será introduzido automaticamente à medida que o utilizador escrever, não sendo possível removê-loAnexar um formulário do Ninja FormsAnexar um formulário do Ninja FormsAnexar à páginaAplicarArgentinaArméniaArubaAnexar CSVAnexosAustráliaÁustriaCampos de soma automáticaSomar automaticamente os valores do cálculo DisponívelTermos disponíveisAzerbaijãoVoltar à listaVoltar para listaEfetuar cópia de segurança/restaurarEfetuar cópia de segurança do Ninja FormsBahamasBarémBangladeshBarBarbadosCampos básicosDefinições básicasLavatórioBazBccAntes de tudoAntes do formulárioAntes da etiquetaAntes de solicitar ajuda à nossa equipa de assistência, reveja:Data de inícioData atualBielorrússiaBélgicaBelizeAbaixo do elementoPor baixo do campoBenimBermudasMelhor método de contacto?A melhor assistência do mercadoDefinições dos campos melhor organizadasMelhor gestão de licençasButãoFaturaçãoFormulários vaziosBolíviaBósnia-HerzegóvinaBotsuanaIlha BouvetBrasilTerritório Britânico do Oceano ÍndicoBrunei DarussalamCriar o seu formulárioBulgáriaAcções por lotesBurkina FasoBurundiBotãoCVCCálculoValor do cálculoCálculoMétodo de cálculoDefinições de cálculoNome do cálculoCálculosOs cálculos são devolvidos com a resposta AJAX ( resposta -> dados -> cálculoCambodjaCamarõesCanadáCancelarCabo VerdeO CAPTCHA não coincide. Introduza o valor correto no campo do CAPTCHADescrição do CVC do cartãoEtiqueta do CVC do cartãoDescrição do mês de expiração do cartãoEtiqueta do mês de expiração do cartãoDescrição do ano de expiração do cartãoEtiqueta do ano de expiração do cartãoDescrição do nome do cartãoEtiqueta do nome do cartãoNúmero do CartãoDescrição do número do cartãoEtiqueta do número do cartãoIlhas CaimãoCcRepública da África CentralChadeAlterar valorCarácter/CaracteresCaracteres restantesCaracteresA fazer batota, huh?Consulte a nossa documentaçãoCaixa de selecçãoLista de caixas de seleçãoCaixas de verificaçãoMarcadaValor do cálculo marcadoChileChinaIlha do NatalLocalidadeNome da classeApagar formulário concluído com êxito?Ilhas dos CocosRecolher pagamentoColômbiaCampos comunsComoresÉ possível criar equações complexas ao adicionar parênteses: %s(field_45 * field_2)/2%s.ConfirmarConfirme que não é um robôCongoCongo, República Democrática doFormulário de contactoEntrem em contacto comigoContacte-nosContentorContinuarIlhas CookCustoMenu pendente do custoOpções de custoTipo de custoCosta RicaCosta do MarfimNão foi possível ativar a licença. Confirme a sua chave de licençaPaísCria uma chave exclusiva para identificar e segmentar o seu campo para desenvolvimento personalizado.Cartão de créditoCVC do cartão de créditoCVC do cartão de créditoExpiração do cartão de créditoNome completo do cartão de créditoNúmero do Cartão de CréditoCódigo postal do cartão de créditoCódigo postal do cartão de créditoCréditosCroácia (nome local: Hrvatska)CubaMoedaSímbolo de moedaPágina actualPersonalizado(a)Classe de CSS personalizadaClasses de CSS personalizadasNomes de classe personalizadosGrupo de campos personalizadosMáscara personalizadaDefinição de máscara personalizadaCampo apagadoCampo atualizadoPrimeira opção personalizadaChipreRepública ChecaDD-MM-YYYYDD/MM/YYYYDEPURAÇÃO: Mudar para 2.9.xDEPURAÇÃO: Mudar para 3.0.xEscuroDados restaurados com êxito!DataData de criaçãoFormato da dataDefinições de dataData de envioData de atualizaçãoSelecionador de dataDesativarDesactivarDesativar todas as licençasDesativar licençaDesative as licenças das extensões do Ninja Forms individualmente ou em grupo no separador das definições.PadrãoPaís predefinidoPosição da etiqueta predefinidaFuso horário predefinidoUtilizar data atual por predefiniçãoValor predefinidoO fuso horário predefinido é %sFuso horário padrão é %s - deve ser UTCCampos definidosApagarApagar (^ + D + clique)Eliminar permanentementeEliminar este formulárioEliminar este item permanentementeDinamarcaDescriçãoConteúdo da descriçãoPosição da descriçãoSabia que pode aumentar a conversão dos formulários ao dividir formulários grandes em várias secções mais pequenas e fáceis de digerir?

    A extensão Multi-Part Forms para o Ninja Forms torna este procedimento rápido e fácil.

    Desativar avisos de administraçãoDesativar conclusão automática do navegadorDesativar introduçãoDesativar editor de texto formatado em dispositivos móveisDesativar introdução?IgnorarVisualizaçãoApresentar título do formulárioNome exibidoConfigurações de exibiçãoApresentar esta variável de cálculoApresentar títuloApresentar o seu formulárioDividerDjibutiNão mostrar estes termosDocumentaçãoDocumentação disponível em breve.Encontra-se disponível documentação cobrindo todos os assuntos, desde a %sResolução de problemas%s até à nossa %sAPI para programadores%s. Estão sempre a ser adicionados novos documentos.NÃO se aplica à pré-visualização do formulário.Aplica-se à pré-visualização do formulário.DomínicaRepública DominicanaConcluídoDescarregar todos os enviosDropdownDuplicarDuplicar (^ + C + clique)Duplicar formulárioEquadorEditarEditar açãoEditar formulárioEditarEditar item do menuEditar envioEditar este itemCampo de ediçãoCampo de ediçãoEgitoEl SalvadorElementoEmailCorreio eletrónico e açõesEndereço de emailMensagem de correio eletrónicoFormulário de subscrição de correio eletrónicoEndereço de correio eletrónico ou procurar um campoEndereços de correio eletrónico ou procurar um campoA mensagem de correio eletrónico será apresentada como tendo sido enviada a partir deste endereço.A mensagem de correio eletrónico será apresentada como tendo sido enviada por este nome.Mensagens de correio eletrónico e açõesData de fimCertifique-se de que este campo é preenchido antes de permitir que o formulário seja enviado.Introduza o texto que pretende apresentar no campo antes de um utilizador introduzir quaisquer dados.Introduza a etiqueta do campo do formulário. Esta é a forma como os utilizadores identificarão os campos individuais.Introduza o seu endereço de correio eletrónicoAmbienteEquacao Equação (avançado)Guiné EquatorialEritreiaErroMensagem de erro apresentada se não estiverem preenchidos todos os campos obrigatóriosEstóniaEtiópiaRegisto de eventosExpandir menuMês de expiração (MM)Ano de expiração (AAAA)ExportarExportar campos favoritosExportar camposExportar formulárioExportar formuláriosExportar um fomulárioExportar este itemProlongar o Ninja FormsCARREGAMENTO DO FICHEIROFalha ao escrever no disco.MalvinasIlhas FaroéCampos favoritosFavoritos importados com êxito.CampoCampo n.ºID do campoChave do campoCampo não encontradoOperações dos camposCamposOs campos assinalados com um * são obrigatórios.Os campos assinalados com um %s*%s são obrigatóriosFijiErro de carregamento de ficheiroCarregamento do ficheiro em curso.Carregamento do ficheiro interrompido pela extensão.FinlândiaPrimeiro nomeCorrigir isto.FooFoo BarPor exemplo, se tivesse uma chave de produto com o formato A4B51.989.B.43C, poderia mascará-la com a9a99.999.a.99a, o que forçaria que todos os "a" fossem letras e todos os "9" fossem númerosFormulárioPredefinição do formulárioFormulário eliminadoCampos do formulárioFormulário importado com êxito.Chave de formulárioFormulário não encontradoPré-visualização do formulárioDefinições do formulário guardadasEnvios de formuláriosErro de importação do modelo de formulário.Título do formulárioFormulário com cálculosFormatoFormuláriosFormulários eliminadosFormulários por páginaFrançaFrança (Metropolitana)Guiana FrancesaPolinésia FrancesaTerritórios Austrais FrancesesSexta, 18 de novembro de 2019Endereço "De"De NomeRegisto de alterações completoEcrã inteiroGabãoGâmbiaGeralDefinições geraisGeórgiaAlemanhaObtenha ajudaObter mais açõesObter mais tiposObter ajudaObter assistênciaObter Relatório do SistemaObtenha uma chave de sítio para o seu domínio ao registar-se %saqui%sComece por adicionar o seu primeiro campo de formulário.Comece por adicionar o seu primeiro campo de formulário. Basta clicar no sinal de mais e selecionar as ações pretendidas. É só isto.IntroduçãoIniciação ao Ninja FormsGanaGibraltarDê um título ao seu formulário. Esta é a forma como poderá encontrar o formulário mais tarde.IrA sua tentativa falhou.Aceder aos formuláriosAceder ao Ninja FormsIr para a primeira páginaIr para a última páginaIr para a página seguinteIr para a página anteriorGréciaGronelândiaGranadaDocumentação em expansãoGuadalupeGuameGuatemalaGuinéGuiné-BissauGuianaHTMLHaitiMeio ecrãIlha Heard e Ilhas McDonaldOlá, Ninja Forms!AjudaTexto de ajudaTexto de ajuda aquiEscondidasCampo escondidoOcultar etiquetaOcultar istoOcultar formulário concluído com êxito?Dica: A palavra-passe deverá ter, no mínimo, sete caracteres. Para torná-la mais segura, utilize letras maiúsculas e minúsculas, números e símbolos, tais como ! " ? $ % ^ & ).Santa Sé (Cidade-estado do Vaticano)URL da página inicialHondurasPote de melErro do pote de melMensagem de erro do pote de melHong KongEtiqueta da ligaçãoNome do host:Está tudo bem?HungriaEndereço de IPIslândiaSe o "texto da descrição" estiver ativado, será apresentado um ponto de interrogação %s junto ao campo de introdução. A colocação do cursor do rato sobre este ponto de interrogação mostrará o texto da descrição.Se o "texto de ajuda" estiver ativado, será apresentado um ponto de interrogação %s junto ao campo de introdução. A colocação do cursor do rato sobre este ponto de interrogação mostrará o texto de ajuda.Se esta caixa estiver marcada, TODOS os dados do Ninja Forms serão removidos da base de dados após a eliminação. %sTodos os dados dos formulários e envios serão irrecuperáveis.%sSe esta caixa estiver marcada, o Ninja Forms apagará os valores do formulário após o mesmo ter sido enviado com êxito.Se esta caixa estiver marcada, o Ninja Forms ocultará o formulário após o mesmo ter sido enviado com êxito.Se esta caixa estiver marcada, o Ninja Forms enviará uma cópia deste formulário (e quaisquer mensagens anexadas) para este endereço.Se esta caixa estiver marcada, o Ninja Forms validará esta introdução como um endereço de correio eletrónico.Se esta caixa estiver marcada, serão apresentadas as caixas de texto da palavra-passe e da confirmação da mesma.Se esta caixa estiver marcada, a respetiva coluna na tabela de envios será ordenada pelos números.Se não for um robô e estiver a ver este campo, deixe-o em branco.Se for humano e estiver a ver este campo, deixe-o em branco.Se não for um robô, proceda de forma mais lenta.Se deixar a caixa vazia, não será utilizado qualquer limiteSe aceitar participar, serão enviados alguns dados sobre a sua instalação do Ninja Forms para NinjaForms.com (isto NÃO inclui os envios).Se ignorar isto, não faz mal! O Ninja Forms funcionará corretamente na mesma.Se pretender enviar um valor ou cálculo em branco, deverá utilizar '' para essas ocorrências.Se pretender que o seu formulário o notifique através de correio eletrónico quando um utilizador clicar no botão de envio, pode definir esta opção neste separador. Pode criar um número ilimitado de mensagens de correio eletrónico, incluindo as mensagens enviadas para o utilizador que preencheu o formulário.Se os seus formulários estiverem "em falta" após a atualização para a versão 2.9, este botão tentará reconverter os formulários antigos para mostrar os mesmos na versão mais recente. Todos os formulários atuais permanecerão na tabela "Todos os formulários".ImportarImportar/exportarImportar/exportar enviosImportar campos favoritosImportar favoritosImportar camposImportar formulárioImportar formuláriosImportar itens da listaImportar um formulárioImportar/exportarMaior clarezaIncluir na soma automática? (Caso esteja ativado)Resposta incorretaAumentar conversõesÍndiaIndonésiaMáscara de introduçãoInserirInserir todos os camposInserir campoInserir hiperligaçãoInserir multimédiaDentro do elementoInstaladoSuplementos instaladosGrupos de interesseCarregamento de formulário inválido.ID de formulário inválidaIrão, República Islâmica doIraqueIrlandaIsto é um endereço de correio eletrónico?IsraelÉ só isto. Ou…ItáliaJamaicaJapãoMensagem de erro de JavaScript desativadoZé NinguémJordâniaBasta clicar aqui e selecionar os campos pretendidos.CazaquistãoQuéniaChaveQuiribátiKitchen SinkCoreia, República Popular Democrática daCoreia, República daKuwaitQuirguistãoEtiquetaEtiqueta aquiNome da etiquetaPosição da etiquetaEtiqueta utilizada ao visualizar e exportar envios.Etiqueta,Valor,CálculoEtiquetasIdioma utilizado pelo reCAPTCHA. Para obter o código para o seu idioma, clique %saqui%sLaos, República Democrática Popular doSobrenomeLetôniaElementos do esquemaCampos de esquemaSaber MaisObter mais informações sobre a extensão Multi-Part FormsObter mais informações sobre a extensão Save ProgressLíbanoÀ esquerda do elementoÀ esquerda do campoLesotoLibériaLíbia, Jamahiriya Árabe daLicençasListenstaineClaroLimitar introdução com base neste númeroMensagem de limite alcançadoLimitar enviosLimitar introdução com base neste númeroListaListar mapeamento dos camposTipo de listaListasLituâniaA carregarA carregar...LocalFazer o loginFormulário longo - LuxemburgoMM-DD-YYYYMM/DD/YYYYMacauMacedónia, Antiga República Jugoslava daMadagáscarMalawiMalásiaMaldivasMaliMaltaFaça a gestão de pedidos de orçamentos do seu sítio facilmente com este modelo. Pode adicionar ou remover campos conforme necessário.Ilhas MarshallMartinicaMauritâniaMauríciaMáxNível de incorporação máximo das introduçõesValor máximoTalvez mais tardeMaioteMédiaMensagemEtiquetas de mensagemMensagem mostrada aos utilizadores se a caixa de seleção "com uma sessão iniciada" acima estiver marcada e os mesmos não tiverem uma sessão iniciada.Caixa de metadadosMéxicoMicronésia, Estados Federados daMigrações e dados de simulação concluídos. MinValor mínimoCampos diversosAusência de correspondênciaFalta uma pasta temporária.Ação de e-mail de simulaçãoAção de salvaguarda de simulaçãoAção de mensagem de sucesso da simulaçãoModificado aMoldávia, República daMónacoMongóliaMontenegroMonserrateMais funcionalidades a caminhoMarrocosMover este item para o LixoMoçambiqueEscolha múltiplaVários produtos - Escolher muitosVários produtos - Escolher umVários produtos - Menu pendenteSeleção múltiplaTamanho da caixa de seleção múltiplaMúltiploO meu primeiro cálculoO meu segundo cálculoVersão do MySQLMianmar/BirmâniaNomeNome no cartãoNome ou camposNamíbiaNauruPrecisa de ajuda?NepalHolandaAntilhas HolandesasNunca veja um aviso de administração no painel de controlo do Ninja Forms. Desmarque esta opção para ver os avisos novamente.Nova açãoNovo separador do criadorNova CaledóniaNovo itemNovo envioNova ZelândiaFormulário de inscrição no boletim informativoNicaráguaNígerNigériaDefinições do Ninja FormsNinja FormsNinja Forms - A processarRegisto de alterações do Ninja FormsDev do Ninja FormsDocumentação do Ninja FormsProcessamento do Ninja FormsEnvio de formulários de ninjaEstado do sistema do Ninja FormsDocumentação do Ninja Forms TRHEEAtualização do Ninja FormsProcessamento da atualização do Ninja FormsAtualizações do Ninja FormsVersão do Ninja FormsMiniaplicação do Ninja FormsO Ninja Forms inclui também uma função de modelo simples que pode ser colocada diretamente num ficheiro de modelo em PHP. %sA ajuda básica do Ninja Forms é apresentada aqui.O Ninja Forms não pode ser ativado através da rede. Visite o painel de controlo de cada sítio para ativar o suplemento.O Ninja Forms concluiu todas as atualizações disponíveis!O Ninja Forms é desenvolvido por uma equipa mundial de programadores com o objetivo de fornecer à comunidade do WordPress o melhor suplemento de criação de formulários possível.O Ninja Forms necessita de processar %s atualização(ões). Isto poderá demorar alguns minutos a concluir. %sIniciar atualização%sO Ninja Forms necessita de atualizar as suas definições de correio eletrónico; clique %saqui%s para iniciar a atualização.O Ninja Forms necessita de atualizar a tabela de envios; clique %saqui%s para iniciar a atualização.O Ninja Forms necessita de atualizar as suas notificações dos formulários; clique %saqui%s para iniciar a atualização.O Ninja Forms necessita de atualizar as suas definições dos formulários; clique %saqui%s para iniciar a atualização.O Ninja Forms fornece uma miniaplicação que pode colocar em qualquer área aplicável do seu sítio, permitindo-lhe selecionar o formulário que pretende apresentar nesse espaço.Código abreviado do Ninja Forms utilizado sem especificar um formulário.NiueNãoNenhuma ação especificada...Nenhum campo favorito encontradoNenhum campo encontrado.Nenhum envio encontradoNenhum envio encontrado na ReciclagemNenhum termo disponível para esta taxonomia. %sAdicionar um termo%sNão foi enviado nenhum ficheiro.Nenhum formulário encontrado.Nenhuma taxonomia selecionada.Não foi encontrado nenhum registo de alterações válido.NenhumIlha NorfolkIlhas Marianas do NorteNoruegaMensagem de sessão não iniciadaAinda nãoNão encontrado na ReciclagemNotaO texto da observação pode ser editado nas definições avançadas do respetivo campo abaixo.Aviso: Este conteúdo necessita do JavaScript.Aviso: Código abreviado do Ninja Forms utilizado sem especificar um formulário.NúmeroErro de número máximoErro de número mínimoOpções de númerosNúmero de EstrelasNúmero de casas decimais.Número de segundos da contagem decrescenteNúmero de segundos da contagem decrescenteNúmero de segundos do envio temporizado.Número de estrelasOmãUmUm endereço de correio eletrónico ou campoUps! Esse extra ainda não é compatível com o Ninja Forms THREE. %sObtenha mais informações%s.Abrir numa nova janelaOperações e campos (avançado)Estilos persistentesOpção umOpção trêsOpção doisOpçõesOrganizadorO nosso Âmbito da AssistênciaGerar cálculo comoDefinições regionais do PHPPHP Max Input VarsTamanho máximo para upload no PHPLimite de tempo PHPVersão do PHPPUBLICARPaquistãoPalauPanamáPapua Nova GuinéTexto do parágrafoParaguaiItem principal:SenhaConfirmação da palavra-passeEtiqueta de palavras-passe não coincidentesPalavras-passe não correspondemCampos de pagamentoGateways de pagamentoTotal do pagamentoPermissão recusadaPeruFilipinasTelefoneTelefone - (555) 555-555Ilhas PitcairnColoque %s em qualquer área que aceite códigos abreviados para apresentar o seu formulário onde quiser. Poderá inclusivamente apresentá-lo no centro da sua página ou do conteúdo das publicações.PlaceholderTexto Simples%sContacte a assistência%s com o erro apresentado acima.Responda corretamente à pergunta antisspam.Verifique os campos obrigatórios.Preencha o campo do CAPTCHAPreencha o reCAPTCHACorrija os erros antes de submeter este formulário.Certifique-se de que todos os campos obrigatórios são preenchidos.Introduza uma mensagem a ser apresentada quando este formulário tiver alcançado o respetivo limite de envios e deixar de aceitar novos envios.Introduza um endereço de correio eletrónico válidoIntroduza um endereço de correio eletrónico válido!Por favor introduza um endereço de email válido.Ajude-nos a melhorar o Ninja Forms!Inclua estas informações ao solicitar assistência:Aumente em Deixe o campo do spam em branco.Certifique-se de que introduziu o sítio e as chaves secretas corretamenteClassifique o %sNinja Forms%s %s em %sWordPress.org%s para nos ajudar a manter este suplemento gratuito. A equipa do Ninja Forms do WP agradece-lhe!Selecione um formulário para visualizar os enviosSelecione um formulário.Selecione um ficheiro de formulário exportado válido.Selecione um ficheiro de campos favoritos válido.Selecione os campos favoritos a exportar.Utilize estes operadores: + - * /. Esta é uma funcionalidade avançada. Esteja atento a certos itens, tal como a divisão por 0.Aguarde %n segundosAguarde para enviar o formulário.PluginsPolóniaPopular isto com a taxonomiaPortugalPublicaçãoID da página/publicação (caso esteja disponível)Título da página/publicação (caso esteja disponível)URL da página/publicação (caso esteja disponível)Publicar criaçãoID da publicaçãoTítulo do PostURL do artigoPré-visualizarPré-visualizar alteraçõesPré-visualizar formulárioA pré-visualização não existe.PreçoPreço:Campos de preçosA processarA processar etiquetaEtiqueta de processamento de envioProdutoProduto (quantidade incluída)Produto (quantidade separada)Produto AProduto BFormulário de produto (Quantidade em linha)Formulário de produto (Vários produtos)Formulário de produto (com campo Quantidade)Tipo de produtoNome programático que pode ser utilizado para referenciar este formulário.PublicarPorto RicoAdquirirQatarQuantidadeQuantidade do Produto AQuantidade do Produto BQuantidade:Cadeia de consultaCadeias de consultaVariável da cadeia de consultaPerguntaPosição da perguntaPedido de orçamentoRádioLista de botões de seleçãoReintroduzir palavra-passeEtiqueta de reintrodução da palavra-passeTem a certeza de que pretende desativar todas as licenças?ReCAPTCHARedireccionamentoRemoverRemover TODOS os dados do Ninja Forms após a desinstalação?Remover valorRemover todos os dados do Ninja FormsRemover este campo? O mesmo será removido, inclusivamente se não o guardar.Responder aRequerer que o utilizador tenha uma sessão iniciada para visualizar o formulário?ObrigarórioCampo ObrigatórioErro de campo obrigatórioEtiqueta de campo obrigatórioSímbolo de campo obrigatórioRestabelecer conversão do formulárioRestabelecer conversão dos formuláriosRestabelecer o processo de conversão dos formulários para a versão 2.9+RestaurarRestaurar o Ninja FormsRestaurar este item do LixoDefinições de restriçãoRestriçõesRestringe o tipo de introdução que os seus utilizadores podem efetuar neste campo.Regressar ao Ninja FormsReuniãoEditor de texto formatado (RTE)À direita do elementoÀ direita do campoRecuarRecuar para a versão 2.9.x mais recente.Recuar para a versão 2.9.xRoméniaFederação RussaRuandaSMTPPrograma-cliente do SOAPSUHOSIN InstaladoSão Cristóvão e NevesSanta LúciaSão Vicente e GranadinasSamoaSão MarinhoSão Tomé e PríncipeArábia SauditaGuardarGuardar e ativarGuardar definições dos camposGuardar formulárioGuardar opçõesGuardar ConfiguraçõesGuardar envioGuardadoCampos guardadosA guardar...Pesquisar itemProcurar enviosSeleccionarSeleccionar tudoSelecionar listaSelecionar um campo ou tipo a procurarSelecione um ficheiroSelecionar um formulárioSelecionar um formulário ou tipo a procurarSelecione o número de envios aceites por este formulário. Deixe esta opção em branco para não estabelecer um limite.Selecione a posição da sua etiqueta em relação ao elemento do campo.SeleccionadoValor selecionadoEnviarEnviar uma cópia do formulário para este endereço?SenegalSérviaEndereço de IP do ServidorDefiniçõesDefinições guardadasSeichelesEnvioShortcodeEste valor deverá ser introduzido como uma percentagem (por exemplo, 8,25% ou 4%)Mostrar texto de ajudaMostrar botão de carregamento de conteúdo multimédiaMostrar maisMostrar indicador de segurança da palavra-passeMostrar editor de texto formatadoMostrar istoMostrar valores dos itens da listaMostrado aos utilizadores como um elemento sobreposto.Serra LeoaSingapuraÚnicoCaixa de seleção únicaCusto únicoTexto de linha únicaUm único produto (predefinição)URL do siteEslováquia (República Eslovaca)EslovéniaCorreio lentoPor conseguinte, se pretendesse criar uma máscara para um número de segurança social norte-americano, escreveria 999-99-9999 na caixaIlhas SalomãoSomáliaOrdenar como numéricoOrdenar como numéricoÁfrica do SulIlhas Geórgia do Sul e Sandwich do SulSudão do SulEspanhaResposta do filtro contra spamPergunta do filtro contra spamEspecificar operações e campos (avançado)Sri LancaSanta HelenaSão Pedro e MiquelãoCampos padrãoClassificação de estrelasComece a partir de um modeloDistritoEstadoPassoPasso n.º %d de (aproximadamente) %d em execuçãoIncrementoIndicador de segurançaForteSub-sequênciaAssuntoTexto do assunto ou procurar um campoTexto do assunto ou procurar um campoEnvioCSV do envioDados de envioInformações de envioLimite de enviosCaixa de metadados de envioEstatísticas de envioEnviosSubmeterTexto do botão de envio após o temporizador expirarEnviar através de AJAX (sem recarregamento da página)?EnviadoEnviado porEnviado por: Enviado aEnviado a: SubscreverMensagem de êxitoSudãoSurinameIlhas Svalbard e Jan MayenSuazilândiaSuéciaSuíçaSíria, República ÁrabeSistemaEstado do SistemaA versão THREE está prestes a ser disponibilizada!TaiwanTajiquistãoConsulte a nossa documentação detalhada do Ninja Forms abaixo.Tanzânia, República Unida daImpostoPercentagem de impostoTaxonomiaCampos de modeloFunção do modeloLista de termosTextoElemento de textoTexto a apresentar depois do contadorTexto a apresentar após o contador de caracteres/palavrasÁrea de textoCaixa de textoTai|ândiaObrigado por preencher este formulário.Obrigado por efetuar a atualização para a versão mais recente! O Ninja Forms %s foi concebido especificamente para tornar a gestão dos envios uma experiência mais agradável!Obrigado por efetuar a atualização para a versão 2.7 do Ninja Forms. Atualize quaisquer extensões do Ninja Forms através de Obrigado por efetuar a atualização! O Ninja Forms %s torna a criação de formulários mais fácil do que nunca!Obrigado por utilizar o Ninja Forms! Esperamos que tenha encontrado tudo aquilo de que necessita, mas, no caso de pretender esclarecer alguma questão:Obrigado {field:name} por preencher o meu formulário!Os (geralmente) 16 dígitos na face do seu cartão de crédito.O valor com 3 dígitos (verso) ou 4 dígitos (face) no seu cartão.Os "9" representariam qualquer número e os traços ("-") seriam adicionados automaticamenteO menu "Formulários" é o seu ponto de acesso para tudo o que está relacionado com o Ninja Forms. Já criámos o seu primeiro %sformulário de contacto%s para que tenha um exemplo. Pode também criar o seu próprio formulário ao clicar em %sAdicionar novo%s.O formato deverá ser o seguinte:As atualizações da interface desta versão estabelecem as bases para algumas melhorias fantásticas no futuro. A versão 3.0 tirará partido destas alterações para tornar o Ninja Forms um criador de formulários ainda mais estável, sofisticado e intuitivo.O mês em que o seu cartão de crédito expira, sendo geralmente apresentado na face do cartão.As definições mais comuns são mostradas imediatamente, enquanto as outras definições estão incluídas em secções expansíveis.O nome impresso na face do seu cartão de crédito.As palavras-passe fornecidas não são iguais.As pessoas que criaram o Ninja FormsO processo foi iniciado, seja paciente. Isto poderá demorar vários minutos. Será redirecionado automaticamente quando o processo for concluído.O ficheiro carregado excede a diretiva MAX_FILE_SIZE que foi especificada no formulário em HTML.O ficheiro carregado excede a diretiva upload_max_filesize no ficheiro php.ini.O ficheiro enviado foi apenas parcialmente transferido.O ano em que o seu cartão de crédito expira, sendo geralmente apresentado na face do cartão.Está disponível uma nova versão do %1$s. Visualize os dados da versão %3$s ou efetue a atualização agora.Está disponível uma nova versão do %1$s. Visualize os dados da versão %3$s.O ficheiro carregado não tem um formato válido.Estes são todos os campos da secção Preços.Estes são todos os campos da secção Informações do utilizador.Estes são os caracteres de mascaramento predefinidosEstes são vários campos especiais.Estes campos não coincidem!Esta coluna na tabela de envios será ordenada pelos números.Este campo é obrigatórioEste campo é obrigatório.Isto é um testeEste é um estado do utilizador.Esta é uma ação de correio eletrónico.Isto é outro teste.Este é o período que um utilizador deve aguardar para enviar o formulárioEsta é a etiqueta utilizada ao visualizar/editar/exportar envios.Este é o nome programático do seu campo. Exemplos: my_calc, price_total, user-total.Este é o estado do utilizadorEste é o valor que será utilizado se a opção estiver %sMarcada%s.Este é o valor que será utilizado se a opção estiver %sDesmarcada%s.É aqui que criará o seu formulário ao adicionar campos e arrastá-los de acordo com a ordem pela qual pretende que os mesmos sejam apresentados. Cada campo terá um conjunto de opções, tais como Etiqueta, Posição da etiqueta e Marcador de posição.Esta palavra-chave foi reservada pelo WordPress. Experimente utilizar outra.Esta mensagem será mostrada no botão de envio sempre que um utilizador clicar em "enviar" para informar o mesmo de que o envio está a ser processado.Esta mensagem será mostrada a um utilizador quando forem introduzidos valores diferentes nos campos da palavra-passe.Este número será utilizado nos cálculos se a caixa estiver marcada.Este número será utilizado nos cálculos se a caixa estiver desmarcada.Esta definição removerá COMPLETAMENTE todo o conteúdo relacionado com o Ninja Forms após a eliminação do suplemento. Isto inclui ENVIOS e FORMULÁRIOS. Esta ação não pode ser anulada.Este separador inclui as definições gerais do formulário, tais como o respetivo título e método de envio, bem como as definições de apresentação, incluindo a ocultação do formulário quando o mesmo é preenchido com êxito.Este será o assunto da mensagem de correio eletrónico.Isto impediria o utilizador de introduzir qualquer outro conteúdo sem ser númerosTrêsEnvio temporizadoMensagem de erro do temporizadorTimor-LesteParaPara ativar a licença de uma extensão do Ninja Forms, deve primeiro %sinstalar e ativar%s essa extensão. As definições da licença serão então apresentadas abaixo.Para utilizar esta funcionalidade, pode colar o seu CSV na área de texto acima.Data de hojeAbrir/fechar gavetaTogoToquelauTongaTotalLixoTenta seguir as especificações da %sfunção de data do PHP%s, mas nem todos os formatos são compatíveis.Trindade e TobagoTunísiaTurquiaTurquemenistãoIlhas Turcas e CaicosTuvaluDoisTipoLinkTelefone dos Estados UnidosUgandaUcrâniaDesmarcadaValor do cálculo desmarcadoNa secção Comportamento básico do formulário das Definições do formulário, pode selecionar facilmente uma página em relação à qual pretende que o formulário seja anexado automaticamente ao final do respetivo conteúdo. Encontra-se disponível uma opção semelhante na barra lateral de cada ecrã de edição de conteúdo.AnularDesfazer tudoEmirados Árabes UnidosReino UnidoEstados UnidosIlhas Menores Afastadas dos Estados UnidosErro de carregamento desconhecido.Não publicadoActualizarAtualizar itemAtualizado a: A atualizar a base de dados dos formuláriosMudar para um plano superiorAtualizar para o Ninja Forms THREEAtualizaçõesAtualizações concluídasURLUruguaiUtilizar uma equação (avançado)Utilizar quantidadeUtilizar uma primeira opção personalizadaUtilize as convenções de estilo predefinidas do Ninja Forms.Utilize o seguinte código abreviado para inserir o cálculo final: [ninja_forms_calc]Utilize as sugestões abaixo para começar a utilizar o Ninja Forms. Irá dominá-lo num instante!Utilize isto como um campo de palavra-passe de registoUtilize isto como um campo de palavra-passe de registo. Se esta caixa estiver marcada, serão apresentadas as caixas de texto da palavra-passe e da confirmação da mesmaUtilizado para assinalar um campo para processamento.UtilizadorNome de apresentação do utilizador (caso tenha uma sessão iniciada)Correio eletrónico do utilizadorEndereço de correio eletrónico do utilizador (caso tenha uma sessão iniciada)Entrada do utilizadorNome próprio do utilizador (caso tenha uma sessão iniciada)ID de utilizadorID do utilizador (caso tenha uma sessão iniciada)Grupo de campos de informações dos utilizadoresInformações do utilizadorCampos de informações do utilizadorApelido do utilizador (caso tenha uma sessão iniciada)Metadados do utilizador (caso tenha uma sessão iniciada)Valores enviados pelo utilizadorValores enviados pelo utilizador:É mais provável que os utilizadores preencham formulários longos quando puderem guardar os mesmos e voltar mais tarde para conclui-los.

    A extensão Save Progress para o Ninja Forms torna este procedimento rápido e fácil.

    UzbequistãoValidar como um endereço de correio eletrónico? (O campo deve ser obrigatório)ValorVanuatuNome da variávelVenezuelaVersãoVersão %sMuito fracaVietnamVisualizarVer %sVer alteraçõesVer formuláriosVerVisualizar envioVisualizar enviosVisualizar o registo de alterações completoIlhas Virgens (Britânicas)Ilhas Virgens AmericanasVisite a página da extensãoModo WP DebugIdioma do WPTamanho máximo de carregamento do WPLimite de Memória do WPFuncionalidade Multisítio do WP ativadaPublicação remota do WPVersão do WPWallis e FutunaEfetuamos tudo o que está ao nosso alcance para fornecer a cada utilizador do Ninja Forms a melhor assistência possível. Se se deparar com um problema ou pretender esclarecer uma questão, %scontacte-nos%s.Adicionámos a opção para remover todos os dados do Ninja Forms (envios, formulários, campos e opções) ao eliminar o suplemento. Chamamos-lhe a opção nuclear.Verificámos que não tem um botão de envio no seu formulário. Podemos adicionar um por si automaticamente.FracaInformações dos servidores da internetBem-vindo ao Ninja FormsBem-vindo ao Ninja Forms %sSaara OcidentalComo podemos ajudar?O que experimentar antes de contactar a assistênciaQual é o nome que gostaria de atribuir a este favorito?NovidadesAo criar e editar formulários, aceda diretamente à secção mais relevante.Para quem deverá ser enviada esta mensagem de correio eletrónico?Palavra(s)PalavrasInvólucroY-m-dd/m/YAAAA-MM-DDYYYY/MM/DDIémenSimÉ elegível para efetuar a atualização para o Ninja Forms THREE RC! %sAtualizar agora%sPode também combinar estes caracteres para aplicações específicasPode introduzir equações de cálculo aqui utilizando a expressão field_x, em que x é a ID do campo que pretende utilizar. Por exemplo, %sfield_53 + field_28 + field_65%s.Não pode enviar o formulário sem ter o Javascript ativado.Não tem permissão para instalar atualizações do suplementoNão tem permissão.Não adicionou um botão de envio ao seu formulário.Deve ter uma sessão iniciada para pré-visualizar um formulário.Deve fornecer um nome para este favorito.Necessita do JavaScript para enviar este formulário. Ative-o e tente novamente.Comprou Encontrará estas informações incluídas na mensagem de correio eletrónico de confirmação da sua compra.O seu formulário foi enviado com sucesso.O seu servidor não tem fsockopen e cURL activos. A IPN do PayPal e outros scripts que comunicam com outros servidores não funcionarão. Contate o seu fornecedor de alojamento.O seu servidor não tem a classe do %sPrograma-cliente do SOAP%s ativada - Alguns suplementos de porta de ligação que utilizam o SOAP poderão não funcionar tal como esperado.O seu servidor tem a função cURL ativada e a função fsockopen desativada.O seu servidor tem as funções fsockopen e cURL ativadas.O seu servidor tem a função fsockopen ativada e a função cURL desativada.O seu servidor tem a classe do Programa-cliente do SOAP ativada.A sua versão da extensão File Upload do Ninja Forms não é compatível com a versão 2.7 do mesmo. Esta extensão necessita de ser atualizada, no mínimo, para a versão 1.3.5. Atualize esta extensão em A sua versão da extensão Save Progress do Ninja Forms não é compatível com a versão 2.7 do mesmo. Esta extensão necessita de ser atualizada, no mínimo, para a versão 1.1.3. Atualize esta extensão em JugosláviaZâmbiaZimbabuéCódigo postalApartadoa - Representa um carácter alfabético (A-Z, a-z) - Apenas permite a introdução de letrasrespostabutton-secondary nf-download-allporcarácter/caracteres restante(s)marcadaCopiarpersonalizadod-m-Ydashicons dashicons-updateduplicarfoo@wpninjas.comhjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynãodede Produto A e de Produto B por $umone_week_supporta palavra-passea processarproduto(s) por reCAPTCHAIdioma do reCAPTCHAChave secreta do reCAPTCHADefinições do reCAPTCHAChave de sítio do reCAPTCHATema do reCAPTCHADefinições do reCAPTCHAactualizarsmtp_porttrêstítulodoisdesmarcadaatualizadoutilizador@gmail.comversãoA função wp_remote_post() fracassou. O IPN do PayPal poderá não funcionar com o seu servidor.A função wp_remote_post() fracassou. O IPN do PayPal não funcionará com o seu servidor. Contacte o seu fornecedor de alojamento. Erro:A função wp_remote_post() foi bem-sucedida - O IPN do PayPal está a funcionar.lang/ninja-forms-uk.mo000064400000353434152331132460010676 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 ,.TFt<Qf_? :(c>v*}( Is@9] k 0H g&*$0N#l 2  C*'n HH<D'#+8+dy #5M"E gP #57 FSbuS^ NLo#"3F Wby-dARn((<1!Fhw'( (<Zur- <Gc ~#15A:W &N0 $  )#Mb'u l 6"WIzKEGV/1 "9!\ ~?%'6?R4 * DO>e.!y>1 E R$p!./Ocwt (//?Bo*(/ 6C` iv))2!0T%<558T!  33 6-Aox-0F)wI*i75>.A9pX+0#\7 D B] A ! t y   &  % 7) a #}   )  ; D ^TY / N2[!-3I#i()( ) IVix+~%1IIb`B +P|!Fa%'+:$<9Ev(#2J.d1!5@!^3 # 5V`_f '02/cL  ?/Jz1 00B#s8&  %1As%!'82+ !^  "     )!.!?!R!r!!#!#!,!r "^|""#*#$ $$$*$$$1%7I%7%;% %&&-&&T&g&p& && && &&0&# '0'?'&_'''''@';'(c)0r)) ))F)*,*G*Z*m*~**/*#+#,..z/M001tL2J2< 3cI334155s7 -9:9.X9&999!9:,:I:a:+}:s:);:G; ;;;; ;;#<#,<#P<t<'<<)<(<2$=W=`=Dq==4= = > >L!>n>w>S>> >>??H%? n? ?? ?? ??v?2f@ @@K?AA AAAA(A:&B aB"lBB BB8BBC'CB6C=yC%CBC D.-D\D#pD DDDDD E"E 7E BE MEKXEE EEEE EE#FGG,G =GRGG'GGGGH!H;H&IBI7QIkII%I#J5J-TJAJ4JNJHK$\K KKKKJKL<#L`L(qL;L7LAMPM3jMM&M&MM N N(NBN\N kN"vN NN)NNO0O P&P@P^P<xPP PPP Q Q$,QQQ)pQQ Q#Q:Q5R7TRRRRRWSSHTUVVDWWaX4Xl%ZZZZ+ZZ* [:5[hp[2[! \).\9X\ \\4\\O\ O]%Y]]]R8^^_#"_!F_h__9_J_J%`Rp````G`;a+a1a!bAbYbob bb$b*b bcc)c8cIcbc sc ~c ccc(c c' d83d&ldddd&de ee.eMe\ecfxffyg4g&g%g[hNwhhPiK jKVj;jdj%CkFikxk)lH#mlmUmIm?)nin" o9,ofo uoMoo oNo>ApDp'ppq%q%>q!dq0q@qq rr%r7r.Qr r/r,r r r:s5?s:usssEt^ttt tt"t"tttu-uFu!Uu.wu u#u,u2v@5v vvvvTv!w2%wXwwkwex x3x/x1 y2;y0nyVyy" z<,z#izz}z'{F{>W{${{{?{'-|U|%d| ||||||-} /}:}#N}!r}}(},}}#~);~%e~~~$~~$~ 1 GLhP<c p@ .+G%sk‚0.A_EIOE`Z*9U"u3̅>#4P#K oA|AYxB݈ $2"Wz( ;0;'l+ъ.ڊ. 8#Mq.!%ދ',AmVkČ 0=Ws5 '. AN8a w:#ʏ9 OZMvgĐ,Lf=uoGbki9g."wQɘxpd'՚+) Ca ԞFu.Z@F<7Ġu?r@ %.'Vcsעaf$ȣglU*¤d3RLרg0d">)E=o1߬,0ծ  )6E ѯ *) Taho 9˰1/9Fʳ/ݳ %B%U{>1ڴO c\TU _\[C͸4YF'4ȹEH]2;ٺ;;Q<=ʻK\k  ̾ھ!!!%C+i+9:,62c& A !'IX,oe/z.1 *'gR;@  3>GNhHT@]$Dp]EZ65LW{FWQr  1& %*9Lci " 3@\ s}%! 0:AT[o s> Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Поля Відкрити в новому вікні Скасувати все . Поточна версія товарів для потребує оновлення. У вас встановлено версію №Чернетку%1$s оновлено. Попередній перегляд %3$s%1$s відновлено для перегляду з %2$s.%1$s заплановано на: %2$s. Попередній перегляд %4$s%1$s надіслано. Попередній перегляд %3$s%n використовується для зазначення кількості секунд%s тому%s опубліковано.%s збережено.%s оновлено.%s деактивовано.%sДозволити%s %sВибране %s значення розрахунку%sНе дозволяти%s%sНе вибране %s значення розрахунку* – представляє алфавітно-цифровий символ (A–Z, a–z, 0–9) – дозволяється вводити як цифри, так і літери- Ні- Виберіть один варіант- Виберіть поле- Виберіть товар- Виберіть змінну- Виберіть форму- Переглянути всі типи9 – представляє числовий символ (0–9) – дозволяється вводити лише цифри
    • a – представляє літеру латинського алфавіту (A–Z, a–z) – дозволяється вводити лише літери.
    • 9 – представляє числовий символ (0–9) – дозволяється вводити лише цифри.
    • * – представляє алфавітно-цифровий символ (A–Z, a–z, 0–9) – дозволяється вводити як цифри, так і літери.
    Відповідь з урахуванням реєстру, щоб запобігти розсилання спаму з вашою формою.Виходить основне оновлення для Ninja Forms. %sОтримайте докладну інформацію про нові можливості та зворотну сумісність, а також ознайомтеся з відповідями на типові запитання.%sСпрощений та потужніший плагін для створення форм.Над елементомЗверху від поляНазва діїДію оновленоДіїАктивуватиДіючийДодатиДодати описДодати формуДодати новийДодати нове полеДодати нову формуДодати новий елементДодати нове надсиланняДодати нові терміниДодати операціюДодати кнопки «Надіслати»Додати значенняДодайте дії у формуДодати поля формиДодати форму на цю сторінкуДодати нову діюДодати нове полеДодайте абонентів і розширте свій список розсилки за допомогою цієї форми підписки на розсилку новин. За потреби можна додавати й видаляти поля.Ліцензії для додаткових компонентівДодаткові компонентиАдресаАдреса 2Додає допоміжний клас до елемента поля.Додає допоміжний клас до оболонки поля.Електронна пошта адміністратораМітка адміністратораАдмініструванняРозширенеРозширене рівнянняРозришені налаштуванняДодаткові способи доставленняАфганістанПісля всьогоНаступна формаПісля міткиПогодилися?АлбаніяАлжирВсіУсе про формиУсі поляУсі формиУсі елементиУсі поточні форми залишаться в таблиці «Усі форми». Інколи протягом цього процесу деякі форми можуть дублюватися.Надайте користувачам просту можливість зареєструватися на ваш наступний захід, заповнивши форму. За потреби можна додавати й видаляти поля.Надайте користувачам можливість звернутися до вас через цю просту контактну форму. За потреби можна додавати й видаляти поля.Дає змогу вводити форматований текст.Дозволяє користувачам вибрати кілька штук цього товару.Майже готово...Окрім вкладки «Створити форму», ми замінили вкладку «Сповіщення» на «Електронні листи та дії». Це краще пояснює, що можна зробити на цій вкладці.Американське СамоаСталася несподівана помилка.АндорраАнголаАнгільяВідповідьАнтарктидаАнтиспамАнтиспамове запитання (Відповідь = відповідь)Повідомлення про помилку системи захисту від спамуАнтигуа й БарбудаБудь-який символ, зазначений у полі маски введення (окрім наведених у списку нижче), буде автоматично відображатися для користувача, коли він вводить текст, без можливості видаленняДодати форму Ninja FormsДодати Ninja FormsДодати до сторінкиЗастосуватиАргентинаВірменіяАрубаПриєднати CSVВкладенняАвстраліяАвстріяПоля автопідсумовуванняАвтоматичне отримання підсумкових значень розрахункуДоступноДоступні умовиАзербайджанПовернутися до спискуПовернутися до спискуРезервне копіювання/відновленняРезервне копіювання Ninja FormsБагамські островиБахрейнБангладешBarБарбадосБазові поляОсновні налаштуванняУмивальник для ванноїBazПрихована копіяПеред усімПопередня формаПеред міткоюПеред тим, як звернутися до нашої служби підтримки, перегляньте:Початкова датаПоточна датаБілорусьБельгіяБелізНижче елементаЗнизу від поляБенинБермудські ОстровиНайкращий спосіб контакту?Найкраща підтримка в бізнесіКраще організовані настройки полівПоліпшене керування ліцензіямиБутанПлатіжПусті формиБолівіяБоснія й ГерцеговинаБотсванаОстрів Буве́БразиліяБританська територія в Індійському океаніБрунейСтворіть свою формуБолгаріяМасові діїБуркіна-ФасоБурундіКнопкаCVCРозрахунокРозрахункове значенняРозрахунокМетод розрахункуНастройки розрахункуНазва розрахункуОбчисленняРезультати обчислень повертаються з відповіддю AJAX (відповідь -> дані -> обчисленняКамбоджаКамерунКанадаВідмінитиКабо-ВердеНеправильна капча. Введіть правильне значення в полі капчіОпис коду CVC картиМітка коду CVC картиОпис місяця закінчення строку дії картиМітка місяця закінчення строку дії картиОпис року закінчення строку дії картиМітка року закінчення строку дії картиОпис імені власника картиМітка імені власника картиНомер КарткиОпис номера картиМітка номера картиКайманові островиКопіяЦентральноафриканська РеспублікаЧадЗмінити значенняСимволівсимволів залишилосьСимволиМахлюєш, друже?Ознайомтеся з нашою документацієюЧекбоксСписок прапорцівПрапорціВибраноВибране значення розрахункуЧиліКитайОстрів РіздваМістоНазва класуОчистити успішно заповнену форму?Кокосові (Кілінг) островиОтримання оплатиКолумбіяСпільні поляКоморські островиСкладні рівняння можна створювати, додаючи дужки: %s(field_45 * field_2) / 2%s.ПідтвердитиПідтвердіть, що ви не роботКонгоКонго (Демократична Республіка Конго)Форма зверненняЗв’яжіться зі мною.Зв’язатися з намиКонтейнерПродовжитиОстрови КукаЦінаРозкривний список витратПараметри витратТип витратКоста-РікаКот-д'ІвуарНе вдалося активувати ліцензію. Перевірте ваш ліцензійний ключКраїнаСтворює унікальний ключ з метою ідентифікації та призначення вашого поля для нестандартної розробки.Кредитна картаКод CVC кредитної картиCVV-код на кредитній картціСтрок дії кредитної картиІм’я та прізвище на кредитній картіНомер кредитної карткиZip-код кредитної картиZip-код на кредитній картціПодякиХорватія ( Hrvatska)КубаВалютаСимвол валютиПоточна сторінкаКористувацькийКористувацький клас CSSКористувацькі класи CSSКористувацькі імена класівГрупа нестандартних полівКористувацька маскаВизначення користувацької маскиКористувацькі поля видалені.Користувацькі поля оновлені.Перший користувацький варіантКіпрЧеська РеспублікаDD-MM-YYYYDD/MM/YYYYНАЛАГОДЖЕННЯ: Перейти до 2.9.xНАЛАГОДЖЕННЯ: Перейти до 3.0.xТемнаДані успішно відновлено!ДатаДата створенняФормат датиНастройки датиДата надсиланняДата оновленняВибір датиДеактивуватиДеактивуватиДеактивувати всі ліцензіїДеактивувати ліцензіюНа вкладці настройок можна деактивувати ліцензії для розширень Ninja Forms поодинці або групою.За замовчуваннямКраїна за промовчаннямПозиція мітки за промовчаннямЧасовий пояс за промовчаннямЗа промовчанням для поточної датиЗначення за промовчаннямЧасовий пояс за промовчанням: %sЗа замовчуванням часова зона %s — повинна бути UTCВизначені поляВидалитиВидалити (^ + D + клацання)Остаточно видалитиВидалити формуВидалити цю позицію остаточноДаніяОписВміст описуПозиція описуЧи знаєте ви, що показник конверсії можна підвищити, розбиваючи великі форми на менші, легко засвоювані частини?

    Це зручно робити за допомогою розширення Multi-Part Forms для Ninja Forms.

    Вимкнути сповіщення адміністратораВимкнути автозаповнення у браузеріВимкнути введенняВимкнути редактор форматованого тексту на мобільному пристроїВимкнути ввід?ВідхилитиВідображенняПоказати назву формиПоказати НазвуНалаштування показуПоказати цю змінну розрахункуПоказати назвуВідображення формиРоздільникДжибутіНе показувати ці умовиДокументаціяДокументація надійде незабаром.Наразі доступні всі основні документи від %sПосібника з усунення неполадок%s до %sAPI для розробників%s. Разом із тим постійно додаються нові документи.НЕ застосовується до попереднього перегляду форми.Застосовується до попереднього перегляду форми.ДомінікаДомініканська РеспублікаГотовоЗавантажити всі надсиланняВипадаючий списокДублюватиДублювати (^ + C + клацання)Дублювати формуЕквадорРедагуватиЗмінити діюРедагувати формуРедагувати елементРедагувати пункт менюРедагувати надсиланняРедагувати цю позиціюРедагування поляРедагування поляЄгипетСальвадорЕлементEmailЕлектронні листи та діїЕлектронна скринькаТекст листаФорма підписки на розсилкуАдреса електронної пошти або пошук поляАдреси електронної пошти або пошук поляЛист буде надіслано з цієї адреси електронної пошти.Лист буде надіслано від цього імені.Електронні листи та діїДата закінченняПерш ніж дозволяти надсилання форми, переконайтеся, що це поле заповнено.Введіть текст, який має відображатися в полі перед тим, як користувач почне вводити дані.Введіть мітку поля форми. Таким чином користувачі будуть ідентифікувати окремі поля.Уведіть свою адресу електронної поштиСередовищеРівнянняРівняння (додатково)Екваторіальна ГвінеяЕритреяПомилкаПовідомлення про помилку, яке відображається, якщо не всі обов’язкові поля заповненоЕстоніяЕфіопіяРеєстрація на західРозгорнути менюМісяць закінчення строку дії (ММ)Рік закінчення строку дії карти (РРРР)ЕкспортЕкспорт обраних полівЕкспорт полівЕкспортувати формуЕкспорт формЕкспорт формиЕкспортувати цей елементРозширте можливості Ninja FormsПЕРЕДАВАННЯ ФАЙЛУПомилка запису файла на диск.Фолклендські (Мальвінські) островиФарерські островиОбрані поляОбране успішно імпортовано.ПолеПоле №Ідентифікатор поляКлюч поляПоле не знайденоОперації з полямиПоляПоля, позначені зірочкою *, обов'язкові до заповненняПоля, позначені зірочкою (%s*%s), обов'язкові до заповненняФіджіПомилка передавання файлуТриває передавання файлу.Завантаження файлу зупинене розширенням.ФінляндіяІм'яВиправити це.FooFoo BarНаприклад, якщо ви маєте ключ продукту A4B51.989.B.43C, то ви можете замаскувати його як a9a99.999.a.99a, тобто всі «а» повинні бути літерами, а всі «9» повинні бути цифрамиФормаЗа промовчанням для формиФорму видаленоПоля формиФорму успішно імпортовано.Ключ формиФорму не знайденоПопередній перегляд формиНастройки форми збереженоВідправлення формиПомилка імпорту шаблону форми.Назва формиФорма з обчисленнямиФорматФормиФорми видаленоКількість форм на сторінціФранціяФранція (метрополія)Французька ГвіанаФранцузька ПолінезіяФранцузькі Південні ТериторіїП’ятниця, 18 листопада 2019 р.Адрес відправникаІм'я відправникаПовний список змінНа весь екранГабонГамбіяЗагальніЗагальні налаштуванняДжорджіяНімеччинаОтримати довідкуІнші діїІнші типиОтримайте допомогуОтримати підтримкуОтримати системний звітОтримайте ключ сайту для свого домену, зареєструвавшись %sтут%sРозпочніть із додавання свого першого поля в форму.Розпочніть із додавання свого першого поля в форму. Клацніть знак «плюс» і виберіть потрібні дії. Це справді дуже просто.Початок роботиПочаток роботи з Ninja FormsГанаГібралтарПрисвойте вашій формі назву. За цією назвою ви зможете знайти її згодом.ПерейтиВаша спроба не вдалася.Перейти до формПерейти до Ninja FormsПерейти до першої сторінкиПерейти до останньої сторінкиПерейти до наступної сторінкиПерейти до попередньої сторінкиГреціяҐренландіяГренадаРозширення документаціїГваделупаГуамГватемалаГвінеяГвінея-БісауГаянаHTMLГаїтіНа півекранаХерд і Макдональд, островиДоброго дня, Ninja Forms!ДовідкаДовідковий текстДовідковий текст тутПрихованоПриховане полеПриховати назвуПриховатиПриховати успішно заповнену форму?Підказка. Пароль має містити щонайменше сім символів. Щоб пароль був надійнішим, використайте в ньому великі та малі літери, цифри та спеціальні символи, такі як ! " ? $ % ^ & ).ВатиканАдреса домашньої сторінкиГондурасHoney PotПомилка HoneypotПовідомлення про помилку системи HoneypotГонконгТег прив’язкиІм'я хостуЯк справи?УгорщинаIP-адресаІсландіяЯкщо пояснювальний текст увімкнено, поруч із полем введення відображатиметься знак запитання %s. У разі наведення курсору на цей знак з’явиться пояснювальний текст.Якщо довідковий текст увімкнено, поруч із полем введення відображатиметься знак запитання %s. У разі наведення курсору на цей знак з’явиться довідковий текст.Якщо цей прапорець установлено, УСІ дані Ninja Forms буде видалено з вашої бази даних у процесі видалення плагіну. %sВідновити дані форм і надсилань буде неможливо.%sЯкщо цей прапорець установлено, плагін Ninja Forms очистить значення форми після її успішного надсилання.Якщо цей прапорець установлено, плагін Ninja Forms приховає форму після її успішного надсилання.Якщо цей прапорець установлено, Ninja Forms надішле копію цієї форми (та всі прикладені повідомлення) на вказану адресу.Якщо цей прапорець установлено, Ninja Forms зареєструє введені дані як адресу електронної пошти.Якщо цей прапорець установлено, відображатимуться поля для пароля та його підтвердження.Якщо цей прапорець установлено, цей стовпець у таблиці надсилань буде відсортовано за номерами.Якщо ви людина й бачите це поле, будь ласка, залиште його пустим.Якщо ви людина, не вводьте дані в це поле.Якщо ви людина, дійте повільніше.Якщо залишити це поле пустим, межу не буде встановленоЯкщо ви візьмете участь, деякі дані про вашу інсталяцію Ninja Forms надсилатимуться на сайт NinjaForms.com (до цього НЕ входять ваші надіслані дані).Якщо ви цього не бажаєте, не проблема! Ninja Forms продовжить працювати як треба.Якщо ви бажаєте надіслати пусте значення або розрахунок, слід використати символ ''.Якщо ви бажаєте, щоб ваша форма надсилала вам сповіщення електронною поштою, коли користувач натискає кнопку надсилання, це можна зробити на цій вкладці. Ви можете створити необмежену кількість електронних листів, включно з листами до користувача, який заповнив форму.Якщо після оновлення до версії 2.9 ваші форми «зникли», натисніть цю кнопку, щоб запустити процес перетворення старих форм для відображення у версії 2.9. Усі поточні форми залишаться в таблиці «Усі форми».ІмпортІмпорт / ЕкспортІмпорт/експорт надсиланьІмпорт обраних полівІмпорт обраногоІмпорт полівІмпортувати формуІмпорт формІмпорт елементів спискуІмпорт формиІмпорт/експортПоліпшена зрозумілістьВключити до автоматичного обрахунку підсумку? (Якщо ввімкнено)Неправильна відповідьПідвищення показника конверсійІндіяІндонезіяМаска введенняВставитиВставити всі поляВставити полеВставити посиланняВставити медіафайлВсередині елементаУстановленоІнстальовані плагіниГрупи інтересівПомилка імпорту форми.Неприпустимий ID формиІран (Ісламська Республіка)ІракІрландіяЦе має бути адреса електронної пошти?ІзраїльЦе справді дуже просто. Або...ІталіяЯмайкаЯпоніяПовідомлення про помилку вимкнення JavaScriptJohn DoeЙорданіяПросто клацніть тут і виберіть потрібні поля.КазахстанКеніяКлючКірібатіРаковинаКорея, Народно-Демократична РеспублікаКорея, РеспублікаКувейтКиргизіяНаписМітка тутНазваПозиція міткиМітка використовується під час перегляду та експорту надсилань.мітка, значення, розрахунокМіткиМова, що використовується для reCAPTCHA. Щоб отримати код для вашої мови, натисніть %sтут%sЛаоська Народно-Демократична РеспублікаПрізвищеЛатвіяЕлементи макетаПоля макетаДізнатись більшеДокладно про Multi-Part FormsДокладно про розширення Save ProgressЛіванЗліва від елементаЗліва від поляЛесотоЛіберіяЛівійська Арабська ДжамахіріяЛіцензіїЛіхтенштейнСвітлийОбмежити введення до цієї кількостіПовідомлення про досягнення межіОбмеження надсиланьОбмежити введення до цієї кількостіСписокЗіставлення полів спискуТип спискуСписки підписчиківЛитваЗавантажуєтьсяЗавантаження...РозташуванняРеєструєтьсяДовга форма: ЛюксембургMM-DD-YYYYMM/DD/YYYYМакаоМакедонія (колишня республіка Югославії)МадагаскарМалавіМалайзіяМальдівиМаліМальтаКеруйте запитами цінових пропозицій на своєму сайті за допомогою цього шаблону. За потреби можна додавати й видаляти поля.Маршаллові островиМартинікаМавританіяМаврикійМакс.Максимальний рівень вкладення вхідних данихМаксимальне значенняМожливо, пізнішеМайоттаCереднійПовідомленняМітки повідомленьВідображається для тих користувачів, які не виконали авторизацію, якщо розташований вище прапорець «авторизація» встановлено.Поле метаданихМексикаМікронезія, Федеративні ШтатиМіграцію й заповнення демонстраційними даними завершено. Мін.Мінімальне значенняІнші поляНевідповідністьВідсутня тимчасова тека.Демонстрація дії електронної поштиДемонстрація дії збереженняДемонстрація повідомлення про успішну діюДата зміниМолдова, РеспублікаМонакоМонголіяЧорногоріяМонтсерратНезабаром чекайте на інші вдосконаленняМароккоПеремістити цю позицію у смітникМозамбікВибір кількох значеньКілька товарів – вибрати кількаКілька товарів – вибрати одинКілька товарів – розкривний списокВибір кількохРозмір вікна вибору кількохПомножитиМоє перше обчисленняМоє друге обчисленняВерсія MySQLМ'янмаІм’яІм’я на картіІм’я або поляНамібіяНауруПотрібна допомога?НепалНідерландиНідерландські АнтіллиСповіщення адміністратора від Ninja Forms не відображатимуться на панелі керування. Зніміть цей прапорець, щоб побачити їх знову.Нова діяНова вкладка конструктораНова КаледоніяНовий елементНове надсиланняНова ЗеландіяФорма підписки на розсилку новинНікарагуаНігерНігеріяНастройки Ninja FormsNinja FormsNinja Forms – обробкаСписок змін у Ninja FormsРозробник Ninja FormsДокументація до Ninja FormsОбробка Ninja FormsНадсилання Ninja FormsСтан системи Ninja FormsДокументація для Ninja Forms версії 3Оновлення Ninja FormsВідбувається оновлення Ninja FormsОновлення Ninja FormsВерсія Ninja FormsВіджет Ninja FormsДо складу Ninja Forms також входить простий шаблон, який можна вставити безпосередньо у файл шаблону php. %sТут подано основну довідкову інформацію Ninja Forms.Ninja Forms не можна активувати через мережу. Щоб активувати плагін, скористайтеся панеллю керування на кожному сайті.Усі доступні оновлення Ninja Forms виконано!Плагін Ninja Forms створено міжнародною групою розробників, які поставили собі за мету надати спільноті WordPress ідеальний засіб створення форм.Ninja Forms має виконати оновлення: %s. Це може забрати кілька хвилин. %sПочати оновлення %sNinja Forms має оновити ваші настройки електронної пошти, натисніть %sтут%s, щоб почати оновлення.Ninja Forms має оновити таблицю надсилань, натисніть %sтут%s, щоб почати оновлення.Ninja Forms має оновити ваші сповіщення форм, натисніть %sтут%s, щоб почати оновлення.Ninja Forms має оновити ваші настройки форм, натисніть %sтут%s, щоб почати оновлення.Ninja Forms пропонує віджет, який можна використовувати в будь-якій області вашого сайту, що підтримує віджети, і вказати, яку саме форму необхідно відобразити в цьому місці.Короткий код Ninja Forms використовується без зазначення форми.НіуеНіНе вказано дій...Обрані поля не знайденоПоля не знайдено.Надсилання не знайденоНадсилання не знайдено в кошикуНемає доступних умов для цієї таксономії. %sДодати умову%sЖоден файл не завантажений.Форми не знайдено.Таксономію не вибрано.Чинний список змін не знайдено.Немаєострів НорфолкПівнічні Маріанські островиНорвегіяПовідомлення про необхідність авторизаціїЩе ніНе знайдено в кошикуПриміткаТекст примітки можна редагувати в розділі додаткових параметрів поля примітки (див. нижче).Пам’ятайте: для цього вмісту потрібен JavaScript.Пам’ятайте: короткий код Ninja Forms використовується без зазначення форми.КількістьМакс. номер помилкиМін. номер помилкиЧислові опціїКількість зірокКількість десяткових розрядів.Кількість секунд для зворотного викликуКількість секунд для зворотного викликуКількість секунд для надсилання за таймером.Кількість зірокОманОдинОдна адреса електронної пошти або полеПроблема! Цей додатковий компонент ще не сумісний з Ninja Forms 3. %sДокладніше%s.Відкрити в новому вікніОперації й поля (додатково)Мотивовані стиліВаріант одинВаріант триВаріант дваВибірОрганізаторНаш обсяг підтримкиВиводити розрахунок якМова PHPPHP Max Input VarsPHP Post Max SizePHP Time LimitВерсія PHPОПУБЛІКУВАТИПакистанПалауПанамаПапуа-Нова ГвінеяТекст абзацуПарагвайБатьківський елемент:ПарольПідтвердження пароляМетка невідповідності паролівПаролі не збігаютьсяПоля платежуШлюзи сплатиОплата: разомВідмовлено в дозволіПеруФіліппінителефонТелефон: (555) 555-5555ПіткернРозташуйте %s в будь-якій області, що приймає короткі коди для відображення форми. Це може бути навіть усередині вмісту сторінки або публікації.ЗаповнювачЗвичайний текст%sЗверніться до служби підтримки%s та повідомте про зазначену вище помилку.Будь-ласка, надайте правильну відповідь на антиспамове запитання.Перевірте обов’язкові поля.Заповніть поле капчіЗаповніть поле ReCaptchaВиправте помилки перед тим, як надсилати цю форму.Будь-ласка, заповніть усі обов'язкові поля.Введіть повідомлення, яке відображається, коли форма досягає граничної кількості надсилань і більше не прийматиме нових надсилань.Введіть правильну адресу електронної поштиВведіть дійсну адресу електронної пошти!Введіть дійсну адресу електронної пошти.Допоможіть нам поліпшити Ninja Forms!Подаючи заявку на підтримку, вказуйте таку інформацію:Збільшуйте з кроком Залиште поле захисту від спаму пустим.Переконайтеся, що ви правильно ввели ключ сайту та секретний ключБудь ласка, оцініть плагін %sNinja Forms%s %s на %sвеб-сайті WordPress.org%s, щоб допомогти нам надавати цей плагін безкоштовно. Подяка від команди WP Ninja!Виберіть форму для перегляду надсиланьВиберіть форму.Виберіть правильний файл експортованої форми.Виберіть правильний файл обраних полів.Виберіть обрані поля для експорту.Використовуйте такі оператори: + - * /. Це додаткова функція. Ділення на 0 не дозволяється.Зачекайте %n секундЗачекайте, щоб надіслати форму.ПлагіниПольщаЗаповнити це поле за допомогою таксономіїПортугаліяЗаписиІдентифікатор публікації/сторінки (якщо є)Назва публікації/сторінки (якщо є)URL-адреса публікації/сторінки (якщо є)Створення публікаціїID публікаціїЗаголовок записуURL публікаціїПопередній переглядПереглянути зміниПопередній перегляд формиПопередні перегляд не передбачено.ВартістьЦіна:Поля ціниВ обробціОбробка міткиМетка обробки надсиланняТоварТовар (разом із кількістю)Товар (кількість окремо)Товар АТовар БФорма товару (кількість у рядку)Форма товару (кілька товарів)Форма товару (з полем кількості)Тип товаруПрограмне ім’я, яке може використовуватися для посилання на цю форму.ОпублікуватиПуерто-РикоПридбатиКатарКількістьКількість товару АКількість товару БКількість:Рядок запитуРядки запитуЗмінна QueryStringПитанняПозиція запитанняЗапит цінової пропозиціїРадіоСписок перемикачівПовторно введіть парольМітка підтвердження пароляСправді деактивувати всі ліцензії?ReCaptchaПереадресуватиВидалитиВидалити ВСІ дані Ninja Forms з видаленням плагіну?Видалити значенняВидалення всіх даних Ninja FormsВидалити це поле? Його буде видалено, навіть якщо ви не збережете форму.Кому відповістиЧи повинен користувач авторизуватися для перегляду форми?Обов'язкове полеОбов’язкове полеПомилка обов’язкового поляМітка обов’язкового поляСимвол обов’язкового поляСкинути перетворення формиСкинути перетворення формСкинути процес перетворення форм для версії 2.9+ВідновитиВідновлення Ninja FormsВідновити цю позицію із смітникаНастройки обмеженьОбмеженняОбмежує для користувача тип даних, які можуть бути введені в це поле.Повернутися до Ninja FormsРеюньйонРедактор форматованого тексту (RTE)Справа від елементаСправа від поляПоверненняПовернення останнього випуску 2.9.x.Повернення версії 2.9.xРумуніяРосійська ФедераціяРуандаSMTPКлієнт SOAPSUHOSIN встановленоСент-Кітс і НевісСент-ЛюсіяСент-Вінсент і ГренадіниСамоаСан-МаріноСан-Томе й ПрінсіпіСаудівська АравіяЗберегтиЗберегти й активуватиЗберегти настройки поляЗберегти формуЗберегти параметриЗберегти НалаштуванняЗберегти надсиланняЗбереженоЗбережені поляТриває збереження...Пошук елементаПошук у надсиланняхВиберітьВибрати всеВиберіть у спискуВиберіть поле або введіть дані для пошукуВиберіть файлВиберіть формуВиберіть форму або введіть текст для пошукуВиберіть кількість надсилань даних, які сприйматиме ця форма. Якщо обмеження не потрібне, залиште це поле пустим.Виберіть позицію мітки відносно самого елемента поля.ВибранеВибране значенняНадіслатиНадіслати копію форми на цю адресу?СенегалСербіяIP-адреса сервераНалаштуванняНалаштування збереженіСейшельські островиДоставкаКороткий кодТут має бути введено значення у відсотках, наприклад: 8,25%, 4%Показати довідковий текстПоказати кнопку завантаження медіаПоказати більшеПоказати індикатор надійності пароляПоказати редактор форматованого текстуПоказатиПоказувати значення елементів спискуВідображається, коли користувач наводить курсор.Сьєрра-ЛеонеСінгапурОкремийОдин прапорецьОдиничні витратиТекст одного рядкаОдин товар (за промовчанням)Адреса сайтуСловаччина (Словацька Республіка)СловеніяЗвичайна поштаНаприклад, якщо ви бажаєте створити маску для номера американського соціального страхування, вам потрібно ввести в поле значення 999-99-9999Соломонові островиСомаліСортування за числовими значеннямиСортування за числовими значеннямиПівденна АфрикаПівденна Георгія та Південні Сандвічеві островипівденний СуданІспаніяСпам-запитанняСпам-відповідьУкажіть операції та поля (додатково)Шрі ЛанкаОстрів Святої ЄлениСен-П’єр і МікелонСтандартні поляРейтинг у зіркахРозпочніть із шаблонуШтатСтатускрокВиконується крок %d з приблизно %dКрок (величина збільшення)Індикатор надійностіСоліднийВкладена послідовністьТемаТекст теми або пошук поляТекст теми або пошук поляНадсиланняCSV надісланих данихНадіслані даніВідомості про надсиланняЛіміт відправленьМетадані надсиланняСтатистика надсиланьНадсиланняВідправитиТекст кнопки «Надіслати» з’являється через визначений часНадіслати за допомогою AJAX (без перезавантаження сторінки)?ПоданоКим надісланоКим надіслано: ВідправленоНадіслано: ПідписатисяПовідомлення про успішну діюСуданСурінамШпіцберген і Ян-МайєнСвазілендШвеціяШвейцаріяСирійська Арабська РеспублікаСистемаСтан системиВиходить версія 3!ТайваньТаджикистанОзнайомтеся з наведеною нижче докладною документацією до Ninja Forms.Танзанія, Об’єднана РеспублікаПодатокПодаткові відсоткиТаксономіяПоля шаблонуФункція шаблонуСписок умовТекстЕлемент текстуТекст, що відображається після лічильникаТекст, що відображається після лічильника слів/символівТекстова областьТекстове полеТаїландДякуємо за заповнення цієї форми.Дякуємо за оновлення до останньої версії! Ninja Forms %s зробить керування вашими формами легким і приємним!Дякуємо за оновлення плагіну Ninja Forms до версії 2.7. Оновіть розширення Ninja Forms від Дякуємо за оновлення! Ninja Forms %s дає змогу створювати форми з нечуваною простотою!Дякуємо за використання Ninja Forms! Ми сподіваємося, що ви знайшли все потрібне, але якщо ви маєте будь-які запитання:{field:name}, дякую за заповнення моєї форми!Зазвичай 16 цифр на лицьовій стороні вашої кредитної карти.3 цифри (на звороті) або 4 цифри (на лицьовій стороні карти).9 представлятиме будь-яку цифруВи звертаєтеся до всіх можливостей Ninja Forms через меню «Форми». Ми вже створили вам першу %sконтактну форму%s для прикладу. Ви також можете створити свою власну форму, натиснувши кнопку %sДодати нову%s.Формат має виглядати так:Оновлення інтерфейсу в цій версії закладає основу для суттєвих поліпшень у майбутньому. Ці зміни буде застосовано у версії 3.0, щоб зробити Ninja Forms ще більш стабільним, потужним і зручним конструктором форм.Місяць, в якому спливає строк дії вашої кредитної карти, зазвичай указаний на лицьовій стороні.Основні настройки відображаються одразу, а інші, несуттєві настройки приховуються всередині розділів, які можуть розгортатися.Ім’я, надруковане на лицьовій стороні вашої кредитної карти.Паролі не збігаються.Люди, що створили Ninja FormsПроцес почався, зачекайте. Це може забрати кілька хвилин. По закінченні процесу ви автоматично перейдете на іншу сторінку.Розмір завантажуваного файлу перевищує значення MAX_FILE_SIZE, указане у формі HTML.Розмір завантажуваного файлу перевищує значення upload_max_filesize у файлі php.ini.Файл було завантажено лише частково.Рік, в якому спливає строк дії вашої кредитної карти, зазвичай указаний на лицьовій стороні.Вийшла нова версія %1$s. Переглянути відомості про версію %3$s або оновити.Вийшла нова версія %1$s. Переглянути відомості про версію %3$s.Неправильний формат переданого файлу.Це всі поля з розділу цін.Це всі поля з розділу відомостей про користувача.Це наперед визначені символи маскиЦе різноманітні спеціальні поля.Вміст цих полів має збігатися!Цей стовпець у таблиці надсилань буде відсортовано за номерами.Це обов'язкове для заповнення полеЦе обов'язкове для заповнення поле.Це тестЦе стан користувача.Це дія електронної пошти.Це ще один тест.Стільки має очікувати користувач, щоб надіслати формуЦя мітка використовується для перегляду, редагування або експорту надсилань.Це програмне ім’я поля. Наприклад: my_calc, price_total, user-total.Це стан користувачаЦе значення використовуватиметься, якщо його %sвибрано%s.Це значення використовуватиметься, якщо його %sне вибрано%s.Тут ви будете створювати вашу форму, додаючи поля та перетягуючи їх у потрібному порядку. Кожне поле матиме набір опцій, таких як мітка, позиція мітки й заповнювач.Це ключове слово зарезервоване для WordPress. Введіть інше.Це повідомлення з’являється всередині кнопки надсилання, коли користувач натискає кнопку «Надіслати». Воно сповіщає користувача, що надіслані ним дані обробляються.Це повідомлення з’являється, якщо користувач вводить різний текст у поля для пароля та його підтвердження.Це число буде використовуватися в розрахунках, якщо прапорець установлено.Це число буде використовуватися в розрахунках, якщо прапорець не встановлено.Ця настройка дає змогу ПОВНІСТЮ видалити все, що стосується плагіну Ninja Forms, включно з НАДСИЛАННЯМИ та ФОРМАМИ. Цю дію неможливо скасувати.Ця вкладка містить загальні параметри форми, такі як назва та метод надсилання, а також параметри відображення, такі як приховування форми, коли її успішно заповнено.Це буде тема листа.Як наслідок, користувач не зможе вводити будь-які інші символи, крім цифрТриВідкладене надсиланняПовідомлення про помилку таймераТимор-Лешті (Східний Тимор)НадіслатиЩоб активувати ліцензії для розширень Ninja Forms, ви маєте спочатку %sінсталювати й активувати%s вибране розширення. Після цього настройки ліцензій буде показано нижче.Для використання цієї функції можна вставити CSV в розташоване вище текстове поле.Сьогоднішня датаПеремкнути розкривне менюТогоТокелауТонгаУсьогоСмітникДіють специфікації для %sфункції PHP date()%s, проте підтримуються не всі формати.Тринідад і ТобагоТунісТуреччинаТуркменістанТеркс і Кайкос, островиТувалуДваТипПосиланняТелефон у СШАУгандаУкраїнаНе вибраноНе вибране значення розрахункуУ розділі «Базова поведінка форми» на вкладці «Настройки форми» можна вибрати сторінку, в кінці якої форму буде автоматично відображено. Така сама опція пропонується на боковій панелі в усіх вікнах редактора вмісту.СкасуватиСкасувати всеОб'єднані Арабські ЕміратиВеликобританіяСШАЗовнішні малі острови СШАНевідома помилка завантаження.НеопублікованоОновитиОновити елементОновлено: Оновлення бази даних формПерейтиОновлення до Ninja Forms 3ОновленняОновлення завершеноURL-адресаУругвайВикористайте рівняння (додатково)Використовувати кількістьЗастосувати перший користувацький варіантВикористовуйте правила стилів Ninja Forms за промовчанням.Використайте цей короткий код для вставлення остаточного розрахунку: [ninja_forms_calc]Скористайтеся наведеними нижче порадами, щоб почати роботу з Ninja Forms. Усе буде готово якнайскоріше!Використовувати це поле для пароля реєстраціїВикористовувати це поле для пароля реєстрації. Якщо цей прапорець установлено, відображатимуться поля для пароля та його підтвердження.Використовується для маркування поля для обробки.КористувачЕкранне ім’я користувача (у системі)Адреса ел. пошти користувачаАдреса електронної пошти користувача (у системі)Введення користувачаІм’я користувача (у системі)ID користувачаІдентифікатор користувача (у системі)Група полів інформації про користувачаІнформація про користувачаПоля інформація про користувачаПрізвище користувача (у системі)Метадані користувача (у системі)Надіслані користувачем значенняНадіслані користувачем значення:Користувачам більше подобається заповнювати довгі форми, коли вони можуть зберегти зміни, а потім повернутися до форми та завершити внесення даних згодом.

    Розширення Save Progress для Ninja Forms дає змогу зробити це легко та швидко.

    УзбекистанЗареєструвати як адресу електронної пошти? (Обов’язкове для заповнення поле)ЗначенняВануатуІм’я змінноїВенесуелаВерсіяВерсія %sДуже слабкийВ'єтнамПереглядПерегляд %sПереглянути зміниПереглянути формиПереглянути елементПереглянути надсиланняПереглянути надсиланняПереглянути повний список змінВіргінські острови (Британські)Віргінські острови (США)Відвідати сторінку плагінуWP режим налагодженняМова WPМаксимальний розмір завантаження WPЛіміт пам`яті WPWP Multisite активованоWP Remote PostВерсія WordPressУолліс і Футуна, островиМи робимо все можливе, щоб надати кожному користувачеві Ninja Forms найкращу підтримку. Якщо ви зіткнулися з проблемою або маєте запитання, %sзвертайтеся до нас%s.Ми додали опцію видалення всіх даних Ninja Forms (надсилань, форм, полів, настройок) разом з видаленням плагіну з WordPress. Ми назвали її «ядерною» опцією.Ми помітили, що у вашій формі немає кнопки «Надіслати». Ми можемо додати її автоматично.НенадійнийІнформація про веб-серверЛаскаво просимо до Ninja FormsЛаскаво просимо до Ninja Forms %sЗахідна СахараЯк ми можемо допомогти?Які дії спробувати перед тим, як звертатися по підтримкуЯк назвати цей елемент обраного?Що новогоСтворюючи та редагуючи форми, ви можете перейти безпосередньо до найважливішого розділу.Хто має бути адресатом цього листа?СлівСлівОболонкаY-m-dР/м/дРРРР-ММ-ДДYYYY/MM/DDЄменТакВи маєте право виконати оновлення до версії-кандидата Ninja Forms 3! %sОновити зараз%sСимволи також можна комбінувати для конкретних ситуаційВи можете ввести тут рівняння для розрахунку, використовуючи field_x, де х — ідентифікатор потрібного поля. Наприклад, %sfield_53 + field_28 + field_65%s.Не можна надіслати форму, якщо JavaScript вимкнено.Ви не маєте дозволу на інсталяцію оновлень плагінуВи не маєте дозволу.Ви не додали кнопку надсилання форми.Для попереднього перегляду форми потрібно ввійти до системи.Необхідно вказати назву для обраного.Для надсилання цієї форми потрібен JavaScript. Увімкніть JavaScript і повторіть спробу.Ви придбали Ці відомості наведено в вашому листі про покупку.Вашу форму успішно надіслано.На Вашому сервері не включено fsockopen або cURL - PayPal IPN та інші сценарії, яким потрібно зв'язуватись з іншими серверами, які не працюватимуть. Зв'яжіться з хостинг-провайдером.На вашому сервері не ввімкнено клас %sклієнта SOAP%s – деякі плагіни шлюзу, що використовують протокол SOAP, можуть не працювати як належить.На вашому сервері ввімкнено cURL і вимкнено fsockopen.На вашому сервері ввімкнено fsockopen і cURL.На вашому сервері ввімкнено fsockopen і вимкнено cURL.На вашому сервері ввімкнено клас клієнта SOAP.Ваша версія розширення Ninja Forms File Upload несумісна з Ninja Forms версії 2.7. Розширення мусить мати версію не нижче 1.3.5. Оновіть це розширення тут: Ваша версія розширення Ninja Forms Save Progress несумісна з Ninja Forms версії 2.7. Розширення мусить мати версію не нижче 1.1.3. Оновіть це розширення тут: ЮгославіяЗамбіяЗімбабвеІндексПоштовий індекс США (zip-код)a – представляє літеру латинського алфавіту (A–Z, a–z) – дозволяється вводити лише літеривідповідьbutton-secondary nf-download-allвідсимволів залишилосьвибраноКопіюватиспеціальнийd-m-Ydashicons dashicons-updateдублікатfoo@wpninjas.comгjs-newsletter-list-update extral, F d Ym-d-Ym/d/Yжодензтовару А та товару Б за $одинone_week_supportпарольтриває обробкатоварів для reCAPTCHAМова reCAPTCHAСекретний ключ reCAPTCHAНастройки reCAPTCHAКлюч сайту reCAPTCHAТема reCAPTCHAНастройки reCaptchaОновитиsmtp_portтризаголовокдване вибранооновленоuser@gmail.comверсіяwp_remote_post() не виконано. PayPal IPN може не працювати з вашим сервером.wp_remote_post() не виконано. PayPal IPN не працюватиме з вашим сервером. Зверніться до вашого провайдера хостингу. Помилка:wp_remote_post() виконано – PayPal IPN працює.lang/ninja-forms-it_IT.mo000064400000266756152331132460011301 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8$-"PHR)]?#-c  * !"%5m[ /CW]qr?   1?Ncz)G]r3 IS4f2 $7M a m {  '@#'%-4 = HR&[    # DP dp     #.CC "4$Yy  )#, =JR[_gow N  #M.|" " <Sh   !.Pe  04I R_af! * 7 BN Wbi ?ORc%EJQ`o~#&%'Lt   "/ AO b m w 4@Rr$ 6)2Ia'u  +(Ddk{&&-I,X&D"k   -;Mds )+=5i0 K[8\ #AT\Uc  ( @ N [hx&  39B KYk.2 '' OY ^jnvLSk z ( +7HPWfv~$ 9HNU^t|   C.wI' ^bf } % <F KU \jqv |0I,(1:CS pz  e YO j Z xJ m ;1 ;m ! ;  [ E ) 0 B P ]j~-  -7O_n~ :BX_h+q 0 )AV ] j tC l )y%"5<Shpx % %)0 JV[dy    % "*27=   !%4EM S]|q+H L Zex.  % 0;S$[   ! +0E \jrw$  )  "  /9?G `l :&T{/Dut>)sj: p j!m!!6""""#"#8#$Q#Iv####, $6$ >$L$j$s$ $$$a$8%>V%%%%%%%,%,,&+Y&&&&.&i&:'&U'|' ' ' '' ''''($(6( E(R([(d(j(q((((((%(()&)8)M)c) i)s)|))) 6*A*>P*.****-+2>+q+.,"3,#V,!z,;,,,F-J-+-.+.,A.)n.r. /#/B/I/Q/ h/s/%|/)/&//0 0 0 #0-0A0P0g0n0v0 000000 1 1"%1#H1#l11A11 112 22(2 @2K2\2n22222222*3 ;3 E3Q3MY33(3?34>54 t4444445;$5 `5k5(55 52566"636H6 [6)f666666 666 77,7 27=7T7c7i7x7 7 77 77 777788)8':8b8t8&8o8C9a9v99.9999 99 : : :5':]:$s: :/:: ::5; K; X;b;j; ;;;; ;;;<<<<< <,< =+= 2= @=0M= ~= ===== ===,>&/>V>k>r>>->->>> ? ?? -?;?T?Z?3`?7?? ?? ? ? @"@5@;@D@ _@i@p@y@@@@@ @A@ A>ADA VAaArAAAA'A;A BB *B"4BWBmBYVCC0GDRxD`DR,EE'bFFUGG>vHHHmHJbIMI,IT(J}J1K+K/K<L3TL L"LKLM8MLM ^MMMMMYNb]NNENI&OpO<6PsPjPNfQRQRR S`S!T%T8TRTjTlTSU iUvUUUUUU}U+V=VEV MVZVoVvVzV V VVV V!VVW WW X X0 X"QXtXXXXX XX XYY"Y$*Y OY$]Y4YLYnZ/sZZ5M[ [,[ [[[[ \\4\M\a\~\\\\\ ]J]I^P^X^ g^q^ z^ ^^^ ^^^ ^^^&_*_F_d_ {_ _ ____ __``oga aaa b(b;b3Zb&bbTb c>cGcNcVc\c bc mcxc~cicKc8d5dXe\e.ve?e%eJ fVf%ffffRg9g,h9Fh5hhli $j/j6j#?jcj`gjj jjj kkk,k2k MkWkhklkkkkkkkkkkkk l ll+lDl[lqlll lllll lllVlwCm2m Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Campi Apri in una nuova finestra Annulla tutto installata. La versione attuale è prodotti per necessita di aggiornamento. Hai la versione #%1$s bozza aggiornata. Anteprima %3$s%1$s ripristinato alla versione del %2$s.%1$s programmato per: %2$s. Anteprima%4$s%1$s inviato. Anteprima %3$sIl segnaposto %n indica il numero di secondi.%s trascorsi%s pubblicato.%s salvato.%s aggiornati.È stata eseguita la disattivazione di %s.%sPermetti%sValore di calcolo %sselezionato%s%sNon permettere%sValore di calcolo %snon selezionato%s* - Rappresenta un carattere alfanumerico (A-Z, a-z, 0-9) e consente l'immissione sia di lettere che di cifre- Nessuno- Seleziona una voce- Seleziona un campo- Seleziona un prodotto- Seleziona una variabile- Seleziona un form- Visualizza tutti i tipi9 - Rappresenta un carattere numerico (0-9) e permette unicamente l'immissione di cifre
    • a - Rappresenta un carattere alfabetico (A-Z, a-z) e permette unicamente l'immissione di lettere.
    • 9 - Rappresenta un carattere numerico (0-9) e permette unicamente l'immissione di cifre.
    • * - Rappresenta un carattere alfanumerico (A-Z, a-z, 0-9) e consente l'immissione sia di lettere che di cifre.
    Risposta che aiuta a impedire che il form venga usato per inviare spam (fa differenza tra maiuscole e minuscole).Sta arrivando un aggiornamento epocale di Ninja Forms. %sScopri le nuove funzioni, la compatibilità retroattiva e le risposte a tante domande frequenti.%sUn ambiente di creazione dei form più semplice e più potente.Sopra l'elementoSopra il campoNome azioneAzione aggiornataAzioneAttivaAttivoAggiungiAggiungi descrizioneAggiungi formAggiungi nuovoAggiungi nuovo campoAggiungi un Nuovo FormAggiungi Nuovo ElementoAggiungi nuovo invioAggiungi nuovi terminiAggiungi operazioneAggiungi pulsante di invioAggiungi valoreAggiungi azioni al formAggiungi campi formAggiungi form a questa paginaAggiungi nuova azioneAggiungi nuovo campoAumenta il numero di iscritti e amplia la tua mailing list con questo form di iscrizione alla newsletter. Puoi aggiungere e rimuovere campi secondo la necessità.Licenze componente aggiuntivoComponenti aggiuntiviIndirizzoIndirizzo (riga 2)Aggiunge un'ulteriore classe all'elemento del campo.Aggiunge un'ulteriore classe al wrapper del campo.Email amministratoreEtichetta amministratoreAmministrazioneConfigurazione avanzataEquazione avanzataImpostazioni avanzateSpedizione avanzataAfghanistanDopo di tuttoForm dopoDopo l'etichettaD’accordo?AlbaniaAlgeriaTutteDettagli sui formTutti i CampiTutti i formTutti gli ElementiTutti i form attuali rimarranno nella tabella "Tutti i form". Durante questo procedimento, alcuni form potrebbero risultare duplicati.Consenti agli utenti di registrarsi al tuo prossimo evento con questo form di facile compilazione. Puoi aggiungere e rimuovere campi secondo la necessità.Permetti agli utenti di contattarti con questo semplice form di contatto. Puoi aggiungere e rimuovere campi secondo la necessità.Permette di immettere testo formattato.Permette agli utenti di scegliere più di un'unità di prodotto.Abbiamo quasi terminato...Assieme alla scheda "Crea il tuo form", abbiamo sostituito "Notifiche" con "Email e azioni". Questo cambiamento rende più chiaro quali siano le operazioni che possono essere eseguite in questa scheda.Samoa AmericaneSi è verificato un errore inaspettato.AndorraAngolaAnguillaRispondereAntartideAntispamDomanda antispam (Risposta = risposta)Messaggio di errore antispamAntigua e BarbudaQualsiasi carattere specificato nella casella "maschera personalizzata", e non incluso nell'elenco qui sotto, sarà inserito automaticamente nel campo man mano che l'utente digita e non potrà essere cancellato.Aggiungi un form NinjaAggiungi form NinjaAggiungi alla paginaApplicaArgentinaArmeniaArubaAllega CSVAllegatiAustraliaAustriaCampi totale automaticoCalcola automaticamente i totaliDisponibileTermini disponibiliAzerbaigianTorna all'elencoTorna all'elencoBackup/ripristinoBackup di Ninja FormsBahamasBahreinBangladeshBarBarbadosCampi baseImpostazioni di baseLavandinoBazCcnPrima di tuttoForm primaPrima dell'etichettaPrima di chiedere aiuto al nostro team dell’assistenza, consulta:Data di inizioDataBielorussiaBelgioBelizeSotto l'elementoSotto il campoBeninBermudaMetodo di contatto preferito?La migliore assistenza del settoreMigliore organizzazione delle impostazioni dei campiMigliore gestione delle licenzeBhutanFatturazioneForm vuotiBoliviaBosnia ed ErzegovinaBotswanaIsola BouvetBrasileTerritorio britannico dell'Oceano IndianoSultanato del BruneiCrea il tuo formBulgariaAzioni di gruppoBurkina FasoBurundiPulsanteCVCCalcoloCalcoloCalcoloMetodo di calcoloImpostazioni calcoliNome calcoloCalcoliI calcoli vengono presentati con la risposta AJAX (risposta -> dati -> calcoliCambogiaCamerunCanadaCancellaCapo VerdeMancata corrispondenza CAPTCHA. Immetti il valore corretto nel campo CAPTCHA.Descrizione numero CVC cartaEtichetta numero CVC cartaDescrizione mese di scadenza cartaEtichetta mese di scadenza cartaDescrizione anno di scadenza cartaEtichetta anno di scadenza cartaDescrizione nome cartaEtichetta nome cartaNumero di Carta di CreditoDescrizione numero di cartaEtichetta numero di cartaIsole CaymanCcRepubblica CentrafricanaCiadCambia valoreCarattere/iCaratteri rimastiCaratteriStai barando eh?Consulta la nostra documentazioneCasella di controlloElenco caselle di controlloCaselle di controlloSelezionatoValore di calcolo selezionatoCileCinaIsola di NataleCittàNome classeVuoi cancellare i form completati correttamente?Isole Cocos (Keeling)Acquisisci pagamentoColombiaCampi comuniComorePuoi formulare equazioni più complesse aggiungendo le parentesi: %s( field_45 * field_2 ) / 2%s.ConfermaConferma di non essere un botCongoCongo, Repubblica Democratica delModulo di contattoContattatemiContattaciContenitoreContinuaIsole CookPrezzoElenco a discesa di costoOpzioni di costoTipo di costoCosta RicaCosta d'AvorioImpossibile attivare la licenza. Verifica la chiave di licenza.PaeseCrea una chiave univoca che identifica il campo per lo sviluppo personalizzato.Carta di CreditoNumero CVC carta di creditoNumero CVC carta di creditoScadenza carta di creditoNome completo carta di creditoNumero carta di creditoCAP carta di creditoCAP carta di creditoRiconoscimentiCroazia (nome locale: Hrvatska)CubaValutaSimbolo valutaPagina attualePersonalizzatoClasse CSS personalizzataClassi CSS personalizzateNomi classi personalizzateGruppo campi personalizzatiMaschera personalizzataDefinizione maschera personalizzataCampo   personalizzato   eliminato .Campo   personalizzato   aggiornato .Prima opzione personalizzataCiproRepubblica CecaGG-MM-AAAAGG/MM/AAAADEBUG: Passa a 2.9.xDEBUG: Passa a 3.0.xScuroRipristino dei dati riuscito.DataData di creazioneFormato dataImpostazioni dataData di invioData aggiornamentoCalendarioDisattivaDisattivaDisattiva tutte le licenzeDisattiva la licenzaOra è possibile disattivare le licenze delle estensioni di Ninja Forms singolarmente o in gruppo dalla scheda delle impostazioni.PredefinitoPaese predefinitoPosizione etichetta predefinitaFuso orario predefinitoUsa la data odierna come predefinitaValore predefinitoIl fuso orario predefinito è %sIl fuso orario predefinito è %s - Dovrebbe essere UTCCampi definitiCancellaElimina (^ + D + clic)Rimuovi definitivamenteElimina questo formEliminare l'elemento in modo permanenteDanimarcaDescrizioneContenuto descrizionePosizione descrizioneLo sapevi che puoi aumentare la conversione dei form suddividendoli in parti più piccole e più facilmente gestibili?

    Questa operazione è rapida e semplice con l'estensione Multi-Part Forms di Ninja Forms.

    Disabilita avvisi amministratoreDisabilita completamento automatico browserDisabilita l'immissioneDisabilita editor testo RTF su cellulariVuoi disabilitare l'immissione?ChiudiVisualizzazioneVisualizza titolo del formNome da visualizzareImpostazioni di visualizzazioneVisualizza questa variabile di calcoloVisualizza titoloVisualizzazione del formDivisoreGibutiNon mostrare questi terminiDocumentazioneLa documentazione sarà disponibile a breve.La nostra documentazione copre tutti gli argomenti possibili, dalla %sRisoluzione dei problemi%s alla nostra %sAPI per sviluppatori%s. E la raccolta si arricchisce sempre di nuovi documenti.NON si applica all'anteprima del form.Si applica all'anteprima del form.DominicaRepubblica DominicanaFattoScarica tutti i dati inviatiMenù a discesaDuplicaDuplica (^ + C + clic)Duplica formEcuadorModificaModifica azioneModifica formModifica ElementoVoce del menu ModificaModifica invioModifica questo oggettoModifica campoModifica campoEgittoEl SalvadorElementoEmailEmail e azioniIndirizzo emailMessaggio emailForm di iscrizione emailDigita l'indirizzo email o cerca un campoDigita gli indirizzi email o cerca un campoQuesto indirizzo apparirà come mittente delle email.Questo nome apparirà come mittente delle email.Email e azioniData di fineGarantisce che il campo sia compilato prima di consentire l'invio del form.Digita il testo che vuoi visualizzare nel campo prima dell'immissione da parte dell'utente.Digita l'etichetta del campo del form. Permette agli utenti di identificare i singoli campi.Immetti il tuo indirizzo emailAmbienteEquazioneEquazione (funzione avanzata)Guinea EquatorialeEritreaErroreMessaggio di errore visualizzato quando i campi obbligatori non sono tutti compilati.EstoniaEtiopiaRegistrazione a eventiEspandi menuIl mese di scadenza (MM)L'anno di scadenza (AAAA)EsportaEsporta campi preferitiEsporta campiEsporta formEsporta formEsporta un formEsporta questo elementoEstendi Ninja FormsCARICAMENTO FILEImpossibile scrivere il file su disco.Isole Falkland (Malvinas)Isole FaroeCampi preferitiImportazione preferiti riuscita.CampoCampo n.ID campoChiave ModuloCampo non trovatoOperazioni nei campiCampiI campi contrassegnati con * sono obbligatori.I campi contrassegnati con %s*%s sono obbligatori.FigiErrore di caricamento del fileCaricamento file in corso.Il file ha una estensione non permessa.FinlandiaNomeAggiustalo.FooFoo BarAd esempio, per l'inserimento di codici prodotto nel formato A4B51.989.B.43C, la maschera è a9a99.999.a.99a, che richiede l'immissione di lettere in corrispondenza delle "a" e di numeri in corrispondenza dei "9".ModuloValore predefinito formForm eliminatoCampi formImportazione form riuscita.Chiave ModuloForm non trovatoAnteprima formImpostazioni form salvateModulo di sottoscrizioneErrore di importazione modello del form.Titolo formForm con calcoliFormatoModuliForm eliminatiForm per paginaFranciaFrancia, area metropolitanaGuyana francesePolinesia FranceseTerre australi e antartiche francesiVenerdì 18 novembre 2019Indirizzo mittenteNome mittenteRegistro modifiche completoSchermo interoGabonGambiaGeneraleImpostazioni generaliGeorgiaGermaniaAiutoAltre azioniAltri tipiChiedi aiutoRichiedi assistenzaReport di sistemaPer ottenere la chiave sito per il tuo dominio, registrati %squi%s.Inizia aggiungendo il tuo primo campo al form.Inizia aggiungendo il tuo primo campo al form. Fai clic sul segno più e seleziona le azioni da aggiungere. Facile, no?IniziareInformazioni preliminari su Ninja FormsGhanaGibilterraAssegna un titolo al form. In questo modo lo potrai reperire facilmente in un secondo momento.VaiTentativo non riuscitoVai ai formVai a Ninja FormsVai alla prima paginaVai all'ultima paginaVai alla prossima paginaVai alla pagina precedenteGreciaGroenlandiaGrenadaDocumentazione sempre più esaurienteGuadalupaGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiMetà schermoIsole Heard e McDonaldSalve, Ninja Forms.AiutoTesto di aiutoTesto di aiuto quiNascondiCampo nascostoNascondi etichettaNascondi questoVuoi nascondere i form completati correttamente?Suggerimento: La password deve contenere almeno sette caratteri. Per renderla più complessa, usa lettere sia maiuscole sia minuscole, numeri e simboli come ! " ? $ % ^ & ).Stato della Città del Vaticano (Santa Sede)URL homeHondurasHoneypotErrore HoneypotMessaggio di errore HoneypotHong KongTag di ancoraggioNome hostCome va?UngheriaIP AddressIslandaSe "testo descrizione" è abilitato, accanto al campo di immissione ci sarà un punto di domanda %s. Passando il cursore sul punto di domanda, comparirà la descrizione.Se "testo aiuto" è abilitato, accanto al campo di immissione ci sarà un punto di domanda %s. Passando il cursore sul punto di domanda, comparirà il testo di aiuto.Se questa casella è selezionata, TUTTI i dati di Ninja Forms verranno rimossi dal database al momento dell'eliminazione. %sTutti i form e i dati inviati saranno irrecuperabili.%sSe questa casella è selezionata, Ninja Forms cancellerà i valori del form dopo l'invio.Se questa casella è selezionata, Ninja Forms nasconderà il form dopo l'invio.Se questo campo è selezionato, Ninja Forms inoltrerà una copia di questo form (e qualsiasi messaggio allegato) a questo indirizzo.Se questa casella è selezionata, Ninja Forms valida l’input come un indirizzo mail.Se questa casella è selezionata, verrà visualizzato il campo della password e anche quello della password di conferma.Se questa casella è selezionata, questa colonna nella tabella dati inviati sarà ordinata in base al numero.Se sei un essere umano e vedi questo campo, lascialo vuoto.Se sei un essere umano e vedi questo campo, lascialo vuoto.Se sei un essere umano, rallenta.Se lasci vuota la casella, non verrà imposto alcun limite.Se ti iscrivi, alcuni dati riguardanti l'installazione di Ninja Forms verranno inviati a NinjaForms.com (ESCLUSI i tuoi invii).Se preferisci ignorare questo invito, non importa. Ninja Forms funzionerà bene ugualmente.Se vuoi inviare un valore o un calcolo vuoto, inserisci il simbolo ".In questa scheda puoi definire opzioni come le notifiche da ricevere via email quando gli utenti fanno clic per inviare il form. Puoi creare un numero illimitato di email, incluse quelle inviate all'utente che ha compilato il form.Se i tuoi vecchi form sono "scomparsi" dopo l'aggiornamento alla versione 2.9, questo pulsante tenterà di riconvertirli per visualizzarli in 2.9. Tutti i form attuali rimarranno nella tabella "Tutti i form".ImportaImporta/esportaImporta/esporta dati inviatiImporta campi preferitiImporta preferitiImporta campiImporta formImporta formImporta voci elencoImporta un formImporta/esportaMaggiore chiarezzaIncludi nel totale automatico? (se abilitato)Risposta errataAumenta le conversioniIndiaIndonesiaMaschera di immissioneInserisciInserisci tutti i campiInserisci campoInserisci linkInserisci mediaDentro l'elementoInstallatoPlug-in installatiGruppi di interesseCaricamento form non valido.ID form non validoIran, Repubblica Islamica diIraqIrlandaQuesto è un indirizzo email?IsraeleFacile, no? Oppure...ItaliaGiamaicaGiapponeMessaggio di errore JavaScript disabilitatoJohn DoeGiordaniaFai clic qui e seleziona i campo che preferisci.KazakistanKenyaChiaveKiribatiLavello della cucinaCorea, Repubblica Popolare Democratica diCorea, Repubblica diKuwaitKirghizistanEtichettaEtichetta quiNome etichettaPosizione etichettaEtichetta usata quando si visualizzano ed esportano i dati inviati.etichetta,valore,calcoloEtichetteÈ la lingua usata per il test reCAPTCHA. Per ottenere il codice della lingua selezionata, fai clic %squi%s.Laos, Repubblica Popolare Democratica delCognomeLettoniaElementi di layoutCampi di layoutImpara di PiùScopri i dettagli di Multi-Part FormsScopri i dettagli di Save ProgressLibanoSinistra dell'elementoA sinistra del campoLesothoLiberiaGran Giamahiria Araba LibicaLicenzeLiechtensteinChiaroLimita valore immesso a questo numeroMessaggio di limite raggiuntoLimita inviiLimita valore immesso a questo numeroElencoMappatura campi di elencoTipo elencoListLituaniaCaricamento in corsoCaricamento in corso...Luogo dell’eventoLogin EseguitoForm lungo - LussemburgoMM-GG-AAAAMM/GG/AAAAMacaoMacedonia, ex Repubblica Jugoslava diMadagascarMalawiMalesiaMaldiveMaliMaltaGestisci con facilità le richieste di preventivo dal tuo sito web con questo modello. Puoi aggiungere e rimuovere campi secondo la necessità.Isole MarshallMartinicaMauritaniaMauritiusMassimoMax livello di nesting immissioniValore massimoForse più tardiMayotteMediaMessaggioEtichette messaggioSe la casella di controllo "collegato" è selezionata, questo messaggio appare agli utenti che non hanno eseguito l'accesso.MetaboxMessicoMicronesia, Stati Federati diMigrazioni e dati di simulazione completi. MinValore minimoCampi variNon corrispondenteManca una cartella temporaria.Simulazione emailSimulazione salvataggioSimulazione messaggio di operazione completataModificato ilMoldova, Repubblica diMonacoMongoliaMontenegroMontserratAltre novità in futuroMaroccoSpostare questo elemento nel cestinoMozambicoMultiselezioneMultiprodotto - Scelta fra moltiMultiprodotto - Scelta singolaMultiprodotto - Elenco a discesaMultiselezioneDimensioni casella multiselezionePiùI miei primi calcoliI miei secondi calcoliMySQL VersionMyanmarNomeIl nome sulla carta di credito.Digita un nome o inserisci dei campiNamibiaNauruHai bisogno di aiuto?NepalPaesi BassiAntille OlandesiImpedisce la visualizzazione da parte di Ninja Forms degli avvisi di amministrazione sulla dashboard. Per visualizzarli di nuovo, deseleziona l'opzione.Nuova azioneNuova scheda dello strumento di creazioneNuova CaledoniaNuovo elementoNuovo invioNuova ZelandaForm di iscrizione alla newsletterNicaraguaNigerNigeriaImpostazioni Ninja FormsNinja FormsNinja Forms - ElaborazioneRegistro modifiche Ninja FormsNinja Forms DevDocumentazione Ninja FormsElaborazione Ninja FormsInoltro moduli ninjaStato sistema Ninja FormsDocumentazione Ninja Forms THREEAggiornamento Ninja FormsElaborazione aggiornamento Ninja FormsAggiornamenti Ninja FormsVersione di Ninja FormsWidget di Ninja FormsNinja Forms offre anche una semplice funzione con modelli che possono essere inseriti direttamente in un file di modello PHP. %sL'aiuto di base di Ninja Forms va inserito qui.Ninja Forms non può essere attivato a livello di rete. Per attivare il plug-in, visita la dashboard di ciascun sito.Ninja Forms ha completato tutti gli aggiornamenti disponibili.Ninja Forms è stato creato da un team di sviluppatori a livello globale per fornire il migliore plug-in di creazione di form per la community di WordPress.Ninja Forms deve elaborare %s aggiornamento/i. L'operazione può richiedere alcuni minuti. %sAvvia aggiornamento %sNinja Forms ha bisogno di aggiornare le impostazioni email; fai clic %squi%s per iniziare l'aggiornamento.Ninja Forms ha bisogno di aggiornare la tabella dei dati inviati; fai clic %squi%s per iniziare l'aggiornamento.Ninja Forms ha bisogno di aggiornare le notifiche dei form; fai clic %squi%s per iniziare l'aggiornamento.Ninja Forms ha bisogno di aggiornare le impostazioni dei form; fai clic %squi%s per iniziare l'aggiornamento.Ninja Forms offre un widget che puoi inserire in qualsiasi area del tuo sito predisposta per i widget e che permette di selezionare esattamente il form da visualizzare in quello spazio.shortcode Ninja Forms usato senza specificare il form.NiueNoNessuna azione specificata...Non trovati campi preferitiNessun campo trovato.Non trovati dati inviatiNon trovati dati inviati nel CestinoNessun termine disponibile per questa tassonomia. %sAggiunti un termine%sNessun file caricatoNessun form trovato.Nessuna tassonomia selezionataNon trovato alcun registro modifiche valido.NessunoIsola NorfolkIsole Marianne SettentrionaliNorvegiaMessaggio utente non collegatoNon ancoraNon trovato nel carrelloNoteIl testo della nota può essere modificato nelle impostazioni avanzate del campo nota, qui sotto.Avviso: JavaScript è obbligatorio per questo contenuto.Avviso: shortcode Ninja Forms usato senza specificare il form.NumeroErrore numero maxErrore numero minOpzioni numericheNumero di stellineNumero di cifre decimali.Numero di secondi per il conto alla rovesciaNumero di secondi per il conto alla rovesciaNumero di secondi per l'invio temporizzato.Numero di stellineOmanUnoDigita un indirizzo email o inserisci un campoOps! Tale componente aggiuntivo non è ancora compatibile con Ninja Forms THREE. %sPer saperne di più%s.Apri in una nuova finestraOperazioni e campi (funzione avanzata)Stili "opinionated"Opzione unoOpzione treOpzione dueOptionsOrganizzatoreAmbito dell'assistenzaVisualizza calcolo comeImpostazioni locali PHPPHP Max Input VarsPHP Post Max SizePHP Time LimitVersione PHPPUBBLICAPakistanPalauPanamaPapua Nuova GuineaTesto del paragrafoParaguayArticolo genitore:PasswordConferma passwordEtichetta password non corrispondenteLe password non corrispondonoCampi di pagamentoGateway pagamentoTotale del pagamentoAutorizzazione negataPerùFilippineTelefonoTelefono - (555) 555-5555PitcairnInserisci %s in qualsiasi area che accetta shortcode per visualizzare il form ovunque tu voglia. Anche in mezzo a una pagina o nel contenuto dei post.SegnapostoTesto semplice%sContatta l'assistenza%s comunicando l'errore indicato sopra.Rispondi alla domanda anti-spam correttamente.Verifica i campi obbligatori.Compila il campo CAPTCHACompleta il test reCAPTCHACorreggi gli errori prima di inviare il form.Assicurati di compilare tutti i campi obbligatori.Digita il messaggio che deve essere visualizzato quando questo form ha raggiunto il limite di invii e non saranno accettati ulteriori nuovi invii.Per favore inserisci un indirizzo email validoImmetti un indirizzo email valido.Inserire un indirizzo email valido.Aiutaci a migliorare Ninja Forms!Queste devono essere incluse nelle richieste di assistenza:Incrementa di Lascia vuoto il campo spam.Assicurati di aver immesso le chiavi del sito e segreta correttamente.Valuta %sNinja Forms%s %s su %sWordPress.org%s per aiutarci a far sì che questo plug-in rimanga gratuito. Il team WP Ninjas ti ringrazia!Seleziona un form per vedere i dati inviatiSeleziona un form.Seleziona un file di form esportati valido.Seleziona un file di campi preferiti valido.Seleziona i campi preferiti da esportare.Usa questi operatori: + - * /. Questa è una funzione avanzata. Fai attenzione a dettagli come la divisione per 0.Attendi %n secondiAttendi prima di inviare il modulo.PluginPoloniaCompila con tassonomiaPortogalloArticoloID Articolo / Pagina (se disponibile)Titolo Articolo / Pagina (se disponibile)URL Articolo / Pagina (se disponibile)Creazione postPost IDTitolo postURL articoloAnteprimaAnteprima modificheAnteprima formL'anteprima non esistePrezzoPrezzo:Campi di prezziTrattamentoEtichetta di elaborazioneEtichetta di elaborazione invioProdottoProdotto (inclusa quantità)Prodotto (esclusa quantità)Prodotto AProdotto BForm prodotto (quantità in linea)Form prodotto (molteplici prodotti)Form prodotto (con campo Quantità)Tipo di prodottoNome di programmazione utilizzabile per fare riferimento al form.PubblicaPorto RicoAcquistoQatarQuantitàQuantità di prodotto AQuantità di prodotto BQuantità:Stringa di queryStringhe di queryVariabile della querystringDomandaPosizione domandaRichiesta di preventivoRadioElenco pulsanti di sceltaPassword di confermaEtichetta password di confermaVuoi davvero disattivare tutte le licenze?ReCAPTCHAReindirizzaEliminaVuoi rimuovere TUTTI i dati di Ninja Forms al momento della disinstallazione?Rimuovi valoreRimozione di tutti i dati di Ninja FormsVuoi rimuovere questo campo? Verrà rimosso anche se non salvi.Destinatario risposteL'utente deve essere collegato per poter visualizzare il form?ObbligatorioCampo obbligatorioErrore campo obbligatorioEtichetta campo obbligatorioSimbolo campo obbligatorioReimposta conversione del formReimposta conversione dei formReimposta il procedimento di conversione dei form per v2.9+RipristinaRipristino di Ninja FormsRipristinare questo elemento dal cestinoImpostazioni restrizioniLimitazioniLimita il tipo di immissioni consentite dal campo.Torna a Ninja FormsReunionEditor testo RTFDestra dell'elementoA destra del campoRipristinaRipristina la release 2.9.x più recente.Ripristina la versione 2.9.xRomaniaFederazione RussaRuandaSMTPClient SOAPSUHOSIN InstallatoSaint Kitts e NevisSanta LuciaSaint Vincent e GrenadineSamoaSan MarinoSão Tomé e PríncipeArabia SauditaSalvaSalva e attivaSalva impostazioni campoSalva moduloSalva opzioniSalva i settaggiSalva inoltroSalvatoCampi salvatiSalvataggio...Cerca elementoCerca dati inviatiScegliSeleziona tuttoSeleziona elencoSeleziona un campo o digita per cercareSeleziona un fileSeleziona un formSeleziona un form o digita per cercareSeleziona il numero di invii che questo form potrà accettare Lascia il campo vuoto se vuoi omettere il limite.Seleziona la posizione dell'etichetta in relazione al campo stesso.Selezione effettuataValore selezionatoInviaInoltra una copia del form a questo indirizzo?SenegalSerbiaIndirizzo IP del serverImpostazioniImpostazioni salvateSeychellesSpedizioneShortcodeDeve essere immessa come percentuale (es., 8,25%, 4%)Mostra testo di aiutoMostra pulsante di caricamento mediaMostra tuttoMostra indicatore dell'efficacia della passwordMostra editor testo RTFMostra questoMostra valori voci elencoCompare agli utenti quando ci passano sopra il mouse.Sierra LeoneSingaporeSingoloCasella di controllo singolaCosto singoloTesto su una linea solaProdotto singolo (predefinito)URL sitoSlovacchia (Repubblica Slovacca)SloveniaPosta ordinariaQuindi, per creare la maschera per un numero di carta di credito con trattini di separazione, nella casella devi semplicemente digitare 999-99-9999.Isole SalomoneSomaliaOrdina numericamenteOrdina numericamenteSud AfricaGeorgia del Sud e Isole Sandwich MeridionaliSudan del SudSpagnaRisposta spamDomanda spamSpecifica operazioni e campi (funzione avanzata)Sri LankaSant'ElenaSaint Pierre e MiquelonCampi standardValutazione con stellineInizia con un modelloRegione/StatoStatoStepEsecuzione fase %d su approssimativamente %dIncremento (quantità dell'incremento)Livello di sicurezzaSolidoSequenza secondariaOggettoDigita il testo dell'oggetto o cerca un campoDigita il testo dell'oggetto o cerca un campoInvioCSV dati inviatiDati invioInfo invioLimite sottoscrizioniMetabox invioStatistiche dati inviatiInviiInviaTesto del pulsante Invio dopo la scadenza del timerVuoi inviare tramite AJAX (senza ricaricare la pagina)?InviatoAutore invioAutore invio: Data invioData invio: IscrivitiMessaggio di operazione completataSudanSurinameIsole Svalbard e Jan MayenSwazilandSveziaSvizzeraRepubblica Araba SirianaSistemaStato del SistemaÈ in arrivo Ninja Forms THREE!TaiwanTagikistanConsulta la documentazione dettagliata di Ninja Forms, qui sotto.Tanzania, Repubblica Unita diTassaPercentuale tassaTassonomiaCampi di modelliFunzione modelloElenco terminiTestoElemento di testoTesto da visualizzare dopo il contatoreTesto da visualizzare dopo il contatore di caratteri/paroleArea testoCasella di testoTailandiaGrazie per aver compilato il form.Grazie per aver eseguito l'aggiornamento all'ultima versione. Ninja Forms %s ha tutto il necessario per rendere efficiente la gestione dei form.Grazie per l'aggiornamento alla versione 2.7 di Ninja Forms. Aggiorna le eventuali estensioni Ninja Forms da Grazie dell'aggiornamento. Ninja Forms %s rende ancor più semplice la creazione di form!Grazie per aver scelto Ninja Forms. Ci auguriamo che tu abbia trovato tutto il necessario. Se, però, tu avessi dei dubbi, ecco qualche utile risorsa:{field:name}, grazie per aver compilato il form.Il numero (generalmente di 16 cifre) sulla parte anteriore della carta di credito.Il numero di sicurezza di 3 cifre (sul retro) o di 4 cifre (sul davanti) della carta di credito.I "9" rappresentano qualsiasi cifra e i trattini vengono inseriti automaticamente.Il menu Form è il punto di accesso per tutto ciò che riguarda Ninja Forms. Abbiamo preparato un esempio di %sform di contatto%s, che puoi usare come base. Puoi creare il tuo form personale facendo clic su %sAggiungi nuovo%s.Il formato dovrebbe essere il seguente:Gli aggiornamenti apportati all'interfaccia in questa versione pongono le basi per alcuni importanti miglioramenti futuri. La versione 3.0 si evolverà ulteriormente per rendere Ninja Forms uno strumento per la creazione di form ancor più stabile, efficace e facile da usare.Il mese in cui scade la carta di credito, normalmente indicato sulla parte anteriore.Le impostazioni più comuni sono immediatamente visibili, mentre le altre, non essenziali, sono nascoste in sezioni espansibili.Il nome stampato sulla parte anteriore della carta di credito.Le password non corrispondono.Gli sviluppatori di Ninja FormsL'elaborazione è iniziata. Potrebbe durare diversi minuti. Al termine, verrai reindirizzato automaticamente.Il file caricato supera la specifica MAX_FILE_SIZE definita nel form HTML.Il file caricato supera la specifica upload_max_filesize definita in php.ini.Il file è stato solo parzialmente caricato.L'anno in cui scade la carta di credito, normalmente indicato sulla parte anteriore.È disponibile una nuova versione di %1$s. Visualizza i dettagli della versione %3$s oppure aggiorna adesso.È disponibile una nuova versione di %1$s. Visualizza i dettagli della versione %3$s.Il formato del file caricato non è valido.Questi sono tutti i campi nella sezione Prezzi.Questi sono tutti i campi nella sezione Informazioni utente.Questi sono i caratteri di mascheratura predefinitiQuesti sono vari campi speciali.Questi campi devono corrispondere.Questa colonna nella tabella dati inviati sarà ordinata in base al numero.Questo è un campo obbligatorioCampo obbligatorio.Questo è un testQuesto è uno stato dell'utente.Questa è un’azione email.Questo è un altro test.Questo è il tempo che l'utente deve attendere prima di poter inviare il formQuesta è l'etichetta usata quando si visualizzano, modificano, esportano i dati inviati.Questo è il nome di programmazione del campo. Ad esempio: mio_calc, prezzo_totale, totale-utente.Questo è lo stato dell'utente.Questo è il valore che verrà usato se l'opzione è %sselezionata%s.Questo è il valore che verrà usato se l'opzione è %snon selezionata%s.Qui elaborerai il tuo form aggiungendo i campi e trascinandoli nell'ordine in cui vorrai visualizzarli. Ogni campo avrà una serie di opzioni, come etichetta, posizione dell'etichetta e segnaposto.Questa è una parola chiave riservata di WordPress. Riprova.Ogni volta che un utente fa clic su "Invio", questo messaggio compare all'interno del pulsante per segnalare l'elaborazione dell'invio.Questo messaggio compare quando un utente inserisce un valore non corrispondente nel campo della password.Questo è il numero che verrà usato nei calcoli se la casella è selezionata.Questo è il numero che verrà usato nei calcoli se la casella non è selezionata.Questa impostazione rimuove COMPLETAMENTE qualsiasi componente correlato a Ninja Forms al momento dell'eliminazione del plug-in. Questo include i DATI INVIATI e i FORM. L'operazione è irreversibile.Questa scheda contiene le impostazioni generali del form, come il titolo e il metodo di invio, oltre a impostazioni che permettono di nascondere il form quando è stato inviato con successo, e altro ancora.Questo è l'oggetto della email.In questo modo, all'utente viene impedito di digitare qualsiasi carattere che non sia un numero.TreInvio temporizzatoMessaggio di errore timerTimor-Leste (Timor Est)APer attivare le licenze delle estensioni di Ninja Forms, bisogna prima %sinstallare e attivare%s le estensioni scelte. Le impostazioni delle licenze appaiono qui sotto.Per usare questa funzione, puoi incollare il file CSV nell'area di testo qui sopra.Data OdiernaApri/chiudi cassettoTogoTokelauTongaTotaleCestinoIl campo tenta di seguire le specifiche della %sfunzione date() del linguaggio PHP%s, ma non tutti i formati sono supportati.Trinidad e TobagoTunisiaTurchiaTurkmenistanIsole Turks e CaicosTuvaluDueTipoIndirizzo URLTelefono USAUgandaUcrainaDeselezionatoValore di calcolo non selezionatoNella sezione relativa al comportamento di base del form nelle impostazioni, puoi selezionare una pagina al fondo della quale aggiungere automaticamente il form. Un'opzione simile è disponibile nella barra laterale di ogni schermata di modifica dei contenuti.AnnullaAnnulla tuttoEmirati Arabi UnitiRegno UnitoStati UnitiIsole Minori Esterne degli Stati Uniti d'AmericaErrore di caricamento sconosciuto.Non pubblicatoAggiornaAggiorna ElementoData aggiornamento: Aggiornamento database formAggiornamentoPassa a Ninja Forms THREEAggiornamentiAggiornamenti completatiURLUruguayUsa un'equazione (funzione avanzata)Usa quantitàUsa una prima opzione personalizzataUsa le convenzioni di stile Ninja Forms predefinite.Usa il seguente shortcode per inserire il calcolo finale: [ninja_forms_calc]Attieniti ai suggerimenti seguenti per iniziare a usare Ninja Forms. I tuoi form saranno pronti in un istante.Usa questo campo come password di registrazioneUsa questo campo come password di registrazione. Se questa casella è selezionata, verrà visualizzato il campo della password e anche quello della password di conferma.Usato per contrassegnare un campo per l'elaborazione.UtilizzatoreNome pubblico dell’utente (se loggato)Email utenteEmail Utente (se loggato)Immissione utenteNome utente (se collegato)ID UtenteID utente (se collegato)Gruppo campi info utenteInformazioni utenteCampi di informazioni utenteCognome Utente(se loggato)User Meta (se collegato)Valori inviati dagli utentiValori inviati dagli utenti:È più probabile che gli utenti compilino i form più lunghi quando possono salvare i dati inseriti per tornare a completare la compilazione in un secondo momento.

    Con l'estensione Save Progress di Ninja Forms è facile e rapido includere questa funzione.

    UzbekistanVuoi convalidare come indirizzo email? (Il campo deve essere obbligatorio)ValoreVanuatuNome variabileVenezuelaVersioneVersione %sMolto deboleVietnamVediVisualizza %sVisualizza modificheVisualizza formVedi elementoVisualizza invioVisualizza inviiVisualizza registro modifiche completoIsole Vergini (britanniche)Virgin Islands (statunitensi)Visita homepage pluginWP Debug ModeLingua WPDimensioni di caricamento max WPWP Memory LimitWP multisito abilitatoPost WP remotoWP VersionWallis e FutunaFacciamo tutto ciò che possiamo per offrire a ogni utente Ninja Forms la migliore assistenza possibile. Se si verifica un problema o per qualsiasi quesito, %scontattaci%s.Abbiamo aggiunto l'opzione che consente di rimuovere tutti i dati di Ninja Forms (dati inviati, form, campi, opzioni) quando si elimina il plug-in. È la nostra opzione "nucleare".Abbiamo notato che il tuo form non include il pulsante di invio. Possiamo aggiungerlo automaticamente, se vuoi.VulnerabileInfo server webBenvenuto in Ninja FormsBenvenuto in Ninja Forms %sSahara OccidentaleIn che cosa possiamo aiutarti?Che cosa provare prima di contattare l’assistenzaChe nome vuoi dare a questo preferito?Cosa c'è di nuovoPer creare e modificare i form, puoi andare direttamente alla sezione di pertinenza.A chi vuoi inviare questa email?Parola/eParoleWrapperA-m-gY/m/dAAAA-MM-GGAAAA/MM/GGYemenSìIl tuo account è idoneo per il passaggio alla release candidate di Ninja Forms THREE! %sPassa subito a%sQuesti caratteri possono anche essere abbinati per applicazioni specifiche.Puoi inserire le equazioni di calcolo qui usando "field_x", dove x è l'ID del campo che vuoi usare. Ad esempio, %sfield_53 + field_28 + field_65%s.Non puoi inviare il modulo senza JavaScript attivato.Non disponi dell'autorizzazione necessaria per installare gli aggiornamenti dei plug-in.Non hai l'autorizzazione.Non hai aggiunto il pulsante di invio al form.Per vedere l'anteprima di un form, devi aver eseguito il login.Devi dare un nome a questo preferito.Per l'invio di questo form, è necessario JavaScript. Abilitalo e riprova.Hai acquistato Sarà inclusa nell'email di acquisto.Il modulo è stato inviato.Il server non ha né fsockopen né cURL abilitati - PayPal IPN ed altri script che comunicano con gli altri server non funzioneranno. Rivolgersi al fornitore di hosting.Questo server non ha la classe del %sclient SOAP%s abilitata; alcuni plug-in gateway che usano SOAP potrebbero non funzionare come previsto.Questo server ha cURL abilitato e fsockopen disabilitato.Questo server ha fsockopen e cURL abilitati.Questo server ha fsockopen abilitato e cURL disabilitato.Questo server ha la classe del client SOAP abilitata.La versione dell'estensione File Upload di Ninja Forms in uso non è compatibile con la versione 2.7 di Ninja Forms. Deve essere almeno la versione 1.3.5. Aggiorna l'estensione con La versione dell'estensione Save Progress di Ninja Forms in uso non è compatibile con la versione 2.7 di Ninja Forms. Deve essere almeno la versione 1.1.3. Aggiorna l'estensione con JugoslaviaZambiaZimbabweCodice di avviamento postale (CAP) CAPa - Rappresenta un carattere alfabetico (A-Z, a-z) e permette unicamente l'immissione di lettererispostabutton-secondary nf-download-alldacarattere/i rimasto/iselezionataCopiapersonalizzatog-m-Adashicons dashicons-updateduplicatofoo@wpninjas.comorajs-newsletter-list-update extral, F d Ym-g-Am/g/Anonedidi prodotto A e di prodotto B per $unoone_week_supportpasswordelaborazione in corsoprodotti per reCAPTCHALingua reCAPTCHAChiave segreta reCAPTCHAImpostazioni reCAPTCHAChiave sito reCAPTCHATema reCAPTCHAImpostazioni reCaptchaAggiornasmtp_porttretitoloduenon selezionataaggiornatouser@gmail.comversionewp_remote_post() non riuscito. L'IPN PayPal potrebbe non funzionare con questo server.wp_remote_post() non riuscito. L'IPN PayPal non funzionerà con questo server. Contatta il provider di hosting. Errore:wp_remote_post() riuscito; IPN PayPal funzionante.lang/ninja-forms-da_DK.mo000064400000264364152331132460011224 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 & $DUF%eJ(5s   #$zH .NAxgDi ->Ocw0DU#  (/20b   #- <IOXaf x6j'D;]l "    ( 7BJ#f    $-CVquy ;  &,4O+m   8J [e u   @@IRY bIm$ !)Ki    ! &1HYv   3_;   " -8M _ kv6` #.>Nf  !<Yv $+ 4 ?Jg    9kK +,Bo #%+)<f   5C_94!V_y';Qcu } &' 62-i NVe]F$ks|  -D]r   + ;1E*w  "1 IVp$  5IR ft*   .7 @K` p {>4  O)2L_s      -49 ?Kdz        $6 =GN  ej|^ib_I, Iv - A 0 b J+ v y  R \ #q       *?5T      )5J[x&  0<(C lw} %   AV kLu$   =]e ""3V\ z      / &18 ALQyW   " 2@HOVwg* 6:IX_}-    (8"@ cnw   ,:BGWiqwq ( 4 A O[ j"v %CYt$$,l?@m;[t2]Ya_`"9 % ) C b w 5 N !0!N!/e!! !!!! !! "J"4\"B"""" " ##.# M#(n#####[#)$>$^$ s$ $ $$ $$$ $$$% %+%4%=%C%J% Z%g%p%%%%%%%% && !&.&3&L&U& ' ':'=S'+''','1(E(((*)+9)6e)))H)*(**7*, +A9+w{++ ,%,-,3,P,Y,(a,*,),, , --!-2-J-g--- - ------ . .!&.!H."j. .E.. ....//-/6/K/!a/ ///////50 F0 P0[0/a0 00?00@1D1W1i1"1 1110272?2%S2y22O2233-3L3b3/q33 3333 333 4464 <4G4 \4j4n4~4 444 44 4 444 55 "56.5e5w5:5o5B96|6 66-6666 66 7 7'7/<7l777"77 77+8 -8 :8D8J8 b8p8888 88c8 >9L9T9i9 ~9'999 99&9 : (:3:L:[:l:::::%:: : ::";"'; J;V;g;x;;;; ;;,;/<D< M< Y< g< s<~<<<<< << <<< ==#= *==5=s=== ===== =#=+ > L> Y>c>(l>>e2?`?w?0q@5@C@bAA(gBBBCC/jD,D#DDXtEDE,F??FF| G,G*G5G++H%WH"}HAHHHI)ICI_IDwI\IJJ=JB KNK;*LfLZLEFMJMMN>O>^OOOOOOOXP PP QQQQ %Qq/QQQQ QQQQQQ QRRR%RERZS bSmSSSSSSSS ST#T,T KTYTqTuT}TT$T1TkTrkU2UV-V0V&)W PW^W~W W WWWWX" XCX`XyXX Y=Y YYY YZ Z Z#Z+Z/Z6ZEZ TZ`ZpZZZZZ ZZ"Z[&[=[ O[Z[k[\o\7]<]U]o]]]&]'] ^_^"x^^^^^^^ ^^^\^>7_v_B`<X``8`C`#*aTNa a1aaab;/c+kc;c,cdd Vebeie re }eVee ef f ff&f6fPreview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Felter Åbn i et nyt vindue Fortyd alt installeret. Den aktuelle version er produkt(er) for kræver opdatering. Du har version #%1$s kladde er opdateret. Forhåndsvisning af %3$s%1$s gendannet til revision fra %2$s.%1$s planlagt for: %2$s. Forhåndsvisning af %4$s%1$s indsendt. Forhåndsvisning af %3$s%n vil blive brugt til at angive antallet af sekunder%s siden%s udgivet.%s gemt.%s opdateret.%s blev deaktiveret.%sTillad%s%sAfkrydset%s beregningsværdi%sTillad ikke%s%sIkke afkrydset%s beregningsværdi* - Repræsenterer et alfanumerisk tegn (A-Z, a-z,0-9) - Dette tillader, at både tal og bogstaver kan indtastes- Ingen– Vælg en- Vælg et felt– Vælg et produkt– Vælg en variabel– Vælg en formular– Vis alle typer9 - Repræsenterer en numerisk tegn (0-9) - Kun muligt tal skal indtastes
    • a – Repræsenterer et alfanumerisk tegn (A-Z,a-z) – Tillader kun at der indtastes bogstaver.
    • 9 – Repræsenterer et numerisk tegn (0-9) – Tillader kun at der indtastes tal.
    • * – Repræsenterer et alfanumerisk tegn (A-Z,a-z,0-9) – Dette tillader at der indtastes både bogstaver og tal.
    Et svar, der tager hensyn til store og små bogstaver, som en hjælp til at forhindre spam-indsendelser af din formular.En større opdatering til Ninja Forms er på vej. %sLær mere om nye funktioner, bagudkompabilitet og flere ofte stillede spørgsmål.%sEn simplificeret og mere effektiv oplevelse med at bygge formularer.Over elementetOver feltetHandlingsnavnHandling opdateretAktionAktivérAktivTilføjTilføj beskrivelseTilføj formularTilføj nyTilføj nyt feltTilføj ny formularTilføj nyt elementTilføj ny indsendelseTilføj nye betingelserTilføj funktionTilføj Indsend-knapTilføj værdiTilføj formularhandlingerTilføj formularfelterFøj formular til denne sideTilføj ny handlingTilføj nyt feltTilføj abonnenter og skab vækst i din e-mailliste med denne tilmeldingsformular til nyhedsbrev. Du kan tilføje og fjerne felter efter behov.Licenser for tilføjelsesprogrammerTilføjelsesprogrammerAdresseAdresse 2Tilføjer en ekstra klasse til dit feltelement.Tilføjer en ekstra klasse til din felt-wrapper.Administrators e-mailAdministrationsetiketAdministrationAdvanceretAvanceret ligningAvancerede indstillingerAvanceret leveringAfghanistanEfter altEfter-formularEfter etiketEnig?AlbanienAlgerietAlleAlt om formularerAlle felterAlle formularerAlle elementerAlle aktuelle formularer vil forblive i skemaet med "Alle formularer". I visse tilfælde kan visse formularer være duplikeret under denne proces.Lad brugeren registrere sig til din næste begivenhed med denne brugervenlige formular. Du kan tilføje og fjerne felter efter behov.Lad dine brugere kontakte dig med den enkle kontaktformular. Du kan tilføje og fjerne felter efter behov.Tillader RTF-input.Gør det muligt for brugere at vælge mere end ét af dette produkt.Vi er næsten færdige ...Sammen med fanen "Byg din formular" har vi fjernet "Notifikationer" til fordel for "E-mails og handlinger". Dette er en meget mere tydelig indikation af, hvad der kan gøres fra dette faneblad.American SamoaDer opstod en uventet fejl.AndorraAngolaAnguillaSvar:AntarktisAnti-spamAnti-spamspørgsmål (svar = svar)Anti-spam fejl beskedAntigua og BarbudaEt tegn, du placere i "Brugerdefineret Maske" boksen, der ikke er i listen nedenfor, vil automatisk blive registreret for brugeren, imens der tastes og vil ikke kunne fjernes igenTilføj en Ninja FormTilføj en Ninja FormsFøj til sideAnvendArgentinaArmenienArubaVedhæft CSVVedhæftningerAustralienØstrigFelter med automatisk totalAutomatisk Total BeregningsværdierTil rådighedTilgængelige betingelserAzerbaijanTilbage til listeTilbage til listeBackup / GenskabBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosGrundlæggende felterGrundindstillingerHåndvask til badeværelseBazBccFør altFør-formularFør etiketFør du beder om hjælp fra vores supportteam, bedes du se:Start datoStartdatoHvideruslandBelgienBelizeUnder elementetUnder feltetBeninBermudaForetrukket kontaktmetode?Den bedste support i branchenFeltindstillinger, som er organiseret bedreBedre licensadministrationBhutanFaktureringBlanke formularerBoliviaBosnien og HerzegovinaBotswanaBouvet IslandBrasilienBritish Indian Ocean TerritoryBrunei DarussalamByg din formularBulgarienBulk HandlingerBurkina FasoBurundiKnapCVCBeregningBeregnet værdiBeregningBeregnings metodeBeregningsindstillingerBeregningens navnBeregningerBeregninger returneres med AJAX-svaret ( svar -> data -> beregn.CambodjaCameroonCanadaAnnullerCape VerdeUoverensstemmelse i captcha. Indtast den korrekte værdi i captcha-feltetBeskrivelse af kort-CVCEtiket for kort-CVCBeskrivelse af kortets udløbsmånedEtiket for kortets udløbsmånedBeskrivelse af kortets udløbsårEtiket for kortets udløbsårBeskrivelse af kortnavnEtiket for kortnavnKortnummerBeskrivelse af kortnummerEtiket for kortnummerCaymanøerneCcCentrale Afrikanske RepublikChadSkift værdiTegnTegn tilbageTegnSnyder du?Se vores dokumentationAfkrydsningsfeltListe med afkrydsningsfelterAfkrydsningsfelterAfkrydsetAfkrydset beregningsværdiChileKinaChristmas IslandByNavn på klasseRyd fuldført formular?CocosøerneModtag betalingColombiaAlmindelige felterComorosKomplicerede ligninger kan oprettes ved at tilføje parenteser: %s( field_45 * field_2 ) / 2%s.BekræftBekræft at du ikke er en botCongoCongo, Den Demokratiske RepublikKontaktformularKontakt migKontakt osBeholderFortsætCookøerneOmkostningRullemenu til udgiftUdgiftsmulighederUdgiftstypeCosta RicaElfenbenskystenKunne ikke aktivere licens. Bekræft din licensnøgle.LandOpretter en unik nøgle til at identificere og målrette dit felt til brugerdefineret udvikling.KreditkortKreditkorts CVCKreditkorts CVCKreditkorts udløbsdatoFulde navn på kreditkortKreditkortnummerKreditkorts postnr.Kreditkorts postnr.AnerkendelserKroatien (lokal navn: Hrvatska)CubaValutaValuta symbolNuværende sideBrugerdefineretBrugerdefineret CSS klasseBrugerdefinerede CSS-klasserBrugerdefinerede klassenavneBrugerdefineret feltgruppeBrugerdefineret maskeBrugerdefineret Maske definitionBrugerdefineret felt slettet..Brugerdefineret felt opdateret.Brugerdefineret første valgCypernTjekkietDD-MM-YYYYDD/MM/YYYYFEJLFINDING: Skift til 2.9.xFEJLFINDING: Skift til 3.0.xMørkVellykket gendannelse af data!DatoDato oprettetDatoformatDato indstillingerDato indsendtDato er opdateretDatovælgerDeaktivérDeaktiverDeaktivér alle licenserDeaktivér licensDeaktivér Ninja Forms-udvidelseslicenser individuelt eller som en gruppe fra fanebladet med indstillinger.StandardStandard landStandardplacering for etiketStandardtidszoneAktuelle dato som standardStandardværdiStandardtidszone er %sStandard tidszone er %s - Det bør være UTCDefinerede felterSletSlet (^ + D + klik)Slet PermanentSlet denne formularSlet dette produkt permanentDanmarkBeskrivelseBeskrivelsesindholdPlacering af beskrivelseVidste du, at du kan forøge formularkonverteringer ved at bryde store formularer op i mindre, mere brugervenlige dele?

    Udvidelsen Multi-Part Forms for Ninja Forms gør dette nemt og hurtigt.

    Deaktivér administratormeddelelserDeaktivér Autofuldførelse i browserDeaktivér inputDeaktiver Rich Text Editor på mobilDeaktiver indtastninger?AfbrydVisningVis formular titelOffentligt navnVisnings indstillingerVis denne beregningsvariabelVis titelVisning af din formularAdskillerDjiboutiVis ikke disse betingelserDokumentationDokumentation kommer snart.Dokumentation er tilgængelig, som dækker alt fra %sFejlfinding%s til vores %sUdvikler-API%s. Der tilføjes hele tiden nye dokumenter.Gør sig IKKE gældende for forhåndsvisning af formular.Gør sig gældende for forhåndsvisning af formular.DominicaDen Dominikanske RepublikUdførtHent alle indsendelserDropdownDuplikatKopiér (^ + C + klik)Kopiér formularEcuadorRedigerRediger handlingRediger formularRediger elementRediger menu punktRediger indsendelseRediger dette produktFeltet RedigeringFeltet RedigeringEgyptenEl SalvadorElementE-mailE-mail og handlingerE-mailadresseE-mailbeskedE-mail-abonnementsformularE-mailadresse eller søg efter et feltE-mailadresser eller søg efter et feltE-mail vil se ud til at være fra denne e-mailadresse.E-mail vil se ud til at være fra dette navn.E-mails og handlingerSlut datoSørg for at dette felt er udfyldt, før du tillader, at formularen indsendes.Indtast den tekst, som du vil have vist i feltet, før en bruger indtaster nogen data.Indtast etiketten til formularfeltet. Det er sådan, at brugere kan identificere individuelle felter.Indtast din e-mailadresseMiljøLigningLigning (avanceret)Ækvatorial GuineaEritreaFejl 404Fejlmeddelelse, hvis alle påkrævede felter ikke er udfyldtEstlandEtiopienRegistrering til begivenhedUdvid menuUdløbsmåned (MM)Udløbsår (ÅÅÅÅ)EksportérEksportér favorit felterEksportér felterEksportér formularEksportér formularerEksportér en formularEksportér dette elementForlæng Ninja FormsOVERFØRSEL AF FILFil kunne ikke skrives til disk.Falklandsøerne (Malvinas)FærøerneYndlingsfelterFavoritter er importerét.FeltFelt nr.Felt-idFelt KeyFelt blev ikke fundetFelt funktionerFeltnavneFelter markeret med en * er påkrævet.Felter markeret med en %s*%s skal udfyldesFijiOverførselsfejl for filFiloverførsel er i gang.Fil-upload stoppet af udvidelse.FinlandFornavnRet detFooFoo BarFor eksempel, hvis du havde en produktnøgle, der var i form af A4B51.989.B.43C kan du maskere det med: a9a99.999.a.99a, som ville tvinge alle a'erne til at være bogstaver og 9'erne til være talFormularFormularstandardFormular er slettetFormularfelterFormular er importéretFormular keyFormular blev ikke fundetForhåndsvising af formularFormular indstilingerne er gemtFormularindsendelserFejl ved import af formularskabelon.FormulartitelFormular med beregningerFormatFormularerFormularer er slettetFormularer per sideFrankrigFrankrig, Metropol-Fransk GuyanaFransk PolynesienFranske Sydlige og Antarktiske TerritorierFredag d. 18. november 2019Fra-adresseFra-navnFuld ændringslogFuld skærmGabonGambiaGenereltGenerelle indstillingerGeorgienTysklandFå hjælpFå flere handlingerFå flere typerFå hjælpFå supportGenerér systemrapportFå en websitenøgle til dit domæne ved at registrere %sher%sKom i gang ved at tilføje dit første formularfelt.Kom i gang ved at tilføje dit første formularfelt. Du skal blot klikke på plustegnet og vælg de ønskede handlinger. Så nemt er det.IntroduktionKom godt i gang med Ninja FormsGhanaGibraltarGiv din formular en titel. Sådan finder du formularen på et senere tidspunkt.FortsætDit forsøg lykkedes ikkeGå til formularerGå til Ninja FormsGå til første sideGå til den sidste sideGå til næste sideGå til forrige sideGrækenlandGrønlandGrenadaVoksende dokumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalv skærmHeard- og McDonaldøerneHej Ninja-formularer!HjælpHjælpe tekstHjælpetekst herSkjulSkjult feltSkjul etiketSkjul detteSkjul fuldført formular?Tip: Dit kodeord skal være mindst syv tegn langt. For at gøre det stærkere bør du bruge store og små bogstaver, tal og symboler som ! " ? $ % ^ & ).Den Hellige Stol (Vatikanstaten)Hjemme URLHondurasHoneypotHoneypot-fejlHoneypot-fejlmeddelelseHong KongHook TagVærtsnavnHvordan går det?UngarnIPadresseIslandHvis "desc text" er aktiveret, vil der være et spørgsmålstegn %s ved siden af indtastningsfeltet. Hvis du peger på dette spørgsmålstegn med musen, vil det vise beskrivelsesteksten.Hvis "Hjælpe tekst" er aktiveret, så vil der være et spørgsmålstegn %s placeres ved siden af indtastningsfeltet. Når man holder muse markøren over dette spørgsmålstegn, vil hjælpeteksten vise sig.Hvis dette felt afkrydses, vil ALLE Ninja Forms-data blive fjernet fra databasen ved sletning. %sIngen formular- og indsendelsesdata vil kunne genoprettes.%sHvis dette felt er afkrydset, vil Ninja Forms rydde formularværdierne, efter den er blevet indsendt.Hvis dette felt er afkrydset, vil Ninja Forms skjule formularen, når den er blevet korrekt indsendt.Hvis dette felt er afkrydset, vil Ninja Forms sende en kopi af denne formular (og eventuelle vedlagte meddelelser) til denne adresse.Hvis dette felt er afkrydset, vil Ninja Forms validere denne indtastning som en email-adresse.Hvis dette felt er afkrydset, vil både adgangskode og gentast-adgangskode tekstbokse blive udsendt.Hvis dette felt er afkrydset, vil denne kolonne i indsendelsesskemaet blive sorteret efter tal.Hvis du er et menneske og kan se dette felt, skal du lade det være tomt.Hvis du er et menneske og kan se dette felt, skal du lade det være tomt.Sæt hastigheden ned, hvis du er et menneske.Hvis du lader feltet være tomt, vil der ikke være nogen grænseHvis du tilmelder dig, vil visse data om din installation af Ninja-formularer blive sendt til NinjaForms.com (dette inkluderer IKKE dine indsendelser).Hvis du springer det her over, er det helt i orden! Ninja-formularer vil stadig fungere helt fint.Hvis du vil sende en tom værdi eller beregning, skal du bruge '' til dem.Hvis du ønsker, at din formular skal underrette dig via e-mail, når en bruger klikker på Indsend, kan du opstille disse på dette faneblad. Du kan oprette et ubegrænset antal e-mails, inklusive e-mails, som sendes til den bruger, der udfyldte formularen.Hvis dine formularer "mangler" efter opdatering til 2.9, vil denne knap forsøge at konvertere dine gamle formularer igen for at vise dem i 2.9. Alle aktuelle formularer vil forblive i skemaet med "Alle formularer".ImportérImportér/EksportérImportér / eksportér indsendelserImportér favorit felterImportér favoriterImportér felterImportér formularImportér formularerImportér listeelementerImportér en formularImportér/EksportérForbedret tydelighedInkludér i auto-total (hvis funktionen er aktiveret)Forkert svarForøg konverteringerIndienIndonesienIndtastnings maskeSæt indIndsæt alle felterIndsæt feltIndsæt linkIndsæt medieInden i elementetInstalleretInstallerede pluginsInteressegrupperUgyldig formularoverførsel.Ugyldigt formular-idIran (Den Islamiske Republik)IrakIrlandEr dette en email-adresse?IsraelSå nemt er det. Eller...ItalienJamaicaJapanJavaScript deaktiverede fejlmeddelelseJens HansenJordanKlik her og vælg de felter, du ønsker.KazakhstanKenyaNøgleKiribatiKøkkenvaskKorea, Den Demokratiske FolkerepublikKorea, RepublikkenKuwaitKyrgyzstanEtiketEtiket herEtiketnavnEtikette placeringEtiket, som benyttes, når der vises og eksporteres indsendelser.Etiket,Værdi,BeregnEtiketterSprog, som benyttes af reCAPTCHA. Klik %sher%sfor at få koden til dit sprogLaos, Den Demokratiske FolkerepublikEfternavnLatviaLayoutelementerLayoutfelterLær mereLær mere om Multi-Part FormsLær mere om Save User ProgressLibanonTil venstre for elementetTil venstre for feltetLesothoLiberiaLibyen, Arabiske JamahiriyaLicenserLiechtensteinLystBegræns indtastning til dette talMeddelelse om grænse nåetBegræns indsendelserBegræns indtastning til dette talListeKortlægning over listefelterListetypeListerLitauenIndlæserIndlæser...OmrådeLogget IndLang formular – LuxemborgMM-DD-YYYYMM/DD/YYYYMacaoMakedonien, Den Tidligere Jugoslaviske RepublikMadagascarMalawiMalaysiaMaldiverneMaliMaltaAdministrér nemt anmodninger om tilbud fra din website med denne skabelon. Du kan tilføje og fjerne felter efter behov.MarshalløerneMartiniqueMauritaniaMauritiusMaxMaks. input indlejringsniveauMaksimumsværdiMåske senereMayotteMediumBeskedBeskeds etiketteMeddelelse, som vises til brugere, hvis afkrydsningsfeltet "Logget ind" ovenfor er afkrydset, og de ikke er logget ind.MetaboxMexicoMikronesien, Forenede StaterOverførsler og eksempeldata gennemført. MinMinimumsværdiDiverse felterEj ensMangler en midlertidig mappe.Eksempel på e-mailhandlingEksempel på Gem-handlingEksempel på meddelelse om vellykket handlingÆndret d.Moldova, RepublikkenMonacoMongolietMontenegroMontserratDer kommer mereMarokkoFlyt dette produkt til papirkurvenMozambiqueFlervalgMulti produkt – Vælg mangeMulti produkt – Vælg étMulti produkt – RullemenuMarkér flereMulti-valg boks størrelseFlereMin første beregningMin anden beregningMySQL VersionMyanmarNavnNavn på kortetNavn eller felterNamibiaNauruHar du brug for hjælp?NepalHollandDe Nederlandske AntillerSe aldrig nogen administratormeddelelse på kontrolpanelet fra Ninja Forms. Fjern afkrydsning for at se dem igen.Ny handlingNy byggefaneNy KaledonienNyt elementNy indsendelseNew ZealandTilmeldingsformular til nyhedsbrevNicaraguaNigerNigeriaNinja-formularindstillingerNinja-formularerNinja Forms – behandlerÆndringslog til Ninja FormsNinja Forms DevDokumentation til Ninja FormsNinja Forms behandlerNinja-anmodningsformularerSystemstatus for Ninja FormsDokumentation til Ninja-formular TREOpgradering til Ninja FormsBehandler opgradering af Ninja FormsOpgraderinger til Ninja FormsVersion af Ninja FormsNinja Forms WidgetNinja Forms leveres også med en simpel skabelonfunktion, som kan anbringes direkte i en php-skabelonfil. %sNinja Forms grundlæggende hjælp skal være her.Ninja Forms kan ikke netværkaktiveres. Gå til hver websites kontrolpanel for at aktivere plugin-programmet.Ninja Forms har fuldført alle tilgængelige opgraderinger!Ninja Forms er udviklet af et verdensomspændende team af udviklere, hvis mål det er at levere det bedste WordPress community formularoprettelses-plugin.Ninja Forms skal behandle %s opgradering(er). Dette kan tage et par minutter at gøre færdig. %sStart opgradering%sNinja Forms skal opdatere dine e-mailindstillinger. Klik %sher%s for at starte opgraderingen.Ninja Forms skal opgradere indsendelsesskemaet. Klik %sher%s for at starte opgraderingen.Ninja Forms skal opgradere dine formularnotifikationer. Klik %sher%s for at starte opgraderingen.Ninja Forms skal opgradere dine formularindstillinger. Klik %sher%s for at starte opgraderingen.Ninja Forms stiller en widget til rådighed, som du kan anbringe i ethvert widgetiseret område på din website, og vælge nøjagtigt hvilken formular, du ønsker vist i det pågældende område.Ninja Forms-shortcode anvendt uden at angive en formular.NiueNejIngen handling angivet...Ingen favorit felter er fundetIngen felter fundet.Ingen indsendelser fundetDer blev ikke fundet nogen indsendelser i papirkurvenIngen tilgængelige betingelser for denne taksonomi. %sTilføj en betingelse%sIngen fil blev overført.Ingen formularer blev fundet.Ingen taksonomi valgt.Der blev ikke fundet nogen gyldig ændringslog.IngenNorfolk ØenNorthern Mariana IslandsNorgeMeddelelse for ikke logget indIkke endnuIkke fundet i papirkurvBemærkNotattekst kan redigeres i notatfeltets avancerede indstillinger nedenfor.Bemærk: JavaScript er nødvendig til dette indhold.Bemærk: Ninja Forms-shortcode anvendt uden at angive en formular.AntalAntal maks. fejlAntal min. fejlTalmulighederAntal stjernerAntal decimal pladserAntal sekunder til nedtællingAntal sekunder til nedtællingenAntal sekunder til indsendelse med timerAntal af stjernerOmanEnEn e-mailadresse eller feltHov! Det tilføjelsesprogram er endnu ikke kompatibel med Ninja Forms THREE. %sLær mere%s.Åbn i et nyt vindueStyringer og felter (avanceret)Forudindtagede stileMulighed etMulighed treMulighed toValgOrganisatorSupports omfangUdbytte af beregningen somPHP-lokalitetPHP Max Input VarsPHP Indlæg Max StørrelsePHP Time LimitPHP VersionPUBLICERPakistanPalauPanamaPapua Ny GuineaAfsnitstekstParaguayOverordnet element:KodeordBekræft adgangskodeEtiket for forkert adgangskodeKodeordene er ikke ensBetalingsfelterBetalings GatewaysBetaling i altTilladelse nægtetPeruFilippinerneTlf.Telefon - (555) 555-5555PitcairnAnbring %s i ethvert område, som accepterer shortcodes for at vise din formular, hvor som helst du ønsker den. Selv midt på siden eller i midten af af posteringsindhold.PlaceholderRen tekst%sKontakt support%s angående den fejl, som vises ovenfor.Du bedes besvarer anti-spam spørgsmålet korrekt.Tjek venligst påkrævede felter.Udfyld captcha-feltetFuldfør recaptchaRet fejlene, før indsendelse af formularen.Sørg for, at alle påkrævede felter er udfyldt.Indtast en meddelelse, som du ønsker vist, når denne formular har nået dens indsendelsesgrænse, og ikke vil acceptere nye indsendelser.Skriv en gyldig email adresseAngiv en gyldig e-mailadresse!Indtast venligst en gyldig e-mail-adresse.Hjælp os med at forbedre Ninja-formularer!Inkluder disse oplysninger, når der bedes om support:Øg med Efterlad spamfeltet tomt.Sørg for at du har indtastet dine website- og hemmelige nøgler korrektVurder %sNinja Forms%s %s på %sWordPress.org%s for at hjælpe os, så dette plugin-program kan forblive gratis. Tak fra WP Ninjas-teamet!Vælg en formular for at se indsendelserVælg en formularVælg en gyldig fil til eksportéring af formular.Vælg en gyldig fil til favorit felter.Vælg venligst hvilke favorit felter, der skal EksportéresBrug venligst disse beregningstegn: + - * /. Dette er en avanceret funktion. Hold øje med ting, som at dividere med 0.Vent %n sekunderVent med at indsende formularen.PluginsPolenUdfyld dette med taksonomienPortugalIndlægPosterings-/Side-id (hvis tilgængeligt)Posterings-/Sidetitel (hvis tilgængeligt)Posterings-/Side-URL (hvis tilgængeligt)Oprettelse af posteringIndlæg (ID)Indlæg titelPosterings-URLForhåndsvisningSe udkast af ændringerForhåndsvisning af formularForhåndsvisning findes ikkePrisPris:PrisfelterBehandlerEtiket for behandlingBehandler indsendelsesetiketProduktProdukt (antal inkluderet)Produkt (separat antal)Produkt AProdukt BProduktformular (indbygget antal)Produktformular (flere produkter)Produktformular (med feltet Antal)Produkt TypeProgrammatisk navn, som kan bruges til at henvise til denne formular.UdgivPuerto RicoKøbQatarMængdeAntal for Produkt AAntal for Produkt BMængde:ForespørgselsstrengForespørgselsstrengeVariabel for forespørgselsstrengSpørgsmålPlacering af spørgsmålAnmodning om tilbudRadioListe med alternativknapperGenindtast kodeordetIndtast adgangskode etiketteEr du sikker på, at du vil deaktivere alle licenser?RecaptchaVideresendFjernFjern ALLE Ninja Forms-data ved afinstallering?Fjern værdiFjern alle Ninja Forms-dataFjern dette felt? Den vil blive fjernet, selvom du ikke gemmer.Svar tilSkal det kræves at brugeren er logget ind for at se formularen?påkrævetObligatorisk feltPåkrævet felt fejlPåkrævet felt etikettePåkrævet felt symbolNulstil formularkonverteringNulstil formularkonverteringNulstil formularkonverteringsprocessen for v2.9+GenskabGenskab Ninja FormsGenskab dette produkt fra papirkurvenIndstillinger for begrænsningBegrænsningerBegrænser den slags indtastninger, som dine brugere kan indtaste i dette felt.Vend tilbage til Ninja FormsReunionRTF-editor (RTE)Til højre for elementetTil højre for feltetTilbageførselTilbageførsel til den seneste 2.9.x udgivelse.Tilbageførsel til v2.9.xRumænienRuslandRwandaSMTPSOAP-klientSUHOSIN InstalledSaint Kitts og NevisSankt LuciaSaint Vincent og GrenadinerneSamoaSan MarinoSao Tome og PrincipeSaudi ArabienGemGem og aktivérGem feltindstillingerGem formularGem valgGem indstillingerGem anmodningGemtGemte felterGemmer ...Søg efter elementSøg indsendelserVælgVælg alleVælg listeVælg et felt eller en type, som der skal søges efterVælg en filVælg en formularVælg en formular eller en type, som der skal søges efterVælg det antal indsendelser, som denne formular vil acceptere. Lad det være tomt, hvis ikke er nogen grænse.Vælg placeringen af din etiket i forhold til selve feltelementet.ValgtValgte værdiSendSend en kopi af formularen til denne adresse?SenegalSerbienServerens IP-adresseIndstillingerIndstillingerne er gemtSeychellerneForsendelseKortkode (Shortcode)Skal indtastes som en procent. f.eks. 8,25%, 4%Vis hjælpe tekstVis knap til medie-uploadVis mereVis adgangskode styrke målerVis RTF-editorVis detteVis værdier af listeelementerVist til brugere, når der peges med musen.Sierra LeoneSingaporeEnkelEnkelt afkrydsningsfeltEnkelt udgiftEnkel linje tekstEnkelt produkt (standard)Hjemmeside URLSlovakiet (Slovakiske Republik)SlovenienPostSå hvis du ville oprette en maske for et amerikansk cpr-nr., skal du indtaste 999-99-9999 i feltetSalomonøerneSomaliaSortér som numeriskSortér som numeriskSydafrikaSouth Georgia og South Sandwich IslandsSydsudan (sydlige Sudan)SpanienSpam svarSpam spørgsmålAngiv funktioner og felter (Avanceret)Sri LankaSt. HelenaSaint-Pierre og MiquelonStandardfelterStjernevurderingStart med en skabelonKommuneStatusTrinTrin %d af cirka %d kørerTrin (gradvis forøgelse med mængde)StyrkeindikatorStærkUndersekvensEmneEmnetekst eller søg efter et feltEmnetekst eller søg efter et feltIndsendelseIndsendelses-CSVIndsendelsesdataIndsendelsesoplysningerIndsendelsesgrænseMetabox for indsendelseIndsendelsesstatistikkerIndsendelserSendTekst på Indsend-knap, efter timer udløberIndsend via AJAX (uden genindlæsning af side)?IndsendtIndsendt afIndsendt af: Indsendt d.Indsendt: AbonnérSuccess beskedSudanSurinameSvalbard og Jan Mayen ØerneSwazilandSverigeSwitzerlandSyrien, Arabiske RepublikSystemSystem StatusTHREE kommer snart!TaiwanTajikistanSe vores dybdegående dokumentation til Ninja Forms nedenfor.Tanzania, Den Forenede RepublikMomsSkatteprocent (moms)TaksonomiSkabelonfelterSkabelonfunktionBetingelseslisteTekstTekst elementTekst, som skal vises efter tællerTekst, som skal vises efter tegn/ordtællerTekstområdeTekstboksThailandTak fordi at du udfyldte denne formular.Tak fordi du opdaterer til den seneste version! Ninja Forms %s er instrueret til at gøre din oplevelse med at administrere indsendelser til en fornøjelse!Tak fordi du opdaterer til version 2.7 af Ninja Forms. Opdater eventuelle Ninja Forms-udvidelser fra Tak fordi du opdaterer! Ninja Forms %s gør det nemmere end nogensinde før at bygge formularer!Tak fordi du bruger Ninja Forms! Vi håber, at du har fundet alt det, du skal bruge, men hvis du har nogen spørgsmål:Tak {field:name} fordi du udfyldte min formular!De (typiske) 16 cifre på forsiden af dit kreditkort.De 3 cifre (på bagsiden) eller 4 cifre (på forsiden) af dit kort.9'erne repræsentere et vilkårligt nummer, og -s automatisk vil blive tilføjet Menuen Formularer er dit adgangspunkt for alt, hvad der har med Ninja Forms at gøre. Vi har allerede oprettet din første %skontaktformular%s, så du har et eksempel. Du kan også oprette din egen ved at klikke på %sTilføj ny%s.Formatet skal se ud som følgende:Opdateringerne til grænsefladen i denne version lægger fundamentet for nogle fantastiske forbedringer i fremtiden. Version 3.0 vil bygge på disse ændringer for at gøre Ninja Forms til et endnu mere stabilt, effektivt og brugervenligt formularbyggeprogram.Den måned dit kreditkort udløber, typisk på forsiden af kortet.De mest almindelige indstillinger vises øjeblikkeligt, mens andre ikke så vigtige indstillinger er gemt væk indeni sektioner, som kan udvides.Det trykte navn på forsiden af dit kreditkort.De angivne adgangskoder stemmer ikke overensDe personer, som bygger Ninja FormsProcessen er begyndt, vent venligst. Dette kan vare adskillige minutter. Du vil automatisk blive omdirigeret, når processen er færdig.Den uploadede fil overgår MAX_FILE_SIZE direktivet, som blev angivet i HTML-formularen.Den uploadede fil overgår upload_max_filesize direktivet i php.ini.Den uploadede fil blev kun delvist uploadet.Det år dit kreditkort udløber, typisk på forsiden af kortet.Der er en ny version af %1$s tilgængelig. Vis detaljer om version %3$s eller opdater nu.Der er en ny version af %1$s tilgængelig. Vis detaljer om version %3$s.Den overførte fil er ikke et gyldigt formatDette er alle felterne i afsnittet Priser.Dette er alle felterne i afsnittet Brugeroplysninger.Disse er de foruddefinerede maskerings tegnDette er forskellige særlige felter.Disse felter skal være identiske!Denne kolonne i indsendelsesskemaet vil blive sorteret efter tal.Dette felt skal udfyldesDette er et påkrævet felt.Dette er en testDette er en brugers stat.Dette er en e-mailhandling.Dette er en anden test.Dette er hvor længe en bruger skal vente for at indsende formularenDette er den etiket, som vil blive brugt, når der vises/redigeres/eksporteres indsendelser.Dette er det programmatiske navn på dit felt. eksempler er: min_beregning, pris_total, bruger-total. (brug ikke æ, ø eller å.)Dette er brugerens tilstandDette er den værdi, der vil blive brugt, hvis %safkrydset%s.Dette er den værdi, der vil blive brugt, hvis %sikke afkrydset%s.Det er her, at du kan bygge din formular ved at tilføje felter og trække dem i den rækkefølge, som du vil have dem vist. Hvert felt vil have forskellige valgmuligheder, såsom etiket, etiketplacering og pladsholder.Dette nøgleord er reserveret af WordPress. Prøv et andet.Denne meddelelse vises indeni indsendelsesknappen, hver gang en bruger klikker på "indsend" for at lade dem vide, at den behandler.Brugeren vises denne meddelelse, når der indtastes forkerte værdier i adgangskodefeltet.Dette nummer vil blive brugt i beregninger, hvis feltet er afkrydset.Dette nummer vil blive brugt i beregninger, hvis feltet ikke er afkrydset.Denne indstilling vil FULDSTÆNDIG fjerne alt Ninja Forms-relateret ved sletning af plugin-programmet. Dette inkluderer INDSENDELSER og FORMULARER. Det kan ikke fortrydes.Dette faneblad indeholder generelle formularindstillinger, såsom titel og indsendelsesmetode, såvel som visningsindstillinger, såsom at skjule en formular, når der er blevet udfyldt.Dette vil være e-mailens emne.Dette ville forhindre brugeren at indsætte andet end talTreTimet indsendelseTimer-fejlmeddelelseTimor-Leste (Østtimor)TilHvis du vil aktivere licenser for Ninja Forms-udvidelser, skal du først %sinstallere og aktivere%s den valgte udvidelse. Licensindstillinger vil derefter blive vist nedenfor.For at bruge denne funktion, kan du indsætte din CSV i tekstområdet ovenfor.Dags datoSlå skuffe til/fraTogoTokelauTongaTotaltPapirkurvPrøver at følge specifikationerne for %sPHP date() function%s, men det er ikke hvert format, som understøttes.Trinidad og TobagoTunisiaTyrkietTurkmenistanTurks- og CaicosøerneTuvaluToTypeURLUSA-telefonUgandaUkraineIkke afkrydsetIkke afkrydset beregningsværdiUnder Grundlæggende formularadfærd i Formularindstillinger kan du nemt vælge en side, som du ønsker formularen automatisk tilføjet til i slutningen af den pågældende sides indhold. Et lignende valg er tilgængeligt i hver skærm til indholdsredigering i dens sidepanel.FortrydFortyd altDe forenede arabiske emmigraterStorbritannienUSAUSA's ydre småøerUkendt uploadingsfejl.Ikke offentliggjortOpdatérOpdater elementOpdateret: Opdatering af formulardatabaseOpgraderOpgrader til Ninja Forms THREEOpgraderingerOpgraderinger fuldførtURLUruguayBrug en ligning (Avanceret)Brug kvantitetBrug et brugerdefineret første valgBrug Ninja Forms standardkonventioner for design.Brug følgende kortkode (shortcode) til, at indsætte den endelige beregning: [ninja_forms_calc]Brug de gode råd nedenfor for at komme i gang med at bruge Ninja Forms. Du vil være oppe og køre på ingen tid!Brug dette som et registrering af adgangskode feltBrug dette som et felt til registreringsadgangskode. Hvis dette felt er afkrydset, vil både adgangskode og indtast adgangskode igen-tekstfelterne blive udlæstBruges til at markere et felt til behandling.UR = uregistreret bruger, R = registreret brugerBruger visnings navn (hvis logget ind)Bruger e-mailBruger E-mail (hvis logget ind)BrugerindtastningBruger fornavn (hvis logget ind)Bruger IDBruger ID (hvis logget ind)Feltgruppe for brugerinfoBrugeroplysningerFelter til brugeroplysningerBruger efternavn (hvis logget ind)Brugermeta (hvis logget ind)Brugerindsendte værdierBruger indsendte værdierDet er mere sandsynligt, at brugere vil fuldføre lange formularer, når de kan gemme og vende tilbage for at gøre deres indsendelse færdig på et senere tidspunkt.

    Udvidelsen Save User Progress for Ninja Forms gør dette nemt og hurtigt.

    UzbekistanBekræft som en e-mailadresse? (Felt skal være obligatorisk)VærdiVanuatuVariabelt navnVenezuelaVersionVersion %sMeget svagVietnamVisVis %sVis ændringerVis formularerVis elementVis indsendelseVis indsendelserVis den fulde ændringslogBritiske JomfruøerAmerikanske JomfruøerGå Til Plugin SidenWP Debug ModeWP-sprogMaks. størrelse på upload på WPWP Memory LimitWP Multisite aktiveretWP-fjernposteringWP VersionWallis og FutunaVi gør alt hvad vi kan for at give hver Ninja Forms-bruger den bedst mulige support. Hvis du kommer ud for at problem eller har et spørgsmål, %sbedes du kontakte os%s.Vi har tilføjet valget om at fjerne alle Ninja Forms-data (indsendelser, formularer, felter, valgmuligheder), når du sletter plugin-programmet. Vi kalder det for kernevalget.Vi har lagt mærke til, at du ikke har en Indsend-knap på din formular. Vi kan tilføje en for dig automatisk.SvagOplysninger om webserverVelkommen til Ninja FormsVelkommen til Ninja Forms %sdet vestlige SaharaHvad kan vi hjælpe dig med?Prøv dette, før du kontakter supportHvilket navn vil du give denne favorit?Hvad er nytNår du opretter og redigerer formularer, kan du gå direkte til den sektion, der betyder mest.Hvem skal denne e-mail sendes til?OrdOrdWrapperY-m-dY/m/dÅÅÅÅ-MM-DDYYYY/MM/DDYemenJaDu er kvalificeret til at opgradere til Ninja Forms THREE Release Candidate! %sOpgrader nu%sDu kan også kombinere disse til specifikke applikationerDu kan indtaste beregningsligninger her ved brug af field_x, hvor x er id'et på det felt, som du ønsker at bruge. F.eks. %sfield_53 + field_28 + field_65%s.Du kan ikke indsende formularen uden af have Javascript aktiveret.Du har ikke tilladelse til at installere plugin-opdateringerDu har ikke tilladelse.Du har ikke føjet en indsendelsesknap til din formular.Du skal være logget ind for at se forhåndsvisning af en formular.Du skal give denne favorit et navn.Du skal bruge JavaScript for at indsende denne formular. Aktivér den og prøv igen.Du købte Du vil finde dette inkluderet i din købs-e-mail.Din formular er blevet sendt.Din server har ikke fsockopen eller cURL aktiveret - PayPal IPN og andre script som kommunikerer med andre servere vil ikke fungere. Kontakt din webhosting leverandør.Din server har ikke %sSOAP-klientklassen%s aktiveret – visse gateway-plugins, som bruger SOAP, vil måske ikke fungere som forventet.Din server har cURL aktiveret, og fsockopen er deaktiveret.Din server har fsockopen og cURL aktiveret.Din server har fsockopen aktiveret, og cURL er deaktiveret.Din server har SOAP-klientklassen aktiveret.Din version af Ninja Forms File Uploads-udvidelsen er ikke kompatibel med version 2.7 af Ninja Forms. Den skal mindst være version 1.3.5. Opdater denne udvidelse hos Din version af Ninja Forms Save User Progress-udvidelsen er ikke kompatibel med version 2.7 af Ninja Forms. Den skal mindst være version 1.1.3. Opdater denne udvidelse hos JugoslavienZambiaZimbabwePostnummerPostnummera - Repræsenterer et alpha tegn (A-Z, a-z) - Kun muligt bogstaver skal indtastessvarbutton-secondary nf-download-allaftegn tilbageafkrydsetKopierbrugerdefineretd-m-Ydashicons dashicons-updateduplikerfoo@wpninjas.comtimejs-newsletter-list-update extral, F d Ym-d-Ym/d/Yingenafaf Produkt A og af Produkt B for $enone_week_supportadgangskodebehandlerprodukt(er) for reCAPTCHASprog for reCAPTCHAHemmelig nøgle for reCAPTCHAIndstillinger for reCAPTCHAWebsitenøgle for reCAPTCHATema for reCAPTCHAIndstillinger for reCaptchaopdatersmtp_porttretiteltoikke afkrydsetopdateretbruger@gmail.comversionwp_remote_post() mislykkedes. PayPal IPN fungerer måske ikke med din server.wp_remote_post() mislykkedes. PayPal IPN vil ikke fungere med din server. Kontakt din hostingudbyder. Fejl:wp_remote_post() lykkedes – PayPal IPN fungerer.lang/ninja-forms-sv_SE.mo000064400000265177152331132460011304 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 -*IUK*eG2:z  ' 8jY -I?W4- ;N ]k  "0Si~!' "8 342 gt  )2;@ R] lxu;+gycu  ' -8 @ KV&q  ,4 <GKTi  E % 6BJQaqw)B *;C[ d r|   "3K [Ch < 4%Q#w"  4 LY_|      ' ,*6a w d "4:I Z g u  ?)\. #!3 N[{  4Mipy  - > L Wb{d  )#9]l*) 1=Vo"Z4}# .=W v .i) 8LT[m   2?"P*s)QHc yCLm@#,DSg z.)X h t  (.BG_)x   %2Xm   3P n {    'D<= IVq wC $9Ni r|     $4 9 D R*^9Wgp y   {bT'|] ^hjK2 K~ ( 3 ' Q M V o  >  H (V        #1:l{     0"@cy& ,)6 `jpw "   7 A YYc!    '=\d  $( $+Eqw    )  7BI R]bvh   " 7 DRZ `kf(A G T ao    )!1 S _ i $,1ARZ`tzh  # 2> Y&e  *@Zs&b0~w<'dwgdhdk9@. 3 7 U p ! 2 E  !9!R! l!!!!!! !!!S"3T"L""""" ##-#!M#.o#####`#7$!N$p$$$$ $ $$$ $ %%5% D% P%Z%c%i%p% %%% %%-%"%&(&>&O&d& i&v&z&&& K'Y'4j'"'%'''7(8H(( )&)C)'`)7)))H)8*4*+-$+%R++x++%,%:,`,i,o,,,',),',!- 8- D-R-a-r--#--- - --3.4.=.\. x. .#.".(. .N/ V/ `/l/q/w/~/// /////0 0 $0/0!E0+g0 0 002000G1 X1Lc1 111"12'(2'P27x2 22'223M%3s33333 3-34 *444=4D4 I4U4i4 444 44 4445 -585N5g5z5 5 5 555 5 5*5 668,6ie6L67 !7-7147f7n7v777 777+77$ 8/8$88]8 q8|8%8 8 8888 8 9(9!89 Z9 d9ao9 9999 :!:>:G:O:^:&o: : :: ::::;;;.;I;_; e;r;(x;%; ;;;;<<$<;<J<$Q<4v<< <<< < <<= == 3===E=M=T= [=h=|= =;=== == > > >(> ->9>,W> > >>/>>g?_?i[@<@:A9=AIwAABBJC-D1D-D#!EEEZEJ&F0qFGFF~G1H'@H5hH.H"H$HBI!XI"zIIII!IL JTZJZJ K>&K@eKKPLLoqMHMM*NxN;O'OCP^PbP|PPPPPUQ Q QQQQQQ^Q@RTR]R eRrRRRR RRRR RR&RT T'T>TMT?QTT T TT TT T!U'U6U QU\UdUU'U%UZUp?V7VV5W W'W X'#X KX#YX }XXXXX$XY!7Y"YY|Y |Z?ZZZZ ZZ Z [[[['[7[ F[R[j[[[[[[ [$\*\:\Q\ b\m\\&]y]p^v^^^^!^,^',_T_L\_0___ ____```b `;``@]a=aa7a@-b0nb\b bD cOcoc'd9d,d9e-Vee4f ffg g gJghg mgg gggggg gggg h$h+h2h8h;hMhaheh vh hh hhhhh ii 3i =iGiKiQi Vi ailiiNivi0Nj Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Fält Öppna i nytt fönster Ångra alla är installerad. Den aktuella versionen är produkt(-er) för behöver uppdateras. Version #%1$s utkast har uppdaterats. Förhandsgranska %3$s%1$s återställd till ändring from %2$s.%1$s schemalagd för: %2$s. Förhandsgranska %4$s%1$s inskickad. Förhandsgranska%3$s%n kommer att användas för att indikera antalet sekunder%s sedan%s publicerad.%s sparad.%s uppdaterad.%s har inaktiverats.%sTillåt%s%sMarkerat%s beräkningsvärde%sTillåt inte%s%sAvmarkerat%s beräkningsvärde* - Representerar ett alfanumeriskt tecken (A-Z,a-z,0-9) – Medger att både siffror och bokstäver anges- Ingen– Välj ett- Välj ett fält– Välj en produkt– Välj en variabel- Välj ett formulär- Visa alla typer9 - Representerar ett numeriskt tecken (0-9) – Endast siffror kan anges
    • a – Står för alfatecken (A–Z,a–z) – tillåter endast inmatning av bokstäver.
    • 9 – Står för siffror (0–9) – tillåter endast inmatning av siffror.
    • * – Står för alfanumeriska tecken (A–Z,a–z,0– 9) – tillåter inmatning av både siffror och bokstäver.
    Ett skiftlägeskänsligt svar för att undvika skräppostsändningar av ditt formulär.Snart finns en viktig uppdatering av Ninja Forms. %sLäs mer om nya funktioner, bakåtkompatibilitet och fler Vanliga frågor.%sEtt enklare och kraftfullare sätt att bygga.Ovanför elementetOvanför fältÅtgärdsnamnÅtgärden har uppdateratsÅtgärderAktiveraAktivLägg tillLägg till beskrivningLägg till formulärLägg till nyLägg till nytt fältLägg till nytt formulärLägg till nytt objektLägg till nytt inskickat materialLägg till nya termerLägg till operationLägg till skickaknappLägg till värdeLägg till formulär - åtgärderLägg till formulärfältLägg till formulär på den här sidanLägg till ny åtgärdLägg till nytt fältLägg till prenumeranter och utöka din e-postlista med detta registreringsformulär för nyhetsbrev. Du kan lägga till och ta bort fält efter behov.TilläggslicenserTilläggAdressAdressrad 2Lägger till en extra klass till ditt fältelement.Lägger till en extra klass till din fältcontainer.Admin-e-postAdmin-beskrivningAdministrationAvanceradAvancerad ekvationAvancerade inställningarAvancerad leveransAfganistanEfter alltEfter formuläretEfter beskrivningHåller du med?AlbanienAlgerietAllaAllt om formulärAlla fältAlla formulärAlla objektAlla nuvarande formulär blir kvar i tabellen ”Alla formulär”. I vissa fall kan det göras dubbletter av en del av formulären under den här proceduren.Låt användaren anmäla sig till ditt nästa evenemang med detta enkla formulär. Du kan lägga till och ta bort fält efter behov.Låt dina användare kontakta dig med detta enkla kontaktformulär. Du kan lägga till och ta bort fält efter behov.Tillåter RTF-inmatning.Tillåt användarna att välja mer än en av denna produkt.Nästan klart ...Tillsammans med fliken "Build Your Form" (Skapa ditt formulär) har vi tagit bort "Notifications" (Aviseringar) och har istället "Emails & Actions” (E-post och åtgärder). Det här förtydligar vad du kan göra i den här fliken.Amerikanska SamoaEtt oväntat fel uppstod.AndorraAngolaAnguillaSvaraAntarktisSkräppostAnti-spam fråga (svar = svar)Felmeddelande – AntispamAntigua och BarbudaOm du anger ett tecken i rutan "anpassad mask", som inte finns med i nedanstående lista, anges det automatiskt för användaren medan de skriver och det kan inte tas bortLägg till ett Ninja-formulärLägg till ett Ninja FormsLägg till på sidaGenomförArgentinaArmenienArubaBifoga CSVBilagorAustralienÖsterrikeFält med automatisk summaSummera beräkningsvärden automatisktTillgängligtTillgängliga termerAzerbaijanTillbaka till listanTillbaka till listanSäkerhetskopiera/återställSäkerhetskopiera Ninja FormsBahamasBahrainBangladeshBarBarbadosGrundläggande fältGrundläggande inställningarKöksbänkenBazHemlig kopiaFöre alltFöre formuläretFöre beskrivningVänligen läs igenom innan du begär hjälp från vårt supportteam:StartdatumTillsvidaredatumVitrysslandBelgienBelizeUnder elementetNedanför fältBeninBermudaBästa kontaktmetod?Bästa supporten inom verksamhetsområdetInställningar för fältet Better Organized (Bättre organiserad)Bättre licenshanteringBhutanBetalningBlanka formulärBoliviaBosnien och HercegovinaBotswanaBouvet IslandBrasilienBritish Indian OceanterritorietBrunei DarussalamSkapa ditt formulärBulgarienMassåtgärderBurkina FasoBurundiKnappCVCBeräknaBeräkna värdeBeräkningBeräkningsmetodBeräkningsinställningBeräkningsnamnBeräkningarBeräkningar returneras med AJAX-svar (svar -> data -> beräkningarKambodjaKamerunKanadaAvslutaKap VerdeCaptcha-matchningsfel. Ange korrekt värde i captcha-fältetBeskrivning för kortets CVC-kodEtikett för kortets CVC-kodBeskrivning av kortets utgångsmånadEtikett för kortets utgångsmånadBeskrivning av kortets utgångsårEtikett för kortets utgångsårBeskrivning av kortnamnEtikett för kortnamnKortnummerBeskrivning för kortnummerEtikett för kortnummerCaymanöarnaKopiaCentralafrikanska republikenTchadÄndra värdeTeckenTecken kvarTeckenFuskar du?Läs vår dokumentationKryssrutaKryssrutelistaKryssrutorMarkeratMarkerat beräkningsvärdeChileKinaJulönStadKlassnamnVill du radera formulär som har skickats?Kokosöarna (Keeling)Ta betaltColombiaVanliga fältKomorernaKomplicerade ekvationer kan skapas genom att lägga till parenteser: %s( field_45 * field_2 ) / 2%s.BekräftaBekräfta att du inte är en robotKongoKongo-KinshasaKontaktformulärKontakta migKontakata ossBehållareFortsättCooköarnaPrisKostnad – listrutaKostnadsalternativKostnadstypCosta RicaElfenbenskustenDet gick inte att aktivera licensen. Bekräfta din licensnyckelLandSkapar en unik nyckel för att identifiera och använda ditt fält för anpassad utveckling.KreditkortCVC på kreditkortCVV-kod på kreditkortKreditkortets sista giltighetsdatumFullständigt namn på kreditkortKreditkortsnummerPostnummer för kreditkortPostnummer för kreditkortOmnämnandenKratien (lokalt namn: Hrvatska)KubaValutaValutasymbolAktuell sidaAnpassadeAnpassad CSS-klassAnpassade CSS-klasserAnpassa klassnamnAnpassad fältgruppAnpassa maskAnpassa maskdefinitionCustom-fält raderat.Custom-fält uppdaterat.Anpassat första alternativCypernTjeckienDD-MM-ÅÅÅÅDD/MM/ÅÅÅÅFELSÖK: Växla till 2.9.xFELSÖK: Växla till 3.0.xMörktData har återställts!DatumSkapat denDatumformatDatuminställningarInskickat datumUppdaterad datumDatumväljareInaktiveraInaktiveraInaktivera alla licenserInaktivera licenserInaktivera licenser för Ninja Forms-tillägg var för sig eller som en grupp i inställningsfliken.StandardFörvalt landPosition för standardetikettStandardtidszonAnge innevarande datum som standardStandardvärdeStandardtidszonen är %sStandardtidzon är %s - den skall vara UTCDefinierade fältRaderaTa bort (^ + D + klicka)Radera permanentTa bort det här formuläretRadera artikel permanentDanmarkBeskrivningBeskrivningens innehållBeskrivningens placeringVisste du att du kan öka konverteringsgraden för formulär genom att bryta upp större formulär i mindre formulärdelar som är lättare att konvertera?

    Tillägget Multi-Part Forms för Ninja Forms fixar det snabbt och lätt.

    Inaktivera meddelanden från adminInaktivera komplettera automatiskt för webbläsarenInaktivera inmatningInaktivera RTF-redigerare på mobilVill du inaktivera indata?AvvisaVisningVisa formulärets rubrikNamn som visasBildskärmsinställningarVisa denna beräkningsvariabelVisa titelVisa ditt formulärDividerDjiboutiVisa inte dessa villkorDokumentationDokumentation kommer snart.Det finns dokumentation som täcker allt från %sFelsökning%s till vår %sUtvecklar-API%s. Nya dokument läggs till hela tiden.Gäller INTE förhandsgranskning av formulär.Gäller förhandsgranskning av formulär.DominicaDominikanska republikenKlarHämta allt inskickat materialDropdown-menyKopieraDuplicera (^ + C + klicka)Duplicera formulärEcuadorÄndraRedigera åtgärdRedigera formulärRedigera objektRedigera menyalternativRedigera inskickat materialRedigera denna artikelRedigera fältRedigera fältEgyptenEl SalvadorElementE-postE-post och åtgärderE-postadressE-postmeddelandeFormulär för e-postprenumerationE-postadress eller sökning för ett fältE-postadresser eller sök efter ett fältE-postmeddelandet kommer att se ut som det kommer från den här e-postadressen.E-postmeddelandet kommer att se ut som det kommer från det här namnet.E-post och åtgärderSlutdatumSe till att detta fält fylls i innan formuläret tillåts skickas.Ange den text du skulle vilja visa i fältet innan en användare anger data.Ange etiketten för formulärfältet. Det är så här användarna kommer att identifiera individuella fält.Ange din e-postadressMiljöEkvationEkvation (avancerad)EkvatorialguineaEritreaFelFelmeddelande ges om alla obligatoriska fält inte har fyllts i.EstlandEtiopienAnmälan till evenemangExpandera menyUtgångsmånad (MM)Utgångsår (YYYY)ExporteraExportera favoritfältExportera fältExportera formulärExportera formulärExportera ett formulärExportera det här objektetUtöka Ninja FormsFILUPPLADDNINGMisslyckades med att skriva filen till disken.FalklandsöarnaFaroeöarnaFavoritfältFavoriter har importerats.FältFält nrFält-IDFältnyckelFältet saknasFältoperationerFältFält markerade med * är obligatoriska.Fält markerade med en %s*%s är obligatoriskaFijiFel vid filöverföringFiluppläggning pågår.Filuppladdning stoppades pga filändelse.FinlandNamnFixa detta.FooFoo BarOm du exempelvis har en produktnyckel som har formatet A4B51.989.B.43C, skulle du kunna maska detta med: a9a99.999.a.99a, vilket tvingar alla a:n att vara bokstäver och alla nior att vara siffrorFormulärFormulärstandardformulär har tagits bortFormulärfältFormuläret har importerats.FormulärnyckelFormuläret saknasFörhandsgranskning av formulärFormulärinställningarna har sparatsFormulärsändningarImportfel på formulärmall.FormulärtitelFormulär med beräkningarFormatFormulärformulär har tagits bortFormulär per sidaFrankrikeFrankrike, storstadsFranska GuyanaFranska PolynesienFranska södra territoriernaFredagen den 18 november 2019Från adressFrån-namnHela ChangelogHelskärmGabonGambiaAllmäntAllmänna inställningarGeorgienTysklandFå hjälpFå flera åtgärderFå flera typerFå hjälpFå supportFå en systemrapportFå en platsnyckel för din domän genom att registrera dig %shär%sKom igång genom att lägga till ditt första formulärfält.Kom igång genom att lägga till ditt första formulärfält. Klicka på plustecknet och markera önskade åtgärder. Så enkelt är det.Komma igångKom igång med Ninja FormsGhanaGibraltarGe formuläret en rubrik. Det är så du hittar formuläret senare.KörFörsöket har misslyckatsGå till formulärGå till Ninja FormsGå till första sidanGå till sista sidanGå till nästa sidaGå till föregående sidaGreklandGrönlandGrenadaVäxande dokumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalvskärmHeard- och McDonaldöarnaHej Ninja Forms!HjälpHjälptextHjälptext härDoldDolt fältDölj etikettDölj dettaVill du dölja formulär som har skickats?Tips: Lösenordet måste vara minst sju tecken långt. Skapa ett säkrare lösenord genom att använda små och stora bokstäver, siffror och symboler som ! " ? $ % ^ & ).Vatikanstaten (Heliga stolen)Startsidans URLHondurasHoneypotHoneypot-felFelmeddelande – HoneypotHong KongHook TagVärdnamnHur är läget?UngernIP-addressIslandOm "beskr text" har aktiverats, visas ett frågetecken %s bredvid inmatningsfältet. Om du hovrar över det här frågetecknet visas en beskrivningOm "hjälptext" har aktiverats, visas ett frågetecken %s bredvid inmatningsfältet. Om du hovrar över det här frågetecknet visas hjälptexten.Om den här rutan är markerad raderas ALLA data i Ninja Forms från databasen vid borttagning. %sDet kommer inte att gå att återställa data i formulär och inskickat material.%sOm den här rutan markeras raderar Ninja Forms formulärvärdena när formuläret har skickats in.Om den här rutan markeras döljer Ninja Forms formuläret när det har skickats in.Om denna ruta är markerad kommer Ninja Forms att skicka en kopia av detta formulär (och eventuella bifogade meddelanden) till denna adress.Om denna ruta är markerad kommer Ninja Forms att verifiera denna inmatning som e-postadress.Om denna ruta är markerad, visas både textrutorna för lösenord och lösenordsbekräftelse.Om den här rutan har markerats sorteras den här kolumnen i tabellen med inskickat material efter nummer.Om du är en människa och ser det här fältet ska du låta det vara tomt.Om du är en människa och ser det här fältet ska du låta det vara tomt.Om du är människa måste du sakta ned.Om du lämnar rutan tom används ingen begränsningOm du samtycker kommer vissa data om din installation av Ninja Forms att skickas till NinjaForms.com (detta inkluderar INTE dina sändningar).Om du hoppar över detta är det okej. Ninja Forms kommer ändå att fungera bra.Om du vill skicka ett tomt värde eller beräkna ska du använda '' för dem.Om du vill att ditt formulär skickar ett e-postmeddelande till dig när en användare klickar på Skicka, kan du ställa in det på den här fliken. Du kan skapa ett obegränsat antal e-postmeddelanden, inklusive meddelanden som skickas till användaren som fyllde i formuläret.Om dina formulär "saknas" efter uppdatering till 2.9, försöker den här knappen konvertera om dina gamla formulär och visa dem i 2.9. Alla nuvarande formulär blir kvar i tabellen ”Alla formulär”.ImporteraImport/exportImportera/exportera inskickade formulärImportera favoritfältImportera favoriterImportera fältImportera formulärImportera formulärImportera listobjektImportera ett formulärImportera/ExporteraFörbättrad tydlighetInkludera i automatisk totalsumma? (Om aktiverat)Felaktigt svarÖka konverteringsgradernaIndienIndonesienInmatningsmaskInfogaInfoga alla fältInfoga fältInfoga länkInfoga mediaInne i elementetInstalleratInstallerade plugin-programIntressegrupperUppladdning av ogiltigt formulär.Ogiltigt formulär-IDIran (Islamiska republiken)IrakIrlandÄr detta en e-postadress?IsraelSå enkelt är det. Eller...ItalienJamaicaJapanJavaScript inaktiverade felmeddelandetJohan SvenssonJordanienKlicka här och markerade önskade fält.KazakstanKenyaNyckelKiribatiDiskbänkKorea, Demokratiska folkrepublikenKorea, RepublikenKuwaitKirgizistanEtikettEtikett härEtikettnamnPosition för etikettEtikett används vid visning och export av sändningar.Etikett,värde,beräknaEtiketterSpråk som används av reCAPTCHA. Hämta koden för ditt språk genom att klicka %shär%sLaos, Demokratiska folkrepublikenEfternamnLettlandLayoutelementLayoutfältLäs merLär dig mer om formulär i flera delarLäs mer om att spara förloppLibanonTill vänster om elementetTill vänster om fältLesothoLiberiaLibyen, StatenRättigheterLiechtensteinLightBegränsa inmatning till detta antalMeddelande om att gränsen har uppnåttsBegränsa antalet överföringarBegränsa inmatningen till det här antaletListaListfältmappningTyp av lista:ListorLitauenLaddar uppLaddar ...PlatsInloggadLångt formulär - LuxemburgMM-DD-ÅÅÅÅMM/DD/ÅÅÅÅMacaoMakedonien, Republiken, forna JugoslavienMadagaskarMalawiMalaysiaMaldivernaMaliMaltaHantera offertförfrågan enkelt från din webbplats med denna mall. Du kan lägga till och ta bort fält efter behov.MarshallöarnaMartiniqueMauretanienMauritiusTillMaximal kapslingsnivå för indataMaximivärdeKanske senareMayotteMedelMeddelandeMeddelandebeskrivningarMeddelande som visas för användare om ovanstående kryssruta är markerad och de inte är inloggade.MetaboxMexikoMikronesiens federerade staterMigreringar och låtsasdata slutförda. FrånMinimivärdeDiversefältMatchningsfelEn temporär mapp saknas.Falsk - e-poståtgärdFalsk - sparåtgärdFalsk - åtgärden lyckadesÄndrat denMoldavien, RepublikenMonacoMongolietMontenegroMontserratDet kommer merMarockoFlytta artikel till PapperskorgenMoçambiqueMulti-valFlera produkter – välj mångaFlera produkter – välj enFlera produkter – listrutaFlervalRutstorlek för flervalFleraMin första beräkningMin andra beräkningMySQL versionMyanmarNamnNamn på kortetNamn eller fältNamibiaNauruBehöver du hjälp?NepalNederländernaNederländska AntillernaVisa aldrig adminmeddelanden på instrumentpanelen från Ninja Forms. Avmarkera för att visa dem igen.Ny åtgärdNy byggflikNya CaledonienNytt objektNyligen inskickat materialNya ZeelandRegistreringsformulär för nyhetsbrevNicaraguaNigerNigeriaInställningar för Ninja FormsNinja FormsNinja Forms – bearbetarNinja Forms ChangelogNinja Forms DevNinja Forms dokumentationNinja Forms bearbetarNinja FormulärinlämningNinja Forms systemstatusNinja Forms THREE-dokumentationUppgradering av Ninja FormsNinja Forms uppgradering – bearbetarUppgraderingar av Ninja FormsNinja Forms-versionNinja Forms-widgetNinja Forms levereras även med en enkel mallfunktion som kan placeras direkt i en php-mallfil. %sHär ska Ninja Forms grundläggande hjälp vara.Ninja Forms kan inte aktiveras via nätverket. Gå till varje webbplats instrumentpanel och aktivera plugin-programmet.Ninja Forms har slutfört alla tillgängliga uppgraderingar.Ninja Forms skapas av ett utvecklingsteam som är utspritt över världen och strävar efter att tillhandahålla det främsta plugin-programmet för formulär för WordPress-gemenskapen.Ninja Forms måste bearbeta %s uppgradering(ar). Det kan ta några minuter innan det är klart. %sStarta uppgradering%sNinja Forms måste uppdatera dina e-postinställningar. Klicka %shär%s för att starta uppgraderingen.Ninja Forms måste uppgradera överföringstabellen. Klicka %shär%s för att starta uppgraderingen.Ninja Forms måste uppgradera dina formuläraviseringar. Klicka %shär%s för att starta uppgraderingen.Ninja Forms måste uppgradera dina formulärinställningar. Klicka %shär%s för att starta uppgraderingen.Ninja Forms innehåller en widget som du kan placera i valfritt område som tillåter widgets på din webbplats, och välja exakt vilket formulär som du vill visa i det området.Ninja Forms kortkod används utan att specificera ett formulär.NiueNejIngen åtgärd har angetts...Inga favoritfält hittadesInga fält hittades.Inget inskickat material hittadesDet fanns inget inskickat material i papperskorgenInga tillgängliga termer för denna taxonomi. %sLägg till en term%sFilen laddades inte upp.Inga formulär hittades.Ingen taxonomi har valts.Ingen giltig changelog hittades.IngenNorfolk IslandNordmarianernaNorgeMeddelande om ej inloggadInte ännuHittades inte i papperskorgenNotisMeddelanderutan kan redigeras i meddelandefältets avancerade inställningar nedan.Meddelande: JavaScript krävs för detta innehåll.Meddelande: Ninja Forms kortkod används utan att specificera ett formulär.SiffrorNummer max felNummer min felSifferalternativAntal stjärnorAntal decimaler.Antal sekunder för nedräkningAntal sekunder för nedräkningenAntal sekunder för tidsgräns för sändning.Antal stjärnorOmanEnEn e-postadress eller ett fältHoppsan! Den tilläggskomponenten är inte kompatibel med Ninja Forms THREE ännu. %sLäs mer%s.Öppna i nytt fönsterÅtgärder och fält (avancerade)Egensinniga stilarAlternativ ettAlternativ treAlternativ tvåFunktionerOrganisatörSupporttjänsternas omfattningSpara beräkningen somPHP-platsPHP Max Input VarsMaxstorlek för PHP postPHP tidsgränsPHP versionPUBLICERAPakistanPalauPanamaPapua Nya GuineaTextstyckeParaguayÖverordnat objekt:LösenordBekräfta lösenordBeskrivning för matchningsfel för lösenordLösenorden stämmer inte överensBetalningsfältBetalningsnätslussarSumma att betalaBehörighet nekades.PeruFilippinernaTelTelefon - (555) 555-5555iuPitcairnPlacera %s i valfritt område som tillåter att kortkoder visas i formuläret där du vill ha dem. Du kan t.o.m. placera dem mitt i innehållet på sidan eller i inlägget.PlatshållareOformaterad text%sKontakta support%s angående felet som visas ovan.Besvara skräppostfrågan korrekt.Kontrollera de obligatoriska fälten.Fyll i captcha-fältetFyll i recaptchaKorrigera fel innan du skickar in det här formuläret.Kontrollera att du har fyllt i alla obligatoriska fält.Ange ett meddelande som ska visas när gränsen för antalet överföringar har nåtts och du inte accepterar några nya överföringar.Ange en giltig e-postadressAnge en giltig e-postadress!Ange en giltig e-postadress.Hjälp oss att förbättra Ninja Forms!Inkludera följande information när du begär support:Öka i steg om Lämna skräppostfältet tomt.Se till att du har angett din platsnyckel och din hemliga nyckel korrektBetygsätt %sNinja Forms%s %s på %sWordPress.org%s för att hjälpa oss att kunna fortsätta erbjuda detta insticksprogram gratis. Tack från WP:s Ninjas-team!Välj ett formulär för att visa inskickat materialVälj ett formulär.Välj en giltig fil med exporterat formulär.Välj en giltig fil med favoritfält.Välj vilka favoritfält du vill exportera.Använd följande matematiska tecken: + - * /. Det här är en avancerad funktion. Håll utkik efter sådant som division med 0.Vänta i %n sekunderVänta med att skicka in formuläret.TilläggPolenFyll i det här med taxonominPortugalPostaInläggets/sidans ID (om sådant finns)Inläggets/sidans titel (om sådan finns)Inläggets/sidans URL (om sådan finns)Lägg upp det skapade formuläretInläggs-IDInläggstitelInläggsadressFörhandsgranskaFörhandsgranska ändringarnaFörhandsgranska formulärFörhandsgranskning existerar inte.PrisPris:PrisfältBehandlasBearbetar etikettBeskrivning för bearbetning av inskickat formulärProdukt:Produkt (kvantitet som ingår)Produkt (separat kvantitet)Produkt AProdukt BProduktformulär (kvantitet inline)Produktformulär (flera produkter)Produktformulär (med fältet Kvantitet)ProdukttypProgrammässigt namn som kan användas för att hänvisa till detta formulär.PubliceraPuerto RicoKöpQatarAntal:Kvantitet för Produkt AKvantitet för Produkt BAntal:FrågesträngFrågesträngarVariabel för frågesträngFrågaFrågepositionOffertförfråganRadioknappRadiolistaAnge lösenordet igenAnge lösenordsbekräftelsen igenVill du verkligen inaktivera alla licenser?RecaptchaDirigera omTa bortRadera ALLA data i Ninja Forms vid avinstallation?Ta bort värdeRadera alla Ninja Forms-dataVill du ta bort det här fältet? Det tas bort även om du inte sparar.Svara tillVill du kräva att användaren är inloggad för att kunna visa formuläret?ObligatorisktObligatoriskt fältFel - obligatoriskt fältBeskrivning av obligatoriskt fältObligatorisk fältsymbolÅterställ konverteringen av formulärÅterställ konverteringen av formulärÅterställ formulärkonverteringsproceduren för v2.9+ÅterställÅterställ Ninja FormsÅterställ artikel från PapperskorgenBegränsningsinställningBegränsningarBegränsar vilken typ av inmatningar dina användare kan göra i detta fält.Återgå till Ninja FormsReunionRTF-redigerare (RTE)Till höger om elementetTill höger om fältÅterställÅterställ till den senaste 2.9.x-versionen.Återställ till v2.9.xRumänienRysslandRwandaSMTPSOAP-klientSUHOSIN installeratSaint Kitts och NevisSaint LuciaSaint Vincent och GrenadinernaSjälvständiga staten SamoaSan MarinoSão Tomé och PríncipeSaudiarabienSparaSpara och aktiveraSpara fältinställningarnaSpara mallAlternativ för SparaSpara inställningarSpara inlämningenSparatSparade fältSparar...SökobjektSök efter inskickat materialSelectVälj allaVälj listaVälj ett fält eller skriv för att sökaVälj en filVälj ett formulärVälj ett formulär eller en typ som du vill söka efterVälj hur många överföringar det här formuläret tillåter. Lämna tomt om ingen begränsning krävs.Välj position för din etikett i förhållande till själva fältelementet.ValdValt värdeSkickaSkicka en kopia av formuläret till denna adress?SenegalSerbienServerns IP-adressInställningarInställningar sparadeSeychellernaFraktSnabbkodSka anges som procenttal, t.ex. 8,25 %, 4 %Visa hjälptextVisa knapp för uppladdning av mediaVisa merVisa indikator för lösenordsstyrkaVisa RTF-redigerareVisa dettaVisa värden för listobjektVisas för användare som en hovring.Sierra LeoneSingaporeSingelEn enda kryssrutaEn enda kostnadEnkelrad textEn enda produkt (standard)WebbplatsadressSlovakien (Slovakiska republiken)SlovenienSnigelpostSå om du vill skapa en mask för ett personnummer skulle du kunna skriva in 999999-9999 i rutan.SalomonöarnaSomaliaSortera som numeriskSortera som numerisktSydafrikaSydgeorgien och SydsandwichöarnaSydsudanSpanienSkräppostsvarSkräppostfrågaAnge operationer och fält (avancerat)Sri LankaSankta HelenaSaint-Pierre och MiquelonStandardfältStjärnklassificeringBörja med en mallLandskapStatusStegSteg %d av cirka %d körsSteg (belopp att öka med)Indikator för styrkaStarkUndersekvensÄmneÄmnestext eller sökning för ett fältÄmnestext eller sök efter ett fältöverföringSändnings-CSVSändningsdataSändningsinfoSändningsgränsSändning metaboxÖverföringsstatistiköverföringarSkickaSkicka knapptext när timern går utVill du skicka via AJAX (utan att sidan uppdateras)?SkickatInskickat avInskickat av: PostadInskickat: PrenumereraMeddelande vid framgångSudanSurinamSvalbard och Jan Mayen-öarnaSwazilandSverigeSchweizSyrienSystemSystemstatusTHREE kommer snart!TaiwanTadzjikistanLäs vår detaljerade dokumentation för Ninja Forms nedan.Tanzania, Förenade republikenMomsSkatteprocentTaxonomiMallfältMallfunktionTermlistaTextTextelementText att visa efter räknarenText som ska visas efter tecken-/ordräknareTextområdeTextfältThailandTack för att du fyllde i det här formuläret.Tack för att du uppdaterar till den senaste versionen! Ninja Forms %s är laddat med funktioner som gör att din hantering av inskickade formulär blir så rolig och problemfri som möjligt.Tack för att du uppdaterar till version 2.7 av Ninja Forms. Uppdatera alla Ninja Forms-tillägg från Tack för att du uppdaterar! Ninja Forms %s gör det enklare att skapa formulär än någonsin!Tack för att du använder Ninja Forms! Vi hoppas att du hittade allt du behöver, men om du har frågor:Tack {field:name} för att du fyllde i det här formuläret!De (normalt sett) 16 siffrorna på kreditkortets framsida.De 3 (baksidan) eller 4 (framsidan) siffrorna på kortet.Niorna representerar valfritt nummer och strecket läggs till automatisktFrån menyn Formulär kommer du åt allt som har att göra med Ninja Forms. Vi har redan skapat ditt första %skontaktformulär%s så att du har ett exempel. Du kan också skapa ditt eget genom att klicka på %sLägg till nytt%s.Formatet ska se ut som följer:Gränssnittsuppdateringarna i den här versionen lägger grunden för framtida förbättringar. Version 3.0 kommer att bygga vidare på de här ändringarna för att göra Ninja Forms till ett ännu stabilare, kraftfullare och mer användarvänligt verktyg för att skapa formulär.Den månad då kortet upphör att gälla, vanligtvis på kortets framsida.De vanligaste inställningarna visas omedelbart, medan andra inställningar som inte är så viktiga är placerade inne i delar som kan expanderas.Namnet som är tryckt på kreditkortets framsida.De angivna lösenorden matchar inte varandra.Människorna som skapar Ninja FormsProceduren har startat, var tålmodig. Det här kan ta flera minuter. Du kommer automatiskt att omdirigeras när proceduren är klar.Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som angetts i HTML-formuläret.Den uppladdade filen överstiger direktivet upload_max_filesize i php.ini.Den uppladdade filen laddades endast upp delvis.Det år då kortet upphör att gälla, vanligtvis på kortets framsida.En ny version av %1$s finns tillgänglig. Visa detaljer för version %3$s eller uppdatera nu.En ny version av %1$s finns tillgänglig. Visa detaljer för version %3$s.Den uppladdade filen är inte ett giltigt format.Det här är samtliga fälten i Priser.Det här är samtliga fälten i Användarinformation.Detta är de fördefinierade maskningstecknen:Det här är diverse specialfält.Dessa fält måste stämma överens!Denna kolumn i sändningstabellen kommer att sortera efter nummer.Detta är ett obligatoriskt fältDetta är ett obligatoriskt fält.Detta är ett testDetta är en användares stat.Detta är en e-poståtgärdDet här är ytterligare ett testDet här är den tid en användare måste vänta för att skicka formuläretDen här beskrivningen används vid visning/redigering/export av inskickat material.Det här är fältets programmässiga namn. Exempel är: my_calc, price_total, user-total.Detta är användarens statDet här värdet kommer att användas om det är %smarkerat%s.Det här värdet kommer att användas om det är %savmarkerat%s.Det är här du skapar ditt formulär genom att lägga till fält och dra dem till beställningen där du vill att de ska visas. Varje fält kommer att ha ett antal alternativ, som beskrivning, beskrivningens position och platsmarkör.Detta nyckelord är reserverat för WordPress. Försök med ett annat nyckelord.Det här meddelandet visas inne i sändningsknappen när en användare klickar på ”Skicka” så att de ska veta att materialet bearbetas.Det här meddelandet visas för en användare när värden som inte matchar varandra anges i lösenordsfältet.Denna siffra kommer att användas i beräkningar om rutan har markerats.Denna siffra kommer att användas i beräkningar om rutan inte har markerats.Den här inställningen tar HELT OCH HÅLLET bort allt som har att göra med Ninja Forms när plugin-programmet tas bort. Detta inkluderar INSKICKAT MATERIAL och FORMULÄR. Det kan inte ångras.Den här fliken innehåller allmänna formulärinställningar som rubrik och överföringssätt, samt visningsinställningar såsom att formuläret ska döljas när det har skickats.Det här blir e-postmeddelandets ämne.Det här förhindrar att användaren anger andra tecken än siffrorTreTidsgräns för sändningFelmeddelande – TimerTimor-Leste (Östtimor)TillOm du vill aktivera licenser för Ninja Forms-tillägg måste du först %sinstallera och aktivera%s det valda tillägget. Licensinställningarna visas sedan nedan.För att använda denna funktion kan du klistra in ditt CSV i textområdet ovan.Dagens datumVäxla lådaTogoTokelauTongaSummaTa bortFörsöker följa specifikationerna för %sPHP-datumfunktion()%s, men alla format stöds inte.Trinidad och TobagoTunisienTurkietTurkmenistanTurks- och CaicosöarnaTuvaluTvåTypWebbadressTelefonnummer USAUgandaUkrainaAvmarkeratOmarkerat beräkningsvärdeUnder inställningen för grundläggande formulärbeteende i formulärinställningarna är det enkelt att välja en sida där du vill att formuläret ska läggas till i slutet av den sidans innehåll. Det finns ett liknande alternativ i marginalen på varje skärm för redigering av innehåll.ÅngraÅngra allaFörenade ArabemiratenStorbritannienUSAFörenta staternas (USA) mindre öar i Oceanien och VästindienOkänt uppladdningsfel.OpubliceratUppdateraUppdatera objektUppdaterat: Uppdatera formulärdatabasenUppgraderaUppgradera till Ninja Forms THREEUppgraderingarUppgraderingarna är klaraWebbadressUruguayAnvänd en ekvation (avancerat)Använd kvantitetAnvänd ett anpassat första alternativAnvänd Ninja Forms standardtypsnitt.Använd följande kortkod för att infoga den slutgiltiga beräkningen: [ninja_forms_calc]Kom igång med att använda Ninja Forms med hjälp av nedanstående tips. Du kommer att vara igång på nolltid!Använd detta som ett lösenordsfält för registreringAnvänd detta som ett lösenordsfält för registrering. Om denna ruta är markerad, visas både textrutorna för lösenord och lösenordsbekräftelse.Används för att markera ett fält för bearbetning.AnvändareAnvändarens visningsnamn (om inloggad)Användarens e-postadressAnvändarens e-postadress (om inloggad)AnvändarpostAnvändarens förnamn (om inloggad)Användar IDAnvändar-ID (om inloggad)Fältgrupp med användarinfoAnvändarinformationAnvändarinformationsfältAnvändarens efternamn (om inloggad)Användarens meta (om inloggad)Värden inskickade av användarenVärden inskickade av användaren:Det är mer sannolikt att användarna fyller i långa formulär när de kan spara och sedan återgå för att slutföra överföringen av formuläret vid ett senare tillfälle.

    Det går snabbt och lätt med tillägget Save Progress för Ninja Forms.

    UzbekistanVerifiera som e-postadress? (Fältet måste vara obligatoriskt)VärdeVanuatuNamn på variabelVenezuelaVersionVersion %sMycket svagtVietnamVisaVisa %sVisa ändringarVisa formulärVisa objektVisa inskickat materialVisa inskickat materialVisa hela ChangelogJungfruöarna (Storbritannien)Jungfruöarna (USA)Besök tilläggets webbplatsWP felsökningslägeWP-språkMaximal överföringsstorlek för WPWP Memory LimitWP Multisite aktiveratWP fjärrinläggWP versionWallis- och FutunaöarnaVi gör allt vi kan för att ge alla användare av Ninja Forms bästa möjliga support. %sKontakta oss%s om du stöter på ett på problem eller har en fråga.Vi har lagt till ett alternativ som innebär att alla Ninja Forms-data (inskickat material, formulär, fält, alternativ) raderas när du tar bort plugin-programmet. Vi kallar den för sprängaralternativet.Vi har lagt märke till att du inte har någon skickaknapp på ditt formulär. Vi kan lägga till en åt dig automatiskt.SvagtInformation om webbserverVälkommen till Ninja Forms, Välkommen till Ninja Forms, %sVästra SaharaVad kan vi stå till tjänst med?Vad du kan pröva innan du kontaktar supportVad vill döpa den här favoriten till?NyheterGå direkt till den viktigaste delen när du skapar och redigerar formulär.Vem ska det här e-postmeddelandet skickas till?OrdOrdContainerÅ-m-dY-m-dÅÅÅÅ-MM-DDÅÅÅÅ/MM/DDJemenJaDu är kvalificerad för uppgradering till Release-kandidaten Ninja Forms THREE! %sUppgradera nu%sDu kan också kombinera dem för vissa användningsområdenDu kan skriva in beräkningsekvationer här med hjälp av field_x där x är ID:t för fältet du vill använda. Exempel: %sfield_53 + field_28 + field_65%s.Du kan inte skicka formuläret om inte JavaScript är aktiverat.Du har inte behörighet att installera tilläggsuppdateringarDu har inte behörighet.Du har inte lagt till en sändningsknapp i formuläret.Du måste vara inloggad för att förhandsgranska ett formulär.Du måste ange ett namn för den här favoriten.Du behöver JavaScript för att skicka det här formuläret. Aktivera det och försök igen.Du har köpt Det här finns i e-postmeddelandet du fick när du köpte produkten.Ditt formulär har skickats in.Servern verkar ha varken fsockopen eller cURL aktiverat - PayPal IPN och andra skript som behöver kommunicera med servern kommer inte att fungera. Vänligen kontakta ditt webbhotell.Din server har inte klassen %sSOAP-klient%s aktiverad - vissa gateway-plugin-program som använder SOAP kanske inte fungerar som förväntat.Din server har cURL aktiverat, fsockopen är inaktiverat.Din server har fsockopen och cURL aktiverat.Din server har fsockopen aktiverat, cURL är inaktiverat.Din server har klassen SOAP-klient aktiverad.Din version av Ninja Forms filöverföringstillägg är inte kompatibel med version 2.7 av Ninja Forms. Det måste vara minst version 1.3.5. Uppdatera det här tillägget på Din version av Ninja Forms tillägg för att spara formulär är inte kompatibelt med version 2.7 av Ninja Forms. Det måste vara minst version 1.1.3. Uppdatera det här tillägget på JugoslavienZambiaZimbabwePostkodPostnummera - Representerar ett alfatecken (A-Z,a-z) – Endast bokstäver kan angessvarbutton-secondary nf-download-allavtecken kvarmarkeradKopieraanpassadd-m-Ådashicons dashicons-updateduplicerafoo@wpninjas.comtimmejs-newsletter-list-update extral, F d Åm-d-Åm/d/Åingenavav Produkt A och av Produkt B för $ettone_week_supportlösenordetbehandlarprodukt(-er) för reCAPTCHASpråk för reCAPTCHAHemlig nyckel för reCAPTCHAreCAPTCHA-inställningarreCAPTCHA-platsnyckelreCAPTCHA-temareCaptcha-inställningarUppdaterasmtp_porttretiteltvåavmarkeraduppdateratanvandare@gmail.comversionwp_remote_post() misslyckades. PayPal IPN kanske inte fungerar med din server.wp_remote_post() misslyckades. PayPal IPN fungerar inte med din server. Kontakta leverantören av värdtjänsten. Fel:wp_remote_post() lyckades - PayPal IPN fungerar.lang/ninja-forms-pl_PL.po000064400000637172152331132460011274 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Uwaga: ta zawartość wymaga obsługi języka JavaScript." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Oszukujesz, co?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Pola oznaczone znakiem %s*%s są wymagane" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Prosimy upewnić się czy wszystkie wymagane pola są wypełnione." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "To pole jest wymagane" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Proszę poprawnie odpowiedzieć na pytanie, anty-spam." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Proszę zostawić puste pole spamu." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Proszę odczekać przed wysłaniem formularza." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Nie możesz wysłać formularza bez włączonej obsługi JavaScript." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Wprowadź poprawny adres email" #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Przetwarzanie" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Nowe hasło nie zgadza się z potwierdzeniem." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Dodaj formularz" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Wybierz formularz albo wyszukaj go, wpisując jego nazwę" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Anuluj" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Wstaw" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Nieprawidłowy identyfikator formularza" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Zwiększ liczbę konwersji" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Czy wiesz, że możesz zwiększyć liczbę konwersji formularzy, dzieląc większe " "formularze na mniejsze, łatwiejsze do przeanalizowania części?

    Dzięki " "rozszerzeniu Multi-Part Forms wtyczki Ninja Forms możesz to szybko i łatwo osiągnąć.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Dowiedz się więcej na temat rozszerzenia Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Może później" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Zamknij" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Użytkownicy częściej wypełniają długie formularze, gdy mogą zapisać swój " "postęp i dokończyć wypełnianie później.

    Dzięki rozszerzeniu Save Progress " "wtyczki Ninja Forms możesz to szybko i łatwo osiągnąć.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Dowiedz się więcej na temat rozszerzenia Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "E-mail" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Od (imię i nazwisko)" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Nazwa lub pola" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "E-mail pojawią się z tą nazwą." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Z adresu" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Jeden adres e-mail lub pole" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "E-mail pojawią się z tego adresu e-mail." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Do" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Adres e-mail lub wyszukaj pole" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Do kogo wysłać tę wiadomość?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Temat" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Tekst tematu lub wyszukaj pola" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "To będzie temat e-maila." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Wiadomości e-mail" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Załączniki" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Dane w formacie CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Czysty tekst..." #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Adres zwrotny" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "\"DW\"" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "\"UDW\"" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Przekieruj do" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Komunikat zakończenia sukcesem" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Przed formularzem" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Po formularzu" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Lokalizacja" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Wiadomość" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplikat" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Dezaktywacja" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Aktywuj" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Edytuj" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Usuń" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplikuj" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nazwa" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Typ" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Data aktualizacji" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "-Zobacz wszystkie typy" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Uzyskaj więcej typów" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Wiadomości e-mail i działania" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Dodaj nowe" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Nowe działanie" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Edytuj działanie" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Powrót do listy" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Nazwa działania" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Uzyskaj więcej działań" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Zaktualizowano działanie" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Zaznacz pole lub wpisz, aby wyszukać" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Wstaw pole" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Wstaw wszystkie pola" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Wybierz formularz, aby wyświetlić zgłoszenie" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Nie znaleziono żadnych zgłoszeń" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Zgłoszenia" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Przesyłany element" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Dodaj nowe zgłoszenie" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Edytuj zgłoszenie" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Nowe zgłoszenie" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Przejrzyj zgłoszenie" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Wyszukaj zgłoszenie" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Nie znaleziono żadnych zgłoszeń w Koszu" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Data" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Edytuj" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Eksportuj" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Eksport" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Przenieś ten element do Kosza" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Kosz" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Przywrócenie tego elementu z Kosza" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Przywracanie" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Usuń ten obiekt na stałe" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Usuń na zawsze" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Niepublikowane" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s temu" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Zapisane" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Wybierz formularz" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Data rozp." #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Data zakończenia" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s zaktualizowano." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Pole zaktualizowane." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Pole usunięte." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "Przywrócono wersję %1$s z %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s opublikowany." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s zapisano." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "Przesłano element %1$s. Podgląd dla: %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s — zaplanowane dla: %2$s. Podgląd dla: %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "Zaktualizowano wersję roboczą elementu %1$s. Podgląd dla: %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Pobierz wszystkie zgłoszenia" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Powrót do listy" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Wartości przekazane przez Użytkownika" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Statystyki zgłoszeń" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Pole" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Wartość" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formularz" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Przesłane dnia" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Zmodyfikowane dnia" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Dodany przez" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Aktualizuj" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Data przesłania" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Form nie mogą zostać zaktualizowane zbiorczo. Odwiedź panel każdej z " "witryn by aktytować plugin." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Znajdziesz to dołączone do e-maila z potwierdzeniem zakupu." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Klucz" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Nie udało się aktywować licencji. Zweryfikuj klucz licencji" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Dezaktywuj licencję" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Wartości przesłane przez użytkownika" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Dziękujemy za wypełnienie niniejszego formularza." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Dostępna jest nowa wersja %1$s. Wyświetl szczegóły wersji %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Dostępna jest nowa wersja %1$s. Wyświetl szczegóły wersji %3$s lub zaktualizuj teraz." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Nie masz uprawnień potrzebnych do zainstalowania aktualizacji wtyczki" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Błąd" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Pola standardowe" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Elementy układu" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Tworzenie postu" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Oceń wtyczkę %sNinja Forms%s %s na stronie %sWordPress.org%s, aby pomóc nam w " "bezpłatnym udostępnianiu tej wtyczki. Podziękowania od zespołu twórców " "wtyczki Ninja Forms dla WP!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Widget Ninja Forms" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Wyświetlany tytuł" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Brak" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formularze" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Wszystkie formularze" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Aktualizacja Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Aktualizacje" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importuj/eksportuj" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importuj/eksportuj" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ustawienia Nninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Ustawienia" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Status systemu" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Dodatki" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Podgląd" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Zapisz" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "pozostało znaków" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Nie pokazuj tych warunków" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Zapisz Opcje" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Podgląd formularza" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Uaktualnij do wtyczki Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Możesz skorzystać z uaktualnienia do wtyczki Ninja Forms THREE Release " "Candidate! %sUaktualnij teraz%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "Wtyczka THREE będzie dostępna wkrótce!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Wkrótce zostanie udostępniona poważna aktualizacja wtyczki Ninja Forms. " "%sDowiedz się więcej na temat nowych funkcji i zgodności ze starszymi " "wersjami oprogramowania oraz przeczytaj często zadawane pytania.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Co słychać?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Dziękujemy za używanie wtyczki Ninja Forms! Mamy nadzieję, że spełniła ona " "Twoje oczekiwania. W razie pytań:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Zapoznaj się z naszą dokumentacją" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Uzyskaj pomoc" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Edytuj Element Menu" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Wybierz wszystko" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Dodaj Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Jaką nazwę nadać temu ulubionemu elementowi?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Musisz nadać nazwę temu ulubionemu elementowi." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Czy naprawdę dezaktywować wszystkie licencje?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Czy zresetować proces konwersji formularzy dla wersji 2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Czy podczas dezinstalacji usunąć WSZYSTKIE dane wtyczki Ninja Forms?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Edytuj formularz" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Zapisano" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Zapisywanie..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Czy usunąć to pole? Zostanie usunięte, nawet gdy nie zapiszesz." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Zobacz zgłoszenia" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Przetwarzanie" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Przetwarzanie" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Wczytuję..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Nie określono działania..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Proces rozpoczęty, prosimy o cierpliwość. To może potrwać kilka minut. " "Zostaniesz automatycznie przekierowany po jego zakonczeniu." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Zapraszamy do Ninja formy %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Dziękujemy za aktualizację! Wtyczka Ninja Forms %s jeszcze bardziej ułatwia " "tworzenie formularzy." #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Zapraszamy do Ninja formy" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Lista zmian Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Wprowadzenie do Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Autorzy Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Co nowego" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Wprowadzenie" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Autorzy" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Wersja: %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Uproszczone i oferujące więcej możliwości środowisko tworzenia formularzy." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Nowa karta kreatora" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Podczas tworzenia i edytowania formularzy można przejść bezpośrednio do " "najważniejszej sekcji." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Lepsza organizacja ustawień pól" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Najczęściej używane ustawienia są widoczne od razu. Pozostałe, mniej ważne " "ustawienia, znajdują się w rozwijanych sekcjach." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Większa przejrzystość" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Zastąpiliśmy karty „Utwórz formularz” oraz „Powiadomienia” kartą „Wiadomości " "e-mail i działania”. Ten tytuł ściślej informuje o tym, co można robić na tej karcie." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Usuń wszystkie dane wtyczki Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Dodaliśmy możliwość usunięcia wszystkich danych wtyczki Ninja Forms " "(przesyłanych elementów, formularzy, pól, opcji) podczas jej usuwania. " "Nazywamy tę możliwość opcją nuklearną." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Lepsze zarządzanie licencjami" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Licencje rozszerzeń wtyczki Ninja Forms można dezaktywować na karcie ustawień " "pojedynczo lub jako grupę." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "I dużo więcej." #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Aktualizacje interfejsu w tej wersji stanowią podstawę do rozbudowy wtyczki w " "przyszłości. Oparte na nich usprawnienia wprowadzone w wersji 3.0 wtyczki " "Ninja Forms sprawią, że będzie ona jeszcze bardziej stabilnym, zapewniającym " "więcej możliwości i przyjaznym dla użytkownika kreatorem formularzy." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Dokumentacja" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Zapoznaj się ze szczegółową dokumentacją wtyczki Ninja Forms poniżej." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Dokumentacja wtyczki Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Uzyskaj pomoc techniczną" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Powrót do Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Zobacz pełny Changelog" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Pełna lista zmian" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Przejdź do Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Użyj porad na dole aby rozpocząć swoją przygodę z Ninja Forms. Już niebawem " "będziesz w pełni wykorzystywał pełne możliwości." #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Formularze w centrum uwagi" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Menu Formularze jest punktem dostępu do wszystkich ustawień wtyczki Ninja " "Forms. Utworzyliśmy już pierwszy przykładowy %sformularz kontaktowy%s. " "Formularz można też utworzyć samodzielnie, klikając opcję %sDodaj nowy%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Utwórz formularz" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Tutaj można utworzyć własny formularz, dodając pola i przeciągając je, aby " "ustawić kolejność ich wyświetlania. W przypadku każdego pola jest dostępnych " "wiele opcji, na przykład etykieta, pozycja etykiety i element zastępczy." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Wiadomości e-mail i działania" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Aby otrzymać powiadomienie e-mail, gdy użytkownik kliknie w formularzu " "przycisk Prześlij, możesz włączyć odpowiednią funkcję na tej karcie. Możesz " "utworzyć nieograniczoną liczbę wiadomości e-mail, w tym wiadomości e-mail " "wysyłanych do użytkownika, który wypełnił formularz." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Na tej karcie znajdują się ogólne ustawienia formularza, na przykład tytuł i " "metoda przesyłania, a także ustawienia wyświetlania, na przykład ukrywanie " "formularza po jego wypełnieniu." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Wyświetlanie formularza" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Dołącz do strony" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "W obszarze Podstawowe działanie formularza w Ustawieniach formularzy możesz " "wybrać stronę, na końcu której ma zostać automatycznie dodany formularz. " "Podobna opcja jest dostępna na pasku bocznym każdego ekranu edycji zawartości." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Shortcode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Umieść element %s w dowolnym obszarze obsługującym kody, aby formularz był " "wyświetlany w wybranym miejscu. Nawet w środku zawartości strony lub wpisu." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Wtyczka Ninja Forms udostępnia widget, który można umieścić w dowolnym " "obszarze witryny obsługującym widgety. Następnie można wybrać formularz, " "który ma być wyświetlany w tym obszarze." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Funkcja Szablonu" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Wtyczka Ninja Forms jest też dostarczana z prostą funkcją szablonu, która " "może zostać umieszczona bezpośrednio w pliku szablonu php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Potrzebujesz pomocy?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Wciaż rozwijana dokumentacja" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Dostępna jest dokumentacja obejmująca pełną gamę zagadnień: od " "%srozwiązywania problemów%s po nasz %sinterfejs API dla programistów%s. Stale " "są dodawane nowe dokumenty." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Najlepsze wsparcie w biznesie" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Dokładamy wszelkich starań, aby zapewnić każdemu użytkownikowi wtyczki Ninja " "Forms najlepszą możliwą pomoc techniczną. Jeśli napotkasz problem lub " "będziesz mieć pytanie, %sskontaktuj się z nami%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Dziękuję za aktualizację do najnowszej wersji! Ninja Forms %s jest gotowe " "uczyniś Twoje doświadczenie zarządzania formularzami przyjemnym!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms jest tworzony przez zespół na twórców, którzy mają na celu " "zapewnienie Wspólnocie WordPress najlepszej wtyczki do tworzenia formularzy." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Nie znaleziono prawidłowego dziennika zmian." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Zobacz %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Wyłącz autouzupełnianie w przeglądarce" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sZaznaczone%s — wartość obliczenia" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Ta wartość zostanie użyta w przypadku ustawienia %sZaznaczone%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sNiezaznaczone%s — wartość obliczenia" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Ta wartość zostanie użyta w przypadku ustawienia %sNiezaznaczone%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Dodać do auto-sumy? (Jeżeli aktywne)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Własne klasy CSS" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Przed Wszystkim" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Przed etykietą" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Po etykiecie" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Po wszystkim" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Jeżeli \"tekst opisu\" jest właczony, dodany zostanie znak zapytania %s obok " "pola formularza. Wskazanie tego znaku ujawni tekst." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Dodaj opis" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Pozycja opisu" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Zawartość opisu" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Jeżeli \"tekst pomocy\" jest właczony, dodany zostanie znak zapytania %s obok " "pola formularza. Wskazanie tego znaku ujawni tekst." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Pokaż tekst pomocy" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Tekst pomocy" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Jeśli to pole pozostanie puste, limity nie będą stosowane" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Ogranicz wprowadzanie do tej wartości" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "z" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Znaków" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Słów" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Tekst wyświetlany po liczniku znaków/słów" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Na lewo od elementu" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Ponad elementem" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Pod elementem" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Na prawo od elementu" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Wewnątrz elementu" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Pozycja etykietki" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "ID pola" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Ustawienia ograniczeń" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Ustawienia obliczania" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Usuń" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Zaczytaj z taksonomii (kategoria / tag)" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Brak" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Wypełniacz" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Wymagane" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Zapisz ustawienia" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sortowanie jako liczbowe" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Jeśli to pole wyboru jest zaznaczone, ta kolumna w tabeli zgłoszeń zostanie " "posortowana według numeru." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Etykiety Administratora" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Ta etykieta jest używana podczas przeglądania/edycji/eksportu zgłoszenia." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Dane do faktury" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Dane do dostawy" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Własne" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Grupa pól informacji użytkownika" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Grupa pół własnych" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Prosimy o podanie tej informacji, żądając pomocy:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Pobierz raport systemowy" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Środowisko" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Adres URL strony głównej" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Adres URL strony" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Wersja Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Wersjia WP" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite włączone" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Tak" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Nie" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Informacje o serwerze sieci Web" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Wersja PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Wersja MySQL" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Locale" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Limit pamięci WP" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Tryb debugowania WP" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Język WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Domyślnie" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Max rozmiar uploadu" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max rozmiar" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Maksymalny wejściowy poziom zagnieżdżenia" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Limit czasu wykonywania" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max input vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Zainstalowane" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Domyślna strefa czasowa" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Domyślna strefa czasowa to % s - powinno być UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Domyślnie strefa czasowa to %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Twój serwer ma włączone fsockopen i cURL." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Twój serwer ma włączony fsockopen lecz cURL jest wyłączony." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Twój serwer ma włączone cURL lecz fsockopen jest wyłączona." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Twóje serwer nie posiada włączonej obsługi cURL ani fsockopen - PayPal i inne " "skrypty komunikujące się z serwerem nie będą działać. Skontaktuj się ze swoim usługodawcą." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Client SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Twój serwer ma włączoną klasę obsługi SOAP" #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Na serwerze nie włączono klasy %sSOAPClient%s. Niektóre wtyczki bramy " "korzystające z protokołu SOAP mogą nie działać zgodnie z oczekiwaniami." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() zakończył się sukcesem - PayPal IPN pracuje." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() nie powiodło się. PayPal IPN nie będzie działać z Twoim " "serwerem. Skontaktuj się z dostawcą usług hostingowych. Błąd:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() nie powiodło się. PayPal IPN może nie działać z Twoim serwerem." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Wtyczki" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Zainstalowane wtyczki" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Odwiedź stronę domową wtyczki" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "przez" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "wersja" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Nadaj formularzowi tytuł. Dzięki temu będzie można go później znaleźć." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Do formularza nie dodano przycisku przesyłania." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Maska wprowadzania" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Dowolny znak, który umieścisz w polu \"niestandardowa maska\", i którego nie " "ma na liście poniżej zostanie automatycznie wprowadzony za użytkownika i nie " "będzie można go usunąć." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "To są predefiniowane maski znaków" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "a - reprezentuje litery (A–z, a–z) - pozwala wprowadzać tylko litery" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "9 - reprezentuje cyfrę (0-9) - pozwala tylko wprowadzać tylko cyfry" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - reprezentuje znaki alfanumeryczne (A-Z, a-z, 0-9) - to pozwala być " "wpisane cyfry i litery" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Aby na przykład utworzyć maskę dla amerykańskiego numeru ubezpieczenia " "społecznego, wpisz w polu 999-99-9999" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "9 reprezentuje liczbę, a - zostaną dodane automatycznie" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "To zapobiegnie umieszczaniu innych treści niż liczby" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Można również połączyć te rozwiązania dla konkretnych zastosowań" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Na przykład, jeśli masz pewien klucz formie A4B51.989.B.43C, ty może dodać " "maskę z: a9a99.999.a.99a, co wymusi wstawienie liczb w pole zajęte przez 9 i " "liter w pole zajęte przez a." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Zdefiniowane pola" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Ulubione pola" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Pola płatności" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Szablon pola" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Informacja o użytkowniku" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Wszystkie" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Działania masowe" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Zatwierdź" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formularzy na stronie" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Idź" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Idź do pierwszej strony" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Przejdź do poprzedniej strony" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Bieżąca strona" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Przejdź do następnej strony" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Idź do ostatniej strony" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Tytuł Formularza" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Usuń ten formularz" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplikuj formularz" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formularze usunięte" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formularz usunięty" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Podgląd" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Wyświetlanie" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Wyświetl tytuł formularza" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Dodaj formularz do tej strony" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Wyślij przez AJAX (bez przeładowania strony)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Wyczyść pomyślnie wysłane formularze?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Jeśli to pole wyboru jest zaznaczone, Ninja Forms wyczyść wartości " "formularza, który został pomyślnie przesłany." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Ukryj pomyślnie wypełniony formularz?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Jeśli to pole wyboru jest zaznaczone, Ninja Forms ukryje formularz po tym " "jak został pomyślnie przesłany." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Ograniczenia" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Wymagaj, by użytkownik był zalogowany aby zobaczyć formularz?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Komunikat o braku zalogowania się" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Komunikat wyświetlany, gdy powyższe pole wyboru „zalogowany” jest zaznaczone, " "a użytkownik nie jest zalogowany." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limit zgłoszeń" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Wybierz liczbę zgłoszeń, które przyjmie ten formularz. Pozostaw puste dla " "braku limitu." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Komunikat po osiągnięciu limitu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Wprowadź wiadomość, która ma być wyświetlana, kiedy ten formularz osiągnie " "limit zgłoszeń i nie przyjmuje nowych zgłoszeń." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Zapisano ustawienia" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Podstawowe ustawienia" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Podstawowa pomoc Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Rozszerz Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Dokumentacja już wkrótce." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktywna" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Zainstalowany" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Dowiedz się więcej" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Kopie zapasowe i przywracanie" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Kopia zapasowa Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Przywracanie Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Dane zostały przywrócone!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Zaimportuj Ulubione Pola" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Wybierz plik" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Zaimportuj ulubione" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Brak Ulubionych Pól" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Eksportowanie ulubionych pól" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Eksportuj" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Wybierz ulubione pola do wyeksportowania." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Ulubione zostały zaimportowane pomyślnie." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Proszę wybrać poprawny zestaw ulubionych pól." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Zaimportuj formularz" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importuj formularz" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Eksportuj formularz" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Eksport formularza" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Wybierz formularz." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formularz zaimportowany pomyślnie." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Proszę wybrać poprawny plik eksportu formularza." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Import / eksport zgłoszeń" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Ustawienia daty" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Ogólne" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Ustawienia ogólne" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Wersja" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Format daty" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Pomimo starań zachowania zgodności ze specyfikacją %sfunkcji PHP date()%s nie " "każdy format jest obsługiwany." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Symbol waluty" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Ustawienia usługi reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Klucz witryny usługi reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Uzyskaj klucz witryny dla domeny, rejestrując się %stutaj%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Klucz tajny usługi reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Język usługi reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Język używany przez reCAPTCHA. Aby uzyskać kod dla języka, kliknij %stutaj%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Jeśli to pole jest zaznaczone, podczas usuwania wtyczki Ninja Forms WSZYSTKIE " "dane wtyczki zostaną usunięte z bazy danych. %sNie będzie można przywrócić " "żadnych danych formularzy i przesyłanych elementów.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Wyłącz powiadomienia dla administratora" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Na panelu nie będą wyświetlane powiadomienia dla administratora wysyłane " "przez wtyczkę Ninja Forms. Aby były one ponownie wyświetlane, anuluj " "zaznaczenie tej opcji." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "To ustawienie spowoduje CAŁKOWITE usunięcie wszystkich danych związanych z " "wtyczką Ninja Forms podczas usuwania tej wtyczki. Dotyczy to także " "PRZESYŁANYCH ELEMENTÓW i FORMULARZY. Nie można cofnąć tej operacji." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Dalej" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Zapisano ustawienia" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etykiety" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Etykiety wiadomości" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Etykieta wymaganego pola" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Symbol pola wymaganego" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Komunikat o błędzie, jeśli wszystkie wymagane pola nie są wypełnione." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Nie wypełniono obowiązkowego pola" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Komunikat o błędzie anty-spam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Komunikat o błędzie \"honeypot\" (ukryte pole, które powinno zostać puste)" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Komunikat błedu upływu czasu" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Komunikat błedu o wyłączonej obsłudze JS" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Wprowadź poprawny adres email" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Etykieta przetwarzania zgłoszenia" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Ten komunikat jest wyświetlany wewnątrz przycisku Prześlij gdy użytkownik " "kliknie przycisk \"Prześlij\"." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Etykieta komunikatu błędnego powtórzenia hasła." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Ten komunikat jest wyświetlany użytkownikowi kiedy błędnie powtórzy hasło." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licencje" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Zapisz i aktywuj" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Dezaktywuj wszystkie licencje" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Aby aktywować licencję rozszerzenia wtyczki Ninja Forms, najpierw " "%szainstaluj i aktywuj%s wybrane rozszerzenie. Ustawienia licencji zostaną " "wyświetlone poniżej." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Resetowanie konwersji formularzy" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Resetowanie konwersji formularza" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Jeśli po aktualizacji do wersji 2.9 „brakuje” formularzy, kliknięcie tego " "przycisku spowoduje podjęcie próby ponownego przekonwertowania starych " "formularzy, aby były widoczne w wersji 2.9. Wszystkie bieżące formularze " "pozostaną w tabeli „Wszystkie formularze”." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Wszystkie bieżące formularze pozostaną w tabeli „Wszystkie formularze”. W " "niektórych przypadkach podczas tego procesu część formularzy może zostać zduplikowana." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "E-mail administratora" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "E-mail użytkownika" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Wtyczka Ninja Forms musi uaktualnić powiadomienia dotyczące formularzy. " "Kliknij %stutaj%s, aby rozpocząć uaktualnianie." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Wtyczka Ninja Forms musi uaktualnić ustawienia e-mail. Kliknij %stutaj%s, aby " "rozpocząć uaktualnianie." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Wtyczka Ninja Forms musi uaktualnić tabelę przesyłanych elementów. Kliknij " "%stutaj%s, aby rozpocząć uaktualnianie." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "Dziękuję za aktualizację do wersji 2.7 Ninja Forms. " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Wersja rozszerzenia Ninja Forms - File Upload - jest niekompatybilna z wersją " "2.7 Ninja Forms. Zaktualizuj do wersji 1.3.5." #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Wersja rozszerzenia Ninja Forms - Save Progress - jest niekompatybilna z " "wersją 2.7 Ninja Forms. Zaktualizuj do wersji 1.1.5." #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Aktualizowanie bazy danych formularzy" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Wtyczka Ninja Forms musi uaktualnić ustawienia formularzy. Kliknij %stutaj%s, " "aby rozpocząć uaktualnianie." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Przetwarzanie uaktualniania wtyczki Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sSkontaktuj się z pomocą techniczną%s i zgłoś powyższy błąd." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Wtyczka Ninja Forms ukończyła przeprowadzanie wszystkich dostępnych uaktualnień." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Przejdź do wtyczki Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Uaktualnienie wtyczki Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Aktualizuj" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Uaktualnienia zostały ukończone" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Wtyczka Ninja Forms musi przetworzyć uaktualnienia (%s). Ukończenie tej " "operacji może potrwać kilka minut. %sRozpocznij uaktualnianie%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Krok %d z około %d" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Status systemu Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Wskaźnik siły" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Bardzo słabe" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Słabe" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Średnio" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Mocne" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Niezgodność" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "-Wybierz jeden" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Jeśli jesteś człowiekiem i widzisz to pole, pozostaw je puste." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Pola wymagane są oznaczone *" #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "To pole jest wymagane" #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Proszę wypełnić wszystkie wymagane pola *" #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Obliczenia" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Liczba miejsc dziesiętnych." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Pole tekstowe" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Wyświetl obliczenia jako" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etykieta" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Wyłącz pole?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Aby wstawić wynik ostatecznego obliczenia użyj natępujący shortcode: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "W tym miejscu możesz wprowadzać równania obliczeń przy użyciu elementu " "field_x, gdzie x to identyfikator pola, którego chcesz użyć. Na przykład " "%sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Dodając nawiasy, można tworzyć złożone równania: %s( field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Proszę korzystać z tych operatorów: + - * /. To jest zaawansowany cecha. " "Uważaj na takie rzeczy jak dzielenie przez 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automatycznie obliczanie sum" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Określić operacje i pola (Zaawansowane)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Użyh równania (Zaawansowane)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Metoda obliczania" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Operacje na polu" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Dodaj operacje" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Zaawansowane równanie" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Nazwa obliczeń" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "To jest systemowa nazwa pola. Przykłady: my_calc, price_total, user-total" #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Wartość domyślna" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Własne klasy CSS:" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Wybierz pole" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Pole zaznaczenia" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Niezaznaczone" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Zaznaczone" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Pokaż to" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Ukryj to" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Zmień wartość" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afganistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algieria" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Samoa Amerykańskie" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andora" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarktyda" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua i Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentyna" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbejdżan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamy" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrajn" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesz" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Białoruś" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgia" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermudy" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Boliwia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bośnia i Hercegowina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Island" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brazylia" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Brytyjskie Terytorium Oceanu Indyjskiego" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bułgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Kambodża" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Kamerun" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Kanada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Republika Zielonego Przylądka" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Kajmany" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Republika Południowej Afryki" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Czad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Chiny" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Wyspa Wielkanocna" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Wyspy Kokosowe" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Kolumbia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Komory" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Kongo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Demokratyczna Republika Konga" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Wyspy Cooka" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Kostaryka" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Wybrzeże Kości Słoniowej" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Chorwacja (nazwa regionalna: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Kuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cypr" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Czechy" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Dania" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Dżibuti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominika" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominikana" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor Wschodni" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ekwador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egipt" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "Salwador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Gwinea Równikowa" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Erytrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falklandy" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Wyspy Owcze" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fidżi" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlandia" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Francja" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Francja, Metropolie" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Gujana Francuska" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polinezja Francuska" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Francuskie Terytoria Południowe i Antarktyczne" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Gruzja" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Niemcy" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grecja" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Grenlandia" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Gwadelupa" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Gwatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Gwinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Gwinea Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Gujana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Wyspy Heard i McDonalda" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Watykan" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hongkong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Węgry" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islandia" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Indie" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonezja" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Islamska Republika)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlandia" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Izrael" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Włochy" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamajka" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japonia" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordania" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazachstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenia" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Koreańska Republika Ludowo-Demokratyczna" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Republika Korei" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwejt" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirgistan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laotańska Republika Ludowo-Demokratyczna" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Łotwa" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Liban" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libijska Arabska Dżamahirijja" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Litwa" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luksemburg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Makau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Była Jugosłowiańska Republika Macedonii" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagaskar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malezja" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Malediwy" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Wyspy Marshalla" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martynika" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauretania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Majotta" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Meksyk" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Sfederowane Stany Mikronezji" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Republika Mołdawii" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monako" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Czarnogóra" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Maroko" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambik" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Birma" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Holandia" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antyle Holenderskie" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nowa Kaledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nowa Zelandia" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nikaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Wyspa Norfolk" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Mariany Północne" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norwegia" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua-Nowa Gwinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paragwaj" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filipiny" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polska" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugalia" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Portoryko" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Katar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Rumunia" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Rosja" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts i Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent i Grenadyny" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Wyspy Świętego Tomasza i Książęca" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Arabia Saudyjska" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seszele" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapur" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Słowacja (Republika Słowacka)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Słowenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Wyspy Salomona" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Republika Południowej Afryki" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Georgia Południowa i Sandwich Południowy" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Hiszpania" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Wyspa Świętej Heleny" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint-Pierre i Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Surinam" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard i Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Suazi" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Szwecja" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Szwajcaria" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syryjska Republika Arabska" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Tajwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tadżykistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Zjednoczona Republika Tanzanii" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Tajlandia" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trynidad i Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunezja" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turcja" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Wyspy Turks i Caicos" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraina" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Zjednoczone Emiraty Arabskie" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Wielka Brytania" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Stany Zjednoczone" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Dalekie Wyspy Mniejsze Stanów Zjednoczonych" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Urugwaj" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Wenezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Wietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Brytyjskie Wyspy Dziewicze" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Amerykańskie Wyspy Dziewicze" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis i Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Sahara Zachodnia" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Jemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Jugosławia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Kraj" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Domyślnie Kraj" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Użyj niestandardowej opcji" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Niestandardowa opcja" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sudan Południowy" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Karta kredytowa" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etykietka pola na numer karty" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Numer karty" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Opis numeru karty" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "(Zazwyczaj) 16 cyfr na pierwszej stronie Twojej karty kredytowej." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Etykieta kodu CVC" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Opis kodu CVC " #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "3-cyfrowy (z tyłu) lub 4 cyfry (przód) numer na karcie." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Etykietka pola na nazwę karty" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Nazwa karty" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Opis nazwy karty" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Nazwa wydrukowane na przedniej stronie Twojej karty kredytowej." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Etykieta miesiąca ważności karty" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Miesiąc wygaśnięcia (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Opis miesiąca wygaśnięcia karty" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Miesiąc, w którym twój karta kredytowa wygasa, zazwyczaj na awersie karty." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etykieta roku ważności karty" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Rok wygaśnięcia (RRRR)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Opis rok ważności karty" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Roku, w którym karta kredytowa wygasa, zazwyczaj na awersie karty." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Tekst" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Element tekstowy" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Ukryte pole" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Identyfikator użytkownika (jeśli jest zalogowany)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Imię użytkownika (jeśli jest zalogowany)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Nazwisko użytkownika (jeśli jest zalogowany)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Nazwa użytkownika (jeśli jest zalogowany)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "E-mail użytkownika (jeśli jest zalogowany)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "ID strony / postu (jeśli dostępne)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Tytuł strony / postu (jeśli dostępne)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Adres URL strony / postu (jeśli dostępne)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Dzisiejsza data" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Zmienna ciągu znaków zapytania" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "To słowo kluczowe jest zastrzeżone przez WordPress. Spróbuj użyć innego." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Czy to jest adres e-mail?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Jeśli to pole wyboru jest zaznaczone, Ninja Forms będzie traktował to pole " "jako e-mail (na potrzeby validacji)." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Wyślij kopię formularza na ten adres?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Jeśli to pole wyboru jest zaznaczone, Ninja Forms wyśle kopię tego formularza " "(i wszelkie wiadomości dołączone) na ten adres." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "HR" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Lista" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "To jest stan użytkownika" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Wybrana wartość" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Dodaj wartość" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Usuń wartość" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Obliczenia" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Rozwijana" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Przełączniki (radio)" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Pola wyboru (checkbox)" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Wybór wielokrotny" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Typ listy" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Rozmiar pola wielokrotnego wyboru" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importowanie listy elementów" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Pokaż wartości elementów listy" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Import" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Aby użyć tej funkcji, wklej CSV do pola tekstowego powyżej." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Format powinien wyglądać następująco:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Etykieta,Wartość,Obliczenie" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Jeżeli nie chcesz wysyłać vartości lub obliczeń, wpisz '' (dwa pojedyncze cudzysłowia)." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Wybrane" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Liczba" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Wartość minimalna" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Wartość maksymalna" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Krok (przyrost)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizator" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Hasło" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Użyj tego jako pole hasła podczas rejestracji" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Jeżeli to pole jest zaznaczone wyświetlone zostanie pole na hasło i " "powtórzenie hasła." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Etykieta pola na wprowadzenie hasła ponownie" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Wprowadź ponownie hasło." #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Pokaż wskaźnik siły hasła" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Podpowiedź: Hasło powinno składać się z co najmniej siedmiu znaków. Aby " "uczynić je silniejszym, użyj wielkich i małych liter, cyfr i symboli, jak ! " ""? $% ^ &)." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Hasła nie są identyczne" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Ocena" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Liczba gwiazdek" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Potwierdź, że jesteś człowiekiem" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Wypełnij pole captcha" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Upewnij się, że poprawnie wprowadzono klucz witryny i klucz tajny" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Niezgodna treść pola Captcha. Wprowadź prawidłową wartość w polu captcha" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Pytanie spam" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Odpowiedź" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Prześlij" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Podatek" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Podatek (wartość procentowa)" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Powinno być wprowadzone jako procent. np. 8,25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Pole tekstowe" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Pokaż edytor tekstu sformatowanego" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Pokaż przycisk wgrywnaia multimediów" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Wyłącz edytor tekstu sformatowanego dla urządzeń mobilnych." #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Sprawdzić poprawność adresu e-mail? (Pole musi być wymagane)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Wyłącz wprowadzanie danych" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Data" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefon - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Waluta" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Definicja własnej maski" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Pomoc" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Limit czasu" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Tekst na przycisku wysłania po upływie czasu" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Proszę odczekać %n sekund" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n będzie używany do oznaczenie liczby sekund" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Liczba sekund do odliczania" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Tak długo użytkownik musi poczekać przed wysłaniem formularza" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Jeśli jesteś człowiekiem, proszę odczekaj chwilę." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Do przesłania tego formularza konieczna jest aktywna obsługa JavaScript" #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Mapowanie pola listy" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Grupy interesów" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Pojedyncze" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Wiele" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listy" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Odśwież" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Pole metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Pole metabox przesyłanego elementu" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Metadane użytkownika (zalogowany)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Odbierz płatność" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Nie znaleziono formularzy." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Data utworzenia" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "tytuł" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "zaktualizowano" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Idźcie się pobawić gdzie indziej, dzieciaki" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Element nadrzędny:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Wszystkie elementy" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Dodaj nowy element" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nowy element" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Edytuj element" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Aktualizuj element" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Wyświetl element" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Wyszukaj element" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Nie znaleziono w koszu" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Przesłane formularze" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Informacje o przesłanym elemencie" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Dodaj nowy formularz" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Błąd importu szablonu formularza" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Formularze" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Przesłany plik nie ma prawidłowego formatu." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Przesłano nieprawidłowy formularz." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importuj formularze" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Eksportuj formularze" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Równanie (zaawansowane)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operacje i pola (zaawansowane)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Pola automatycznej sumy" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Rozmiar przesyłanego pliku wykracza poza dyrektywę upload_max_filesize w pliku php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Rozmiar przesyłanego pliku wykracza poza dyrektywę MAX_FILE_SIZE określoną w " "formularzu HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Przesyłany plik został przesłany tylko częściowo." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Nie załadowano żadnego pliku." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Brak folderu tymczasowego." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Błąd przy zapisie pliku na dysku." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Ładowanie pliku zatrzymane przez wtyczkę lub rozszerzenie." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Nieznany błąd przesyłania." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Błąd podczas przesyłania pliku" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Licencje dodatków" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migracje i dane symulowane gotowe. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Wyświetl formularze" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Zapisz opcje" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Adres IP serwera" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Nazwa hosta" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Dodaj formularz Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Nie znaleziono formularza" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Nie znaleziono pola" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Wystąpił nieoczekiwany błąd." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Podgląd nie jest dostępny." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Bramki płatności" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Suma płatności" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Znacznik elementu hook" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Wpisz adres e-mail lub wyszukaj pole" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Wpisz temat lub wyszukaj pole" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Dołącz plik CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Image path (URL)" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Miejsce na etykietę" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Miejsce na tekst pomocy" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Wpisz etykietę pola formularza. Dzięki temu użytkownicy będą mogli " "identyfikować poszczególne pola." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Formularz domyślny" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Ukryty" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Wybierz pozycję etykiety względem elementu pola." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Pole wymagane" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Zanim zezwolisz na przesłanie formularza, upewnij się, że to pole jest wypełnione." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Opcje liczb" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min." #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max." #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Krok" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Ustawienia" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Jeden" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "jeden" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Dwa" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "dwa" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Trzy" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "trzy" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Wartość obliczenia" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Ogranicza rodzaj danych wprowadzanych przez użytkowników w tym polu." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "żadna" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Numer telefonu w USA" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "niestandardowy" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Niestandardowa maska" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a — reprezentuje znak litery (A–Z,a–z) " "— można wprowadzać tylko litery.
    • \n
    • 9 — " "reprezentuje cyfrę (0–9) — można wprowadzać tylko " "cyfry.
    • \n
    • * — reprezentuje znak " "alfanumeryczny (A–Z,a–z,0–9) — można wprowadzać zarówno " "cyfry,\n jak i " "litery.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Ogranicz wprowadzanie danych do tej liczby" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Znaki" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Słowa" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Tekst wyświetlany po liczniku" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "zn. pozostało" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Wprowadź tekst, który ma być wyświetlany w polu, zanim użytkownik wprowadzi dane." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Niestandardowe nazwy klas" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Kontener" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Dodaje dodatkową klasę do wrappera pola." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Dodaje dodatkową klasę do elementu pola." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "RRRR-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Piątek, 18 listopada, 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Ustaw jako domyślną datę bieżącą" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Liczba sekund, po których będzie możliwe przesłanie." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Klucz pola" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Tworzy unikatowy klucz służący do identyfikowania i ustawiania jako cel pola " "na potrzeby niestandardowego tworzenia formularzy." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Etykieta używana podczas wyświetlania i eksportowania przesyłanych elementów." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Wyświetlane dla użytkowników jako element hover." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Opis" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sortuj jako wartość liczbową" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Ta kolumna w tabeli przesyłanych elementów będzie sortowana według wartości liczbowej." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Liczba sekund licznika" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Użyj jako pola hasła rejestracji. Jeśli to pole jest zaznaczone, " "pola\n tekstowe hasła i ponownego wprowadzania hasła " "będą zawierały dane wyjściowe" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Potwierdź" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Zezwól na wprowadzanie tekstu sformatowanego." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Etykieta przetwarzania" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Zaznaczone — wartość obliczenia" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Ta wartość liczbowa będzie używana w obliczeniach, gdy pole jest zaznaczone." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Niezaznaczone — wartość obliczenia" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Ta wartość liczbowa będzie używana w obliczeniach, gdy pole nie jest zaznaczone." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Wyświetl tę zmienną obliczenia" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Wybierz zmienną" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Cena" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Liczba użyć" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Zezwala użytkownikom na wybranie tego produktu więcej niż raz." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Typ Produktu" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Jeden produkt (domyślnie)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Wiele produktów — lista rozwijana" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Wiele produktów — wybierz wiele" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Wiele produktów — wybierz jeden" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Wpis użytkownika" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Koszt" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Opcje kosztów" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Pojedynczy koszt" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Lista rozwijana kosztu" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Typ kosztu" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produkt" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Wybierz produkt" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Odpowiedź" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Odpowiedź, w której jest rozróżniana wielkość liter. Pomaga w zapobieganiu wysyłania spamu przy użyciu formularza." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taksonomia" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Dodaj nowe terminy" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "To stan użytkownika." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Służy od oznaczania pola w celu przetworzenia." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Zapisane pola" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Często używane pola" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Pola dotyczące informacji o użytkowniku" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Pola dotyczące cen" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Pola układu" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Różne pola" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Formularz został przesłany." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Przesyłanie formularzy Ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Zapisz formularz" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Nazwa zmiennej" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Bilans" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Domyślna pozycja etykiety" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Klucz formularza" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Nazwa programistyczna, której można używać w odniesieniu do tego formularza." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Dodaj przycisk Prześlij" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Formularz nie zawiera przycisku Prześlij. Może on zostać dodany automatycznie." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Zalogowano" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Nie dotyczy podglądu formularza." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Limit przesyłania" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "NIE dotyczy podglądu formularza." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Wyświetl ustawienia" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Obliczenia" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Cena:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Liczba:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Dodaj" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Otwórz w nowym oknie" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Jeśli jesteś człowiekiem i widzisz to pole, nie wypełniaj go." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Dostępne" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Wprowadź prawidłowy adres e-mail!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Te pola muszą się zgadzać!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Błąd — liczba minimalna" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Błąd — liczba maksymalna" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Zwiększ o " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Wstaw łącze" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Wstaw multimedia" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Popraw błędy, zanim prześlesz ten formularz." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Błąd Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Przesyłanie pliku w toku." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "PRZESYŁANIE PLIKU" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Wszystkie pola" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Podsekwencja" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "ID postu" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Tytuł posta" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL wpisu" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "Adresy IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "Identyfikator użytkownika" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Imie" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Nazwisko" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Wyświetlana nazwa użytkownika" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Style z opiniami" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Jasny" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Ciemne" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Użyj domyślnych konwencji stylu wtyczki Ninja Forms." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Wycofaj" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Wycofaj do wersji 2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Wycofaj do najnowszej wersji 2.9.x." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Ustawienia usługi reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Motyw usługi reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Edytor tekstu sformatowanego" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Zaawansowany" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administracja" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Puste formularze" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Kontakt" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Udawana akcja komunikatu o sukcesie" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Dziękuję Ci, {field:name}, za wypełnienie formularza!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Udawana akcja wiadomości e-mail" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "To akcja wiadomości e-mail." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Witaj, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Udawana akcja zapisu" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "To jest test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "To kolejny test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Uzyskaj pomoc" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "W czym możemy pomóc?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Zgadzasz się?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Najlepsza metoda kontaktu?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Numer telefonu" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Poczta tradycyjna" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Wyślij" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Zlew" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Wybierz listę" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Pierwsza opcja" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Druga opcja" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Trzecia opcja" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Lista przycisków opcji" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Umywalka" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Lista pól wyboru" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "To wszystkie pola w sekcji Informacje o użytkowniku." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Adres" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Miasto" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Kod pocztowy" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "To wszystkie pola w sekcji Cennik." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produkt (z ilością)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produkt (ilość osobno)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Liczba sztuk" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Suma" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Imię i nazwisko na karcie kredytowej" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Numer karty kredytowej" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Kod CVV karty kredytowej" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Data ważności karty kredytowej" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Kod pocztowy dla karty kredytowej" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "To różne pola specjalne." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Pytanie antyspamowe (Odpowiedź = odpowiedź)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "odpowiedź" #: includes/Database/MockData.php:805 msgid "processing" msgstr "przetwarzanie" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Długi formularz – " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Pola" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Pole nr" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Formularz subskrypcji e-mail" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Adres e-mail" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Wprowadź adres e-mail" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Subskrybuj" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Formularz produktu (z polem Ilość)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Zakup" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Zakupiono " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "prod. za " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Formularz produktu (ilość w treści)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " prod. za " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Formularz produktu (wiele produktów)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produkt A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Ilość produktu A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produkt B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Ilość produktu B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "produktu A i " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "produktu B za USD" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formularz z wyliczeniami" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Moje pierwsze wyliczenie" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Moje drugie wyliczenie" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Wyliczenia są zwracane w odpowiedzi AJAX (odpowiedź -> dane -> wyliczenia" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "kopia" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Zapisz formularz" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Kod pocztowy dla karty kredytowej" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Podgląd formularza jest dostępny po zalogowaniu." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Nie znaleziono żadnych pól." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Uwaga: kod wtyczki Ninja Forms jest używany bez określenia formularza." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "kod wtyczki Ninja Forms jest używany bez określenia formularza." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Adres 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Przycisk" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Jedno pole wyboru" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "zaznaczone" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "niezaznaczone" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Kod CVC karty kredytowej" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Rozdzielacz" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Jednokrotny wybór" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Stan/Województwo" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Tekst uwagi można edytować w ustawieniach zaawansowanych pola uwagi." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Uwaga" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Potwierdź hasło" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "hasło" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Wprowadź cały tekst recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Ustawienia zaawansowane wysyłki" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Pytanie" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Pozycja pytania" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Nieprawidłowa odpowiedź" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Liczba gwiazdek" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Lista terminów" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Brak dostępnych terminów dla tej taksonomii. %sDodaj termin%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Nie wybrano taksonomii." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Dostępne terminy" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Obszar tekstowy" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Pole tekstowe" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Kod" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Publikuj" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Ciągi znaków zapytania" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Ciąg znaków zapytania" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Użytkownik" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " wymaga aktualizacji. Zainstalowana jest wersja " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " . Aktualna wersja to " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Edytowanie pola" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Nazwa etykiety" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Powyżej pola" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Poniżej pola" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Z lewej strony pola" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Z prawej strony pola" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Ukryj etykietę" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Nazwa klasy" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Pola podstawowe" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Wielokrotny wybór" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Dodaj nowe pole" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Dodaj nową akcję" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Rozwiń menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Opublikuj" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "OPUBLIKUJ" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Ładowanie" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Wyświetl zmiany" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Dodaj pola formularza" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Zacznij od dodania pierwszego pola formularza." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Dodaj nowe pole" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Po prostu kliknij tutaj i wybierz pola." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "To takie łatwe. Albo..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Zacznij od szablonu" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Skontaktuj się z nami" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Daj użytkownikom możliwość kontaktu przy użyciu tego prostego formularza " "kontaktowego. Możesz dodawać i usuwać pola zgodnie z potrzebami." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Prośba o wycenę" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Ten szablon pozwoli Ci łatwo zarządzać prośbami o wycenę. Możesz dodawać i " "usuwać pola zgodnie z potrzebami." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Rejestracja na wydarzenia" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Ten prosty do wypełnienia formularz pozwoli użytkownikom zarejestrować się na " "Twoje następne wydarzenie. Możesz dodawać i usuwać pola zgodnie z potrzebami." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Formularz rejestracji na biuletyn" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Ten formularz rejestracji na biuletyn pozwoli Ci dodawać subskrybentów i " "rozwijać swoją listę e-mailową. Możesz dodawać i usuwać pola zgodnie z potrzebami." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Dodaj akcje do formularza" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Zacznij od dodania pierwszego pola formularza. Kliknij plus i wybierz akcje. " "To takie łatwe." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplikuj (^ + C + kliknięcie)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Usuń (^ + D + kliknięcie)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Działanie:" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Przełącz szufladę" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Pełny ekran" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Pół ekranu" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Cofnij" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Gotowe" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Cofnij wszystko" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Cofnij wszystko" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Już prawie..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Nie, jeszcze nie teraz" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Otwórz w nowym oknie" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Dezaktywuj" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Napraw to." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "— Wybierz formularz" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Data" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Zanim poprosisz nasz zespół pomocy technicznej o pomoc, przejrzyj te dokumenty:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Dokumentacja wtyczki Ninja Forms THREE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Co wypróbować przed kontaktem z pomocą techniczną" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Zakres pomocy technicznej" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importuj formularze" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Zaktualizowano: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Przesłano: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Przesłał(a): " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Data przesłania" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Zobacz" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Pokaż więcej" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Edytowanie pola" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Pola formularza" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Podgląd zmian" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Formularz kontaktowy" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Ups! Dodatek nie jest jeszcze zgodny z wtyczką Ninja Forms THREE. %sDowiedz " "się więcej%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "Dezaktywowano %s." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Pomóż nam ulepszyć Ninja Forms." #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Jeśli się zarejestrujesz, niektóre dane dotyczące Twojej instalacji Ninja " "Forms zostaną przesłane do NinjaForms.com (NIE dotyczy to przesyłanych zgłoszeń)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Możesz pominąć ten krok. Wtyczka Ninja Forms będzie nadal działać." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sZezwalaj%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sNie zezwalaj%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Nie masz uprawnień." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Odmowa uprawnień" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEBUG: Przejdź na 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEBUG: Przejdź na 3.0.x" lang/ninja-forms-ru_RU.po000064400000730416152331132460011315 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Помните: для этого контента требуется JavaScript." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Хакер что ли?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Поля, помеченные символом %s*%s, обязательны к заполнению" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Пожалуйста, заполните все обязательные поля." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Это обязательное поле." #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Пожалуйста, ответьте правильно на вопрос для защиты от спама." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Пожалуйста, оставьте поле “спам” пустым." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Пожалуйста, подождите, пока отправляется форма." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Вы не сможете отправить форму при отключении Javascript." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Введите действительный адрес электронной почты." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Обработка" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Пароли не совпадают." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Добавить форму" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Выберите форму или введите текст для поиска" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Отмена" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Вставить" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Неверный код формы" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Повышение показателя конверсий" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Знаете ли вы, что разбиение больших форм на меньшие, легко усваиваемые части " "помогает улучшить показатель конверсии?

    Это удобно делать при помощи " "расширения «Многоэлементные формы» для Ninja Forms.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Узнайте больше о многоэлементных формах" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Может быть, потом" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Пропустить" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Пользователи более охотно заполняют длинные формы, когда они могут сохранить " "изменения, а затем вернуться к этой работе и завершить ее позже. " "

    Расширение Save Progress для Ninja Forms позволяет сделать это легко и быстро.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Узнайте больше о расширении Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "E-mail" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Имя отправителя" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Имя или поля" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Письмо будет отправлено от этого имени." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Адрес отправителя" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Один адрес электронной почты или поле" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Письмо будет отправлено с этого адреса электронной почты." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "На" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Адреса электронной почты или поиск поля" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Кто должен быть адресатом этого письма?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Тема" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Текст темы или поиск поля" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Это будет темой письма." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Текст письма" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Вложения" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV заявки" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Расширенные настройки" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Формат" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Обычный текст" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Кому ответить" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Копия" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Скрытая копия" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Перенаправить" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL-адрес" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Сообщение об успешном выполнении" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Предыдущая форма" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Последующая форма" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Местонахождение" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Сообщение" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "дубликат" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Деактивировать" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Активировать" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Изменить" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Удалить" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Дублировать" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Имя" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Тип" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Дата обновления" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Просмотреть все типы" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Другие типы" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Электронные письма и действия" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Добавить новое" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Новое действие" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Изменить действие" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Вернуться к списку" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Название действия" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Другие действия" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Действие обновлено" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Выберите поле или введите данные для поиска" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Вставить поле" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Вставить все поля" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Выберите форму для просмотра заявок" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Заявки не найдены" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Заявки" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Отправка" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Добавить новую заявку" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Редактировать заявку" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Новая заявка" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Просмотреть заявку" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Поиск заявок" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Заявки не найдены в корзине" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "№" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Дата" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Редактировать эту позицию" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Экспортировать этот элемент" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Экспорт" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Переместить эту позицию в урну" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Урна" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Восстановить эту позицию из урны" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Восстановить" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Удалить эту позицию навсегда" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Удалить Навсегда" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Неопубликован" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s назад" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Отправлено" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Выбрать форму" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Начальная дата" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Дата окончания" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s обновлено." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Обновление\n \nнастраиваемого\n \nполя\n." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Настраиваемое\n \nполе\n \nудалено\n." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s восстановлена для пересмотра из %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s опубликовано." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s сохранено." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s отправлена. Предварительный просмотр %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s запланирована для: %2$s. Предварительный просмотр %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "Черновик%1$s обновлен. Предварительный просмотр %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Загрузить все заявки" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Вернуться к списку" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Введенные пользователем значения" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Статистика заявок" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Поле" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Значение" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Статус" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Форма" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Дата отправки" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Дата изменения" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Кем отправлено" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Обновить" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Дата отправки" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms нельзя активировать через сеть. Для активации плагина используйте " "панель управления на каждом сайте." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Вы найдете это в письме, относящемся к вашей покупке." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Ключ" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Не удалось активировать лицензию. Проверьте ваш лицензионный ключ" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Деактивировать лицензию" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Введенные пользователем значения:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Благодарим за заполнение этой формы." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Доступна новая версия %1$s. Просмотреть сведения о версии %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Доступна новая версия %1$s. Просмотреть сведения о версии %3$s или обновить." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "У вас нет разрешения на установку обновлений плагина" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Ошибка" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Стандартные поля" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Элементы компоновки" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Создание поста" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Пожалуйста, оцените плагин %sNinja Forms%s %s на %sвеб-сайте WordPress.org%s, " "чтобы помочь нам предоставлять этот плагин бесплатно. Спасибо от команды WP Ninjas!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Виджет Ninja Forms" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Отображать заголовок" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Отсутствует" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Формы" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Все формы" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Обновления Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Обновления" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Импорт/экспорт" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Импорт / Экспорт" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Настройки Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Настройки" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Состояние системы" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Дополнительные компоненты" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Предпросмотр" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Сохранить" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "символов осталось" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Не показывать эти условия" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Сохранить параметры" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Предварительный просмотр формы" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Обновление до Ninja Forms 3" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Вы имеете право выполнить обновление до версии-кандидата Ninja Forms 3! " "%sОбновить прямо сейчас%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "Выходит версия 3!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Выходит основное обновление для Ninja Forms. %sПолучите подробную информацию " "о новых возможностях и обратной совместимости, а также ознакомьтесь с часто " "задаваемыми вопросами.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Как идут дела?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Благодарим за использование Ninja Forms! Мы надеемся, что вы нашли все, что " "вам нужно, но если у вас есть какие-либо вопросы:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Ознакомьтесь с нашей документацией" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Получите помощь" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Редактировать пункт меню" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Выбрать Все" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Добавить Ninja Forms" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Как назвать этот элемент избранного?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Необходимо указать название для избранного." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Действительно деактивировать все лицензии?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Сбросить процесс преобразования для версии 2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Удалить ВСЕ данные Ninja Forms при удалении плагина?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Редактировать форму" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Сохранено" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Идет сохранение..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Удалить это поле? Оно будет удалено даже в том случае, если вы не сохраните форму." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Посмотреть заявки" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Обработка Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms – обработка" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Загрузка..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Никаких действий не указано..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Процесс запущен, пожалуйста, подождите. Это может занять несколько минут. По " "окончании процесса вы будете автоматически направлены на другую страницу." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Добро пожаловать в Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Благодарим за обновление! Ninja Forms %s позволяет создавать формы быстрее и " "проще, чем когда либо ранее!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Добро пожаловать в Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Список изменений Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Начало работы с Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Люди, которые создали Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Что нового" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Общая информация" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Благодарности" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Версия %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Облегченный и более мощный плагин для создания форм." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Новая вкладка конструктора" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "При создании и редактировании форм вы можете перейти непосредственно к тому " "разделу, который имеет наибольшее значение." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Лучше организованы настройки полей" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Основные настройки отображаются сразу, в то время как другие, несущественные " "настройки скрыты внутри расширяемых разделов." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Более ясные обозначения" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Наряду с вкладкой «Создать форму» мы убрали вкладку «Уведомления», заменив ее " "на «Электронные письма и действия». Это дает более ясное представление о том, " "что можно сделать на этой вкладке." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Возможность удаления всех данных Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Мы добавили опцию удаления всех данных Ninja Forms (заявок, форм, полей, " "настроек) при удалении плагина из WordPress. Мы назвали ее «ядерной» опцией." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Улучшенное управление лицензиями" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "На вкладке настроек можно деактивировать лицензии для расширений Ninja Forms " "по одной или по группам." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Вскоре ожидаются дополнительные улучшения" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Обновление интерфейса в этой версии является основой для значительных " "улучшений в будущем. Эти изменения будут использованы в версии 3.0, чтобы " "сделать Ninja Forms еще более стабильным, мощным и удобным конструктором форм." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Документация" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Ознакомьтесь с приведенной ниже подробной документацией к Ninja Forms." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Документация к Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Получить поддержку" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Вернуться к Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Просмотреть полный список изменений" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Полный список изменений" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Перейти к Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Используйте приведенные ниже советы чтобы начать работу с Ninja Forms. Все " "будет готово в кратчайшие сроки!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Полная информация о формах" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Отправной точкой для Ninja Forms является меню «Формы». Мы уже создали вам " "первую %sконтактную форму%s для примера. Вы также можете создать свою " "собственную форму, нажав кнопку %sДобавить новую%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Создать форму" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Здесь вы будете создавать вашу форму, добавляя поля и перетаскивая их в " "требуемом порядке. Каждое поле имеет набор опций, таких как метка, позиция " "метки и заполнитель." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Электронные письма и действия" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Если вы хотите, чтобы ваша форма отправляла вам уведомление по электронной " "почте, когда пользователь нажимает кнопку отправки, это можно сделать на этой " "вкладке. Можно создать неограниченное количество сообщений, включая " "сообщения, адресованные пользователю, который заполнил форму." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Эта вкладка содержит общие параметры формы, такие как название и метод " "представления, а также параметры отображения, такие как скрытие формы, когда " "она успешно заполнена." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Отображение формы" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Добавить к странице" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "На вкладке «Основные настройки формы» вы можете выбрать страницу, в конце " "которой выбранная форма будет отображаться автоматически. Аналогичную функцию " "можно увидеть на боковой панели во всех окнах редактора контента." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Сокращенный код" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Поместите %s в любой области, которая принимает короткие коды для отображения " "формы. Это можно сделать даже в середине содержимого страницы или поста." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms имеет виджет, который можно использовать на вашем сайте, указав " "какую из форм необходимо отобразить в заданном месте." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Функция шаблона" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Плагин Ninja Forms также укомплектован простым шаблоном, который можно " "вставить непосредственно в файл шаблона php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Нужна помощь?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Расширение документации" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "В настоящее время доступны все основные документы от %sРуководства по " "устранению неполадок%s до %sИнтерфейса прикладного программирования для " "разработчиков%s. Тем не менее, постоянно добавляются новые документы." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Лучшая поддержка в бизнесе" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Мы делаем все возможное для предоставления каждому пользователю Ninja Forms " "оптимальной поддержки. Если вы столкнулись с проблемой или у вас есть " "вопросы, %sобращайтесь к нам%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Спасибо за обновление до последней версии! Ninja Forms %s сделает вашу работу " "по управлению заявками легкой и приятной!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Плагин Ninja Forms создан международной группой разработчиков, которые " "поставили своей целью предоставить сообществу WordPress идеальное средство " "для создания форм." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Действующий список изменений не найден." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Просмотр %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Отключить автозаполнение в браузере" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sВыбранное %s значение расчета" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Это значение будет использоваться, если оно %sвыбрано%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sНе выбранное %s значение расчета" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Это значение будет использоваться, если оно %sне выбрано%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Включить автоматический подсчет итога? (Если включено)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Пользовательские классы CSS" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Перед всем" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Перед меткой" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "После метки" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "После всего" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Если функция пояснительного текста включена, то рядом с полем ввода будет " "отображаться знак вопроса %s. При наведении курсора на этот знак появится " "пояснительный текст." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Добавить описание" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Положение описания" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Содержание описания" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Если функция текста справки включена, то рядом с полем ввода будет " "отображаться знак вопроса %s. При наведении курсора на этот знак появится " "текст справки." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Показать текст справки" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Текст справки" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Если оставить это поле пустым, предел не будет установлен" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Ограничение элементов ввода до указанного числа" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "из" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Символы" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Слова" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Текст, отображаемый после счетчика слов/символов" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Слева от элемента" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Над элементом" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Ниже элемента" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Справа от элемента" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Внутри элемента" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Позиция метки" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Идентификатор поля" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Настройки ограничений" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Настройки расчета" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Удалить" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Заполнить это поле с помощью таксономии" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Нет" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Заполнитель" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Необходим" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Сохранить настройки поля" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Сортировка по числовым значениям" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Если этот флажок установлен, данный столбец в таблице заявок будет упорядочен " "по номерам." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Метка администратора" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Эта метка используется при просмотре, редактировании или экспорте заявок." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Платёж" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Доставка" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Произвольно" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Группа полей информации о пользователе" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Группа пользовательских полей" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "При запросе поддержки укажите следующую информацию:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Получить системный отчет" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Среда" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Домашний URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL Сайта" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Версия Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Версия WP" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "Включение распределенного WP" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Да" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Нет" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Информация о веб-сервере" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Версия PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Версия MySQL " #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "Язык PHP" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Лимит памяти WP" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Режим отладки WP" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Язык WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "По умолчанию" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Максимальный объем загрузки WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "Максимальный размер запроса PHP" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Максимальный уровень вложенности при вводе" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "Ограничение времени выполнения PHP" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "Количество входящих параметров в запросе PHP" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "Установлен SUHOSIN" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Часовой пояс по умолчанию" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Временная зона по умолчанию %s — должна быть UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Часовой пояс по умолчанию: %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "На вашем сервере включены пакеты fsockopen и cURL." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "На вашем сервере включен пакет fsockopen и отключен пакет cURL." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "На вашем сервере включен пакет cURL и отключен пакет fsockopen." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Ваш сервер не имеет включенных fsockopen или cURL — PayPal IPN и другие " "скрипты, которые связываются с другими серверами, не будут работать. " "Свяжитесь со своим хостинг провайдером." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Клиент SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "На вашем сервере включен класс клиента SOAP." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "На вашем сервере не включен класс %sклиента SOAP%s – некоторые плагины шлюза, " "которые используют протокол SOAP, могут работать неправильно." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "Операция wp_remote_post() выполнена – PayPal IPN работает." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "Операция wp_remote_post() не выполнена. PayPal IPN не будет работать с вашим " "сервером. Обратитесь к поставщику услуг хостинга. Ошибка:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "Операция wp_remote_post() не выполнена. PayPal IPN может не работать с вашим сервером." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Плагины" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Установленные плагины" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Посетить страницу плагина" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "опубликовал" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "версии" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Присвойте вашей форме название. По этому названию вы сможете найти ее позже." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Вы не добавили кнопку для отправки формы." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Маска ввода" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Любой символ, заданный в поле маски ввода (за исключением тех, что приведены " "в списке ниже), будет автоматически отображаться при вводе данных " "пользователем без возможности удаления" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Это предварительно заданные маскирующие символы" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a – представляет букву латинского алфавита (A–Z, a–z) – допускается вводить " "только буквы" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 – представляет числовой символ (0–9) – допускается вводить только цифры" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* – представляет алфавитно-цифровой символ (A–Z, a–z, 0–9) – допускается " "вводить как цифры, так и буквы" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Например, если вы хотите создать маску для номера американского социального " "страхования, вам нужно ввести в поле значение 999-99-9999" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "9 будет представлять любую цифру" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "В результате пользователь не сможет вводить любые другие символы, кроме цифр" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Символы также можно комбинировать их для конкретных ситуаций" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Например, если у вас есть ключ продукта A4B51.989.B.43C, то вы можете " "замаскировать его как a9a99.999.a.99a. Таким образом, все «а» должны быть " "буквами, а все «9» должны быть числами" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Задаваемые поля" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Избранные поля" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Поля оплаты" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Поля шаблона" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Информация о пользователе" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Все" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Пакетные операции" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Принять" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Число форм на странице" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Перейти к" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Перейти на первую страницу" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Перейти на предыдущую страницу" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Текущая страница" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Перейти к следующей странице" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Перейти к последней странице" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Название формы" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Удалить форму" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Дублировать форму" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Формы удалены" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Форма удалена" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Предварительный просмотр формы" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Отображать" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Отобразить название формы" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Добавить форму на эту страницу" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Отправить с помощью AJAX (без перезагрузки страницы)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Очистить успешно заполненную форму?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Если этот флажок установлен, плагин Ninja Forms очистит значения формы после " "ее успешной отправки." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Скрыть успешно заполненную форму?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Если этот флажок установлен, Ninja Forms скроет форму после ее успешной отправки." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Ограничения" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Должен ли пользователь авторизоваться для просмотра формы?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Сообщение о необходимости авторизации" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Отображается для тех пользователей, которые не выполнили авторизацию, если " "флажок «авторизация» выше установлен." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Ограничение заявок" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Выберите количество заявок, которые можно будет принять по этой форме. Если " "ограничение не требуется, оставьте это поле пустым." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Сообщение о достижении предела" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Введите сообщение, которое будет отображаться при достижении предела заявок и " "прекращении приема новых заявок для этой формы." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Параметры формы сохранены" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Основные настройки" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Здесь представлена основная справочная информация Ninja Forms." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Расширьте возможности Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Документация будет доступна в ближайшее время." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Активен" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Установлено" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Изучить подробнее" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Резервное копирование/восстановление" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Резервное копирование Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Восстановление Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Данные успешно восстановлены!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Импорт избранных полей" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Выберите файл" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Импорт избранного" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Избранные поля не найдены" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Экспорт избранных полей" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Экспорт полей" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Выберите избранные поля для экспорта." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Избранное успешно импортировано." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Выберите допустимый файл избранных полей." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Импорт формы" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Импортировать форму" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Экспорт формы" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Экспортировать форму" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Выберите форму." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Форма успешно импортирована." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Выберите допустимый файл для экспортируемой формы." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Импорт/экспорт заявок" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Настройки даты" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Основные" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Основные настройки" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Версия" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Формат даты" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Следуйте спецификациям для %sфункции PHP date()%s, но учтите, что " "поддерживаются не все существующие форматы." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Символ валюты" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Настройки reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Ключ сайта reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Получите ключ сайта для своего домена, зарегистрировавшись %sздесь%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Секретный ключ reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Язык reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Язык, используемый для reCAPTCHA. Чтобы получить код для вашего языка, " "нажмите %sздесь%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Если этот флажок установлен, ВСЕ данные Ninja Forms будут удалены из вашей " "базы данных при удалении плагина. %sВсе формы и данные заявок будут " "окончательно удалены.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Отключить уведомления администратора" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Уведомления администратора от Ninja Forms не будут отображаться на панели " "управления. Снимите этот флажок, чтобы увидеть их снова." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Эта опция позволяет ПОЛНОСТЬЮ удалить все, что имеет отношение к плагину " "Ninja Forms, включая ЗАЯВКИ и ФОРМЫ. Это действие нельзя отменить." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Продолжить" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Настройки сохранены" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Метки" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Метки сообщений" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Метка обязательного поля" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Символ обязательного поля" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Сообщение об ошибке, которое отображается, если не все обязательные поля заполнены" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Ошибка обязательного поля" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Сообщение об ошибке системы защиты от спама" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Сообщение об ошибке системы Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Сообщение об ошибке таймера" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Сообщение об ошибке отключения JavaScript" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Введите правильный адрес электронной почты" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Метка обработки заявки" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Это сообщение появляется внутри кнопки отправки, когда пользователь нажимает " "кнопку «Отправить». Оно уведомляет пользователя, что его заявка обрабатывается." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Метка несовпадения паролей" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Это сообщение появляется, если пользователь вводит разный текст в поля для " "пароля и его подтверждения." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Лицензии" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Сохранить и активировать" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Деактивировать все лицензии" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Для активации лицензий для расширений Ninja Forms вы должны сначала " "%sустановить и активировать%s выбранное расширение. После этого параметры " "лицензий будут показаны ниже." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Сбросить преобразование форм" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Сбросить преобразование формы" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Если после обновления до версии 2.9 ваши формы «пропали», нажмите эту кнопку, " "чтобы запустить процесс преобразования старых форм в формат, подходящий для " "версии 2.9. Все текущие формы останутся в таблице «Все формы»." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Все текущие формы останутся в таблице «Все формы». Иногда некоторые формы " "могут дублироваться в ходе этого процесса." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Почта администратора" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Адрес эл. почты пользователя" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Необходимо обновить уведомления форм Ninja Forms, нажмите %sздесь%s, чтобы " "начать обновление." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Необходимо обновить настройки электронной почты Ninja Forms, нажмите " "%sздесь%s, чтобы начать обновление." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Необходимо обновить таблицу заявок Ninja Forms, нажмите %sздесь%s, чтобы " "начать обновление." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Спасибо за обновление плагина Ninja Forms до версии 2.7. Обновите расширения " "Ninja Forms от " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Ваша версия расширения для загрузки файлов не совместима с плагином Ninja " "Forms версии 2.7. Расширение должно иметь версию не ниже 1.3.5. Пожалуйста, " "обновите это расширение здесь: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Ваша версия расширения для сохранения прогресса не совместима с плагином " "Ninja Forms версии 2.7. Расширение должно иметь версию не ниже 1.1.3. " "Пожалуйста, обновите это расширение здесь: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Обновление базы данных форм" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Необходимо обновить параметры форм Ninja Forms, нажмите %sздесь%s, чтобы " "начать обновление." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Осуществляется обновление Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Пожалуйста, %sсвяжитесь со службой поддержки%s и сообщите об указанной выше ошибке." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Все доступные обновления Ninja Forms установлены!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Перейти к формам" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Обновление Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Апгрейд" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Обновление завершено" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms должен выполнить обновления %s. Это может занять несколько минут. " "%sНачать обновление %s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Выполняется шаг %d из примерно %d" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Состояние системы Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Индикатор надёжности" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Очень слабый" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Ненадежный" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Средне" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Сильный" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Несоответствие" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Выберите одно" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Если вы человек и видите это поле, пожалуйста, оставьте его пустым." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Поля, помеченные символом «*», обязательны к заполнению." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Это обязательное поле." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Пожалуйста, проверьте обязательные поля." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Расчет" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Число десятичных разрядов." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Текстовое поле" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Вывод расчета как" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Метка" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Отключить ввод?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Используйте следующий короткий код для вставки окончательного расчета: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Вы можете ввести здесь уравнение для расчета, используя поле_x, где х – " "идентификатор используемого поля. Например, %sполе_53 + поле_28 + поле_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Сложные уравнения могут быть созданы путем добавления скобок: %s(поле_45 * " "поле_2) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Используйте следующие операторы: + - * /. Это дополнительная функция. Не " "допускайте таких операций, как деление на 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Автоматическое получение итоговых значений расчета" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Укажите операции и поля (дополнительно)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Используйте уравнение (дополнительно)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Метод расчета" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Операции поля" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Добавить операцию" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Расширенное уравнение" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Название расчета" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "Это программное имя поля. Например: my_calc, price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Значение по умолчанию" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Пользовательский класс CSS" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Выберите поле" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Чекбокс" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Не выбрано" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Выбрано" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Показать" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Скрыть" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Изменить значение" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Афганистан" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Албания" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Алжир" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Американское Самоа" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Андорра" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Ангола" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Ангилья" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Антарктика" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Антигуа и Барбуда" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Аргентина" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Армения" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Аруба" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Австралия" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Австрия" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Азербайджан" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Багамы" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Бахрейн" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Бангладеш" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Барбадос" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Белоруссия" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Бельгия" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Белиз" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Бенин" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Бермуды" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Бутан" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Боливия" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Босния и Герцеговина" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Ботсвана" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Остров Буве" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Бразилия" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Британская территория Индийского океана" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Бруней" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Болгария" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Буркина-Фасо" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Бурунди" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Камбоджа" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Камерун" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Канада" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Кабо-Верде" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Кайманские острова" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Центральная Африканская Республика" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Чад" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Чили" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Китай" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Остров Рождества" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Кокосовые (Килинг) острова" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Колумбия" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Коморы" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Конго" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Конго (Демократическая Республика Конго)" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Острова Кука" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Коста-Рика" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Кот-д'Ивуар" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Хорватия ( Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Куба" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Кипр" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Чешская Республика" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Дания" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Джибути" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Доминика" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Доминиканская Республика" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Тимор-Лешти (Восточный Тимор)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Эквадор" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Египет" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "Сальвадор" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Экваториальная Гвинея" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Эритрея" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Эстония" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Эфиопия" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Фолклендские (Мальвинские) острова" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Фарерские острова" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Фиджи" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Финляндия" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Франция" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Франция (метрополия)" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Французская Гвиана" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Французская Полинезия" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Французские южные территории" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Габон" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Гамбия" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Грузия" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Германия" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Гана" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Гибралтар" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Греция" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Гренландия" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Гренада" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Гваделупа" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Гуам" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Гватемала" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Гвинея" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Гвинея-Бисау" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Гайана" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Гаити" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Острова Херд и Макдональд" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Ватикан" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Гондурас" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Гонконг" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Венгрия" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Исландия" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Индия" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Индонезия" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Иран (Исламская Республика)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Ирак" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Ирландия" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Израиль" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Италия" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Ямайка" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Япония" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Иордания" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Казахстан" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Кения" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Кирибати" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Северная Корея (Корейская Народно-Демократическая Республика)" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Южная Корея (Республика Корея)" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Кувейт" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Кыргызстан" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Лаос (Лаосская Народно-Демократическая Республика)" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Латвия" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Ливан" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Лесото" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Либерия" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Ливийская Арабская Джамахирия" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Лихтенштейн" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Литва" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Люксембург" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Макау" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Македония (бывшая республика Югославии)" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Мадагаскар" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Малави" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Малайзия" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Мальдивы" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Мали" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Мальта" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Маршалловы острова" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Мартиника" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Мавритания" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Маврикий" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Майотта" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Мексика" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Микронезия (Федеративные Штаты Микронезии)" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Молдова (Республика Молдова)" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Монако" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Монголия" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Черногория" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Монсеррат" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Марокко" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Мозамбик" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Мьянма" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Намибия" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Науру" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Непал" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Нидерланды" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Нидерландские Антильские острова" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Новая Каледония" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Новая Зеландия" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Никарагуа" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Нигер" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Нигерия" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Ниуэ" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Остров Норфолк" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Северные Марианские острова" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Норвегия" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Оман" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Пакистан" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Палау" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Панама" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Папуа — Новая Гвинея" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Парагвай" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Перу" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Филиппины" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Питкэрн" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Польша" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Португалия" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Пуэрто-Рико" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Катар" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Реюньон" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Румыния" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Российская Федерация" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Руанда" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Сент-Китс и Невис" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Сент-Люсия" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Сент-Винсент и Гренадины" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Самоа" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "Сан-Марино" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Сао-Том и Принсипи" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Саудовская Аравия" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Сенегал" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Сербия" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Сейшельские Острова" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Сьерра-Леоне" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Сингапур" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Словакия (Словацкая Республика)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Словения" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Соломоновы Острова" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Сомали" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Южная Африка" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Южная Георгия, Южные Сандвичевы Острова" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Испания" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Шри-Ланка" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Остров Святой Елены" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Сен-Пьер и Микелон" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Судан" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Суринам" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Острова Свалбрад и Ян-Майен" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Свазиленд" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Швеция" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Швейцария" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Сирийская Арабская Республика" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Тайвань" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Таджикистан" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Танзания (Объединенная Республика Танзания)" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Тайланд" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Того" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Токелау" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Тонга" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Тринидад и Тобаго" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Тунис" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Турция" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Туркменистан" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Тёркс и Кайкос, острова" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Тувалу" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Уганда" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Украина" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Объединённые Арабские Эмираты" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Великобритания" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "США" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Внешние малые острова США" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Уругвай" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Узбекистан" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Вануату" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Венесуэла" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Вьетнам" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Виргинские острова (британские)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Виргинские острова (США)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Уоллис и Футуна, острова" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Западная Сахара" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Йемен" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Югославия" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Замбия" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Зимбабве" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Страна" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Страна по умолчанию" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Использовать первый пользовательский вариант" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Первый пользовательский вариант" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Южный Судан" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Кредитная карта" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Метка номера карты" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Номер карты" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Описание номера карты" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "Обычно 16 цифр на лицевой стороне вашей кредитной карты." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Метка кода CVC карты" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Описание кода CVC карты" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "3 цифры (на обороте) или 4 цифры (на лицевой стороне карты)." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Метка имени и фамилии владельца карты" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Имя и фамилия на карте" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Описание имени и фамилии владельца карты" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Имя и фамилия, отпечатанные на лицевой стороне вашей кредитной карты." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Метка месяца окончания срока действия карты" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Месяц окончания срока действия (ММ)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Описание месяца окончания срока действия карты" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Месяц, в котором истекает срок действия вашей кредитной карты (как правило, указывается на лицевой стороне)." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Метка года окончания срока действия карты" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Год окончания срока действия карты (ГГГГ)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Описание года окончания срока действия карты" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Год, в котором истекает срок действия вашей кредитной карты (как правило, указывается на лицевой стороне)." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Текст" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Элемент текста" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Скрытое поле" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Идентификатор пользователя (при входе в систему)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Имя пользователя (при входе в систему)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Фамилия пользователя (при входе в систему)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Отображаемое имя пользователя (при входе в систему)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Адрес эл. почты пользователя (при входе в систему)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Идентификатор публикации/страницы (если есть)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Название публикации/страницы (если есть)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL-адрес публикации/страницы (если есть)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Сегодняшняя дата" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Переменная QueryString" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Этот ключевое слово зарезервировано для WordPress. Попробуйте ввести другое." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Это должен быть адрес электронной почты?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Если этот флажок установлен, Ninja Forms зарегистрирует введенные данные как " "адрес электронной почты." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Отправить копию формы по этому адресу?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Если этот флажок установлен, Ninja Forms отправит копию этой формы (и любые " "прилагаемые сообщения) по указанному адресу." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "ч." #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Список" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Это штат пользователя" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Выбранное значение" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Добавить значение" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Удалить значение" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Расчет" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Выпадающее меню" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Радио" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Флажки" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Множественный выбор" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Тип списка" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Размер окна множественного выбора" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Импорт элементов списка" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Отображать значения элементов списка" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Импорт" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Чтобы использовать эту функцию, вы можете вставить CSV в текстовое поле выше." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Формат должен выглядеть следующим образом:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "метка, значение, расчет" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Если вы хотите отправить пустое значение или расчет, необходимо использовать " "символ ''." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Выбрано" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Число" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Минимальное значение" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Максимальное значение" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Шаг (степень увеличения)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Организатор" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Пароль" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Используйте это поле для регистрации пароля" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Если этот флажок установлен, будут выводиться поля для пароля и его подтверждения." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Метка подтверждения пароля" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Повторно введите пароль" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Показать индикатор надежности пароля" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Подсказка: Пароль должен содержать не менее семи символов. Для обеспечения " "более высокого уровня надежности используйте заглавные и строчные буквы, а " "также цифры и специальные символы, такие как ! \" ? $ % ^ &)." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Пароли не совпадают" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Рейтинг в звездах" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Число звезд" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Подтвердите, что вы не робот" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Пожалуйста, заполните поле капчи" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Убедитесь, что вы правильно ввели ключ сайта и секретный ключ" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Неверный код капчи Введите корректное значение в поле капчи" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Антиспам" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Спам-вопрос" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Спам-ответ" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Отправить" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Налог" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Налоговые проценты" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Здесь должно быть введено значение в процентах, например: 8,25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Текстовое поле" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Показать расширенный редактор текста" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Показать кнопку загрузки медиа" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Отключить расширенный текстовый редактор на мобильном устройстве" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Зарегистрировать как адрес электронной почты? (Поле обязательно для заполнения)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Отключить ввод" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Выбор даты" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Телефон: (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Валюта" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Определение пользовательских масок" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Помощь" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Отложенная отправка" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Текст кнопки «Отправить» появляется после срабатывания таймера" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Пожалуйста, подождите %n секунд" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n используется для обозначения количества секунд" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Количество секунд для обратного отсчета" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Это время должен выждать пользователь, чтобы отправить форму" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Если вы человек, пожалуйста, действуйте медленнее." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Для отправки этой формы требуется JavaScript. Включите JavaScript и повторите попытку." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Сопоставление полей списка" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Группы по интересам" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Разовый" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Несколько" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Списки рассылок" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "обновить" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Поле метаданных" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Метаданные заявки" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Метаданные пользователя (при входе в систему)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Получение оплаты" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Формы не найдены." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Дата создания" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "заголовок" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "обновленo" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Ваша попытка не удалась" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Родительский элемент:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Все элементы" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Добавить новый товар" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Новый элемент" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Редактировать товар" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Обновить элемент" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Посмотреть товар" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Поиск элемента" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Не найдено в корзине" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Формы" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Сведения о заявке" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Добавить новую форму" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Ошибка импорта шаблона формы." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Поля" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Неправильный формат переданного файла." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Ошибка импорта формы." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Импорт форм" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Экспорт форм" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Уравнение (дополнительно)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Операции и поля (дополнительно)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Поля автоматического подсчета итога" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Размер загружаемого файла превышает максимально допустимое значение (параметр upload_max_filesize directive в файле php.ini)." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Размер загружаемого файла превышает максимально допустимое значение " "MAX_FILE_SIZE, указанное для данной HTML-формы." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Файл был загружен только частично." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Нет файла для загрузки!" #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Отсутствует временная папка." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Ошибка записи на диск." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Загрузка остановлена по причине неверного расширения." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Неизвестная ошибка загрузки." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Ошибка передачи файла" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Лицензии для дополнительных компонентов" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Миграция и заполнение демонстрационными данными завершены. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Посмотреть формы" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Сохранить настройки." #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "IP-адрес сервера" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Host Name (Имя хоста)" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Добавить Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Форма не найдена" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Поле не найдено" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Произошла непредвиденная ошибка." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Предварительный просмотр не предусмотрен." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Платёжные шлюзы" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Оплата: всего" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Тег привязки" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Адрес эл. почты или поиск поля" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Текст темы или поиск поля" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Присоединить CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Сайт" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Метка здесь" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Текст справки здесь" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Введите метку поля формы. Таким образом пользователи будут идентифицировать " "отдельные поля." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Форма по умолчанию" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Невидимый" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Выберите положение вашей метки относительно самого элемента поля." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Обязательное поле" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Перед предоставлением разрешения на отправку формы убедитесь в том, что это " "поле заполнено." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Числовые опции" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Минута" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Макс" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Шаг" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Параметры" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Один" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "один" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Два" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "два" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Три" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "три" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Расчетное значение" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Ограничивает для пользователя тип данных, которые должны быть введены в это поле." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "отсутствует" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Телефон в США" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "специальный" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Пользовательская маска" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a – представляет букву латинского " "алфавита (A–Z, a–z) – допускается вводить только буквы.
    • " "\n
    • 9 – представляет цифру (0–9) – допускается " "вводить только цифры.
    • \n
    • * – представляет " "алфавитно-цифровой символ (A–Z, a–z, 0–9) – допускается вводить как цифры, " "так и буквы.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Ограничение элементов ввода до указанного числа" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Символы" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Слова" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Текст, отображаемый после счетчика" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "символов осталось" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Введите текст, который должен отображаться в поле перед тем, как пользователь " "начнет вводить данные." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Пользовательские имена классов" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Контейнер" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Добавляет дополнительный класс к оболочке поля." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Элемент" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Добавляет дополнительный класс к элементу поля." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "ГГГГ-ММ-ДД" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Пятница, 18 ноября 2019 г." #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "По умолчанию для текущей даты" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Количество секунд для отправки по таймеру." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Ключ поля" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Создает уникальный ключ для идентификации и назначения вашего поля для " "пользовательской разработки." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Метка используется при просмотре и экспорте заявок." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Показывается пользователям при наведении курсора." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Описание" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Сортировка по числовым значениям" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Этот столбец в таблице заявок будет упорядочен по номерам." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Количество секунд для обратного отсчета" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Используйте это поле для регистрации пароля. Если этот флажок установлен, " "будут выводиться поля для пароля и повторного ввода пароля" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Подтвердить" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Позволяет вводить форматированный текст." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Обработка метки" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Выбранное значение расчета" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Этот число будет использоваться в расчетах, если флажок установлен." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Не выбранное значение расчета" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Этот число будет использоваться в расчетах, если флажок не установлен." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Показать эту переменную расчета" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Выберите переменную" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Цена" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Использовать количество" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Позволяет пользователям выбрать несколько штук данного товара." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Тип товара" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Единичный товар (по умолчанию)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Несколько товаров – выпадающий список" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Несколько товаров – выбрать несколько" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Несколько товаров – выбрать один" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Ввод пользователя" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Цена" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Параметры затрат" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Единичные затраты" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Выпадающей список затрат" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Тип затрат" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "товар" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Выберите товар" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Ответ" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Ответ с учетом регистра, чтобы предотвратить спам-рассылку заявок по вашей форме." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Таксономия" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Добавить новые термины" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Это штат пользователя." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Используется для маркировки поля для обработки." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Сохраненные поля" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Общие поля" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Поля информации о пользователе" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Поля цены" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Поля макета" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Прочие поля" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Ваша форма успешно отправлена." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Отправка Ninja Forms" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Сохранить отправку" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Имя переменной" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Подсчет" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Позиция метки по умолчанию" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Оболочка" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Ключ формы" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Программное имя, которое может использоваться для ссылки на эту форму." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Добавить кнопку «Отправить»" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Мы заметили, что в вашей форме нет кнопки «Отправить». Мы можем добавить ее автоматически." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Зарегистрированы" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Применяется для предварительного просмотра формы." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Ограничение кол-ва отправок формы" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "НЕ применяется для предварительного просмотра формы." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Показать настройки" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Расчёты" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Цена:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Количество:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Добавить" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Открыть в новом окне" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Если вы человек, не вводите данные в это поле." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Доступно" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Укажите действительный адрес электронной почты!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Содержание этих полей должно совпадать!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Мин. номер ошибки" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Макс. номер ошибки" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Увеличивайте с шагом " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Вставить ссылку" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Вставить медиафайл" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Исправьте ошибки перед отправкой этой формы." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Ошибка Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Продолжается передача файла." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "Передача файла" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Все поля" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Вложенная последовательность" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "ID записи" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Заголовок" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Ссылка на запись" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP-адрес" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID Пользователя" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Имя" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Фамилия" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Показать название" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Мотивированные стили" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "светлая" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Темная" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Используйте правила стилей Ninja Forms по умолчанию." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Откат" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Откат к версии 2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Откат к самому последнему выпуску 2.9.x." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Настройка reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Тема reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Расширенный редактор текста (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Передовой" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Управление" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Пустые формы" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Спросите меня" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Демонстрация сообщения об успешном действии" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "{field:name}, спасибо за заполнение моей формы!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Демонстрация действия электронной почты" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Это действие электронной почты." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Здравствуйте, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Демонстрация действия сохранения" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Это проверка" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Это еще одна проверка." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Получить помощь!" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Как мы можем помочь?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Согласны?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Лучший способ контакта?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Телефон" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Обычная почта" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Отправить" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Выберите в списке" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Вариант один" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Вариант два" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Вариант три" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Список переключателей" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Умывальник для ванной" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Список флажков" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Это все поля из раздела сведений о пользователе." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Адрес" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Город" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "ZIP-код" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Это все поля из раздела цен." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Товар (вместе с количеством)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Товар (количество отдельно)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Количестов" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Общее " #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Имя и фамилия на кредитной карте" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Номер кредитной карты" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "CVV-код кредитной карты" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Срок действия кредитной карты" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Zip-код на кредитной карте" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Это различные специальные поля." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Антиспамовый вопрос (Ответ = ответ)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "ответ" #: includes/Database/MockData.php:805 msgid "processing" msgstr "идет обработка" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Длинная форма: " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Поля" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Поле №" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Форма подписки на рассылку" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Email-адрес" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Введите адрес электронной почты" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Подписаться" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Форма товара (с полем количества)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Покупка" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Вы приобрели " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "товаров для " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Форма товара (количество в строке)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " товаров для " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Форма товара (несколько товаров)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Товар А" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Количество товара А" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Товар Б" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Количество товара Б" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "товара А и " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "товара Б за $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Форма с вычислениями" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Мое первое вычисление" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Мое второе вычисление" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Результаты вычислений возвращаются с ответом AJAX (ответ -> данные -> вычисления" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Копировать" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Сохранить форму" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Zip-код кредитной карты" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Для предварительного просмотра формы вы должны пройти авторизацию." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Поля не найдены." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Уведомление: короткий код Ninja Forms используется без указания формы." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Короткий код Ninja Forms используется без указания формы." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Адрес 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Кнопка" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Чекбокс" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "выбрано" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "не выбрано" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Код CVC кредитной карты" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d/m/Y" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Разделитель" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Выпадающий список" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Статус" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Текст примечания можно редактировать в поле для примечания в разделе дополнительных настроек ниже." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Примечание" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Подтверждение пароля" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "пароль" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "ReCaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Заполните поле ReCaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Дополнительные методы доставки" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Тема(Вопрос)" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Позиция вопроса" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Неправильный ответ" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Число звезд" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Список условий" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Нет доступных условий для этой таксономии. %sДобавить условие%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Таксономия не выбрана." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Доступные условия" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Текст параграфа" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Текст одной строки" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Почтовый индекс" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Пост" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Строки запроса" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Строка запроса" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Система" #: includes/MergeTags/User.php:13 msgid "User" msgstr "пользователь" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " нуждается в обновлении. У вас установлена версия " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " . Текущая версия " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Редактирование поля" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Название" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Сверху от поля" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Снизу от поля" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Слева от поля" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Справа от поля" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Скрыть название" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Название класса" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Базовые поля" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Выбор нескольких значений" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Добавить новое поле" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Добавить новое действие" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Развернуть меню" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Опубликовать" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "ОПУБЛИКОВАТЬ" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Идет загрузка" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Посмотреть изменения" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Добавить поля формы" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Начните с добавления своего первого поля в форму." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Добавить новое поле" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Просто щелкните здесь и выберите необходимые поля." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Вот и все. Или..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Начните с шаблона" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Связаться с нами" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Предоставьте пользователям возможность обратиться к вам через эту простую " "контактную форму. При необходимости можно добавлять и удалять поля." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Запрос ценового предложения" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Управляйте запросами ценовых предложений на своем сайте с помощью этого " "шаблона. При необходимости можно добавлять и удалять поля." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Регистрация на мероприятие" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Предоставьте пользователям простую возможность зарегистрироваться на ваше " "следующее мероприятие, заполнив форму. При необходимости можно добавлять и " "удалять поля." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Форма подписки на рассылку новостей" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Добавьте абонентов и расширьте свой список рассылки с помощью этой формы " "подписки на рассылку новостей. При необходимости можно добавлять и удалять поля." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Добавьте действия в форму" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Начните с добавления своего первого поля в форму. Щелкните знак «плюс» и " "выберите необходимые действия. Вот и все." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Дублировать (^ + C + щелчок)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Удалить (^ + D + щелчок)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "действия" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Переключить всплывающее меню" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Во весь экран" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Пол-экрана" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Отменить" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Готово" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Отменить все" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Отменить все" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Уже почти все..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Еще нет" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Открыть в новом окне" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Деактивировать" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Исправить" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Выберите форму" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Текущая дата" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Перед тем, как обратиться в нашу службу поддержки, просмотрите:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Документация для Ninja Forms версии 3" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Действия, которые необходимо попробовать выполнить перед тем, как обращаться в службу поддержки" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Наш объем поддержки" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Импорт полей" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Обновлено: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Дата отправки: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Кем отправлено: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Присланные данные" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Просмотр" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Больше" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Редактирование поля" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Поля формы" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Просмотреть изменения" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Контактная форма" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Проблема! Этот дополнительный компонент еще не совместим с Ninja Forms 3. %sПодробнее%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s деактивирован." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Помогите нам улучшить Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Если вы примете участие, некоторые данные о вашей установке Ninja Forms будут " "отправляться на сайт NinjaForms.com (НЕ включая ваши присланные данные)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Если вы этого не хотите, нет проблем! Ninja Forms продолжит работать как надо." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sРазрешить%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sНе разрешать%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "У вас нет разрешения." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Отказано в разрешении" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Разработчик Ninja Forms" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "ОТЛАДКА: Перейти на 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "ОТЛАДКА: Перейти на 3.0.x" lang/ninja-forms-nl_NL.po000064400000635077152331132460011272 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Kennisgeving: Voor dit product is een JavaScript vereist." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Valsspelen, hé?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Velden die gemarkeerd zijn met een %s*%s zijn verplichte velden." #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Wees er zeker van dat alle verplichte velden zijn ingevuld." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Dit is een verplicht veld" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Beantwoord deze anti-spam vraag correct." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Laat alstublieft het spam veld leeg." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Even wachten totdat het formulier verzonden is." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Je kunt geen formulier versturen wanneer Javascript is uitgeschakeld." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Voer alstublieft een geldig email adres in." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Bezig met verwerken" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "De wachtwoorden komen niet overeen." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Formulier toevoegen" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Kies een formulier of type om te zoeken" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Annuleren" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Invoegen" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Ongeldige formulier-id" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Conversie vergroten" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Wist je dat formulieren vaker volledig worden ingevuld als je uitgebreide " "formulieren opbreekt in kleinere, eenvoudiger te verwerken onderdelen?

    Met " "de uitbreiding Multi-Part Forms kun je dit snel een eenvoudig doen.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Meer lezen over Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Misschien later" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Verbergen" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Gebruikers vullen uitgebreide formulieren vaker volledig in als ze hun " "ingevulde gegevens tussentijds op kunnen slaan en er later verder aan kunnen " "werken.

    Met de uitbreiding Save Progress voor Ninja Forms maak je dit snel " "en eenvoudig mogelijk.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Meer lezen over Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "E-mail" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Van Naam" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Naam of velden" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "De e-mail is afkomstig van deze naam." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Van Adres" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Eén e-mailadres of veld" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "De e-mail is afkomstig van dit e-mailadres." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Naar" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "E-mailadressen of zoek naar een veld" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Naar wie zal deze e-mail verzonden worden?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Onderwerp" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Onderwerp-tekst of zoek naar een veld" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Dit wordt het onderwerp van de e-mail." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "E-mailbericht" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Bijlagen" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Bijlage CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Geavanceerde Instellingen" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Formaat" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Platte Tekst" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Reageren op" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Verwijzen" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Succes Bericht" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Vooraf aan het Formulier" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Na het Formulier" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Locatie" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Bericht" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "dupliceer" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Deactiveren" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Activeren" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Bewerken" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Verwijderen" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Dupliceren" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Naam" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Type" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Datum Bijgewerkt" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Bekijk Alle Types" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Meer types" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "E-mail en Acties" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Nieuwe toevoegen" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Nieuwe Actie" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Bewerk Actie" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Terug Naar De Lijst" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Actienaam" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Meer acties" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Actie Bijgewerkt" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Selecteer een veld of type om te zoeken" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Importeer Veld" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Importeer Alle Velden" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Selecteer een formulier om de inzendingen te bekijken" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Geen Inzendingen Gevonden" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Inzendingen" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Inzending" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Voeg Een Nieuwe Inzending Toe" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Bewerk Inzending" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Nieuwe Inzending" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Bekijk Inzending" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Zoek Inzendingen" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Geen Inzendingen Gevonden In De Prullenbak." #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Datum" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Bewerk dit item" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Exporteer dit item" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Exporteren" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Verplaats dit item naar de prullenbak." #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Prullenbak" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Herstel dit item vanuit de prullenbak" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Herstellen" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Dit item permanent verwijderen" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Permanent Verwijderen" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Niet gepubliceerd" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s geleden" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Verzonden" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Selecteer een formulier" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Begin Datum" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Eind Datum" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s aangepast." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Aangepast veld bijgewerkt." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Aangepast veld verwijderd\n." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s hersteld naar revisie van %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s gepubliceerd." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s opgeslagen" #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s verstuurd. Voorbeeld %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s ingepland voor: %2$s. Voorbeeld %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s concept bijgewerkt. Voorbeeld %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Download alle inzendingen" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Terug naar de lijst" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Door Gebruiker Ingevoerde Waarden" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Statistieken inzending" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Veld" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Waarde" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formulier" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Verzonden op" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Bijgewerkt op" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Verzonden Door" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Update" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Datum Verzonden" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms kan niet via het netwerk worden geactiveerd, Bezoek voor elke " "site het dashboard om de plugin te activeren." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Je vind dit bijgevoegd in je aankoop email." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Sleutel" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Activering van licentie niet gelukt. Controleer je licentie sleutel." #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Deactiveren Licentie" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Door Gebruiker Ingevoerde Waarden:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Bedankt voor het invullen van dit formulier." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Er is een nieuwe versie van %1$s beschikbaar. Details van versie %3$s bekijken." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Er is een nieuwe versie van %1$s beschikbaar. Details van versie %3$s bekijken of nu bijwerken." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Je hebt geen toestemming om updates van plugins te installeren" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Fout" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standaard Velden" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Lay-out Elementen" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Bericht Creatie" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Beoordeel alstublieft %sNinja Forms%s %s op %sWordPress.org%s om er voor te " "zorgen dat deze plugin gratis blijft. Alvast bedankt van het WP Ninjas team!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Toon titel" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Geen" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formulieren" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Alle Formulieren" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms Toevoegingen." #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Toevoegingen" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importeren/Exporteren" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importeren / Exporteren" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form Instellingen" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Instellingen" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Systeem Status" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Uitbreidingen" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Voorbeeld" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Opslaan" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "karakter(s) over" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Laat deze termen niet zien" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Instellingen Opslaan" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Voorbeeld Formulier" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Upgraden Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Je komt in aanmerking voor een upgrade naar de Ninja Forms " "THREE-releasekandidaat. %sNu upgraden%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE wordt uitgebracht." #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Er wordt een belangrijke update uitgebracht voor Ninja Forms. %sLees meer " "over nieuwe functies, achterwaartse compatibiliteit en meer veelgestelde vragen.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Hoe gaat het?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Bedankt voor het gebruiken van Ninja Forms! We hopen dat je alles hebt " "gevonden wat je nodig hebt, maar als je nog vragen hebt:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Bekijk onze documentatie" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Hulp krijgen" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Bewerk menu item" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Selecteer alles" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Voeg een Ninja formulier toe" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Welke naam moet deze favoriet hebben?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Je moet een naam invoeren voor deze favoriet." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Weet je het zeker dat je alle licenties wilt deactiveren?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Het formulierconversieproces terugzetten voor versie 2.9 en hoger" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Verwijder alle Ninja Forms data tijdens deïnstalleren?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Bewerk Formulier" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Opgeslagen" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Opslaan..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Dit veld verwijderen? Het zal worden verwijderd, ook als je het niet opslaat." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Bekijk Inzendingen" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms Verwerking" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms -Verwerking" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Laden..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Geen Actie Opgegeven..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Het proces is begonnen, wees geduldig. Dit kan enige minuten duren. Je zult " "automatisch doorgestuurd worden, wanneer het proces is beëindigd." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Welkom bij Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Bedankt voor het updaten! Ninja Forms %s maakt het creëren van formulieren " "makkelijker dan ooit!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Welkom bij Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Changelog" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Aan de slag met Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "De mensen die Ninja Forms hebben gecreëerd " #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Wat is er nieuw" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Aan De Slag" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Credits" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versie %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Een simpele en krachtigere ervaring om een formulier te creëren." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Nieuw Creëer Tab" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Wanneer je een formulier creëert of bewerkt, ga dan direct naar de sectie die " "het belangrijkste is." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Beter Georganiseerde Veld Instellingen" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "De meest voorkomede instellingen zijn direct te zien, terwijl andere, niet " "essentiële instellingen, in uitvouwbare secties zijn geplaatst." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Verbeterde helderheid" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Samen met de \"Creëer Jou Formulier\" tab, hebben we \"Notificaties\" " "verwijderd ten gunste van \"Emails & Acties.\" . Dit geeft een betere " "indicatie wat kan gedaan worden in deze tab." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Verwijder alle Ninja Forms data" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "We hebben een optie geplaatst om alle Ninja Forms data te verwijderen " "(inzendingen, velden, opties), wanneer je deze plugin verwijderd, Wij noemen " "het de nucleaire optie." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Verbeterde licentie management" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Uitschakeling van Ninja Forms uitbreiding licenties, kan individueel of als " "een groep, vanuit de instellingen tab." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Er komt nog meer" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "De interface updates in deze versie, zijn de basis voor een groot aantal " "toekomstige verbeteringen. Versie 3.0 zal worden gebouwd op deze " "veranderingen, om met Ninja Forms nog stabielere, krachtigere en " "gebruiksvriendelijkere formulieren te creëren." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Documentatie" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Neem hieronder een kijkje in onze uitgebreide Ninja Forms documentatie." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms Documentatie" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Krijg Ondersteuning" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Terug naar Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Bekijk de complete Changelog" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Complete Changelog" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Ga naar Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Gebruik de tips hieronder om met Ninja Forms te beginnen. Je hebt in een " "korte tijd een werkend formulier gebouwd." #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Alles Over Formulieren" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Het formulier menu is je menu voor alle Ninja Forms items, We hebben alvast " "je eerste %scontact formulier%s aangemaakt zodat je een voorbeeld hebt. Je " "kunt alsnog je eigen formulier creëren door te klikken op %sVoeg Toe%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Creëer Je Formulier" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Dit is de plek, waar het formulier gecreëerd wordt door het toevoegen van " "velden en het verslepen van de velden in de volgorde die je wilt. Elk veld " "heeft een assortiment van opties, zoals label, labelpositie en plaatshouder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "E-mails en Acties" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Als je wilt dat je per email geïnformeerd wordt, wanneer een gebruiker een " "formulier verzend, kun je dit activeren in deze tab. Je kunt een onbeperkt " "aantal emails creëren, inclusief emails die naar de gebruiker van het " "ingevulde formulier worden verzonden." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "In deze tab staan algemene formulier instellingen, zoals de titel en de " "inzending methode, evenals de scherm instellingen, bijvoorbeeld het formulier " "verbergen wanneer het succesvol is verstuurd." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Toon je Formulier" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Toevoegen aan pagina" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Onder Basis Formulier Gedragingen in de Formulier Instellingen, kun je " "gemakkelijk een pagina selecteren waar automatisch het formulier onderaan op " "de pagina wordt geplaatst. Een vergelijkbaar optie is beschikbaar in elk " "content bewerkscherm in de zijbalk." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Korte code" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Je kunt op elke plek, dat shortcodes accepteert, %s plaatsen. Zelfs in het " "midden van je pagina of bericht." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms biedt een eigen widget aan, die je kunt plaatsen in elke widget " "zijbalk van je website. Selecteer vervolgens welk formulier u wilt " "weergegeven in deze ruimte." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Sjabloon Functie" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms komt ook met een eenvoudige template functie die direct in een " "php template bestand kan worden geplaatst. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Hulp nodig?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Groeiende Documentatie" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Documentatie beschikbaar die alles van %sTroubleshooting%s tot %sDeveloper " "API%s. Nieuwe documenten worden altijd toegevoegd." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Beste Ondersteuning in dit werk" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "We doen alles wat we kunnen om elke NInja Forms gebruiker de beste " "ondersteuning te geven als mogelijk. Als je een probleem tegenkomt of als je " "een vraag hebt, %splease contact us%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Bedankt voor het bijwerken naar de laatste versie! Ninja Forms %s is " "voorbereid om uw ervaring met het beheer van inzendingen aangenaam te maken!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms wordt gecreëerd door een wereldwijd team van ontwikkelaars die " "tot doel hebben, te worden de # 1 WordPress gemeenschap formulier creatie plugin." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Geen geldige Changelog is gevonden." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Toon %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Uitschakelen Browser Autocompleet" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sChecked%s Berekende Waarde" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Dit is de waarde die wordt gebruikt als %sChecked%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sUnchecked%s Berekende Waarde" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Dit is de waarde die wordt gebruikt als %sUnchecked%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Opnemen in de auto-totaal? (Indien ingeschakeld)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Aangepaste CSS Klasses" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Voordat Alles" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Voordat Label" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Nadat Label" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Nadat Alles" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Als de \"desc text\" is geactiveerd, dan zal een vraagteken %s naast het in " "te voeren veld worden geplaatst. Wanneer men de muis over de vraagteken gaat, " "dan zal de beschrijvende tekst worden vertoond" #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Beschrijving toevoegen" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Positie beschrijving" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Beschrijving Inhoud" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Als \"help tekst\" is ingeschakeld, wordt er een vraagteken %s naast het " "invoerveld geplaatst. Zweven over dit vraagteken zal de helptekst weer te geven." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Zie Help Tekst" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Help Tekst" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Als je dit box leeg laat, is er geen limiet" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limiteer invoer tot dit nummer" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "van" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Karakters" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Woorden" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "De tekst die verschijnt achter karakter/woord teller" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Links van het veld" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Boven van het veld" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Beneden van het veld" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Rechts van het veld" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Binnen het veld" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Label Positie" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Veld ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Beperkende Instellingen" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Rekenen Instellingen" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Verwijderen" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Bevolk dit met de taxonomie" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Niets" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Plaatshouder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Benodigd" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Bewaar veld instellingen" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sorteer als nummeriek" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Als dit vakje is aangevinkt, zal deze kolom in de inzendingen tabel " "gesorteerd worden op nummer." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Administrator Label" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Dit is de label die gebruikt wordt het vertonen van tonen/bewerken/exporteren inzendingen" #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Berekenen" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Verzenden" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Aangepast" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Gebruikers Info Veld Groep" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Aangepaste Veld Groep" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Gelieve deze informatie invoegen bij het aanvragen van ondersteuning:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Verkrijg Systeem Rapport" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Omgeving" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Home URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Site URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms Versie" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Versie" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite ingeschakeld" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Ja" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Nee" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web Server Info" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP versie" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Versie" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Lokaal" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Geheugen Limiet" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Debug Modus" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP Taal" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Standaard" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Max Upload Grootte" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Max Bericht Grootte" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Max Input Nesting Level" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Tijd Limiet" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN geïnstalleerd" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Standaard Tijdzone" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Default timezone is %s - het zou moeten zijn UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Standaard Tijdzone is %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "De server heeft fsockopen en cURL ingeschakeld." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "De server heeft fsockopen ingeschakeld, cURL is uitgeschakeld." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "De server heeft fsockopen ingeschakeld, cURL is uitgeschakeld." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Uw server heeft niet fsockopen of cURL ingeschakeld - PayPal IPN en andere " "scripts die communiceren met andere servers zullen niet werken. Neem contact " "op met uw hosting provider." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Uw server heeft de SOAP Client klasse ingeschakeld." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Uw server heeft niet de %sSOAP Client%s klasse ingeschakeld - enkele gateway " "plug-ins die SOAP gebruiken werken mogelijk niet zoals verwacht." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Afstand Bericht" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() was succesvol - PayPal IPN werkt." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() gefaald. PayPal IPN werkt mogelijk niet op uw server. Neem " "contact op met uw provider. Fout:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() gefaald. PayPal IPN werkt mogelijk niet op uw server." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Geïnstalleerde Plugins" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Bezoek plugin homepage" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "door" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "Versie" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Geef je formulier een titel. Dit is hoe je formulier later kunt vinden." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Je hebt geen verzend knop toegevoegd aan je formulier." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Invoer Sjabloon" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Elke karakter die je plaatst in de \"aangepast sjabloon\"box, dat niet in de " "onderliggende lijst zit, wordt automatisch toegevoegd als de gebruiker deze " "typt en kan niet worden verwijderd" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Dit zijn de voorgedefinieerde sjabloon tekens" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Reprensenteerd een alpha karakter (A-z, a-z) - Alleen letters zijn toegestaan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Representeerd een nummeriek karakter (0-9) - Alleen nummers zijn toegestaan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Representeerd een alphanummeriek karakter (A-Z,a-z,0-9) - Hier mogen " "nummers en letters worden ingevoerd." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Dus, als je een sjabloon voor een Amerikaans Sociaal Nummer wilt voer dan " "999-99-9999 in het veld" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "De 9s reprensenteerd elk nummer, en de -s wordt automatisch toegevoegd" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Zo wordt voorkomen dat een gebruiker niets anders kan invullen dan alleen nummers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Je kunt deze ook altijd combineren, voor specifieke aplicaties" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Bijvoorbeeld, als u een productcode had, die in de vorm was van " "A4B51.989.B.43C , kun je dit type sjabloon gebruiken: a9a99.999.a.99a , dit " "dwingt gebruikers om alle a's in letters en de 9s zijn dan alleen nummers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Gedefinieerde Velden" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Favorieten Velden" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Betaling Velden" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Sjabloon Velden" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Gebruikers Informatie" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Alles" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Bulkacties" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Toepassen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formulieren Per Pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Gaan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Ga naar de eerste pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Ga naar de vorige pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Huidige Pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Ga naar de volgende pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Ga naar de laatste pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Formuliertitel" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Verwijder dit formulier" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Dupliceer Formulier" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formulieren Verwijderd" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formulier Verwijderd" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Formulier Voorbeeld" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Weergave" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Venster Formulier Titel" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Voeg formulier toe aan deze pagina" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Verzend via AJAX (zonder herladen pagina)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Maak succesvol verstuurde formulier leeg?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Als dit vakje is aangevinkt, zal Ninja Formulieren het formulier te wissen " "nadat deze is verzonden." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Verberg succesvol ingevulde formulier?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Als dit vakje is aangevinkt, zal Ninja Formulieren het formulier verbergen " "nadat het is verzonden." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Beperkingen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Verreist gebruiker om ingelogd te zijn om dit formulier te zien." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Niet Ingelogd Bericht" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Bericht weergegeven aan gebruikers als de \"logged in\" checkbox hierboven is " "aangevinkt en ze zijn niet ingelogd." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limiteer Inzendingen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Selecteer het aantal inzendingen dat dit formulier accepteert. Laat leeg voor " "geen limiet." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Limiet Bereikt Bericht" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Gelieve een bericht dat u wilt weergeven wanneer dit formulier zijn " "inzendingen limiet heeft bereikt en zal geen nieuwe inzendingen meer accepteren." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Formulier Instellingen Opgeslagen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Basis Instellingen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms basis help komt hier." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Uitbreidingen Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentatie komt binnenkort" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktief" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Geïnstaleerd" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Leer Meer" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup / Herstel" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Herstel Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Data succesvol hersteld" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importeer Favorieten Velden" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Selecteer een bestand" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importeer Formulieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Geen Favorieten Velden Gevonden" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Exporteer Favorieten Velden" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Exporteer Velden" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Selecteer favoriete velden om te exporteren." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favorieten succesvol geïmporteerd." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Selecteer een geldig favoriet veld bestand." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importeer een formulier" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importeer Formulier" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Exporteer een formulier" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Exporteer Formulier" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Selecteer een formulier alstublieft" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formulier succesvol geïmporteerd." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Selecteer een geldig formulier bestand om te exporteren." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importeren / Exporteren Inzendingen" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Datum Instellingen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Algemeen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Algemeen Instellingen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versie" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Datum Formaat" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Probeert de te volgen %sPHP date() function%s specificaties, maar niet elke " "indeling wordt ondersteund." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Valuta Symbool" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Instellingen reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA sitesleutel" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Haal een sitesleutel voor jouw domein op door je %shier te registreren%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA geheime sleutel" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA taal" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "Taal gebruikt door reCAPTCHA. %sCode voor je taal ophalen%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Als dit vakje is aangevinkt, worden ALLE Ninja Formulieren gegevens " "verwijderd %sAll form and submission data will be unrecoverable.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Beheermeldingen uitschakelen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Toon nooit beheermeldingen van Ninja Forms op het dashboard. Verwijder het " "vinkje om ze weer te zien." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Deze instelling zorgt ervoor dat bij het verwijderen van de plugin alles dat " "met Ninja Forms te maken heeft, VOLLEDIG wordt verwijderd. Hieronder vallen " "ook FORMULIEREN en INZENDINGEN. Dit kan niet ongedaan gemaakt worden." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Verder gaan" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Instellingen Opgeslagen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Berichten Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Verplicht Veld Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Verplicht Veld Symbool" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Fout melding geven, wanneer niet alle verplichte velden zijn ingevuld" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Verplicht Veld Fout" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Anti-spam fout bericht" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honingpot Fout Bericht" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Tijdklok Fout Bericht" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Javascript uitgeschakeld Fout Bericht" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Voer a.u.b. een geldig email adres in." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Verwerken Inzendingen Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Dit bericht wordt getoond in de verzendknop, wanneer een gebruiker klikt op " "\"Verzenden\" om hen te laten weten dat het aan het verwerken is." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Paswoorden Ongelijk Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Dit bericht wordt getoond aan een gebruiker wanneer geen gelijke waardes in " "de velden wachtwoord worden geplaatst." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licenties" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Opslaan & Activeren" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Deactiveer Alle Licenties" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Om licenties voor uitbreidingen op Ninja Forms te activeren moet je eerst de " "gekozen uitbreiding %sinstalleren en activeren%s. Licentieinstellingen worden " "daarna hieronder weergegeven." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Het formulierconversieproces terugzetten" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Conversie formulier terugzetten" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Als je formulieren \"ontbreken\" na het bijwerken naar versie 2.9, dan " "probeert deze knop je formulieren opnieuw om deze in versie 2.9 te tonen. " "Alle bestaande formulieren blijven staan in de tabel \"Alle formulieren\"" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Alle bestaande formulieren zullen blijven staan in de tabel \"Alle " "formulieren\". In sommige gevallen worden ze tijdens dit proces gedupliceerd." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Administrator Email" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Gebruiker Email" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms moet uw formulier meldingen upgraden, klik %shere%s om de upgrade " "te starten." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms moet uw email instellingen upgraden, klik %shere%s om de upgrade " "te starten." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms moet de inzendingentabel upgraden, klik %shere%s om de upgrade te starten." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Bedankt voor de update naar versie 2.7 van Ninja Forms. Update elke Ninja " "Forms uitbreidingen van" #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Uw versie van de Ninja Forms File Uploaduitbreiding is niet compatibel met " "versie 2.7 van Ninja Forms. Het moet minstens versie 1.3.5 zijn. Update deze " "module op" #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Uw versie van de Ninja Forms Progress Save uitbreiding is niet compatibel met " "versie 2.7 van Ninja Forms. Het moet minstens versie 1.1.3 zijn. Update deze " "module op" #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Bijwerken van Formulierdatabase" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms moet uw formulier instellingen upgraden, klik %shere%s om de " "upgrade te starten." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Upgrade Ninja Forms is bezig" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Neem %scontact op met support%s met de foutmelding die je hierboven ziet." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms heeft alle beschikbare updates uitgevoerd!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Ga naar formulieren" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms upgrade" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Upgrade" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Upgrade afgerond" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms moet %s upgrade(s) uitvoeren. Dit kan enkele minuten duren. " "%sStart upgrade%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Stap %d van ongeveer %d lopende" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms Systeem Status" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Sterkte indicator" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Erg zwak" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Zwak" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Goed" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Sterk" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Verkeerde combinatie" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Selecteer Eén" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Ben je mens en zie je dit veld , laat het dan leeg." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Velden met een * zijn verplicht." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Dit is een verplicht veld." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Controleer a.u.b. de verplichte velden." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Berekening" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Aantal decimalen." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Tekstveld" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Output berekening " #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Label" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "UItschakelen invoer?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Gebruik de volgende shortcode om de definitieve berekening te voegen: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "U kunt berekeningsvergelijkingen hier invoeren met field_x waarbij x de ID " "van het veld dat u wilt gebruiken. Bijvoorbeeld, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Complexe vergelijkingen kunnen worden gemaakt door het toevoegen van " "haakjes: %s( field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Gebruik deze operatoren: + - * /. Dit is een geavanceerde functie. Kijk uit " "voor dingen als delen door 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Bereken Totalen Waardes Automatisch" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Specifeer Uitwerking En Velden (Gevorderd)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Gebruik Een Vergelijking (Gevorderd)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Rekenkundige Methode" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Veld Uitwerking" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Voeg Uitwerking toe" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Gevorderde Vergelijking" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Berekeningsnaam" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Dit is de programmatische naam van uw veld. Voorbeelden zijn: my_calc, " "prijs_totaal, gebruikers-totaal." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Standaard Waarde" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Aangepaste CSS Klasse" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Selecteer een Veld" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Selectievak" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Gedeselecteerd" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Geselecteerd" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Vertoon dit" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Verberg dit" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Verander Waarde" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albanië" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algerije" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Amerikaans-Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Vorstendom Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarctica" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua en Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentinië" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenië" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australië" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Oostenrijk" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrein" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbedos" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Wit-Rusland" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "België" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnië en Herzegowina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Eiland" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brazilië" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Brits Indische Oceaan Territorium" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgarije" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambodja" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Kamaroen" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Kaapverdië" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Kaaimaneilanden" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Centraal-Afrikaanse Republiek" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chilie" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Eiland" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocoseilanden" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoren" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Congo, de Democratische Republiek" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cook eilanden" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Ivoorkust" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Kroatië (Lokaal naam: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Tjechië" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Denemarken" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominicaanse Republiek" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Oost-Timor (East Timor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypte" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estland" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Ethiopië" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falkland eilanden (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Faeröer" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Frankrijk" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Frankrijk, Metropolitan" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Frankrijk Guiana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Frans-Polynesië" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Franse Zuidelijke Gebieden" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Duitsland" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Griekenland" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Groenland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard en McDonaldeilanden" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Heilige Stoel (Vaticaanstad)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hongarije" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Ijsland" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonisië" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Islamitische Republiek)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Ierland" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italië" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazachstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenia" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korea, Democratische Volksrepubliek van" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea, Republic Of" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Koeweit" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirgizië" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Lao Democratische Volksrepubliek" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Letland" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Libanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libië" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Lichtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Litouwen" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemburg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Macedonië, Voormalige Joegoslavische Republiek" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Maleisië" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maladieven" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshall Eilanden" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritanië" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Micronesië, Federale Staten van" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldavië" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolië" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marokko" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibië" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Nederland" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Nederlandse Antillen" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nieuw Caledonië" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nieuw Zeeland" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Eiland" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Noordelijke Marianen" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Noorwegen" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papoea Nieuw Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filippijnen" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairneilanden" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polen" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Réunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Roemenië" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Rusland" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts en Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent en de Grenadines" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tome en Principe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saoedi Arabië" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Servië" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychellen" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakijë" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenië" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Solomon Eilanden" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalië" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Zuid Afrika" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Zuid-Georgia en de Zuidelijke Sandwicheilanden" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spanje" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Sint-Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint-Pierre en Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Soedan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Spitsbergen en Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Zweden" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Zwitserland" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syrische Arabische Republiek" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tadzjikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania, Verenigde Republiek" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad en Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunesië" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turkije" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks-en Caicoseilanden" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Oeganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Oekraïne" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Verenigde Arabische Emiraten" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Verenigd Koninkrijk" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Verenigde Staten" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Kleine afgelegen eilanden van de Verenigde Staten" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Maagdeneilanden (Britse)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Amerikaanse Maagdeneilanden" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis en Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Westelijke Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Jemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Joegoslavië" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Land" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Standaard Land" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Gebruik een aangepaste eerste optie" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Gebruik een aangepaste eerste optie" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Zuid Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Credit Card" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Kaart Nummer Label" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Kaart Nummer" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Kaart Nummer Beschrijving" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "De (typische) 16 cijfers op de voorkant van uw credit card." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Kaart CVC Label" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Kaart CVC Beschrijving" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "De 3 cijfers (achterzijde) of 4 cijfers (voorzijde) op uw credit card." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Kaart Naam Label" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Naam op de kaart" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Kaart Naam Beschrijving" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "De naam die op de voorzijde staat van uw credit card." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Kaart Vervalmaand Label" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Verval Maand (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Kaart Vervalmaand Beschrijving" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "De maand van dat uw credit kaart vervalt, meestal op de voorkant van uw kaart." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Kaart Vervaljaar Label" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Vervaljaar (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Kaart Vervaljaar Beschrijving" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Het jaar van dat uw credit kaart vervalt, meestal op de voorkant van uw kaart." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Tekst" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Tekstelement" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Verborgen Veld" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Gebruiker ID (wanneer ingelogd)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Gebruiker Voornaam (wanneer ingelogd)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Achternaam gebruiker (wanneer ingelogd)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Schermnaam gebruiker (wanneer ingelogd)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "E-mail gebruiker (wanneer ingelogd)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "ID bericht / pagina (indien beschikbaar)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Titel bericht / pagina (indien beschikbaar)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL bericht / pagina (indien beschikbaar)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Datum vandaag" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Querystring variabele" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Dit sleutelwoord is gereserveerd voor WordPress. Probeer een ander." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Is dit een email adres?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Als dit vakje is aangevinkt, zal Ninja Forms dit als een e-mailadres valideren." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Verzend een kopie van dit formulier naar dit adres?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Als dit vakje is aangevinkt, zal Ninja Forms een kopie van dit formulier (en " "alle aangehechte berichten) sturen naar dit adres." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honingpot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "Lijn" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Lijst" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Dit is de gebruikers status" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Geselecteerde Waarde" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Waarde toevoegen" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Waarde verwijderen" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Rekenen" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Checkboxes" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multi-Selectie" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Lijst Type" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Grootte Multi-Select Box" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Lijstitems importeren" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Toon lijst item waardes" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importeer" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Om deze functie te gebruiken, kunt u uw CSV plakken in het tekstveld hierboven." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Het formaat moet er als volgt uitzien:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Label,Waarde,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Als u een lege waarde of berekening wilt versturen, moet u gebruik maken van " "'' ." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Geselecteerd" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Nummer" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimum Waarde" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maximum Waarde" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Stap (aantal om mee op te hogen)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizer" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Wachtwoord" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Gebruik dit als een registratie wachtwoord veld" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Als dit vakje is aangevinkt, zal zowel wachtwoord- en het her-wachtwoord " "tekstvak worden uitgestuurd." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Label van Wachtwoord nogmaals" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Wachtwoord nogmaals" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Toon indicator wachtwoordsterkte" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Hint: Het wachtwoord moet minimaal zeven tekens lang zijn. Om het sterker te " "maken, gebruik hoofdletters en kleine letters, cijfers en symbolen zoals ! " "\" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Wachtwoorden zijn niet gelijk." #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Waardering met sterren" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Aantal sterren." #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Bevestig dat je geen robot bent" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Vul het anti-spamveld in" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Controleer nog eens of je de sitesleutel en geheime sleutel goed hebt ingevuld" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Anti-spamveld komt niet overeen. Vul de juiste waarde in het anti-spamveld in." #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Spam vraag" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Spam Antwoord" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Verzend" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Belasting" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Belastingpercentage" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Moet ingevoerd worden als een percentage, v.b. 8,25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Tekstveld" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Toon Rich Tekst Editor." #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Toon Media Upload Knop" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Schakel Rich Tekst (RTF) Editor uit voor Mobiel" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Valideren als een e-mailadres? (Dit veld is vereist)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "UItschakelen invoer?" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datumkiezer" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefoon - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Valuta" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Aangepast Sjabloon Defenitie" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "help" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Vertraagd verzenden" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Tekst van de verzendknop na het afgelopen van de timer" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Wacht a.u.b. %n seconden" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n wordt gebruikt om het aantal seconden aan te duiden" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Aantal seconden voor aftellen" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Dit is hoe lang een gebruiker moet wachten om het formulier te verzenden" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Ben je een mens, ga dan niet zo snel." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Je hebt Javascript nodig om dit formulier te verzenden, Schakel het in en " "probeer opnieuw." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Lijstveldtoewijzing" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Belangengroepen" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Enige" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Meerdere" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Lijsten" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "vernieuwen" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metavak" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Metavak verzending" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Meta van gebruiker (indien aangemeld)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Betaling innen" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Geen formulieren gevonden." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Aanmaakdatum" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "titel" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "bijgewerkt" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Je poging is mislukt." #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Hoofditem:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Alle items" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Voeg nieuw item toe" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nieuw item" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Bewerk item" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Item bijwerken" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Bekijk item" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Zoek item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Niet gevonden in prullenbak" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Formulierverzendingen" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Verzendingsinformatie" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Nieuw Formulier toevoegen" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Fout bij importeren formuliersjabloon." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Formulier velden" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Het geüploade bestand heeft geen geldige indeling." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Ongeldige formulier geüpload." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Formulieren importeren" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Formulieren exporteren" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Vergelijking (geavanceerd)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Bewerkingen en velden (geavanceerd)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Velden met automatisch totaal" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Het geüploade bestand overschrijdt de upload_max_filesize waarde die in php.ini is opgegeven." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Het bestand dat is geüpload, overschrijdt de MAX_FILE_SIZE-richtlijn die is " "gespecificeerd in het HTML-formulier." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Het geüploade bestand is slechts gedeeltelijk geüpload." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Er is geen bestand geüpload?" #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Een tijdelijke map ontbreekt." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Het naar de schijf schrijven van het bestand is mislukt." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Het uploaden van het bestand is gestopt door de uitbreiding." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Onbekende uploadfout" #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Fout bij uploaden bestand" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Invoegtoepassingslicenties" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migratie- en testgegevens voltooid. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Formulieren weergeven" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Instellingen opslaan" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "IP-adres van server" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Hostnaam" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Een Ninja Forms-formulier toevoegen" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Formulier niet gevonden" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Veld niet gevonden" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Een onverwachte fout is opgetreden." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Voorbeeld bestaat niet" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Betaalgateways" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Betalingstotaal" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Haak-tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "E-mailadres of zoekopdracht voor een veld" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Onderwerptekst of zoekopdracht voor een veld" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "CSV bijvoegen" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Webadres" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Label hier" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Helptekst hier" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Voer het label van het formulierveld in. Hiermee kunnen gebruikers " "afzonderlijke velden identificeren." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Standaardwaarden formulier" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Verborgen" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Selecteer de positie van je label ten opzichte van het veldelement zelf." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Verplicht veld" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Zorg ervoor dat dit veld is ingevuld voordat je toestaat om het formulier te verzenden." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Getalopties" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Stap" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Opties" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Eén" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "één" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Twee" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "twee" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Drie" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "drie" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Berekende waarde" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Hiermee beperk je het type invoer dat gebruikers voor dit veld kunnen gebruiken." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "geen" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Amerikaans telefoonnummer" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "aangepast" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Aangepast masker" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Vertegenwoordigt een alfabetteken " "(A-Z,a-z) - Er mogen alleen letters worden ingevoerd.
    • " "\n
    • 9 - Vertegenwoordigt een numeriek teken " "(0-9) - Er mogen alleen cijfers worden " "ingevoerd.
    • \n
    • * - * - Vertegenwoordigt een " "alfanumeriek teken (A-Z,a-z,0-9) - Er mogen zowel cijfers " "als\n letters worden " "ingevoerd.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Invoer beperken tot dit aantal" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Teken(s)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Woord(en)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Tekst die wordt weergegeven na de teller" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Teken(s) resterend" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Voer tekst in die je in het veld wilt weergeven voordat een gebruiker " "eventuele gegevens invoert." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Aangepaste klassenamen" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Container" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Hiermee voeg je een extra klasse toe aan je veld-wrapper." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Hiermee voeg je een extra klasse toe aan je veldelement." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Vrijdag, 18 november 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Standaard instellen op huidige datum" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Aantal seconden voor getimed verzenden." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Veldsleutel" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Hiermee maak je een unieke code voor het identificeren en bereiken van het " "veld voor aangepaste ontwikkeling." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Een label dat wordt gebruikt bij het weergeven en exporteren van verzendingen." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Dit wordt zwevend weergegeven bij de gebruikers." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Beschijving" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Numeriek sorteren" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Deze kolom in de tabel met verzendingen wordt gesorteerd op getallen." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Aantal seconden voor het aftellen" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Gebruik dit als een registratiewachtwoordveld. Als dit selectievakje is " "ingeschakeld, worden\n de tekstvakken voor het " "wachtwoorden en het opnieuw invoeren van het wachtwoord als resultaat gegeven" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Bevestigen" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Hiermee maak je tekst met opmaakuitvoer mogelijk." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Verwerkingslabel" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Geselecteerde berekeningswaarde" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Dit getal wordt gebruikt in berekeningen als het vakje is ingeschakeld." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Niet-geselecteerde berekeningswaarde" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Dit getal wordt gebruikt in berekeningen als het vakje is uitgeschakeld." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Deze berekeningsvariabele weergeven" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Een variabele selecteren" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Prijs" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Gebruikshoeveelheid" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Hiermee stel je gebruikers in staat om meer dan een exemplaar van het product te kiezen." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Product Type" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Eén product (standaard)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Meerdere producten - Vervolgkeuzelijst" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Meerdere producten - Meerdere kiezen" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Meerdere producten - Eén kiezen" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Gebruikersinvoer" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Kosten" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Kostenopties" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Enkele kostenpost" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Vervolgkeuzelijst voor kostenposten" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Kostentype" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Product" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Een product selecteren" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Antwoord" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Een hoofdlettergevoelig antwoord voor het voorkomen van spamverzendingen via je formulier." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomie" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Nieuwe termen toevoegen" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Dit is de status van een gebruiker." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Dit wordt gebruikt voor het markeren van een veld voor verwerking." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Opgeslagen velden" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Algemene velden" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Velden met gebruikersinformatie" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Prijsinformatievelden" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Lay-outvelden" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Velden voor diversen" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Je formulier is verzonden." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Indienen Ninja-formulieren" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Ingediende documenten opslaan" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Variabelenaam" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Vergelijking" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Standaardlabelpositie" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Formulier sleutel" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Een programmatische naam die kan worden gebruikt om naar dit formulier te verwijzen." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "De knop Verzenden toevoegen" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "We hebben geconstateerd dat je formulier niet is voorzien van de knop " "Verzenden. We kunnen deze automatisch voor je toevoegen." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Ingelogd" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Van toepassing op het formuliervoorbeeld." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Verzendingslimiet" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "NIET van toepassing op het formuliervoorbeeld." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Toon instellingen" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Berekeningen" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja-formulieren" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Prijs:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Hoeveelheid:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Toevoegen" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Openen in nieuw venster" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Als je een persoon bent die dit veld ziet, laat je het leeg." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Beschikbaar" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Voer een geldig e-mailadres in!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Deze velden moeten overeenkomen" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Fout met minimumaantal" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Fout met maximumaantal" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Toenemen met " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Koppeling invoegen" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Media invoegen" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Corrigeer de fouten voordat je dit formulier indient." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot-fout" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Bestand wordt geüpload." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "BESTANDSUPLOAD" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Alle velden" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Subsequentie" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Post ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Berichttitel" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Bericht-URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP-adres" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "Gebruiker-ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Voornaam" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Achternaam" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Naam" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Opinionated-stijlen" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Eenvoudig" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Donker" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Gebruik standaard Ninja Forms-stijlconventies." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Terugdraaien" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Terugdraaien tot v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Terugdraaien tot de recentste 2.9.x-release." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Instellingen voor nieuwe captcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Thema voor nieuwe captcha" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "RTF-editor" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Verbetering" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administratie" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Lege formulieren" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Neem contact met me op" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Testactie succesmelding" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Bedankt {field:name} voor het invullen van mijn formulier!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Testactie e-mail" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Dit is een e-mailactie." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hallo, Ninja-formulieren!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Testactie opslaan" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Dit is een test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Dit is een nog een test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Hulp zoeken..." #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Waarmee kunnen we je helpen?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Mee eens?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Beste contactmethode?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telefoon" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Normale post" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Verzenden" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Aanrecht" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Lijst selecteren" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Optie één" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Optie twee" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Optie drie" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Lijst met keuzerondjes" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Gootsteen badkamer" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Lijst met selectievakjes" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Dit zijn alle velden in het gedeelte Gebruikersgegevens." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Adres" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Plaats" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Postcode" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Dit zijn alle velden in het gedeelte Prijzen." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Product (aantal inbegrepen)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Product (afzonderlijk aantal)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Aantal" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Totaal" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Volledige naam creditcard" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Creditcardnummer" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Beveiligingscode creditcard" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Verloopdatum creditcard" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Postcode creditcard" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Er zijn diverse speciale velden." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Antispamvraag (antwoord = antwoord)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "antwoord" #: includes/Database/MockData.php:805 msgid "processing" msgstr "verwerken" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Lang formulier - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Velden" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Veldnummer" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Inschrijvingsformulier e-mails" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "E-mailadres" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Uw e-mailadres invoeren" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Abonneren" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Productformulier (met veld voor aantal)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Kopen" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Jouw aankoop: " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "product(en) voor " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Productformulier (inline aantal)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " product(en) voor " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Productformulier (meerdere producten)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Product A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Aantal voor product A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Product B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Aantal voor product B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "van product A en " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "van product B voor $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formulier met berekeningen" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Mijn eerste berekening" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Mijn tweede berekening" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Berekeningen worden teruggestuurd met de AJAX-reactie (reactie -> data -> berekeningen" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Kopiëren" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Sla formulier op" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Postcode creditcard" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Je moet zijn aangemeld als je een voorbeeld van een formulier wilt weergeven." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Geen velden gevonden." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Kennisgeving: Er is een Ninja Forms-shortcode gebruikt zonder een formulier te specificeren." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Er is een Ninja Forms-shortcode gebruikt zonder een formulier te specificeren." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Adres 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Knop" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Enkel selectievakje" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "ingeschakeld" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "uitgeschakeld" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Creditcard-CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d-m-Y" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Scheiding" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Selecteer" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Provincie" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Opmerkingstekst kan worden bewerkt in de geavanceerde instellingen van het opmerkingsveld." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Notitie" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Wachtwoord bevestigen" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "wachtwoord" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Nieuwe captcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Vul de nieuwe captcha in" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Geavanceerde verzending" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Vraag" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Vraagpositie" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Onjuist antwoord" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Aantal sterren" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Termenlijst" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Er zijn geen termen beschikbaar voor deze taxonomie. %sEen %s-term toevoegen" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Geen taxonomie geselecteerd." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Beschikbare termen" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Alineatekst" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Enkele regeltekst" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Postcode" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Plaatsen" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Querytekenreeksen" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Querytekenreeks" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Systeem" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Lid" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " vereist een update. Je hebt versie " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " geïnstalleerd. De huidige versie is " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Veld bewerken" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Labelnaam" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Boven veld" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Onder veld" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Links van veld" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Rechts van veld" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Label verbergen" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Klassenaam" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Basisvelden" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Meerkeuze" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Een nieuw veld toevoegen" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Een nieuwe actie toevoegen" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Menu uitvouwen" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Publiceren" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLICEREN" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Laden" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Wijzigingen weergeven" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Formuliervelden toevoegen" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Begin door je eerste formulierveld toe te voegen." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Een nieuw veld toevoegen" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Klik hier en kies de velden die je wilt." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Meer niet. Of..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Begin met een sjabloon" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Contact" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Laat je gebruikers contact met je opnemen via dit eenvoudige " "contactformulier. Je kunt ook velden toevoegen en verwijderen." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Offerteaanvraag" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Beheer offertevragen op je website eenvoudig met deze sjabloon. Je kunt ook " "velden toevoegen en verwijderen." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Registratie voor evenementen" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Laat je gebruiker zich registreren voor je volgende evenement met dit " "eenvoudige formulier. Je kunt ook velden toevoegen en verwijderen." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Aanmeldingsformulier voor nieuwsbrieven" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Voeg abonnees toe en breid je e-maillijst uit met dit aanmeldingsformulier " "voor nieuwsbrieven. Je kunt ook velden toevoegen en verwijderen." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Acties voor formulier toevoegen" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Begin door je eerste formulierveld toe te voegen. Klik op het plusteken en " "kies de acties die je wilt. Meer niet." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Kopiëren (^ + C + klik)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Verwijderen (^ + D + klik)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Acties" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Lade in-/uitschakelen" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Volledig scherm" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Half scherm" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Ongedaan maken" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Klaar" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Alles ongedaan maken" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Alles ongedaan maken" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Bijna klaar..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Nog niet" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Openen in nieuw venster" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Deactiveren" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Repareren." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Een formulier selecteren" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Huidige datum" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Lees het volgende voordat je onze support om hulp vraagt:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Documentatie Ninja-formulieren 3" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Hulpmiddelen voordat je contact opneemt met support" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "De reikwijdte van onze support" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Velden importeren" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Bijgewerkt op: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Ingediend op: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Ingediend door: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Ingediende gegevens" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Bekijk" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Toon meer" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Veld bewerken" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Formuliervelden" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Voorbeeld van wijzigingen weergeven" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Contactformulier" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Helaas! De invoegtoepassing is nog niet compatibel met Ninja Forms THREE. " "%sMeer informatie%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s is gedeactiveerd." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Help ons om Ninja-formulieren te verbeteren!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Als je je inschrijft, worden er enkele gegevens over je installatie van " "Ninja-formulieren verzonden naar Ninjaforms.com verzonden (dit gaat NIET over " "je verzendingen)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Je kunt dit overslaan, als je wilt. De Ninja-formulieren werken gewoon." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sToestaan%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sWeigeren%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Je hebt geen toestemming." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Toestemming geweigerd" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ontwikkeling Ninja-formulieren" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "FOUTOPSPORING: Overschakelen naar 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "FOUTOPSPORING: Overschakelen naar 3.0.x" lang/ninja-forms-zh_CN.mo000064400000250701152331132460011251 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8   +E-&s\?7SZjz  K06ETcr4lH8s9 / < IVfmt{   %/BUqx '.363j    *4DT[ q ~ xfix-)9   # * 4'>f#=Wg n x    / BL S` d q ~   6  $ 1 ; E R_ fp  $ 1;BXn     ; H R \f m8w & 3@ G T anu     %/6=\ x N 5 ? LY` gt {  9T U _ m{ *  ! +5J_u   )B[_u|  IQ Xe x " *=D K Xe0C _*l    ",?Fr\ '.AHO j w     !7J]!v!6* 2<?K|E'.5HXh3o    ' 4A Ta t$  " 2?Fe    , ER n{ " /?Obi pz   :*Con 9LS q~   $ 4>QX_{  !  *7P ` jt{NK^lKKcB<3/$c6vE6I|ahx     -GZjq x     / N X!b   -$ 4> E R_f mw   *G!Df m z  !         9 C S W s                (  2  =  H !U w      i &  6 C  S ` g       T    # < \  c  m  z           & 6  O Y  r           $18?O _ls a 2 E O Yc |   .AZs_$ATf0\RI/LyL7#3.O~!   #-C<J&@  )9 I Vc|!M  6 C M Wa hr   ) ? L V` gt        7*7'K$s]$-'I$q- $0%$0-$Jbo  *$1'V%~            % 2 E ^ e      !  !0!M! T!a! h!r!y!! !!!!! ! !" ""'"$@" e" o"y"+" ""B"#$ #E# L#Y#l####"#### $$9"$\$ o$y$ $ $$"$$ $$ %%%"%4% J%W%v% %!%%%%% % % & & #&-&=& M& Z&g&n& u&'& &&'&?&6.' e' o'|''' ' '''' '' (&(5(H( a(n(( ((!( ( (() ) )-) F)'Q)y) )o)* * *0*@*$G*l* s*}**!* * ** * ++"+:+A+&H+o+++ +++++ + + , ,, *,7,>,'E,*m, , , , ,,, ,, ,- -,-3-:-V- ]-j---+--- -- - . .. %.2.+Q. }. ...`.L/Te/o/#*07N090700$1162i2$T3y33x3E%4Bk4'464 5m5! 6'-6-U6"666-67(7D7W7s77-757O 8\8"r8%888s9o9K:3h:6::uY;;6;%< ,<9< O< Y<c<P<>= N=[= b=l=s= z=M== = ==> +>5><>C> G> T> ^> h>r>>^? e?r????? ?? ???@@3@ :@G@ K@U@ n@{@+@=@N@MAlAA B!B6B$IB nB{B BBB BBBC3CFC\CD<%DbD fD sD DDD DDD D D D D D DDE3EOEbE rE|EEEE EEEFWGtGxGGG G$G'G!H =H?JH!HHHHHH H HHHMH-Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . 字段 新窗口打开 全部撤消 已安装。当前版本是 产品的 要求更新。您的版本 #%1$s 草稿已更新。预览 %3$s%1$s 已从 %2$s 复原为修订版。已为 %2$s 安排了 %1$s。预览 %4$s%1$s 已提交。预览 %3$s%n 将被用于指示秒数%s 前%s 已发布。%s 已保存。%s 已更新。%s 已停用。%s允许%s%s选中%s的计算值%s不允许%s%s未选中%s的计算值* - 代表字母数字字符 (A-Z,a-z,0-9) - 这允许输入数字和字母- 无- 选择一个- 选择字段- 选择产品- 选择变量- 选择表单- 查看所有类型9 - 代表数字字符 (0-9) - 进允许输入数字
    • a - 代表字母字符 (A-Z,a-z) - 仅允许输入字母。
    • 9 - 代表数字字符 (0-9) - 进允许输入数字。
    • * - 代表字母数字字符 (A-Z,a-z,0-9) - 这允许输入数字 和字母。
    一个区分大小写的回答,帮助防止您表单的垃圾提交。Ninja Forms 将获得重大更新。%s详细了解新功能、向后兼容性,以及更多常见问题解答。%s一种更加简单、更加强大的表单建造体验。元素上方以上字段操作名称操作已更新操作激活激活添加添加描述添加表单添加新的搜索项添加新字段添加新表单添加新项目添加新提交添加新的术语添加操作添加提交按钮添加值添加表单操作添加表单字段将表单添加到此页面添加新操作添加新字段使用这个新闻事件注册表单添加订户和增加电子邮件列表。可以根据需要添加和删除字段。加载项许可证加载项地址地址2向您的字段元素添加一个额外的类别。向您的字段包装添加一个额外的类别。管理员电子邮件管理标签管理高级高级等式高级设置高级发货阿富汗在一切之后后表单在标签之后同意?阿尔巴尼亚阿尔及利亚所有关于表单的一切所有字段全部表单全部项目当前所有表单将留在“全部表单”表中。在一些情况下,一些表单可能在此过程中被复制。允许用户注册您的下一个事件轻松完成表单。可以根据需要添加和删除字段。让您的用户使用这个简单的联系表单与您联系。可以根据需要添加和删除字段。允许富文本输入。允许用户选择一个以上的本产品。即将完成...除“建造您的表单”选项卡外,我们还移除了“通知”,更换为“电子邮件和操作”。这更清楚地说明了此选项卡的作用。美属萨摩亚发生了意外错误。安道尔安哥拉安圭拉答案南极洲反垃圾反垃圾邮件问题 (Answer = answer)反垃圾信息出错消息安提瓜和巴布达您在“自定义掩码”文本框中输入的任何不在下面列表中的字符将在用户键入时自动输入,且不可移除。附加一个 Ninja 表单附加一个 Ninja 表单附加到网页应用阿根廷亚美尼亚阿鲁巴附加 CSV附件澳大利亚奥地利自动总计字段自动总计计算值可用可用的术语阿塞拜疆返回表单返回表单备份 / 还原备份 Ninja Forms巴哈马巴林孟加拉国Bar巴巴多斯普通字段基本设置浴室水槽Baz密件抄送在一切之前前表单在标签之前向我们支持团队请求支援之前,请查看:开始日期存在日期白俄罗斯比利时伯利兹元素下方以下字段贝宁百慕大最佳联系方式?业内最佳的客户支持字段设置组织得更好了更好的许可证管理不丹账单:空白表单玻利维亚波斯尼亚和黑塞哥维那博茨瓦纳圣诞岛巴西英属印度洋领地文莱达鲁萨兰国建造您的表单保加利亚批量操作布基纳法索布隆迪按钮安全码计算计算值计算计算方法计算设置计算名称计算使用 AJAX 回复返回运算(回复 -> 数据 -> 运算柬埔寨喀麦隆加拿大取消佛得角Captcha 不符。请在 captcha 字段输入正确的值卡 CVC 描述卡 CVC 标签卡到期月份描述卡到期月份标签卡到期年份描述卡到期年份标签卡名描述卡名标签卡号卡号描述卡号标签开曼群岛抄送中非共和国乍得更改值字符剩余字符字符开玩笑,呵?查看我们的文档复选框复选框列表复选框已选中选中的计算值智利中国圣诞岛城市类别清除成功完成的表单?科科斯(基林)群岛收集付款哥伦比亚普通字段科摩罗复杂的等式可通过添加括号创建:%s( field_45 * field_2 ) / 2%s。确认确认您不是机器人刚果刚果民主共和国联系表与我联系联系我们容器继续库克群岛成本成本下拉成本选项成本类型哥斯达黎加科特迪瓦无法激活许可证。请验证您的许可证密钥。国家创建一个独一无二的密钥以指认和标记用于自定义开发的字段。信用卡信用卡 CVC信用卡 CVV信用卡到期日期信用卡全名信用卡号信用卡邮编信用卡邮政编码积分克罗地亚(当地名称:赫尔瓦)古巴货币货币符号当前页自定义自定义 CSS 类别自定义 CSS 类别自定义类别名称自定义字段组自定义掩码自定义掩码定义自定义字段已删除自定义字段已更新。自定义首选项塞浦路斯捷克共和国DD-MM-YYYYDD/MM/YYYY调试:切换到 2.9.x调试:切换到 3.0.x暗数据成功还原!日期已创建日期日期格式日期设置数据已提交更新日期日期选择器停用停用停用全部许可证停用许可证逐个或按组从设置选项卡中停用 Ninja Forms 扩展许可证。默认默认国家默认标签位置默认时区默认为当前日期默认值默认时区是 %s默认时区是 %s - 他将是 UTC定义的字段删除删除(^ + D + 单击)永久删除删除此表单永久删除此项丹麦描述描述内容描述位置您知道吗?将较大的表单分割为较小的、更容易消化的多个部分有助于提升表单转化率。

    Ninja Forms 的“多部分表单”扩展让这个操作变得轻松快捷。

    禁用管理通知禁用浏览器自动完成禁用输入在移动设备上禁用富文本编辑器禁用输入?忽略显示显示表单标题显示名称显示设置显示此计算变量显示标题显示您的表单分隔符吉布提不显示这些项文档文档即将到来。从%s故障排除%s到我们的%s开发者 API%s,文档中什么都有。我们还在不断添加新的文档。不适用于表单预览。适用于表单预览。多米尼克多米尼加共和国完成下载所有提交下拉复制复制(^ + C + 单击)复制表单厄瓜多尔编辑编辑操作编辑表单编辑项目编辑菜单项编辑提交编辑此项目编辑字段编辑字段埃及萨尔瓦多元素电子邮件电子邮件和操作电子邮件地址电子邮件消息电子邮件订阅表单电子邮件地址或搜索字段电子邮件地址或搜索字段电子邮件将显示为来自此电子邮件地址。电子邮件将显示为来自此名字。电子邮件和操作结束日期确保此字段填写完毕,然后才允许提交表单。输入您想要在用户输入任何数据前显示在字段中的文本。输入表单字段的标签。用户以这种方式指认各字段。输入电子邮件地址环境公式等式(高级)赤道几内亚厄立特里亚错误未完成所有必填字段时给出的出错消息爱沙尼亚埃塞俄比亚事件注册展开菜单到期月份 (MM)到期年份 (YYYY)导出导出收藏字段导出字段导出表单导出表单导出一个表单导出此项延长 Ninja Forms上传文件无法将文件写入磁盘。福克兰群岛(马尔维纳斯)法罗群岛收藏字段收藏夹已成功导出。字段字段 #字段 ID字段密钥未找到字段字段操作字段标有 * 的字段为必填。标有 %s*%s 的字段为必填斐济文件上传出错上传文件进行中。文件上传被扩展终止。芬兰名字进行修复。FooFoo Bar例如,如果您有一个格式为 A4B51.989.B.43C 的产品密钥,您可以用掩码表示为:a9a99.999.a.99a,这将强制所有的 a 都为字母,所有的 9 都为数字表单表单默认删除的表单表单字段表单已成功导出。表单密钥未找到格单表单预览已保存的表单设置表单提交表单模板导入出错。表单标题带运算的表单格式表单删除的表单每页的表单数法国法国本土法属圭亚那法属波利尼西亚法国南部领土2019 年 11 月 18 日,星期五发件人地址发件人姓名完整更新日志全屏加蓬冈比亚常规常规设置格鲁吉亚德国获取帮助获取更多操作获取更多类型获取帮助获取客户支持获取系统报告在%s这里%s注册,为您的域名获取网站密钥。通过添加第一个表单字段开始。通过添加第一个表单字段开始。只需单击加号并选择想要执行的行动。就这么简单。开始Ninja Forms 使用入门加纳直布罗陀给您的表单取个标题。以便将来查找表单。确定Go get a life, script kiddies转到表单转到 Ninja Forms到第一页到末页到下一页到上一页希腊格陵兰格林纳达不断扩充的文档瓜德罗普岛关岛危地马拉几内亚几内亚比绍圭亚那编辑 HTML 源码海地半屏赫德和麦克唐纳群岛你好, Ninja Forms!帮助帮助文本帮助文本在此隐藏隐藏字段隐藏标签隐藏这个隐藏成功完成的表单?提示:此密码长度至少应为七个字节。要提升密码强度,请使用大写和小写字母、数字和符号,如 ! " ? $ % ^ & )。罗马教廷(梵蒂冈城国)首页 URL洪都拉斯Honey PotHoneypot 出错Honeypot 出错消息香港特别行政区,中国钩子标签Host Name(主机名)最近可好?匈牙利IP 地址冰岛如果启用了“描述文本”,输入字段旁会放置一个问号 %s。将鼠标悬停在问号上方将显示描述文本。如果启用了“帮助文本”,输入字段旁会放置一个问号 %s。将鼠标悬停在问号上方将显示帮助文本。如果勾选此框,删除时将从数据库中移除所有 Ninja Forms 的数据。%s所有的表单和提交数据将无法复原。%s如果选中此框,Ninja Forms 将在表单成功提交后清除表单值。如果选中此框,Ninja Forms 将在表单成功提交后隐藏表单。如果选中此框,Ninja Forms 将发送此表单的副本(以及任何附加的消息)到此地址。如果选中此框,Ninja Forms 将验证此输入为电子邮件地址。如果选中此框,密码和重新输入密码文本框都将为输出。如果选中此框,提交表中的此列将按照数字排序。如果您是人类并看到了此字段,请将其留空。如果您看到了这个字段,请保留空白。如果您是人类,请慢下来。如果您将文本框留空,则将不会使用限制如果选择加入,您 Ninja Forms 的一些安装数据将被发送到 NinjaForms.com(不包括您的提交)。您也可以跳过这一步骤。Ninja Forms 仍然会良好运行。如果您想要发送一个空白的值或计算,您应使用 ‘’。如果您想要您的表单在有用户点击提交时通过电子邮件对您进行通知,您可以在此选项卡中进行设置。您可以创建无限量的电子邮件,包括发送给填写了表单的用户的电子邮件。如果您的表单在升级 2.9 后“消失”,此按钮将尝试重新转换您的旧表单以便在 2.9 中显示。当前所有表单将留在“全部表单”表中。导入导入 / 导出导入 / 导出提交导入收藏字段导入收藏夹导入字段导入表单导入表单导入列表项导入一个表单导入/导出更加清楚了包括在自动计总之内?(如启用)不正确的答案提升转化率印度印尼输入掩码插入插入所有字段插入字段插入链接插入媒体增加元素内部已安装已安装的插件利益群体上传的表单无效。无效的表单 ID伊朗(伊斯兰共和国)伊拉克爱尔兰这是个电子邮件地址吗?以色列就这么简单。或者......意大利牙买加日本JavaScript 禁用出错消息John Doe约旦只需单击此处并选择想要的字段。哈萨克斯坦肯尼亚密钥基里巴斯Kitchen Sink朝鲜韩国科威特吉尔吉斯斯坦标签标签在此标签名称标签位置查看和导出提交时使用的标签。标签,值,计算标签reCAPTCHA 使用的语言。单击%s此处%s为您的语言获取代码老挝老挝人民民主共和国姓氏拉脱维亚布局元素布局字段了解更多详细了解“多部分表单”详细了解“保存进度”黎巴嫩元素左边字段左侧莱索托利比里亚阿拉伯利比亚民众国许可证列支敦士登亮限制对此号码的输入达到限制消息限制提交限制对此号码的输入列表列表字段映射列表类型列表立陶宛正在加载正在加载……位置‌已登录长格式 - 卢森堡MM-DD-YYYYMM/DD/YYYY中国澳门前南斯拉夫马其顿共和国马达加斯加马拉维马来西亚马尔代夫马里马耳他使用这个模板可以从您的网站轻松地管理报价。可以根据需要添加和删除字段。马绍尔群岛马提尼克毛里塔尼亚毛里求斯最大最大输入嵌套级别最大值以后再说马约特岛中邮件消息标签如果用户勾选了上面的“登录”复选框但未登录时显示的消息。Metabox墨西哥密克罗尼西亚联邦完成迁移和模拟数据。 最小最小值其他字段不匹配缺失一个临时文件夹。模拟电子邮件操作模拟保存操作模拟成功消息操作修改于:摩尔多瓦共和国摩纳哥蒙古国黑山蒙特塞拉特更多内容即将到来摩洛哥将此项移至回收站莫桑比克多项选择多个产品 - 选择多个多个产品 - 选择一个多个产品 - 下拉复选复选框尺寸多个我的第一次运算我的第二次运算软件版本缅甸名称卡上的名字名字或字段纳米比亚瑙鲁需要帮助?尼泊尔荷兰荷属安的列斯群岛不再从 Ninja Forms 的仪表板上看到管理通知。取消选择则可再次看到通知。新操作新的建造器选项卡新喀里多尼亚新项目新提交新西兰新闻事件注册表单尼加拉瓜尼日尔尼日利亚Ninja Form 设置Ninja FormsNinja Forms - 正在处理Ninja Forms 更新日志Ninja Forms DevNinja Forms 文档Ninja Forms 正在处理忍者表格提交Ninja Forms 系统状态Ninja Forms THREE 文件Ninja Forms 升级Ninja Forms 升级正在处理Ninja Forms 升级Ninja Forms 版本Ninja Forms 小组件Ninja Forms 还有一个简单的模板功能,可以直接放置在 PHP 模板文件中。 %sNinja Forms 基础帮助在此处。Ninja Forms 无法网络激活。请访问各个网站的仪表板以激活插件。Ninja Forms 已完成了所有可用的升级!Ninja Forms 由来自世界各地的开发者组成的团队打造,他们的目标是提供世界第一的 WordPress 社区表单创建插件。Ninja Forms 需要处理 %s 个升级。这需要花费几分钟来完成。%s开始升级%sNinja Forms 需要升级您的电子邮件设置,单击%s此处%s开始升级。Ninja Forms 需要升级您的提交表,单击%s此处%s开始升级。Ninja Forms 需要升级您的表单通知,单击%s此处%s开始升级。Ninja Forms 需要升级您的表单设置,单击%s此处%s开始升级。Ninja Forms 提供一个小组件,您可以将其放置在网站的任何小组件区域,并选择您想在该空间中显示哪个表单。使用的 Ninja Forms 短代码未指定一个表单。纽埃否未指定操作...未找到收藏字段未找到字段。未找到提交回收站中未找到提交此分类无可用的术语。%s添加术语%s未上传任何文件。没有找到表单。无选中的分类。未找到有效的更新日志。无诺福克岛北马里亚纳群岛挪威未登录消息还没有回收站中未找到注意注释文本可以在注释下方的高级设置中编辑。注意:此内容要求 JavaScript。注意:使用的 Ninja Forms 短代码未指定一个表单。数字数字最多出错数字最少出错数字选项星星的数量小数位数。倒数秒数倒数秒数定时提交的秒数。星星的数量阿曼一个一个电子邮件地址或字段哎呀!此加载项与 Ninja Forms THREE 尚不兼容。%s了解更多%s。新窗口打开操作和字段(高级)个性风格方案一选项三方案二选项管理器我们的支持范围输出计算为PHP 语言环境PHP最大输入字符数服务器的 post_max_size已达上传限制PHP 版本发布巴基斯坦帕劳共和国巴拿马巴布亚新几内亚段落文本巴拉圭父项:密码密码确认密码匹配标签密码不符付款字段支付网关付款总额没有权限秘鲁菲律宾电话电话 - (555) 555-5555皮特凯恩将 %s 放置在任何接受短代码的区域,以便在您想要的地方显示表单。甚至在页面或帖子内容中间也可以。占位纯文本请%s联系客户支持%s解决上面看到的问题。请正确回答反垃圾邮件的问题。请检查必填字段。请完成 captcha 字段请完成 Recaptcha提交此表单前,请改正错误。请确保完成所有必填字段。请输入当此表单达到提交限制且不接受新的提交后您想要显示的消息。请输入有效的电子邮件地址请输入一个有效的电子邮件地址!请输入有效的电子邮件地址。请帮助我们改进 Ninja Forms!请在请求客户支持时包含此信息:请通过 请不要填写垃圾邮件字段。请确保您已正确输入您的网站和密钥请在 %sWordPress.org%s 为 %sNinja Forms%s %s 评分,帮助我们继续免费提供此插件。WP Ninja 团队向您表示感谢!请选择一个表单以查看提交请选择一个表单。请选择一个有效的已导出表单文件。请选择一个有效的收藏字段文件。请选择要导出的收藏字段。请使用这些计算符号:+ - * /。这是一个高级功能。注意被“0”除等问题。请等待 %n 秒请等待提交表格。插件波兰用分类进行填充葡萄牙帖子帖子 / 网页 ID(如果可用)帖子 / 网页名称(如果可用)帖子 / 网页 URL(如果可用)帖子创建帖子 ID帖子标题帖子 URL预览预览更改预览表单预览不存在。价格价格:定价字段正在处理正在处理标签正在处理提交标签产品产品(包括的数量)产品(单独的数量)产品 A产品 B产品表单(内联数量)产品表单(多种产品)产品表单(带数量字段)产品类型纲领性的名称,可用于引用此表单。发布波多黎各购买卡塔尔数量产品 A 的数量产品 B 的数量数量:查询字符串查询字符串查询字符串变量问题问题位置报价请求广播电台列表重新输入密码重新输入密码标签真的要停用所有许可证吗?Recaptcha重定向删除卸载时移除所有 Ninja Forms 数据?移除值移除所有 Ninja Forms 数据移除此字段?即便您不保存,此字段也会被移除。回复要求用户登录以查看表单?必填必填字段必填字段出错必填字段标签必填字段符号重置表单转化重置表单转化为 v2.9+ 重置表单转化流程还原还原 Ninja Forms从回收站还原此项限制设置限制限制您的用户在此字段中能进行哪种输入。返回 Ninja Forms留尼旺富文本编辑器 (RTE)元素右边字段右侧回退回退到最近的 2.9.x 发布。回退到 v2.9.x罗马尼亚俄罗斯联邦卢旺达SMTPSOAP 客户端安装了SUHOSIN 圣基茨和尼维斯圣卢西亚圣文森特和格林纳丁斯萨摩亚群岛圣马力诺圣多美与普林希比共和国沙特阿拉伯保存保存和激活保存字段设置保存表单保存选项保存设置保存提交已保存保存的字段正在保存...搜索项目搜索提交选择全选选择列表选择一个字段或类型进行搜索选择文件- 选择表单选择一个表单或类型进行搜索选择此表单接受的提交数量。如无限制则留空。选择您的标签相对字段元素本身的位置。选中的选中的值发送将表单的副本发送到此地址?塞内加尔塞尔维亚服务器 IP 地址设置已保存的设置塞舌尔配送短代码应以百分比输入,如 8.25%,4%显示帮助文本显示媒体上传按钮显示更多显示密码强度指示器显示富文本编辑器显示这个显示列表项值以悬停方式向用户显示。塞拉利昂新加坡单个单个复选框单个成本单行文本单个产品(默认)站点 URL斯洛伐克(斯洛伐克共和国)斯洛文尼亚蜗牛邮件因此,如果您想要为美国社会安全号创建一个掩码,您将在文本框中输入 999-99-9999。所罗门群岛索马里按数字排序按数字排序南非南乔治亚岛与南桑威奇群岛南非西班牙垃圾邮件回答垃圾邮件问题指定操作和字段(高级)斯里兰卡圣赫勒拿圣皮埃尔和密克隆群岛标准字段星级从模板开始省/直辖市/自治区状态阶跃约 %d 步中的第 %d 步正在进行阶跃(递增量)强度指示器强子序列主题主题文本或搜索字段主题文本或搜索字段提交提交 CSV提交数据提交信息提交限制提交 Metabox提交状态提交提交在定时器到期后提交按钮文本通过 AJAX 提交(无页面重载)?已提交提交人:提交人: 提交于:提交日期: 订阅成功消息苏丹苏里南斯瓦尔巴特和扬马延岛斯威士兰瑞典瑞士阿拉伯叙利亚共和国系统系统状态THREE 即将到来!台湾塔吉克斯坦查看下面详细的 Ninja Forms 文档。坦桑尼亚联合共和国税税费比例分类模板字段模板功能术语列表文本文本元素在计数器后显示的文本在字符/词语计数器后显示的文本文本区域文本框泰国感谢您填写此表单。感谢您升级为最新版本!Ninja Forms %s 能让管理提交成为让您享受的体验!感谢您升级为 Ninja Forms 2.7 版。请更新所有 Ninja Forms 扩展 感谢您进行升级!Ninja Forms %s 让表单建造变得前所未有的容易!感谢您使用 Ninja Forms!我们希望您找到了自己所需的一切,但如果您还有任何问题:感谢 {field:name} 填写表单!信用卡正面的 16 位数字(通常情况下)。卡上的 3 位(反面)或 4 位(正面)数值。这些 9 代表任何数字,且将自动添加“s”“表单”菜单是您访问所有 Ninja Forms 内容的接入点。我们已经创建了您的第一个%s联系表%s,您可以将其作为范例。您也可以单击%s添加新的%s创建您自己的表单。格式看起来应该是这样的:此版本的界面更新为将来的重大改进奠定了基础。3.0 版将在此基础上继续改进,让 Ninja Forms 成为一款更稳定、更强大、更易用的表单建造软件。您信用卡到期的月份,通常在卡的正面。最常见的设置将立即显示出来,而其他不重要的设置则隐藏在可扩展的部分中。您信用卡正面所印的名字。提供的密码不符建立 Ninja Forms 的人们流程已经启动,请耐心等候。这可能需要花费几分钟。流程完成后,您将被自动重新定向。上传的文件超出 HTML 表单中指定的 MAX_FILE_SIZE 指示。上传的文件超出 php.ini 中的 upload_max_filesize 指示。上传的文件仅上传了一部分。您信用卡到期的年份,通常在卡的正面。有一个新版的 %1$s 可用。查看 %3$s 版详情立即更新。有一个新版的 %1$s 可用。查看 %3$s 版详情。所上传的文件表单无效。这些是价格部分的所有字段。这些是用户信息部分的所有字段。这些是 预定义的掩码字符这些是各种特殊字段。这些字段必须匹配!提交表中的此列将按照数字排序。这是一个必填字段这是一个必填字段。这是一个测试这是一个用户的状态这是电子邮件操作。这是另一个测试。这是用户提交表单需要等待的时间这是查看/编辑/导出提交时使用的标签。这是您字段的编程名称。例如:my_calc、price_total、user-total。这是用户的状态如%s选中%s,将使用此值。如%s未选中%s,将使用此值。在这里,您将添加字段并将其拖动排列为您想要的顺序,从而建造自己的表单。每个字段都将有一系列选项,如标签、标签位置和占位符。此关键词为 WordPress 保留。请尝试另一个。当用户单击“提交”时,此消息将显示在提交按钮内部,让用户知道提交正在处理。当密码字段中输入不匹配的值时,将向用户显示此消息。如果选中此框,该数字将被用于计算。如果未选中此框,该数字将被用于计算。此设置将在删除插件时完全移除所有与 Ninja Forms 相关的东西。这包括提交和表单。此操作无法撤消。此选项卡中有标题和提交方式等通用表单设置,并有显示设置,如完成表单后进行隐藏。这将是此邮件的主题。这可以防止用户输入任何数字以外的字符三个定时提交计时器出错消息东帝汶发送给要激活 Ninja Forms 扩展的许可证,您必须首先%s安装并激活%s选择的扩展。然后将在下方出现许可证设置。要使用此功能,您可以将您的 CSV 粘贴到上面的文本区域中。今天的日期切换清单多哥托克劳汤加合计回收站尝试遵循 %sPHP 日期()功能%s规格,但不是所有格式都支持。特里尼达和多巴哥突尼斯土耳其土库曼斯坦特克斯和凯科斯群岛图瓦卢两个类型URL美国手机乌干达乌克兰未选中未选中的计算值在“表单设置”中的“基础表单行为”下,您可以轻松选择一个页面,让表单自动附加到该页面内容的末尾。每个内容编辑屏幕的侧边栏中都有一个类似的选项。撤消全部撤消阿拉伯联合酋长国英国美国美国本土外小岛屿未知的上传错误。未发布更新更新项目更新日期: 更新表单数据库升级升级为 Ninja Forms THREE升级升级完成URL乌拉圭使用等式(高级)使用数量使用自定义首选项使用默认的 Ninja Forms 风格惯例。使用以下短代码插入最终计算: [ninja_forms_calc]使用下面的提示开始学习使用 Ninja Forms。您很快就能学会!将其用作注册密码字段将其用作注册密码字段。如果选中此框, 密码和重新输入密码文本框都将为输出用于标识处理的字段。用户用户显示名(如果登录)用户电子邮件用户电子邮件(如果登录)用户输入用户名字(如果登录)用户 ID用户 ID(如果登录)用户信息字段组用户信息用户信息字段用户姓氏(如果登录)用户 Meta(如果登录)用户提交的值用户提交的值:如果能进行保存并稍后回来完成表单提交,则用户更可能完成较长的表单。

    Ninja Forms 的“保存进度”扩展让这一操作变得轻松快捷。

    乌兹别克斯坦作为电子邮件地址验证?(字段必须为必填)值瓦努阿图变量名称委内瑞拉版本%s 版非常弱越南查看查看 %s查看更改查看格单查看项目查看提交查看提交查看完整更新日志维尔京群岛(英国)维尔京群岛(美国)访问插件主页WP 调试模式WP 语言WP 最大上传尺寸WP内存限制已启用 WP MultisiteWP 远程帖子软件版本瓦利斯和富图纳群岛我们尽己所能,为每位 Ninja Forms 用户提供尽可能好的客户支持。如果您遇到问题或有疑问,%s请联系我们%s。在您删除插件时,我们添加了移除所有 Ninja Forms 数据(提交、表单、字段、选项)的选项。我们称其为原子弹选项。我们发现您的表单中没有提交按钮。我们可以自动帮您添加一个。弱Web 服务器信息欢迎使用 Ninja Forms欢迎使用 Ninja Forms %s西撒哈拉我们有什么可以帮到您的?联系支持之前可以尝试的方法您想如何命名此收藏项?新增功能在创建和编辑表单时,直接前往最重要的部分。这封电子邮件应发给谁?词语词语包装Y-m-dY-m-dYYYY-MM-DDYYYY/MM/DD也门是您符合升级为 Ninja Forms THREE 发布候选的资格!%s立即升级%s您还可以将这些结合用于特定应用您可以使用 field_x 在此输入计算等式,x 为您想要使用的字段的 ID。例如:%sfield_53 + field_28 + field_65%s。您无法在启用了 Javascript 的情况下提交表格。您没有安装插件更新的许可。您没有权限。您尚未给您的表单添加提交按钮。您必须登录才能预览表单。您必须为此收藏项提供一个名称。您需要 JavaScript 才能提交此表单。请启用然后重试。您已订购 您将在您的购买邮件中找到它。您的表单已成功提交。您的服务器不支持 fsockopen 或 cURL - PayPal IPN和其它连接别的服务器的脚本将不会工作.请联系您的服务器提供商.您的服务器没有启用 %sSOAP 客户端%s类别 - 一些使用 SOAP 的网关插件可能无法正常工作。您的服务器启用了 cURL,禁用了 fsockopen。您的服务器启用了 fsockopen 和 cRUL。您的服务器启用了 fsockopen,禁用了 cURL。您的服务器启用了 SOAP 客户端类别。您的 Ninja Forms “文件上传”扩展版本与 Ninja Forms 2.7 版不兼容。至少需要为 1.3.5 版。请更新此扩展: 您的 Ninja Forms “保存进度”扩展版本与 Ninja Forms 2.7 版不兼容。至少需要为 1.1.3 版。请更新此扩展: 南斯拉夫赞比亚津巴布韦邮政编码邮政编码a - 代表字母字符 (A-Z,a-z) - 仅允许输入字母答案button-secondary nf-download-allby剩余字符已选中复制自定义d-m-Ydashicons dashicons-update复制foo@wpninjas.com小时js-newsletter-list-update extral, F d Ym-d-Ym/d/Y无/产品 A 和 产品 B 只需 $一个one_week_support密码正在处理产品的 reCAPTCHAreCAPTCHA 语言reCAPTCHA 密钥reCAPTCHA 设置reCAPTCHA 网站密钥reCAPTCHA 主题reCaptcha 设置刷新smtp_port三个标题两个未选中已更新user@gmail.com版本wp_remote_post() 失败。PayPal IPN 可能无法在您的服务器使用。wp_remote_post() 失败。PayPal IPN 无法在您的服务器使用。请联系您的主机提供商。出错:wp_remote_post() 成功 - PayPal IPN 正常工作。lang/ninja-forms-nl_NL.mo000064400000265230152331132460011255 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8&$-RJT$]A"6d    m>)O=ZgA_   '8Qk"0Sn .<B8J9 1 I Ua r ~  n{1sX #  " -#7[r?#\   # )5 HSg{    (96 p |  & 0O V`qy !  $)-5 FQf{ V  Nm )6Pcsv    )6V]ct {) n ]h! # / < G RD\m  /Kc}  )@Wm~#  ''Dls  r3 $ 07h } 1!-O/d #  ,6? Zg}.)1[d{   (9 I We lx )$+ %Lr WafI  E^ fp  #;Nh8w#  $0CS d@<;C LW[c 9C^s"!&CRm u  (2;N^dkt    H1Eqw  G!in  )1 HS Xb iw~    &D   )7 NXa j x[czbAOf `x 3 < %J +p  GD Q     #  1CWn0  $/?H^m  ).6NUfnv%|( '.A IS Y d nN|;  ALT f t ~   >Uj    / GR Y cnsly   5DT\aipz $@DSh}     &&. U `$j & 6CKPapy  e #6 GR c'q  (AXs  x !w63jYXbVY\lNt  +4 L`    #!'!,!;! P!Z!p!y!!Z!9!\2"""" """"!#'1#Y#i#n#s#^###$'$ ;$ G$ R$]$ d$n$$ $$$$ $ $$% %% &%2% ;% F%Q%g%%%%%%% %%%&k*& & &I&(&'#'K'd'5}';''&((+(,(E$) j)$x)N))5*#*8*++,E+ir++/+%,-,3,O,X,(a,+,),,, , - -#-?-S-j-p-w------- . . $.%E.'k. .T. . / ////5/ K/X/h/z// //////90<0 K0 U07a000N0 1@'1h1q11111(1A 2 K2V2%j22 2P233 %303D3 T3,a33 3333 333 3 4(4 .494N4]4e4y44444 44 5 55 .585H5'Y555'5Z5H26 {66 636666 6 7 $7 /7 978D7}77 7 77 770 8 ;8 H8R8X8l8~888 8 8 8a869G9P9b9 x9.9 99 9 9*9 : ::8:I:`: w:::: ::: : :,:%*; P; Z;f;z;;;; ;;6;*< B<L<[< l<y< <<<<< << <<= ==4= ;=GH== == === => >(>4?> t> ~>>,>>aP?a?@:@;@F AFRAA&yBBNCC5vD#D,DDrEbE9bFNFFG3H-JH8xH-H HIE IfIII#IIIHJYIJgJ K4'K6\KKCvLLrFMGMHNJN)O&OQPfPkPPPPPOkQ QQQQQQ QgRlRRR RRRRRRRR RR$ S/S0T?TTTqTT1TTTTTUU5U=U XUeUvUzU$UU#U.UXVrgV/V WBW(X',XTX#dXX%X XXXYY'=Y%eY!Y"YY Z4Z [[ [ )[3[ :[D[M[U[\[d[z[ [[[[[[\)\8\@\V\i\\ \\\h]~^^^^^^^3_%;_a_dq_*_ ` ```!` '` 2`=`C`bF`>``Ea>a b6'bM^b-bZb5c+Dcpcc?d>d/ e?hGhMhShXh\hnhhh h hh hhhh i!i ;i \i giqivi|i i iiiFimi2ej Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Velden Openen in nieuw venster Alles ongedaan maken geïnstalleerd. De huidige versie is product(en) voor vereist een update. Je hebt versie #%1$s concept bijgewerkt. Voorbeeld %3$s%1$s hersteld naar revisie van %2$s.%1$s ingepland voor: %2$s. Voorbeeld %4$s%1$s verstuurd. Voorbeeld %3$s%n wordt gebruikt om het aantal seconden aan te duiden%s geleden%s gepubliceerd.%s opgeslagen%s aangepast.%s is gedeactiveerd.%sToestaan%s%sChecked%s Berekende Waarde%sWeigeren%s%sUnchecked%s Berekende Waarde* - Representeerd een alphanummeriek karakter (A-Z,a-z,0-9) - Hier mogen nummers en letters worden ingevoerd.- Niets- Selecteer Eén- Selecteer een Veld- Een product selecteren- Een variabele selecteren- Een formulier selecteren- Bekijk Alle Types9 - Representeerd een nummeriek karakter (0-9) - Alleen nummers zijn toegestaan
    • a - Vertegenwoordigt een alfabetteken (A-Z,a-z) - Er mogen alleen letters worden ingevoerd.
    • 9 - Vertegenwoordigt een numeriek teken (0-9) - Er mogen alleen cijfers worden ingevoerd.
    • * - * - Vertegenwoordigt een alfanumeriek teken (A-Z,a-z,0-9) - Er mogen zowel cijfers als letters worden ingevoerd.
    Een hoofdlettergevoelig antwoord voor het voorkomen van spamverzendingen via je formulier.Er wordt een belangrijke update uitgebracht voor Ninja Forms. %sLees meer over nieuwe functies, achterwaartse compatibiliteit en meer veelgestelde vragen.%sEen simpele en krachtigere ervaring om een formulier te creëren.Boven van het veldBoven veldActienaamActie BijgewerktActiesActiverenAktiefToevoegenBeschrijving toevoegenFormulier toevoegenNieuwe toevoegenEen nieuw veld toevoegenNieuw Formulier toevoegenVoeg nieuw item toeVoeg Een Nieuwe Inzending ToeNieuwe termen toevoegenVoeg Uitwerking toeDe knop Verzenden toevoegenWaarde toevoegenActies voor formulier toevoegenFormuliervelden toevoegenVoeg formulier toe aan deze paginaEen nieuwe actie toevoegenEen nieuw veld toevoegenVoeg abonnees toe en breid je e-maillijst uit met dit aanmeldingsformulier voor nieuwsbrieven. Je kunt ook velden toevoegen en verwijderen.InvoegtoepassingslicentiesUitbreidingenAdresAdres 2Hiermee voeg je een extra klasse toe aan je veldelement.Hiermee voeg je een extra klasse toe aan je veld-wrapper.Administrator EmailAdministrator LabelAdministratieVerbeteringGevorderde VergelijkingGeavanceerde InstellingenGeavanceerde verzendingAfghanistanNadat AllesNa het FormulierNadat LabelMee eens?AlbaniëAlgerijeAllesAlles Over FormulierenAlle veldenAlle FormulierenAlle itemsAlle bestaande formulieren zullen blijven staan in de tabel "Alle formulieren". In sommige gevallen worden ze tijdens dit proces gedupliceerd.Laat je gebruiker zich registreren voor je volgende evenement met dit eenvoudige formulier. Je kunt ook velden toevoegen en verwijderen.Laat je gebruikers contact met je opnemen via dit eenvoudige contactformulier. Je kunt ook velden toevoegen en verwijderen.Hiermee maak je tekst met opmaakuitvoer mogelijk.Hiermee stel je gebruikers in staat om meer dan een exemplaar van het product te kiezen.Bijna klaar...Samen met de "Creëer Jou Formulier" tab, hebben we "Notificaties" verwijderd ten gunste van "Emails & Acties." . Dit geeft een betere indicatie wat kan gedaan worden in deze tab.Amerikaans-SamoaEen onverwachte fout is opgetreden.Vorstendom AndorraAngolaAnguillaAntwoordAntarcticaAnti-spamAntispamvraag (antwoord = antwoord)Anti-spam fout berichtAntigua en BarbudaElke karakter die je plaatst in de "aangepast sjabloon"box, dat niet in de onderliggende lijst zit, wordt automatisch toegevoegd als de gebruiker deze typt en kan niet worden verwijderdVoeg een Ninja formulier toeEen Ninja Forms-formulier toevoegenToevoegen aan paginaToepassenArgentiniëArmeniëArubaCSV bijvoegenBijlagenAustraliëOostenrijkVelden met automatisch totaalBereken Totalen Waardes AutomatischBeschikbaarBeschikbare termenAzerbaijanTerug Naar De LijstTerug naar de lijstBackup / HerstelBackup Ninja FormsBahamasBahreinBangladeshBarBarbedosBasisveldenBasis InstellingenGootsteen badkamerBazBccVoordat AllesVooraf aan het FormulierVoordat LabelLees het volgende voordat je onze support om hulp vraagt:Begin DatumHuidige datumWit-RuslandBelgiëBelizeBeneden van het veldOnder veldBeninBermudaBeste contactmethode?Beste Ondersteuning in dit werkBeter Georganiseerde Veld InstellingenVerbeterde licentie managementBhutanBerekenenLege formulierenBoliviaBosnië en HerzegowinaBotswanaBouvet EilandBraziliëBrits Indische Oceaan TerritoriumBrunei DarussalamCreëer Je FormulierBulgarijeBulkactiesBurkina FasoBurundiKnopCVCRekenenBerekende waardeBerekeningRekenkundige MethodeRekenen InstellingenBerekeningsnaamBerekeningenBerekeningen worden teruggestuurd met de AJAX-reactie (reactie -> data -> berekeningenCambodjaKamaroenCanadaAnnulerenKaapverdiëAnti-spamveld komt niet overeen. Vul de juiste waarde in het anti-spamveld in.Kaart CVC BeschrijvingKaart CVC LabelKaart Vervalmaand BeschrijvingKaart Vervalmaand LabelKaart Vervaljaar BeschrijvingKaart Vervaljaar LabelKaart Naam BeschrijvingKaart Naam LabelKaart NummerKaart Nummer BeschrijvingKaart Nummer LabelKaaimaneilandenCcCentraal-Afrikaanse RepubliekChadVerander WaardeTeken(s)Teken(s) resterendKaraktersValsspelen, hé?Bekijk onze documentatieSelectievakLijst met selectievakjesCheckboxesGeselecteerdGeselecteerde berekeningswaardeChilieChinaChristmas EilandPlaatsKlassenaamMaak succesvol verstuurde formulier leeg?CocoseilandenBetaling innenColombiaAlgemene veldenComorenComplexe vergelijkingen kunnen worden gemaakt door het toevoegen van haakjes: %s( field_45 * field_2 ) / 2%s.BevestigenBevestig dat je geen robot bentCongoCongo, de Democratische RepubliekContactformulierNeem contact met me opContactContainerVerder gaanCook eilandenKostenVervolgkeuzelijst voor kostenpostenKostenoptiesKostentypeCosta RicaIvoorkustActivering van licentie niet gelukt. Controleer je licentie sleutel.LandHiermee maak je een unieke code voor het identificeren en bereiken van het veld voor aangepaste ontwikkeling.Credit CardCreditcard-CVCBeveiligingscode creditcardVerloopdatum creditcardVolledige naam creditcardCreditcardnummerPostcode creditcardPostcode creditcardCreditsKroatië (Lokaal naam: Hrvatska)CubaValutaValuta SymboolHuidige PaginaAangepastAangepaste CSS KlasseAangepaste CSS KlassesAangepaste klassenamenAangepaste Veld GroepAangepast maskerAangepast Sjabloon DefenitieAangepast veld verwijderd .Aangepast veld bijgewerkt.Gebruik een aangepaste eerste optieCyprusTjechiëDD-MM-YYYYDD/MM/YYYYFOUTOPSPORING: Overschakelen naar 2.9.xFOUTOPSPORING: Overschakelen naar 3.0.xDonkerData succesvol hersteldDatumAanmaakdatumDatum FormaatDatum InstellingenDatum VerzondenDatum BijgewerktDatumkiezerDeactiverenDeactiverenDeactiveer Alle LicentiesDeactiveren LicentieUitschakeling van Ninja Forms uitbreiding licenties, kan individueel of als een groep, vanuit de instellingen tab.StandaardStandaard LandStandaardlabelpositieStandaard TijdzoneStandaard instellen op huidige datumStandaard WaardeStandaard Tijdzone is %sDefault timezone is %s - het zou moeten zijn UTCGedefinieerde VeldenVerwijderenVerwijderen (^ + D + klik)Permanent VerwijderenVerwijder dit formulierDit item permanent verwijderenDenemarkenBeschijvingBeschrijving InhoudPositie beschrijvingWist je dat formulieren vaker volledig worden ingevuld als je uitgebreide formulieren opbreekt in kleinere, eenvoudiger te verwerken onderdelen?

    Met de uitbreiding Multi-Part Forms kun je dit snel een eenvoudig doen.

    Beheermeldingen uitschakelenUitschakelen Browser AutocompleetUItschakelen invoer?Schakel Rich Tekst (RTF) Editor uit voor MobielUItschakelen invoer?VerbergenWeergaveVenster Formulier TitelNaamToon instellingenDeze berekeningsvariabele weergevenToon titelToon je FormulierScheidingDjiboutiLaat deze termen niet zienDocumentatieDocumentatie komt binnenkortDocumentatie beschikbaar die alles van %sTroubleshooting%s tot %sDeveloper API%s. Nieuwe documenten worden altijd toegevoegd.NIET van toepassing op het formuliervoorbeeld.Van toepassing op het formuliervoorbeeld.DominicaDominicaanse RepubliekKlaarDownload alle inzendingenDropdownDuplicerenKopiëren (^ + C + klik)Dupliceer FormulierEcuadorBewerkenBewerk ActieBewerk FormulierBewerk itemBewerk menu itemBewerk InzendingBewerk dit itemVeld bewerkenVeld bewerkenEgypteEl SalvadorElementE-mailE-mail en ActiesE-mailadresE-mailberichtInschrijvingsformulier e-mailsE-mailadres of zoekopdracht voor een veldE-mailadressen of zoek naar een veldDe e-mail is afkomstig van dit e-mailadres.De e-mail is afkomstig van deze naam.E-mails en ActiesEind DatumZorg ervoor dat dit veld is ingevuld voordat je toestaat om het formulier te verzenden.Voer tekst in die je in het veld wilt weergeven voordat een gebruiker eventuele gegevens invoert.Voer het label van het formulierveld in. Hiermee kunnen gebruikers afzonderlijke velden identificeren.Uw e-mailadres invoerenOmgevingVergelijkingVergelijking (geavanceerd)Equatorial GuineaEritreaFoutFout melding geven, wanneer niet alle verplichte velden zijn ingevuldEstlandEthiopiëRegistratie voor evenementenMenu uitvouwenVerval Maand (MM)Vervaljaar (YYYY)ExporterenExporteer Favorieten VeldenExporteer VeldenExporteer FormulierFormulieren exporterenExporteer een formulierExporteer dit itemUitbreidingen Ninja FormsBESTANDSUPLOADHet naar de schijf schrijven van het bestand is mislukt.Falkland eilanden (Malvinas)FaeröerFavorieten VeldenFavorieten succesvol geïmporteerd.VeldVeldnummerVeld IDVeldsleutelVeld niet gevondenVeld UitwerkingFormulier veldenVelden met een * zijn verplicht.Velden die gemarkeerd zijn met een %s*%s zijn verplichte velden.FijiFout bij uploaden bestandBestand wordt geüpload.Het uploaden van het bestand is gestopt door de uitbreiding.FinlandVoornaamRepareren.FooFoo BarBijvoorbeeld, als u een productcode had, die in de vorm was van A4B51.989.B.43C , kun je dit type sjabloon gebruiken: a9a99.999.a.99a , dit dwingt gebruikers om alle a's in letters en de 9s zijn dan alleen nummersFormulierStandaardwaarden formulierFormulier VerwijderdFormulierveldenFormulier succesvol geïmporteerd.Formulier sleutelFormulier niet gevondenFormulier VoorbeeldFormulier Instellingen OpgeslagenFormulierverzendingenFout bij importeren formuliersjabloon.FormuliertitelFormulier met berekeningenFormaatFormulierenFormulieren VerwijderdFormulieren Per PaginaFrankrijkFrankrijk, MetropolitanFrankrijk GuianaFrans-PolynesiëFranse Zuidelijke GebiedenVrijdag, 18 november 2019Van AdresVan NaamComplete ChangelogVolledig schermGabonGambiaAlgemeenAlgemeen InstellingenGeorgiaDuitslandHulp zoeken...Meer actiesMeer typesHulp krijgenKrijg OndersteuningVerkrijg Systeem RapportHaal een sitesleutel voor jouw domein op door je %shier te registreren%sBegin door je eerste formulierveld toe te voegen.Begin door je eerste formulierveld toe te voegen. Klik op het plusteken en kies de acties die je wilt. Meer niet.Aan De SlagAan de slag met Ninja FormsGhanaGibraltarGeef je formulier een titel. Dit is hoe je formulier later kunt vinden.GaanJe poging is mislukt.Ga naar formulierenGa naar Ninja FormsGa naar de eerste paginaGa naar de laatste paginaGa naar de volgende paginaGa naar de vorige paginaGriekenlandGroenlandGrenadaGroeiende DocumentatieGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf schermHeard en McDonaldeilandenHallo, Ninja-formulieren!helpHelp TekstHelptekst hierVerborgenVerborgen VeldLabel verbergenVerberg ditVerberg succesvol ingevulde formulier?Hint: Het wachtwoord moet minimaal zeven tekens lang zijn. Om het sterker te maken, gebruik hoofdletters en kleine letters, cijfers en symbolen zoals ! " ? $ % ^ & ).Heilige Stoel (Vaticaanstad)Home URLHondurasHoningpotHoneypot-foutHoningpot Fout BerichtHong KongHaak-tagHostnaamHoe gaat het?HongarijeIP-adresIjslandAls de "desc text" is geactiveerd, dan zal een vraagteken %s naast het in te voeren veld worden geplaatst. Wanneer men de muis over de vraagteken gaat, dan zal de beschrijvende tekst worden vertoondAls "help tekst" is ingeschakeld, wordt er een vraagteken %s naast het invoerveld geplaatst. Zweven over dit vraagteken zal de helptekst weer te geven.Als dit vakje is aangevinkt, worden ALLE Ninja Formulieren gegevens verwijderd %sAll form and submission data will be unrecoverable.%sAls dit vakje is aangevinkt, zal Ninja Formulieren het formulier te wissen nadat deze is verzonden.Als dit vakje is aangevinkt, zal Ninja Formulieren het formulier verbergen nadat het is verzonden.Als dit vakje is aangevinkt, zal Ninja Forms een kopie van dit formulier (en alle aangehechte berichten) sturen naar dit adres.Als dit vakje is aangevinkt, zal Ninja Forms dit als een e-mailadres valideren.Als dit vakje is aangevinkt, zal zowel wachtwoord- en het her-wachtwoord tekstvak worden uitgestuurd.Als dit vakje is aangevinkt, zal deze kolom in de inzendingen tabel gesorteerd worden op nummer.Ben je mens en zie je dit veld , laat het dan leeg.Als je een persoon bent die dit veld ziet, laat je het leeg.Ben je een mens, ga dan niet zo snel.Als je dit box leeg laat, is er geen limietAls je je inschrijft, worden er enkele gegevens over je installatie van Ninja-formulieren verzonden naar Ninjaforms.com verzonden (dit gaat NIET over je verzendingen).Je kunt dit overslaan, als je wilt. De Ninja-formulieren werken gewoon.Als u een lege waarde of berekening wilt versturen, moet u gebruik maken van '' .Als je wilt dat je per email geïnformeerd wordt, wanneer een gebruiker een formulier verzend, kun je dit activeren in deze tab. Je kunt een onbeperkt aantal emails creëren, inclusief emails die naar de gebruiker van het ingevulde formulier worden verzonden.Als je formulieren "ontbreken" na het bijwerken naar versie 2.9, dan probeert deze knop je formulieren opnieuw om deze in versie 2.9 te tonen. Alle bestaande formulieren blijven staan in de tabel "Alle formulieren"ImporteerImporteren / ExporterenImporteren / Exporteren InzendingenImporteer Favorieten VeldenImporteer FormulierenVelden importerenImporteer FormulierFormulieren importerenLijstitems importerenImporteer een formulierImporteren/ExporterenVerbeterde helderheidOpnemen in de auto-totaal? (Indien ingeschakeld)Onjuist antwoordConversie vergrotenIndiaIndonisiëInvoer SjabloonInvoegenImporteer Alle VeldenImporteer VeldKoppeling invoegenMedia invoegenBinnen het veldGeïnstaleerdGeïnstalleerde PluginsBelangengroepenOngeldige formulier geüpload.Ongeldige formulier-idIran (Islamitische Republiek)IrakIerlandIs dit een email adres?IsraelMeer niet. Of...ItaliëJamaicaJapanJavascript uitgeschakeld Fout BerichtJohn DoeJordanKlik hier en kies de velden die je wilt.KazachstanKeniaSleutelKiribatiAanrechtKorea, Democratische Volksrepubliek vanKorea, Republic OfKoeweitKirgiziëLabelLabel hierLabelnaamLabel PositieEen label dat wordt gebruikt bij het weergeven en exporteren van verzendingen.Label,Waarde,CalcLabelsTaal gebruikt door reCAPTCHA. %sCode voor je taal ophalen%sLao Democratische VolksrepubliekAchternaamLetlandLay-out ElementenLay-outveldenLeer MeerMeer lezen over Multi-Part FormsMeer lezen over Save ProgressLibanonLinks van het veldLinks van veldLesothoLiberiaLibiëLicentiesLichtensteinEenvoudigInvoer beperken tot dit aantalLimiet Bereikt BerichtLimiteer InzendingenLimiteer invoer tot dit nummerLijstLijstveldtoewijzingLijst TypeLijstenLitouwenLadenLaden...LocatieIngelogdLang formulier - LuxemburgMM-DD-YYYYMM/DD/YYYYMacauMacedonië, Voormalige Joegoslavische RepubliekMadagascarMalawiMaleisiëMaladievenMaliMaltaBeheer offertevragen op je website eenvoudig met deze sjabloon. Je kunt ook velden toevoegen en verwijderen.Marshall EilandenMartiniqueMauritaniëMauritiusMaxMax Input Nesting LevelMaximum WaardeMisschien laterMayotteGoedBerichtBerichten LabelsBericht weergegeven aan gebruikers als de "logged in" checkbox hierboven is aangevinkt en ze zijn niet ingelogd.MetavakMexicoMicronesië, Federale Staten vanMigratie- en testgegevens voltooid. MinMinimum WaardeVelden voor diversenVerkeerde combinatieEen tijdelijke map ontbreekt.Testactie e-mailTestactie opslaanTestactie succesmeldingBijgewerkt opMoldaviëMonacoMongoliëMontenegroMontserratEr komt nog meerMarokkoVerplaats dit item naar de prullenbak.MozambiqueMeerkeuzeMeerdere producten - Meerdere kiezenMeerdere producten - Eén kiezenMeerdere producten - VervolgkeuzelijstMulti-SelectieGrootte Multi-Select BoxMeerdereMijn eerste berekeningMijn tweede berekeningMySQL VersieMyanmarNaamNaam op de kaartNaam of veldenNamibiëNauruHulp nodig?NepalNederlandNederlandse AntillenToon nooit beheermeldingen van Ninja Forms op het dashboard. Verwijder het vinkje om ze weer te zien.Nieuwe ActieNieuw Creëer TabNieuw CaledoniëNieuw itemNieuwe InzendingNieuw ZeelandAanmeldingsformulier voor nieuwsbrievenNicaraguaNigerNigeriaNinja Form InstellingenNinja-formulierenNinja Forms -VerwerkingNinja Forms ChangelogOntwikkeling Ninja-formulierenNinja Forms DocumentatieNinja Forms VerwerkingIndienen Ninja-formulierenNinja Forms Systeem StatusDocumentatie Ninja-formulieren 3Ninja Forms upgradeUpgrade Ninja Forms is bezigNinja Forms Toevoegingen.Ninja Forms VersieNinja Forms WidgetNinja Forms komt ook met een eenvoudige template functie die direct in een php template bestand kan worden geplaatst. %sNinja Forms basis help komt hier.Ninja Forms kan niet via het netwerk worden geactiveerd, Bezoek voor elke site het dashboard om de plugin te activeren.Ninja Forms heeft alle beschikbare updates uitgevoerd!Ninja Forms wordt gecreëerd door een wereldwijd team van ontwikkelaars die tot doel hebben, te worden de # 1 WordPress gemeenschap formulier creatie plugin.Ninja Forms moet %s upgrade(s) uitvoeren. Dit kan enkele minuten duren. %sStart upgrade%sNinja Forms moet uw email instellingen upgraden, klik %shere%s om de upgrade te starten.Ninja Forms moet de inzendingentabel upgraden, klik %shere%s om de upgrade te starten.Ninja Forms moet uw formulier meldingen upgraden, klik %shere%s om de upgrade te starten.Ninja Forms moet uw formulier instellingen upgraden, klik %shere%s om de upgrade te starten.Ninja Forms biedt een eigen widget aan, die je kunt plaatsen in elke widget zijbalk van je website. Selecteer vervolgens welk formulier u wilt weergegeven in deze ruimte.Er is een Ninja Forms-shortcode gebruikt zonder een formulier te specificeren.NiueNeeGeen Actie Opgegeven...Geen Favorieten Velden GevondenGeen velden gevonden.Geen Inzendingen GevondenGeen Inzendingen Gevonden In De Prullenbak.Er zijn geen termen beschikbaar voor deze taxonomie. %sEen %s-term toevoegenEr is geen bestand geüpload?Geen formulieren gevonden.Geen taxonomie geselecteerd.Geen geldige Changelog is gevonden.GeenNorfolk EilandNoordelijke MarianenNoorwegenNiet Ingelogd BerichtNog nietNiet gevonden in prullenbakNotitieOpmerkingstekst kan worden bewerkt in de geavanceerde instellingen van het opmerkingsveld.Kennisgeving: Voor dit product is een JavaScript vereist.Kennisgeving: Er is een Ninja Forms-shortcode gebruikt zonder een formulier te specificeren.NummerFout met maximumaantalFout met minimumaantalGetaloptiesAantal sterrenAantal decimalen.Aantal seconden voor aftellenAantal seconden voor het aftellenAantal seconden voor getimed verzenden.Aantal sterren.OmanEénEén e-mailadres of veldHelaas! De invoegtoepassing is nog niet compatibel met Ninja Forms THREE. %sMeer informatie%s.Openen in nieuw vensterBewerkingen en velden (geavanceerd)Opinionated-stijlenOptie éénOptie drieOptie tweeOptiesOrganizerDe reikwijdte van onze supportOutput berekening PHP LokaalPHP Max Input VarsPHP Max Bericht GroottePHP Tijd LimietPHP versiePUBLICERENPakistanPalauPanamaPapoea Nieuw GuineaAlineatekstParaguayHoofditem:WachtwoordWachtwoord bevestigenPaswoorden Ongelijk LabelWachtwoorden zijn niet gelijk.Betaling VeldenBetaalgatewaysBetalingstotaalToestemming geweigerdPeruFilippijnenTelefoonTelefoon - (555) 555-5555PitcairneilandenJe kunt op elke plek, dat shortcodes accepteert, %s plaatsen. Zelfs in het midden van je pagina of bericht.PlaatshouderPlatte TekstNeem %scontact op met support%s met de foutmelding die je hierboven ziet.Beantwoord deze anti-spam vraag correct.Controleer a.u.b. de verplichte velden.Vul het anti-spamveld inVul de nieuwe captcha inCorrigeer de fouten voordat je dit formulier indient.Wees er zeker van dat alle verplichte velden zijn ingevuld.Gelieve een bericht dat u wilt weergeven wanneer dit formulier zijn inzendingen limiet heeft bereikt en zal geen nieuwe inzendingen meer accepteren.Voer a.u.b. een geldig email adres in.Voer een geldig e-mailadres in!Voer alstublieft een geldig email adres in.Help ons om Ninja-formulieren te verbeteren!Gelieve deze informatie invoegen bij het aanvragen van ondersteuning:Toenemen met Laat alstublieft het spam veld leeg.Controleer nog eens of je de sitesleutel en geheime sleutel goed hebt ingevuldBeoordeel alstublieft %sNinja Forms%s %s op %sWordPress.org%s om er voor te zorgen dat deze plugin gratis blijft. Alvast bedankt van het WP Ninjas team!Selecteer een formulier om de inzendingen te bekijkenSelecteer een formulier alstublieftSelecteer een geldig formulier bestand om te exporteren.Selecteer een geldig favoriet veld bestand.Selecteer favoriete velden om te exporteren.Gebruik deze operatoren: + - * /. Dit is een geavanceerde functie. Kijk uit voor dingen als delen door 0.Wacht a.u.b. %n secondenEven wachten totdat het formulier verzonden is.PluginsPolenBevolk dit met de taxonomiePortugalPlaatsenID bericht / pagina (indien beschikbaar)Titel bericht / pagina (indien beschikbaar)URL bericht / pagina (indien beschikbaar)Bericht CreatiePost IDBerichttitelBericht-URLVoorbeeldVoorbeeld van wijzigingen weergevenVoorbeeld FormulierVoorbeeld bestaat nietPrijsPrijs:PrijsinformatieveldenBezig met verwerkenVerwerkingslabelVerwerken Inzendingen LabelProductProduct (aantal inbegrepen)Product (afzonderlijk aantal)Product AProduct BProductformulier (inline aantal)Productformulier (meerdere producten)Productformulier (met veld voor aantal)Product TypeEen programmatische naam die kan worden gebruikt om naar dit formulier te verwijzen.PublicerenPuerto RicoKopenQatarAantalAantal voor product AAantal voor product BHoeveelheid:QuerytekenreeksQuerytekenreeksenQuerystring variabeleVraagVraagpositieOfferteaanvraagRadioLijst met keuzerondjesWachtwoord nogmaalsLabel van Wachtwoord nogmaalsWeet je het zeker dat je alle licenties wilt deactiveren?Nieuwe captchaVerwijzenVerwijderenVerwijder alle Ninja Forms data tijdens deïnstalleren?Waarde verwijderenVerwijder alle Ninja Forms dataDit veld verwijderen? Het zal worden verwijderd, ook als je het niet opslaat.Reageren opVerreist gebruiker om ingelogd te zijn om dit formulier te zien.BenodigdVerplicht veldVerplicht Veld FoutVerplicht Veld LabelVerplicht Veld SymboolConversie formulier terugzettenHet formulierconversieproces terugzettenHet formulierconversieproces terugzetten voor versie 2.9 en hogerHerstellenHerstel Ninja FormsHerstel dit item vanuit de prullenbakBeperkende InstellingenBeperkingenHiermee beperk je het type invoer dat gebruikers voor dit veld kunnen gebruiken.Terug naar Ninja FormsRéunionRTF-editorRechts van het veldRechts van veldTerugdraaienTerugdraaien tot de recentste 2.9.x-release.Terugdraaien tot v2.9.xRoemeniëRuslandRuwandaSMTPSOAP ClientSUHOSIN geïnstalleerdSaint Kitts en NevisSaint LuciaSaint Vincent en de GrenadinesSamoaSan MarinoSao Tome en PrincipeSaoedi ArabiëOpslaanOpslaan & ActiverenBewaar veld instellingenSla formulier opInstellingen OpslaanInstellingen opslaanIngediende documenten opslaanOpgeslagenOpgeslagen veldenOpslaan...Zoek itemZoek InzendingenSelecteerSelecteer allesLijst selecterenSelecteer een veld of type om te zoekenSelecteer een bestandSelecteer een formulierKies een formulier of type om te zoekenSelecteer het aantal inzendingen dat dit formulier accepteert. Laat leeg voor geen limiet.Selecteer de positie van je label ten opzichte van het veldelement zelf.GeselecteerdGeselecteerde WaardeVerzendenVerzend een kopie van dit formulier naar dit adres?SenegalServiëIP-adres van serverInstellingenInstellingen OpgeslagenSeychellenVerzendenKorte codeMoet ingevoerd worden als een percentage, v.b. 8,25%, 4%Zie Help TekstToon Media Upload KnopToon meerToon indicator wachtwoordsterkteToon Rich Tekst Editor.Vertoon ditToon lijst item waardesDit wordt zwevend weergegeven bij de gebruikers.Sierra LeoneSingaporeEnigeEnkel selectievakjeEnkele kostenpostEnkele regeltekstEén product (standaard)Site URLSlovakijëSloveniëNormale postDus, als je een sjabloon voor een Amerikaans Sociaal Nummer wilt voer dan 999-99-9999 in het veldSolomon EilandenSomaliëNumeriek sorterenSorteer als nummeriekZuid AfrikaZuid-Georgia en de Zuidelijke SandwicheilandenZuid SudanSpanjeSpam AntwoordSpam vraagSpecifeer Uitwerking En Velden (Gevorderd)Sri LankaSint-HelenaSaint-Pierre en MiquelonStandaard VeldenWaardering met sterrenBegin met een sjabloonProvincieStatusStapStap %d van ongeveer %d lopendeStap (aantal om mee op te hogen)Sterkte indicatorSterkSubsequentieOnderwerpOnderwerptekst of zoekopdracht voor een veldOnderwerp-tekst of zoek naar een veldInzendingBijlage CSVIngediende gegevensVerzendingsinformatieVerzendingslimietMetavak verzendingStatistieken inzendingInzendingenVerzendTekst van de verzendknop na het afgelopen van de timerVerzend via AJAX (zonder herladen pagina)?VerzondenVerzonden DoorIngediend door: Verzonden opIngediend op: AbonnerenSucces BerichtSoedanSurinameSpitsbergen en Jan MayenSwazilandZwedenZwitserlandSyrische Arabische RepubliekSysteemSysteem StatusTHREE wordt uitgebracht.TaiwanTadzjikistanNeem hieronder een kijkje in onze uitgebreide Ninja Forms documentatie.Tanzania, Verenigde RepubliekBelastingBelastingpercentageTaxonomieSjabloon VeldenSjabloon FunctieTermenlijstTekstTekstelementTekst die wordt weergegeven na de tellerDe tekst die verschijnt achter karakter/woord tellerTekstveldTekstveldThailandBedankt voor het invullen van dit formulier.Bedankt voor het bijwerken naar de laatste versie! Ninja Forms %s is voorbereid om uw ervaring met het beheer van inzendingen aangenaam te maken!Bedankt voor de update naar versie 2.7 van Ninja Forms. Update elke Ninja Forms uitbreidingen vanBedankt voor het updaten! Ninja Forms %s maakt het creëren van formulieren makkelijker dan ooit!Bedankt voor het gebruiken van Ninja Forms! We hopen dat je alles hebt gevonden wat je nodig hebt, maar als je nog vragen hebt:Bedankt {field:name} voor het invullen van mijn formulier!De (typische) 16 cijfers op de voorkant van uw credit card.De 3 cijfers (achterzijde) of 4 cijfers (voorzijde) op uw credit card.De 9s reprensenteerd elk nummer, en de -s wordt automatisch toegevoegdHet formulier menu is je menu voor alle Ninja Forms items, We hebben alvast je eerste %scontact formulier%s aangemaakt zodat je een voorbeeld hebt. Je kunt alsnog je eigen formulier creëren door te klikken op %sVoeg Toe%s.Het formaat moet er als volgt uitzien:De interface updates in deze versie, zijn de basis voor een groot aantal toekomstige verbeteringen. Versie 3.0 zal worden gebouwd op deze veranderingen, om met Ninja Forms nog stabielere, krachtigere en gebruiksvriendelijkere formulieren te creëren.De maand van dat uw credit kaart vervalt, meestal op de voorkant van uw kaart.De meest voorkomede instellingen zijn direct te zien, terwijl andere, niet essentiële instellingen, in uitvouwbare secties zijn geplaatst.De naam die op de voorzijde staat van uw credit card.De wachtwoorden komen niet overeen.De mensen die Ninja Forms hebben gecreëerd Het proces is begonnen, wees geduldig. Dit kan enige minuten duren. Je zult automatisch doorgestuurd worden, wanneer het proces is beëindigd.Het bestand dat is geüpload, overschrijdt de MAX_FILE_SIZE-richtlijn die is gespecificeerd in het HTML-formulier.Het geüploade bestand overschrijdt de upload_max_filesize waarde die in php.ini is opgegeven.Het geüploade bestand is slechts gedeeltelijk geüpload.Het jaar van dat uw credit kaart vervalt, meestal op de voorkant van uw kaart.Er is een nieuwe versie van %1$s beschikbaar. Details van versie %3$s bekijken of nu bijwerken.Er is een nieuwe versie van %1$s beschikbaar. Details van versie %3$s bekijken.Het geüploade bestand heeft geen geldige indeling.Dit zijn alle velden in het gedeelte Prijzen.Dit zijn alle velden in het gedeelte Gebruikersgegevens.Dit zijn de voorgedefinieerde sjabloon tekensEr zijn diverse speciale velden.Deze velden moeten overeenkomenDeze kolom in de tabel met verzendingen wordt gesorteerd op getallen.Dit is een verplicht veldDit is een verplicht veld.Dit is een testDit is de status van een gebruiker.Dit is een e-mailactie.Dit is een nog een test.Dit is hoe lang een gebruiker moet wachten om het formulier te verzendenDit is de label die gebruikt wordt het vertonen van tonen/bewerken/exporteren inzendingenDit is de programmatische naam van uw veld. Voorbeelden zijn: my_calc, prijs_totaal, gebruikers-totaal.Dit is de gebruikers statusDit is de waarde die wordt gebruikt als %sChecked%s.Dit is de waarde die wordt gebruikt als %sUnchecked%s.Dit is de plek, waar het formulier gecreëerd wordt door het toevoegen van velden en het verslepen van de velden in de volgorde die je wilt. Elk veld heeft een assortiment van opties, zoals label, labelpositie en plaatshouder.Dit sleutelwoord is gereserveerd voor WordPress. Probeer een ander.Dit bericht wordt getoond in de verzendknop, wanneer een gebruiker klikt op "Verzenden" om hen te laten weten dat het aan het verwerken is.Dit bericht wordt getoond aan een gebruiker wanneer geen gelijke waardes in de velden wachtwoord worden geplaatst.Dit getal wordt gebruikt in berekeningen als het vakje is ingeschakeld.Dit getal wordt gebruikt in berekeningen als het vakje is uitgeschakeld.Deze instelling zorgt ervoor dat bij het verwijderen van de plugin alles dat met Ninja Forms te maken heeft, VOLLEDIG wordt verwijderd. Hieronder vallen ook FORMULIEREN en INZENDINGEN. Dit kan niet ongedaan gemaakt worden.In deze tab staan algemene formulier instellingen, zoals de titel en de inzending methode, evenals de scherm instellingen, bijvoorbeeld het formulier verbergen wanneer het succesvol is verstuurd.Dit wordt het onderwerp van de e-mail.Zo wordt voorkomen dat een gebruiker niets anders kan invullen dan alleen nummersDrieVertraagd verzendenTijdklok Fout BerichtOost-Timor (East Timor)NaarOm licenties voor uitbreidingen op Ninja Forms te activeren moet je eerst de gekozen uitbreiding %sinstalleren en activeren%s. Licentieinstellingen worden daarna hieronder weergegeven.Om deze functie te gebruiken, kunt u uw CSV plakken in het tekstveld hierboven.Datum vandaagLade in-/uitschakelenTogoTokelauTongaTotaalPrullenbakProbeert de te volgen %sPHP date() function%s specificaties, maar niet elke indeling wordt ondersteund.Trinidad en TobagoTunesiëTurkijeTurkmenistanTurks-en CaicoseilandenTuvaluTweeTypeWebadresAmerikaans telefoonnummerOegandaOekraïneGedeselecteerdNiet-geselecteerde berekeningswaardeOnder Basis Formulier Gedragingen in de Formulier Instellingen, kun je gemakkelijk een pagina selecteren waar automatisch het formulier onderaan op de pagina wordt geplaatst. Een vergelijkbaar optie is beschikbaar in elk content bewerkscherm in de zijbalk.Ongedaan makenAlles ongedaan makenVerenigde Arabische EmiratenVerenigd KoninkrijkVerenigde StatenKleine afgelegen eilanden van de Verenigde StatenOnbekende uploadfoutNiet gepubliceerdUpdateItem bijwerkenBijgewerkt op: Bijwerken van FormulierdatabaseUpgradeUpgraden Ninja Forms THREEToevoegingenUpgrade afgerondUrlUruguayGebruik Een Vergelijking (Gevorderd)GebruikshoeveelheidGebruik een aangepaste eerste optieGebruik standaard Ninja Forms-stijlconventies.Gebruik de volgende shortcode om de definitieve berekening te voegen: [ninja_forms_calc]Gebruik de tips hieronder om met Ninja Forms te beginnen. Je hebt in een korte tijd een werkend formulier gebouwd.Gebruik dit als een registratie wachtwoord veldGebruik dit als een registratiewachtwoordveld. Als dit selectievakje is ingeschakeld, worden de tekstvakken voor het wachtwoorden en het opnieuw invoeren van het wachtwoord als resultaat gegevenDit wordt gebruikt voor het markeren van een veld voor verwerking.LidSchermnaam gebruiker (wanneer ingelogd)Gebruiker EmailE-mail gebruiker (wanneer ingelogd)GebruikersinvoerGebruiker Voornaam (wanneer ingelogd)Gebruiker-IDGebruiker ID (wanneer ingelogd)Gebruikers Info Veld GroepGebruikers InformatieVelden met gebruikersinformatieAchternaam gebruiker (wanneer ingelogd)Meta van gebruiker (indien aangemeld)Door Gebruiker Ingevoerde WaardenDoor Gebruiker Ingevoerde Waarden:Gebruikers vullen uitgebreide formulieren vaker volledig in als ze hun ingevulde gegevens tussentijds op kunnen slaan en er later verder aan kunnen werken.

    Met de uitbreiding Save Progress voor Ninja Forms maak je dit snel en eenvoudig mogelijk.

    UzbekistanValideren als een e-mailadres? (Dit veld is vereist)WaardeVanuatuVariabelenaamVenezuelaVersieVersie %sErg zwakVietnamBekijkToon %sWijzigingen weergevenFormulieren weergevenBekijk itemBekijk InzendingBekijk InzendingenBekijk de complete ChangelogMaagdeneilanden (Britse)Amerikaanse MaagdeneilandenBezoek plugin homepageWP Debug ModusWP TaalWP Max Upload GrootteWP Geheugen LimietWP Multisite ingeschakeldWP Afstand BerichtWP VersieWallis en FutunaWe doen alles wat we kunnen om elke NInja Forms gebruiker de beste ondersteuning te geven als mogelijk. Als je een probleem tegenkomt of als je een vraag hebt, %splease contact us%s.We hebben een optie geplaatst om alle Ninja Forms data te verwijderen (inzendingen, velden, opties), wanneer je deze plugin verwijderd, Wij noemen het de nucleaire optie.We hebben geconstateerd dat je formulier niet is voorzien van de knop Verzenden. We kunnen deze automatisch voor je toevoegen.ZwakWeb Server InfoWelkom bij Ninja FormsWelkom bij Ninja Forms %sWestelijke SaharaWaarmee kunnen we je helpen?Hulpmiddelen voordat je contact opneemt met supportWelke naam moet deze favoriet hebben?Wat is er nieuwWanneer je een formulier creëert of bewerkt, ga dan direct naar de sectie die het belangrijkste is.Naar wie zal deze e-mail verzonden worden?Woord(en)WoordenWrapperY-m-dd-m-YDD-MM-YYYYYYYY/MM/DDJemenJaJe komt in aanmerking voor een upgrade naar de Ninja Forms THREE-releasekandidaat. %sNu upgraden%sJe kunt deze ook altijd combineren, voor specifieke aplicatiesU kunt berekeningsvergelijkingen hier invoeren met field_x waarbij x de ID van het veld dat u wilt gebruiken. Bijvoorbeeld, %sfield_53 + field_28 + field_65%s.Je kunt geen formulier versturen wanneer Javascript is uitgeschakeld.Je hebt geen toestemming om updates van plugins te installerenJe hebt geen toestemming.Je hebt geen verzend knop toegevoegd aan je formulier.Je moet zijn aangemeld als je een voorbeeld van een formulier wilt weergeven.Je moet een naam invoeren voor deze favoriet.Je hebt Javascript nodig om dit formulier te verzenden, Schakel het in en probeer opnieuw.Jouw aankoop: Je vind dit bijgevoegd in je aankoop email.Je formulier is verzonden.Uw server heeft niet fsockopen of cURL ingeschakeld - PayPal IPN en andere scripts die communiceren met andere servers zullen niet werken. Neem contact op met uw hosting provider.Uw server heeft niet de %sSOAP Client%s klasse ingeschakeld - enkele gateway plug-ins die SOAP gebruiken werken mogelijk niet zoals verwacht.De server heeft fsockopen ingeschakeld, cURL is uitgeschakeld.De server heeft fsockopen en cURL ingeschakeld.De server heeft fsockopen ingeschakeld, cURL is uitgeschakeld.Uw server heeft de SOAP Client klasse ingeschakeld.Uw versie van de Ninja Forms File Uploaduitbreiding is niet compatibel met versie 2.7 van Ninja Forms. Het moet minstens versie 1.3.5 zijn. Update deze module opUw versie van de Ninja Forms Progress Save uitbreiding is niet compatibel met versie 2.7 van Ninja Forms. Het moet minstens versie 1.1.3 zijn. Update deze module opJoegoslaviëZambiaZimbabwePostcodePostcodea - Reprensenteerd een alpha karakter (A-z, a-z) - Alleen letters zijn toegestaanantwoordbutton-secondary nf-download-alldoorkarakter(s) overingeschakeldKopiërenaangepastd-m-Ydashicons dashicons-updatedupliceerfoo@wpninjas.comLijnjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ygeenvanvan product A en van product B voor $éénone_week_supportwachtwoordverwerkenproduct(en) voor reCAPTCHAreCAPTCHA taalreCAPTCHA geheime sleutelInstellingen reCAPTCHAreCAPTCHA sitesleutelThema voor nieuwe captchaInstellingen voor nieuwe captchavernieuwensmtp_portdrietiteltweeuitgeschakeldbijgewerktuser@gmail.comVersiewp_remote_post() gefaald. PayPal IPN werkt mogelijk niet op uw server.wp_remote_post() gefaald. PayPal IPN werkt mogelijk niet op uw server. Neem contact op met uw provider. Fout:wp_remote_post() was succesvol - PayPal IPN werkt.lang/ninja-forms-ko_KR.mo000064400000271745152331132460011270 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|86')0Za\GtY{: !!<'^' "OXar6vJw9o     .<N`r   1 5 5Bx  #+3: W e s2IQ|.  %'Ml5GY m z   3 M[mu }   Z S aow /'" !.PW _jr   ! (3 : H VdHk Y9K`y   8GNg lw{    &-7>v  q-.4cj    ]{l !6Rg 2 7!Vx!!("BI X cn 3  : E R _t $<!M o z8   '2Zbi z ! 8 8 ?La r '2($+ FSZ q    $ +5J[o%%5. 8 MM[e|'SFNW hv /A4R! 3   ) ES)Z->+3:KOW' 8-F t . (/3DX_ } #)0 7EM Uc  ?9R  ^"'-H OYa x   % &D Uc w7bs{     xe2 a y [t _ U0 o o If 3  l} N #9] GT n !5O4c    $ 5? V7d $ /5="C fp;w  "   'BS?d w;UY`tH1 -;C K U bpw      *8 ? M [ f q |0 x        "0   $.Mez  ' 0 ;Ig  "=RZ`{ u + : H S ^j  (=Yp%z9kHD  B!!c""j##D$$ $$( %"6%Y%+u%K%$%"&$5&3Z&&&&& &&&'[':r'L''(( %(3(;(M(i(!((((((q(Q)f))))) )) )) **2*Q* c*n*u* ~****** * *** +++ B+P+d+ i+u+|+++R,e,Mv,<,.-"0-S-Iq-B--5.;...2 /AS////S/"080 18$18]1111S21q2 2222 2+2/ 3,=3j3 {3 33 333*34 4 4 !4+4@4\4c4y44444#4 5R5c5 j5v5}555555555 5 6 66)6>63]6 6 6 6@6 6"7L$7q7?77 77788484L888'8 8 8T839Q9&Y9999*9999: ::':;: Q: ]: ~: :: :::: : :; ; ';1; B; P; ^;l; s; ;,; ; ;,;l<Wr< < < <,<=!=(=9=@= Q=\= c=4q==!= ==( >3>:>'S> {> >>> >>> >.> ? )?7????? ?/@ 0@<@ B@ P@ ^@ @@@ @@ @@@@A!A 7AEALA]A%dA%AA AA A AA BB B5%BK[B BBBBBBBC CC 0C:C ACMC gCqCCC CJCCDD ,D6DGD XDfDkD$|D,DDDD2D,EEt[FF@iG<G>GK&H rH/}IIQJK2K.K!KLaLYM7rMTMMN;KO9OCO5P+;P!gP:P!PPQQ$=Q(bQIQLQ_"RR/R9R S`S=TjTF2UPyUUV!8WPZWWWW!W XXfX EYSYhYmYuY{Y YmYYZZ Z*ZCZJZLZSZ WZeZlZtZZZ [[[[[\.\ L\ V\c\w\,\\$\\\]]"] 8])F]9p]\]m^u^^96_ p_,z__(__%_ `!(`J`i`z`"`%```a bAbVbZb bb pbzb b b bb bb b b b bccf7gZHg)gggggg g gh hohL~hhcYiIi!j8)j2bj5jhj 4k.?k:nkktlS4m@mSmLnjn8opp p )p 6p=Dpp p pp ppppp qq%q(qHqQqWq]qdq fq tqqq q qq qqqqq rr -r :rDrFrMrOr`rprrorrLs Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . 필드 새 창에서 열기 모두 실행 취소 이(가) 설치되어 있습니다. 현재 버전은 제품 업데이트가 필요합니다. 버전 #%1$s 초안이 업데이트되었습니다. %3$s 미리 보기%1$s이(가) %2$s(으)로부터 수정을 위해 복원되었습니다.%1$s이(가) 다음에 대해 예약됨: %2$s %4$s 미리 보기%1$s이(가) 제출되었습니다. %3$s 미리 보기초 수를 구분하기 위해 %n이(가) 사용됩니다.%s 이전%s이(가) 게시되었습니다.%s이(가) 저장되었습니다.%s이(가) 업데이트되었습니다.%s이(가) 비활성화되었습니다!%s허용%s%s확인된%s 계산 값%s허용 안 함%s%s확인되지 않은%s 계산 값* - 영숫자(A-Z,a-z,0-9)를 나타냄 - 숫자와 문자 모두 입력 허용- 없음- 한 개 선택- 필드 선택- 제품 선택- 변수 선택- 양식 선택- 모든 유형 보기9 - 숫자(0-9)를 나타냄 - 숫자 입력만 허용
    • a - 알파벳(A-Z,a-z)을 나타냄 - 문자 입력만 허용.
    • 9 - 숫자(0-9)를 나타냄 - 숫자 입력만 허용.
    • * - 영숫자(A-Z,a-z,0-9)를 나타냄 - 숫자와 문자 모두 입력 허용.
    양식의 스팸 제출을 방지하기 위한 대소문자 구분 답변.Ninja Forms에 주요 업데이트가 예정되어 있습니다. %s새 기능, 이전 버전과의 호환성 및 자주 묻는 질문에 대해 자세히 알아봅니다.%s간소화되고 더욱 강력해진 양식 구축 경험.요소의 위위의 영역동작 이름동작이 업데이트됨작업활성화활성추가하기설명 추가양식 추가새로 추가새 영역 추가새 양식 추가새 항목 추가새 제출 추가새 용어 추가연산 추가제출 버튼 추가값 추가양식 추가 동작양식 영역 추가이 페이지에 양식 추가새 동작 추가새 영역 추가이 뉴스레터 등록 양식으로 구독자를 추가하고 이메일 목록을 추가합니다. 필요에 따라 영역을 추가 및 제거할 수 있습니다.애드온 라이선스추가 기능주소주소 2필드 요소에 추가 클래스를 추가합니다.필드 래퍼에 추가 클래스를 추가합니다.관리자 이메일관리자 레이블관리고급고급 수식고급 설정사전 배송아프가니스탄맨 뒤이후 양식레이블 뒤동의하십니까?AlbaniaAlgeria모두Form에 대한 모든 정보모든 필드모든 양식모든 항목모든 현재 양식이 “모든 양식” 표에 남게 됩니다. 일부 경우 어떤 양식은 이 과정 중에 중복될 수 있습니다.사용자가 다음 이벤트를 등록하여 쉽게 양식을 완료할 수 있습니다. 필요에 따라 영역을 추가 및 제거할 수 있습니다.간단한 연락처 양식으로 사용자가 귀하에게 연락할 수 있습니다. 필요에 따라 영역을 추가 및 제거할 수 있습니다.서식 있는 텍스트 입력을 허용합니다.사용자가 이 제품을 하나 이상 선택할 수 있도록 허용합니다.거의 다 끝나갑니다...“이메일 및 동작”을 위해 “양식 구축” 탭과 함께 “알림”을 제거했습니다. 이 탭에서 무엇을 수행할 수 있는지 훨씬 분명하게 알 수 있습니다.American Samoa예기치 못한 오류가 발생했습니다.AndorraAngolaAnguilla응답Antarctica스팸 방지스팸 방지 질문(답변 = 답변)스팸 방지 오류 메시지Antigua and Barbuda아래 목록에 없는 “사용자 지정 마스크” 상자에 귀하가 입력한 문자는 사용자가 입력한 대로 자동으로 입력되며 제거할 수 없습니다.Ninja Form 추가Ninja Form 추가페이지에 추가적용하기ArgentinaArmeniaArubaCSV 첨부첨부 파일AustraliaAustria자동 합계 필드자동 총 계산 값사용 가능사용 가능한 용어Azerbaijan목록으로 돌아가기목록으로 돌아가기백업/복원Ninja Form 백업BahamasBahrainBangladeshBarBarbados기본 영역기본 설정욕실 세면대Baz숨은 참조맨 앞이전 양식레이블 앞저희 지원 팀의 도움을 요청하기 전에 다음을 검토하시기 바랍니다.날짜 시작실제 날짜BelarusBelgiumBelize요소의 아래아래 영역BeninBermuda가장 좋은 연락 수단은 무엇인가요?비즈니스에 있어 최고의 지원보다 잘 조직된 필드 설정더 나아진 라이선스 관리Bhutan청구:빈 양식Bolivia보스니아 헤르체코비나BotswanaBouvet IslandBrazilBritish Indian Ocean Territory브루나이양식 구축Bulgaria일괄 작업Burkina FasoBurundi버튼CVC계산계산 값계산계산 방식계산 설정계산 이름계산계산은 AJAX 응답(응답 -> 데이터 -> 계산)을 반환합니다.CambodiaCameroonCanada취소Cape VerdeCaptcha가 일치하지 않습니다. Captcha 필드에 올바른 값을 입력하세요.카드 CVC 설명카드 CVC 레이블카드 만료 월 설명카드 만료 월 레이블카드 만료 연도 설명카드 만료 연도 레이블카드 이름 설명카드 이름 레이블카드 번호카드 번호 설명카드 번호 레이블Cayman Islands참조Central African RepublicChad변경 값자왼쪽에 문자(들)글자 수누굴 속이시려고?설명서 확인확인란확인란 목록확인란선택됨확인된 계산 값ChileChinaChristmas Island도시클래스 이름성공적으로 완료된 양식을 지우겠습니까?Cocos (Keeling) Islands요금 결제Colombia일반 필드Comoros복합 수식은 다음과 같이 괄호를 추가하여 만들 수 있습니다. %s( field_45 * field_2 ) / 2%s.확인귀하가 로봇이 아님을 확인합니다.콩고콩고 민주 공화국연락 형식문의연락처컨테이너계속하기Cook Islands비용비용 드롭다운비용 옵션비용 유형Costa Rica코트디부아르라이선스를 활성화할 수 없습니다. 귀하의 라이선스 키를 확인하세요.국가사용자 지정 개발을 위한 필드를 확인 및 대상으로 지정할 고유한 키를 만듭니다.신용 카드신용 카드 CVC신용 카드 CVV신용 카드 만료신용 카드 전체 이름신용 카드 번호신용 카드 지역 코드신용 카드 우편 번호크레딧크로아티아(현지 이름: 흐르바트스카)Cuba통화통화 기호현재 페이지사용자 정의사용자 지정 CSS 클래스사용자 지정 CSS 클래스사용자 지정 클래스 이름사용자 지정 필드 그룹사용자 지정 마스크사용자 지정 마스크 정의사용자정의 필드 삭제됨.사용자 정의 필드 업데이트됨.사용자 지정 첫 번째 옵션CyprusCzech RepublicDD-MM-YYYYDD/MM/YYYY디버그: 2.9.x로 전환디버그: 3.0.x로 전환어두움데이터가 성공적으로 복원되었습니다!날짜생성일날짜 형식날짜 설정제출된 날짜날짜가 업데이트됨Datepicker비활성화비활성화모든 라이선스 비활성화라이선스 비활성화설정 탭에서 Ninja Form 확장 기능 라이선스를 개별적으로 또는 그룹으로 비활성화합니다.기본기본 국가기본 레이블 위치기본 시간대현재 날짜로 기본값 지정기본 값기본 시간대는 %s입니다.기본 타임존은 %s입니다 - UTC이어야 합니다정의된 필드제거하기삭제(^ + D + 클릭)영구적으로 삭제이 양식 삭제이 아이템을 영구적으로 삭제Denmark설명설명 콘텐츠설명 위치큰 양식을 작게 나누고, 더 쉽게 간소화한 부분으로 나누어 양식 변환을 늘릴 수 있다는 사실을 아셨나요?

    Ninja Form을 위한 여러 부분으로 나누어진 양식 확장 기능이 이 작업을 빠르고 쉽게 해줍니다.

    관리자 알림 해제브라우저 자동 완성 해제입력 해제모바일에서 서식 있는 텍스트 편집기 해제입력을 해제하겠습니까?해제표시하기양식 제목 표시이름 보이기표시 설정이 계산 변수 표시제목 표시양식 표시하기DividerDjibouti해당 용어 표시 안 함문서설명서가 예정되어 있습니다.설명서는 %s문제 해결%s부터 %s개발자 API%s까지 모든 것을 다룰 수 있습니다. 항상 새 문서가 추가되고 있습니다.양식 미리 보기에 적용되지 않습니다.양식 미리 보기에 적용됩니다.DominicaDominican Republic완료모든 제출 다운로드드랍다운복사복제(^ + C + 클릭)양식 복제Ecuador편집동작 편집양식 편집항목 편집메뉴 항목 편집제출 편집이 아이템 편집하기편집 영역편집 영역EgyptEl Salvador요소이메일이메일 및 동작이메일 주소이메일 메시지이메일 구독 양식이메일 주소 또는 필드 검색이메일 주소 또는 필드 검색이메일은 이 이메일 주소로 나타납니다.이메일은 이 이름으로 나타납니다.이메일 및 동작종료 날짜양식을 제출하기 전에 이 필드를 반드시 작성해야 합니다.사용자가 데이터를 입력하기 전에 필드에 표시하려는 텍스트를 입력합니다.양식 필드의 레이블을 입력하십시오. 사용자는 이런 식으로 개별 필드를 식별할 수 있습니다.이메일 주소를 입력하십시오.환경수식수식(고급)Equatorial GuineaEritrea에러필수 필드가 전부 완료되지 않으면 오류 메시지가 표시됩니다.EstoniaEthiopia이벤트 등록메뉴 확장만료 월(MM)만료 연도(YYYY)내보내기즐겨찾기 필드 내보내기필드 내보내기내보내기 양식양식 내보내기양식 내보내기이 항목 내보내기Ninja Form 확장파일 업로드디스크에 파일을 작성하지 못했습니다.포클랜드 제도(말비나스)Faroe Islands즐겨찾기 필드즐겨찾기를 성공적으로 가져왔습니다.필드필드 번호필드 ID필드 키영역을 찾을 수 없음필드 연산필드*로 표시된 필드는 필수입니다.%s*%s로 표시된 필드는 필수입니다.Fiji파일 업로드 오류파일 업로드 진행 중.확장자에 의해 파일 업로드가 중단되었습니다.Finland이름수정합니다.FooFoo Bar예를 들어, A4B51.989.B.43C 양식으로 제품 키가 있었다면, 모든 a는 문자가 되고 9s는 숫자가 되도록 하는 a9a99.999.a.99a로 마스킹할 수 있습니다.형식양식 기본값양식 삭제됨양식 영역양식을 성공적으로 가져왔습니다.양식 키양식을 찾을 수 없음양식 미리 보기양식 설정 저장됨양식 제출양식 템플릿 가져오기 오류입니다.양식 제목계산 포함 양식형식폼양식 삭제됨페이지당 양식France프랑스, 메트로폴리탄French GuianaFrench PolynesiaFrench Southern Territories2019년 11월 18일 금요일보낸 사람 주소보낸 사람 이름전체 변경 로그전체 화면GabonGambia일반일반 설정GeorgiaGermany지원 받기더 많은 동작 가져오기더 많은 유형 가져오기도움 받기지원 받기시스템 보고서 받기%s여기%s에서 등록하여 도메인의 사이트 키 얻기첫 번째 양식 영역을 추가하여 시작합니다.첫 번째 양식 영역을 추가하여 시작합니다. 더하기 기호를 클릭하여 원하는 동작을 선택합니다. 이렇게 간단합니다.시작하기Ninja Form 시작하기GhanaGibraltar양식의 제목을 지정하세요. 제목은 나중에 양식을 찾는 수단이 됩니다.가기귀하의 시도가 실패했습니다.양식으로 이동Ninja Form으로 이동첫 번째 페이지로 이동마지막 페이지로 이동폐이지 넘기기이전 페이지로 이동GreeceGreenlandGrenada확대되는 설명서GuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaiti절반 화면허드 맥도널드 제도안녕하세요! Ninja Form입니다.도움말도움말 텍스트여기에 도움말 텍스트보이지 않음숨김 필드레이블 숨기기숨기기성공적으로 완료된 양식을 숨기겠습니까?힌트: 암호는 7자 이상이어야 합니다. 더 강력하게 하려면 대문자와 소문자, 숫자 및 특수문자(! “ ? $ % ^ &)를 사용하십시오.바티칸 시국홈 URLHonduras허니팟허니팟 오류허니팟 오류 메시지Hong Kong후크 태그호스트 이름요즘 어떠세요?HungaryIP 주소Iceland“설명 텍스트”가 설정된 경우, 입력 필드 옆에 물음표 %s가 생깁니다. 이 물음표 위로 마우스를 옮기면 설명 텍스트가 표시됩니다.“도움말 텍스트”가 설정된 경우, 입력 필드 옆에 물음표 %s가 생깁니다. 이 물음표 위로 마우스를 옮기면 도움말 텍스트가 표시됩니다.이 상자를 선택하면, 삭제 시 데이터베이스에서 모든 Ninja Form 데이터가 제거됩니다. %s모든 양식 및 제출 데이터를 복구할 수 없게 됩니다.%s이 상자를 선택하면 성공적으로 제출된 후에 Ninja Form이 양식 값을 지웁니다.이 상자를 선택하면 성공적으로 제출된 후에 Ninja Form이 양식을 숨깁니다.이 상자를 선택하면 Ninja Form이 이 양식 사본(및 연결된 모든 메시지)을 이 주소로 보냅니다.이 상자를 선택하면 Ninja Form이 이 입력을 이메일 주소로 확인합니다.이 상자를 선택하면 암호 및 암호 확인 텍스트 상자가 모두 출력됩니다.이 상자가 표시되면 제출 표에 있는 이 열은 숫자로 정렬됩니다.귀하가 로봇이 아니며 이 필드가 보이는 경우에는 이 부분을 비워 두시기 바랍니다.귀하가 로봇이 아니며 이 필드가 보이는 경우에는 이 부분을 비워 두시기 바랍니다.귀하가 로봇이 아닌 경우에는 천천히 하시기 바랍니다.빈 상자로 두면 사용 제한이 없습니다.여기에 참여하시면 Ninja Form 설치에 대한 일부 데이터가 NinjaForms.com으로 전송됩니다(귀하의 제출은 포함되지 않음).이 과정은 건너 뛰어도 괜찮습니다! Ninja Form이 동작하는 데에는 문제가 없습니다.빈 값 또는 계산을 보내려는 경우 ‘’를 사용해야 합니다.사용자가 제출을 클릭하면 이메일을 통해 귀하에게 알림이 오도록 양식을 지정하려는 경우, 이 탭에서 설정할 수 있습니다. 양식을 입력한 사용자에게 전송되는 이메일을 비롯하여 이메일을 제한 없이 만들 수 있습니다.2.9로 업데이트한 후 양식이 “유실”되는 경우 이 버튼은 2.9에서 양식을 표시하기 위해 이전 양식의 재변환을 시도합니다. 모든 현재 양식이 “모든 양식” 표에 남게 됩니다.가져오기가져오기/내보내기제출 가져오기/내보내기즐겨찾기 필드 가져오기즐겨찾기 가져오기필드 가져오기가져오기 양식양식 가져오기목록 항목 가져오기양식 가져오기가져오기/내보내기개선된 투명도자동 합계에 포함되나요? (설정된 경우)부정확한 답변변환 증가IndiaIndonesia입력 마스크삽입모든 필드 삽입필드 삽입링크 삽입미디어 삽입요소의 내부설치됨설치된 플러그인관심 그룹유효하지 않은 양식이 업로드되었습니다.유효하지 않은 양식 ID이란(이슬람 공화국)Iraq아일랜드이메일 주소인가요?Israel이렇게 간단합니다. 또는...ItalyJamaicaJapanJavaScript 해제 오류 메시지홍길동Jordan여기를 클릭하고 원하는 영역을 선택하세요.KazakhstanKenya키KiribatiKitchen Sink조선민주주의 인민공화국대한민국KuwaitKyrgyzstan라벨여기에 레이블 삽입레이블 이름레이블 위치제출을 보고 내보낼 때 사용되는 레이블입니다.레이블,값,계산레이블reCAPTCHA가 사용하는 언어입니다. 언어에 해당하는 코드를 받으려면 %s여기%s를 클릭하세요.라오스 민주공화국성Latvia레이아웃 요소레이아웃 필드자세한 정보여러 부분으로 나누어진 양식에 대해 자세히 알아보기저장 진행률에 대해 자세히 알아보기Lebanon요소의 왼쪽영역 왼쪽LesothoLiberia리비아라이선스Liechtenstein밝음이 숫자만큼 입력 제한제한에 도달했음 메시지제출 제한이 숫자만큼 입력 제한목록목록 필드 매핑목록 유형목록Lithuania로드 중로드 중...위치로그인 됨긴 양식 - LuxembourgMM-DD-YYYYMM/DD/YYYY마카오구 유고슬라비아 마케도니아 공화국MadagascarMalawiMalaysiaMaldivesMaliMalta이 템플릿으로 웹사이트에서 견적 요청을 쉽게 관리합니다. 필요에 따라 영역을 추가 및 제거할 수 있습니다.Marshall IslandsMartiniqueMauritaniaMauritius최대최대 입력 중첩 수준최댓값나중에Mayotte중간메시지메시지 레이블위의 “로그인” 확인란이 선택되는 경우 사용자에게 표시되는 메시지이며 사용자가 로그인되지 않습니다.메타박스Mexico미크로네시아연방 공화국마이그레이션 및 모의 데이터 완료. 최소최솟값기타 필드불일치임시 폴더가 없습니다.모의 이메일 동작모의 저장 동작모의 성공 메시지 동작수정 날짜:몰도바 공화국MonacoMongoliaMontenegroMontserrat앞으로도 기대하세요.Morocco이 아이템을 휴지통으로 이동Mozambique다중 선택여러 제품 - 다수 선택여러 제품 - 한 개 선택여러 제품 - 드롭다운다중 선택다중 선택 상자 크기복수나의 첫 번째 계산나의 두 번째 계산MySQL 버전Myanmar이름카드에 표시된 이름이름 또는 필드NamibiaNauru도움이 필요한가요?NepalNetherlands네덜란드령 앤틸리스Ninja Form의 대시보드에서 관리자 알림을 보지 않습니다. 다시 보려면 선택을 해제합니다.새 동작새 빌더 탭New Caledonia새 항목새 제출New Zealand뉴스레터 등록 양식NicaraguaNigerNigeriaNinja Form 설정Ninja FormNinja Form - 처리 중Ninja Form 변경 로그Ninja Form 개발Ninja Form 설명서Ninja Form 처리 중닌자 양식 제출Ninja Form 시스템 상태Ninja Form 3 설명서Ninja Form 업그레이드Ninja Form 업그레이드 처리 중Ninja Form 업그레이드Ninja Form 버전Ninja Form 위젯Ninja Form은 php 템플릿 파일에 직접 배치할 수 있는 간단한 템플릿 함수와 함께 제공됩니다. %sNinja Form 기본 도움말은 여기로 이동하세요.Ninja Form을 네트워크 활성화할 수 없습니다. 플러그인을 활성화하려면 각가의 사이트 대시보드를 방문하시기 바랍니다.Ninja Form에 가능한 모든 업그레이드가 완료되었습니다!Ninja Form은 최고의 워드프레스 커뮤니티 양식 생성 플러그인을 제공하는 것을 목표로 하는 전 세계적인 개발자 팀을 통해 만들어집니다.Ninja Form에서 %s개의 업그레이드를 처리해야 합니다. 완료하는 데 몇 분 정도 걸릴 수도 있습니다. %s업그레이드 시작%sNinja Form에서 이메일 설정을 업데이트해야 합니다. 업그레이드를 시작하려면 %s여기%s를 클릭하세요.Ninja Form에서 제출 표를 업그레이드해야 합니다. 업그레이드를 시작하려면 %s여기%s를 클릭하세요.Ninja Form에서 양식 알림을 업그레이드해야 합니다. 업그레이드를 시작하려면 %s여기%s를 클릭하세요.Ninja Form에서 양식 설정을 업그레이드해야 합니다. 업그레이드를 시작하려면 %s여기%s를 클릭하세요.Ninja Form은 사이트의 위젯화된 영역에 배치할 수 있고 해당 공간에 표시하려는 양식을 정확하게 선택할 수 있는 위젯을 제공합니다.양식 지정 없이 사용되는 Ninja Form 단축 코드입니다.Niue아니오지정된 동작 없음...즐겨찾기 필드를 찾을 수 없음필드를 찾을 수 없습니다.제출을 찾을 수 없음휴지통에서 제출을 찾을 수 없음이 분류법에 사용 가능한 용어가 없습니다. %s용어 추가%s업로드한 파일이 없습니다.양식을 찾을 수 없습니다.선택된 분류법이 없습니다.유효한 변경 로그를 찾을 수 없습니다.없음Norfolk IslandNorthern Mariana IslandsNorway로그인되지 않음 메시지아직 실행 안 함휴지통에 없음참고참고 텍스트는 아래 참고 필드의 고급 설정에서 편집할 수 있습니다.알림: 이 콘텐츠에는 JavaScript가 필요합니다.알림: 양식 지정 없이 사용되는 Ninja Form 단축 코드입니다.숫자최대 수 오류최소 수 오류숫자 옵션별 수소수 자릿수.카운트다운 시간(초)카운트다운 시간(초)제출 시간 초과 시간(초).별 수Oman1하나의 이메일 주소 또는 필드이런! 해당 애드온은 아직 Ninja Forms THREE와 호환되지 않습니다. %s자세히 알아봅니다%s.새 창에서 열기연산 및 필드(고급)독단적인 스타일첫 번째 옵션세 번째 옵션두 번째 옵션선택사항구성 도우미지원 범위다음으로 출력 계산PHP 로캘PHP Max Input VarsPHP 포스트 최대 사이즈PHP 시간 한도PHP 버전게시Pakistan팔라우PanamaPapua New Guinea단락 텍스트Paraguay상위 항목:비밀번호암호 확인암호 불일치 레이블암호가 일치하지 않음결제 필드지불 게이트웨이결제 합계권한이 거부됨PeruPhilippines전화전화 - (555) 555-5555Pitcairn원하는 어디든지 양식을 표시하도록 단축 코드를 수락하는 영역에 %s을(를) 둡니다. 페이지 중앙이나 게시물 콘텐츠 내에도 가능합니다.플레이스홀더일반 텍스트위에 보이는 오류와 함께 %s지원에 문의%s하시기 바랍니다.스팸 방지 질문에 정확하게 대답해 주십시오.필수 필드를 확인하시기 바랍니다.Captcha 필드를 완료하세요.Recaptcha를 완료하세요.이 양식을 제출하기 전에 오류를 수정하시기 바랍니다.모든 필수 필드가 작성되었는지 확인해 주십시오.이 양식이 해당 제출 제한에 도달하여 새 제출을 허용하지 않을 때 표시할 메시지를 입력하세요.유효한 이메일 주소를 다시 입력하세요.유효한 이메일 주소를 입력하시기 바랍니다!유효한 이메일 주소를 입력합니다.Ninja Form의 개선을 위해 도와주십시오!지원 요청 시 이 정보를 포함해 주시기 바랍니다:증가: 스팸 필드를 비워둔 채로 두십시오.귀하의 사이트 및 비밀 키를 정확하게 입력했는지 확인하세요.이 플러그인을 무료로 유지하려면 %sWordPress.org%s에서 %sNinja Forms%s %s를 평가해 주세요. 워드프레스 Ninja 팀의 감사를 전해 드립니다!제출을 보려면 양식을 선택하기 바랍니다.양식을 선택하세요.유효한 내보내기 양식 파일을 선택하세요.유효한 즐겨찾기 필드 파일을 선택하세요.내보낼 즐겨찾기 필드를 선택하세요.다음 연산자를 사용하세요. + - * /. 이 기능은 고급 기능입니다. 0으로 나누기와 같은 경우에 주의하세요.%n초 기다려 주십시오.양식을 제출하려면 기다려 주십시오.플러그인Poland분류하여 채우기Portugal올리기게시물/페이지 ID(해당되는 경우)게시물/페이지 제목(해당되는 경우)게시물/페이지 URL(해당되는 경우)게시물 생성게시물 ID글 제목글 URL미리보기변경 사항 미리 보기양식 미리 보기미리 보기가 존재하지 않습니다가격가격:가격 필드처리중레이블 처리 중제출 레이블 처리 중제품제품(수량 포함)제품(개별 수량)제품 A제품 B제품 양식(인라인 수량)제품 양식(여러 제품)제품 양식(수량 영역 포함)상품 형식이 양식을 참조하는 데 사용할 수 있는 프로그래밍 방식 이름.게시Puerto Rico구매Qatar수량제품 A 수량제품 B 수량수량:쿼리 문자열쿼리 문자열쿼리문자열 변수문항질문 위치견적 요청라디오라디오 목록암호 다시 입력암호 다시 입력 레이블모든 라이선스를 비활성화하겠습니까?Recaptcha리디렉션제거하기제거 시 모든 Ninja Form 데이터를 제거하겠습니까?값 제거모든 Ninja Form 데이터 제거이 필드를 제거하겠습니까? 저장하지 않아도 제거됩니다.다음에게 회신양식을 보기 위해 사용자가 로그인해야 합니까?필수필수 필드필수 필드 오류필수 필드 레이블필요 필드 기호양식 전환 재설정양식 전환 재설정v2.9 이상에 대한 양식 전환 과정 재설정복구Ninja Form 복원이 아이템을 휴지통에서 복구제한 설정제한 사항귀하의 사용자가 이 필드에 입력할 수 있는 종류를 제한합니다.Ninja Form으로 돌아가기Reunion서식 있는 텍스트 편집기(RTE)요소의 오른쪽영역 오른쪽롤백최신 2.9.x 릴리스로 롤백합니다.v2.9.x(으)로 롤백Romania러시아 연방RwandaSMTPSOAP 클라이언트수호신 설치됨Saint Kitts and NevisSaint LuciaSaint Vincent and the Grenadines사모아San Marino상투메 프린시페Saudi Arabia저장저장 및 활성화필드 설정 저장양식 저장옵션 저장변경 사항 저장저장 제출저장됨저장된 필드저장 중...항목 검색제출 검색Select모두 선택목록 선택필드 선택 또는 검색할 내용 입력파일 선택양식 선택양식 선택 또는 검색할 내용 입력이 양식이 허용하는 제출의 수를 선택합니다. 제한이 없는 경우는 비워 두십시오.필드 요소 자체에 대해 상대적인, 레이블의 위치를 선택하십시오.선택됨선택한 값보내기양식 사본을 이 주소로 보낼까요?SenegalSerbia서버 IP 주소설정설정 저장됨Seychelles배송단축 코드백분율로 입력해야 합니다(예: 8.25%, 4%).도움말 텍스트 표시미디어 업로드 버튼 표시더 보기암호 강도 지표 표시서식 있는 텍스트 편집기 표시표시목록 항목 값 표시가리킨 항목으로 표시됩니다.Sierra LeoneSingapore단일단일 확인란단일 비용단일 줄 텍스트단일 제품(기본)사이트 URL슬로바키아(슬로바키아 제1공화국)Slovenia일반 우편따라서 미국 사회 보장 번호에 대한 마스크를 만들려는 경우 상자에 999-99-9999를 입력하게 됩니다.Solomon IslandsSomalia숫자로 정렬숫자로 정렬South Africa사우스조지아 사우스샌드위치 제도South SudanSpain스팸 답변스팸 질문연산 및 필드 지정(고급)Sri Lanka세인트헬레나생피에르에 미클롱 섬표준 필드별점템플릿으로 시작하세요.주상태단계대략 %d 실행 중 %d 단계단계(증가할 양)강도 지표강력하위 시퀀스제목제목 텍스트 또는 필드 검색제목 텍스트 또는 필드 검색제출제출 CSV제출 데이터제출 정보제출 제한제출 메타박스제출 통계제출저장하기타이머가 만료된 후의 제출 버튼 텍스트AJAX를 통해 제출하겠습니까(페이지 다시 로드하지 않음)?제출됨제출한 사람:제출: 제출 날짜:제출 날짜: 구독성공 메시지SudanSuriname스발바르 얀마웬 제도SwazilandSwedenSwitzerland시리아 아랍공화국시스템시스템 상태THREE 출시 예정입니다!TaiwanTajikistan아래의 자세한 Ninja Form 설명서를 살펴 보시기 바랍니다.탄자니아 합중국세금세금 백분율분류법템플릿 필드템플릿 함수용어 목록Text텍스트 요소카운터 후에 나타낼 텍스트자/단어 수 뒤에 나타나는 텍스트텍스트 영역텍스트 상자Thailand이 양식을 작성해 주셔서 감사합니다.최신 버전으로 업데이트해 주셔서 감사합니다! Ninja Form %s은(는) 즐거운 제출 관리 경험을 만들기 위해 준비되었습니다.Ninja Form 버전 2.7로 업데이트해 주셔서 감사합니다. 모든 Ninja Form 확장 기능을 업데이트해 주시기 바랍니다. 업데이트해 주셔서 감사합니다! Ninja Form %s은(는) 전에 비해 양식 구축을 쉽게 해줍니다!Ninja Form을 사용해 주셔서 감사합니다! 필요한 모든 사항을 찾으셨기를 바랍니다. 그래도 문의 사항이 있으신 경우:{field:name}, 이 양식을 작성해 주셔서 감사합니다!(일반적으로) 신용 카드 앞면의 16자리입니다.카드의 3자리(뒷면) 또는 4자리(앞면) 값입니다.9s는 임의의 숫자를 나타내며, -s는 자동으로 추가됩니다.Form 메뉴는 Ninja Form의 모든 것에 대한 액세스 지점입니다. 저희가 이미 귀하의 첫 번째 %s연락처 양식%s을 만들었으니 예시로 사용하세요. %s새로 추가%s를 클릭하여 자신만의 양식을 만들 수도 있습니다.해당 포맷은 다음과 같이 보입니다.이 버전에서 인터페이스 업데이트가 향후 엄청난 개선을 위해 기반을 다지고 있습니다. Ninja Form을 보다 안정적이고, 강력하며, 사용자 친화적인 양식 빌더로 만들기 위해 버전 3.0이 구축됩니다.신용 카드가 만료되는 달, 일반적으로 카드 앞면에 있습니다.가장 일반적인 설정은 바로 표시되는데 반해, 필수적이지 않은 설정은 확장 가능한 섹션 안에 접혀 있습니다.신용 카드 앞면에 인쇄된 이름입니다.제공된 암호가 일치하지 않습니다.Ninja Form을 구축하는 사람과정이 시작되었습니다. 잠시 기다려 주세요. 몇 분 정도 걸릴 수 있습니다. 과정이 완료되면 자동으로 리디렉션됩니다.업로드한 파일이 HTML 양식에서 지정된 MAX_FILE_SIZE 지시문을 초과했습니다.업로드한 파일이 php.ini에서 upload_max_filesize 지시문을 초과했습니다.업로드된 파일은 부분만 업로드됐습니다.신용 카드가 만료되는 연도, 일반적으로 카드 앞면에 있습니다.%1$s의 새 버전을 사용할 수 있습니다. 버전 %3$s 세부 사항을 보거나 지금 업데이트합니다.%1$s의 새 버전을 사용할 수 있습니다. 버전 %3$s 세부 사항을 봅니다.업로드된 파일의 형식이 유효하지 않습니다.다음은 모두 가격 섹션에 있는 영역입니다.다음은 모두 사용자 정보 섹션에 있는 영역입니다.다음은 미리 정의된 마스킹 문자입니다.다음은 다양한 특별 영역입니다.영역이 일치해야 합니다!제출 표에 있는 이 열은 숫자로 정렬됩니다.이것은 필수 필수입니다.필요한 필드입니다.이것은 테스트입니다.사용자의 상태입니다.이것은 이메일 동작입니다.이것은 또 다른 테스트입니다.사용자가 양식 제출을 위해 기다려야 하는 시간입니다.제출을 보고/편집하고/내보낼 때 사용되는 레이블입니다.이 이름은 필드의 프로그램식 이름입니다. 예: my_calc, price_total, user-total.사용자의 상태입니다.%s확인된%s 경우 사용되는 값입니다.%s확인되지 않은%s 경우 사용되는 값입니다.필드를 추가하고 표시할 순서대로 끌어 놓아 양식을 구축하는 곳입니다. 각각의 필드에는 레이블, 레이블 위치 및 자리 표시자와 같은 옵션 모음이 있습니다.이 키워드는 워드플레스를 통해 예약됩니다. 다른 키워드를 사용하세요.이 메시지는 처리 중임을 알리기 위해 사용자가 “제출”을 클릭할 때마다 제출 버튼 내에 표시됩니다.이 메시지는 암호 필드에 일치하지 않는 값이 입력되면 사용자에게 표시됩니다.이 숫자는 상자가 선택된 경우 계산에서 사용됩니다.이 숫자는 상자가 선택되지 않은 경우 계산에서 사용됩니다.이 설정은 플러그인 삭제 시 관련된 모든 Ninja Form을 완전히 제거합니다. 여기에는 제출 및 양식이 포함됩니다. 이 작업은 실행 취소할 수 없습니다.이 탭에는 제목 및 제출 방식과 같은 일반 양식 설정뿐 아니라 성공적으로 완료되면 양식 숨기기와 같은 표시 설정도 있습니다.이메일의 제목이 됩니다.이는 사용자가 숫자가 아닌 것을 입력하지 못하도록 합니다.3시간이 초과된 제출타이머 오류 메시지티모르-레스테(동티모르)받는 사람Ninja Form 확장 기능에 대한 라이선스를 활성화하려면 먼저 선택한 확장 기능을 %s설치 및 활성화%s해야 합니다. 그러면 라이선스 설정이 아래 나타납니다.이 기능을 사용하기 위해 귀하의 CSV를 위의 텍스트 영역에 붙일 수 있습니다.오늘 날짜서랍 설정/해제TogoTokelauTonga총합휴지통%sPHP date() 함수%s 사양을 시도해 보십시오. 하지만 일부 형식은 지원되지 않습니다.Trinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvalu2형식URL미국 전화UgandaUkraine선택 해제됨확인되지 않은 계산 값양식 설정의 기본 양식 동작에서 해당 페이지의 콘텐츠 끝 부분에 양식을 자동으로 추가하려는 페이지를 쉽게 선택할 수 있습니다. 해당 사이드바의 모든 콘텐츠 편집 화면에서 유사한 옵션을 사용할 수 있습니다.실행 취소모두 실행 취소United Arab Emirates영국미국미국령 군소 제도알려지지 않은 업로드 오류입니다.미발행업데이트항목 업데이트업데이트 날짜: 양식 데이터베이스 업데이트하기업그레이드Ninja Forms THREE로 업그레이드업그레이드업그레이드 완료URLUruguay수식 사용(고급)사용 수량사용자 지정 첫 번째 옵션 사용기본 Ninja Form 스타일링 규칙을 사용합니다.최종 계산을 삽입하려면 다음 단축 코드를 사용합니다. [ninja_forms_calc]Ninja Form을 시작하려면 아래 팁을 사용하세요. 지체 없이 바로 사용할 수 있습니다.등록 암호 필드로 사용등록 암호 필드로 사용합니다. 이 상자를 선택하면, 암호 및 암호 확인 텍스트 상자가 모두 출력됩니다.처리 중인 필드를 표시하는 데 사용됩니다.사용자사용자 표시 이름(로그인한 경우)사용자 이메일사용자 이메일(로그인한 경우)사용자 입력사용자 이름(로그인한 경우)사용자 ID사용자 ID(로그인한 경우)사용자 정보 필드 그룹사용자 정보사용자 정보 필드사용자 성(로그인한 경우)사용자 메타(로그인한 경우)사용자가 제출한 값사용자가 제출한 값:사용자는 나중에 제출을 완료하기 위해 저장했다가 다시 돌아갈 때 긴 양식을 완료할 가능성이 많습니다.

    Ninja Form을 위한 저장 진행률 확장 기능이 이 작업을 빠르고 쉽게 해줍니다.

    Uzbekistan이메일 주소로 확인할까요? (필드는 필수여야 함)값Vanuatu변수 이름Venezuela버전버전 %s매우 약함베트남보기%s 보기변경 사항 보기양식 보기항목 보기제출 보기제출 보기전체 변경 로그 보기버진 아일랜드(영국령)버진 제도(미국령)플러그인 홈페이지 방문WP 디버그 모드WP 언어WP 최대 업로드 크기WP 메모리 한도WP 멀티사이트 설정됨WP 원격 게시워드프레스 버전월리스푸투나모든 Ninja Form 사용자에게 가능한 최고의 지원을 제공하기 위해 저희가 할 수 있는 모든 노력을 기울이고 있습니다. 문제가 생기거나 문의 사항이 있는 경우 %s저희에게 문의%s 주시기 바랍니다.플러그인을 삭제하면 모든 Ninja Form 데이터(제출, 양식, 필드, 옵션)를 제거하는 옵션을 추가했습니다. 저희는 이것을 핵 옵션이라고 부릅니다.귀하의 양식에 제출 버튼이 없습니다. 저희가 자동으로 제출 버튼을 추가해 드릴 수 있습니다.약함웹 서버 정보Ninja Form 시작Ninja Form %s 사용 시작Western Sahara무엇을 도와드릴까요?지원에 문의하기 전에 점검할 사항이 즐겨찾기 이름을 무엇으로 지정하겠습니까?새로운 소식양식을 작성하고 편집할 때 가장 중요한 섹션으로 바로 이동합니다.누가 이 이메일을 받게 되나요?단어단어래퍼Y-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemen네귀하는 Ninja Forms THREE 릴리스 후보로 업그레이드할 수 있습니다! %s지금 업그레이드%s특정 애플리케이션을 위해 이들을 결합할 수도 있습니다.x가 사용하려는 필드의 ID인 field_x를 사용하여 여기에 계산식을 입력하세요. 예: %sfield_53 + field_28 + field_65%s.귀하는 자바스크립트를 활성화하지 않고 그 양식을 제출할 수는 없습니다.플러그인 업데이트를 설치할 수 있는 권한이 없습니다.귀하는 권한이 없습니다.양식에 제출 버튼을 추가하지 않았습니다.양식 미리 보기로 로그인해야 합니다.이 즐겨찾기에 이름을 지정해야 합니다.이 양식을 제출하려면 JavaScript가 필요합니다. 설정한 후에 다시 시도하십시오.구매함 구매 이메일이 포함되어 있습니다.귀하의 양식이 성공적으로 제출되었습니다.서버가 fsockopen이나 cURL가 가능하지 않습니다 - 다른 서버와 통신하는 PayPal IPN과 다른 스크립트가 작동하지 않을 것입니다. 호스팅 서비스에 연락하세요.귀하의 서버는 %sSOAP 클라이언트%s 클래스가 설정되었습니다. SOAP를 사용하는 일부 게이트웨이 플러그인은 예상대로 작동하지 않을 수 있습니다.귀하의 서버는 cURL이 설정되었으며, fsockopen이 해제되었습니다.귀하의 서버는 fsockopen 및 cURL이 설정되었습니다.귀하의 서버는 fsockopen이 설정되었으며, cURL이 해제되었습니다.귀하의 서버는 SOAP 클라이언트 클래스가 설정되었습니다.Ninja Form 파일 업로드 확장 기능 버전이 Ninja Form 버전 2.7과 호환되지 않습니다. 버전 1.3.5 이상이어야 합니다. 이 확장 기능을 업데이트해 주시기 바랍니다. Ninja Form 저장 진행률 확장 기능 버전이 Ninja Form 버전 2.7과 호환되지 않습니다. 버전 1.1.3 이상이어야 합니다. 이 확장 기능을 업데이트해 주시기 바랍니다. 유고슬라비아ZambiaZimbabwe우편번호우편 번호a - 알파벳(A-Z,a-z)을 나타냄 - 문자 입력만 허용응답button-secondary nf-download-all올린이왼쪽에 문자(들)선택됨복사사용자 정의d-m-Ydashicons dashicons-update복사foo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Y없음/제품 A 및 제품 B($)1one_week_support비밀번호처리중제품 reCAPTCHAreCAPTCHA 언어reCAPTCHA 비밀 키reCAPTCHA 설정reCAPTCHA 사이트 키reCAPTCHA 테마reCaptcha 설정새로고침smtp_port3제목2선택 해제됨업데이트됨user@gmail.com버전wp_remote_post()에 실패했습니다. PayPal IPN이 귀하의 서버와 동작하지 않을 수 있습니다.wp_remote_post()에 실패했습니다. PayPal IPN이 귀하의 서버와 동작하지 않습니다. 귀하의 호스팅 제공업체에 문의하세요. 오류:wp_remote_post()에 성공했습니다. - PayPal IPN이 동작 중입니다.lang/ninja-forms-pt_BR.po000064400000637023152331132460011267 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Aviso: O JavaScript é necessário para esse conteúdo." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Trapaceando, han?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Campos marcados com %s*%s são requeridos" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Por favor, certifique-se de que todos os campos obrigatórios estão preenchidos." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Este é um campo obrigatório" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Por favor responda a pergunta anti-spam corretamente." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Por favor, deixar o campo spam em branco." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Por favor, aguarde a submissão do formulário." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Você não pode submeter o formulário sem que o Javascript esteja ativado." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Por favor entre com um endereço de email válido." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Processando" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "As senhas informadas não conferem." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Adicionar formulário" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Selecione um formulário ou digite para pesquisar" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Cancelar" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Inserir" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "ID de formulário inválido" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Aumentar conversões" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Você sabia que pode aumentar a conversão de formulários quebrando formulários " "maiores em partes menores e mais segmentadas?

    A extensão Multi-Part Forms " "do Ninja Forms torna isso fácil e rápido.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Saiba mais sobre o Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Talvez mais tarde" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Dispensar" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Os usuários são mais inclinados a completar formulários longos quando eles " "podem salvar e continuar depois.

    A extensão Save Progress do Ninja Forms " "torna isso fácil e rápido.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Saiba mais sobre o Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "E-mail" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Nome do Remetente" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Nome ou campos" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "E-mail irá aparecer com este remetente." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Endereço do Remetente" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Um endereço de e-mail ou campo" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "E-mail irá parecer ter sido enviado ser a partir deste endereço." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Para" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Um endereço de e-mail ou campo" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Para quem este e-mail deverá ser enviado?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Assunto" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Assunto ou busca para um campo" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Este será o assunto do e-mail." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Mensagem do e-mail" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Anexos" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Submissão CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Configurações Avançadas" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Formato" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Texto Plano" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Responder Para" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc (Com cópia)" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Cco (Com Cópia Oculta)" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Encaminhar" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Mensagem de Sucesso" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Antes do Formulário" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Após o Formulário" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Localização" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Mensagem" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplicar" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Desativar" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Ativar" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Editar" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Deletar" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplicar" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nome" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Tipo" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Datas Atualizadas" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Ver Todos os Tipos" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Obter mais tipos" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email & Ações" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Adicionar Novo" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Nova Ação" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Editar Ação" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Voltar Para a Lista" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Nome da Ação" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Obter mais ações" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Ação Atualizada" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Selecione um campo ou digite para pesquisar" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Inserir Campo" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Inserir Todos os Campos" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Por favor, selecione um formulário para visualizar as submissões" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Nenhuma Submissão Encontrada" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Submissões" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Envio" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Adicionar Nova Submissão" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Editar Submissão" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Nova Submissão" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Visualizar Submissão" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Pesquisar Submissões" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Nenhuma Submissão Encontrada Na Lixeira" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Data" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Editar este item" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Exportar este item" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Exportar" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Mover este item para a Lixeira" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Lixeira" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Restaurar este item da Lixeira" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Restaurar" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Deletar este item permanentemente" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Deletar permanentemente" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Não publicado" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s atrás" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Enviado" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Selecionar um formulário" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Data de Início" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Data de Fim" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s atualizado." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Campo de customização atualizado." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Campo de customização deletado." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restaurado para revisão de %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s publicado." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s salvo." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s enviado. Prévia%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s agendado para: %2$s. Prévia%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s rascunho atualizado. Prévia%3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Baixar todas as Submissões" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Voltar para a lista" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Valores submetidos pelo usuário:" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Estatística de Submissão" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Campo" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Valor" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formulário" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Submetido em" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modificado em" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Submetido Por" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Atualizar" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Data de Submissão" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms não pode ser ativado em rede. Por favor, visite o " "painel/dashboard de cada site para ativar o plugin." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Você encontrará isto incluído com seu e-mail de compra." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Chave" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Não foi possível ativar a licença. Por favor verifique a sua chave de licença" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Desativar Licença" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Valores submetidos pelo usuário:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Obrigado por preencher este formulário." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Há uma nova versão do %1$s disponível. Visualizar detalhes da versão %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Há uma nova versão do %1$s disponível. Visualizar detalhes da versão %3$s ou atualizar agora." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Você não tem permissão para instalar atualizações de plugin" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Erro" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Campos Padronizados" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Elementos de Layout" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Criação de Post" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Por favor avalie %sNinja Forms%s %s no %sWordPress.org%s para ajudar-nos a " "manter este plugin gratuito. A equipe WP Ninjas agradece!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Título" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Nenhum" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formulários" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Todos os Formulários" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Upgrades - Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Upgrades" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importar/Exportar" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importar / Exportar" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Opções do Ninja Form" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Configurações" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Status do Sistemas" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Add-Ons" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Pre-visualizar" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Salvar" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "caractere(s) restantes" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Não mostrar estes termos" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Salvar Opções" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Preview do Formulário" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Faça upgrade para o Ninja Forms TRÊS" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Você pode fazer upgrade para o Ninja Forms TRÊS \"Candidato a Lançamento\"! " "%sFaça upgrade agora%s " #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "A versão TRÊS está chegando!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Uma grande atualização do Ninja Forms está chegando. %sSaiba mais sobre novos " "recursos, compatibilidade com versões anteriores e outras perguntas frequentes.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Como vai?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Obrigado por usar o Ninja Forms! Esperamos que tenha encontrado tudo de que " "precisa, mas se tiver mais alguma pergunta:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Consulte nossa documentação" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Peça ajuda" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Editar Item de Menu" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Selecionar Tudo" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Anexar um Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Como gostaria de nomear este favorito?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Você deve fornecer um nome para este favorito." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Desativar todas as licenças realmente?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Redefinir o processo de conversão de formulários para v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Remover TODOS os dados Ninja Forms após a desinstalação?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Editar formulário" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Salvo" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Salvando..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Remover este campo? Será removido mesmo se você não salvar." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Ver Submissões" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms está Processando" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Processando" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Carregando..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Nenhuma ação especificada..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "O processo começou, por favor, seja paciente. Isto poderá levar muitos " "minutos. Você será automaticamente redirecionado quando o processo estiver finalizado." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Bem-vindo ao Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Obrigado por atualizar! Ninja Forms %s torna a contrução de formulários mais " "fácil do que nunca antes!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Bem-vindo ao Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms - Alterações" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Começando com Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "As pessoas que desenvolvem Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "O que há de novo?" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Começando" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Créditos" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versão %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Uma simplificada e mais poderosa experiência para contrução de formulários." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Nova Aba do Contrutor" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Ao criar e editar formulários, vá diretamente para a seção que mais importa." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Campos de configurações melhor organizados" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "As configurações mais comuns são exibidas imediatamente, enquanto outras, não " "essenciais, estão escondidas dentro de seções expansíveis" #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Maior clareza" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Junto com a aba \"Construa seu formulário\", nós removemos \"Notificações\" " "em favor de \"Emails & Ações\". Esta é uma indicação mais clara do que você " "pode fazer nesta aba." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Remova todos os dados Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Nós adicionamos a opção para remover todos os dados do Ninja FOrms " "(submissões, formulários, campos, opções) quando você excluir o plugin. Nós " "chamamos isto de opção nuclear." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Melhor gerenciamento de licença" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Desativar licenças de extensões Ninja Forms individualmente ou como um grupo " "na aba Configurações" #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Mais por vir" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "As atualizações de interface nesta versão prepara o terreno para algumas " "grandes melhorias no futuro. A versão 3.0 será construída nestas alterações " "para tornar o Ninja Forms ainda mais estável, poderoso e amigável." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Documentação" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Dê uma olhada em nossa profunda documentação Ninja Forms abaixo." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Documentação Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Obter Ajuda" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Retornar ao Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Visualizar o Log de Alterações Completo" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Log de Alterações Completo" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Ir para Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Use as dicas abaixo para começar a usar Ninja Forms. Você estará em pleno " "funcionamento rapidamente!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Tudo sobre formulários" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "O menu de formulário é seu ponto de acesso para todas as coisas do Ninja " "Forms. Nós já criamos o seu primeiro %sformulário de contato%s como exemplo. " "Você também pode criar os seus próprios formulários clicando em %sAdicionar Novo%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Construa o seu formulário" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Isto é onde você construíra seu formulário adicionando campos e arrastando-os " "na ordem que você quer que apareçam. Cada campo terá uma variedade de opções " "como rótulo, posição do rótulo e placeholder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Emails & Ações" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Se você quer que o seu formulário te notifique por email quando um usuário " "clicar em enviar, você pode definir isto nesta aba. Você pode criar " "ilimitados emails, incluindo emails enviados para usuários que preencheram o formulário." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Esta aba tem configurações gerais de formulário, como título e método de " "submissão, também exibe configurações como esconder um formulário quando o " "completado com sucesso." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Exibindo Seu Formulário" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Acrescentar à Página" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Em Comportamento Básico do Formulário nas Configurações do formulário você " "pode facilmente selecionar uma página que você deseja que o formulário " "automaticamente anexe ao final do conteúdo dessa página. Uma opção similar " "está disponível em toda tela de edição de conteúdo em sua barra lateral." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Shortcode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Coloque %s em qualquer área que aceita shortcodes para exibir seu formulário " "onde quiser. Mesmo no meio do conteúdo de páginas ou posts." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms fornece um widget que você pode colocar em qualquer área de " "widgets do seu site e selecionar exatamente qual formulário você quer que " "seja exibido neste espaço." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Função de Template" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms também vem com uma função simples de modelo que você pode colocar " "diretamente em um arquivo de modelo php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Precisa de Ajuda?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Documentação Crescente" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Documentação está disponível cobrindo tudo desde %sSolução de Problemas%s até " "a nossa %sAPI de Desenvolvedor%s. Novos documentos sempre serão adicionados." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Melhor Suporte nos Negócios" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Nós fazemos tudo que pudermos para fornecer a cada usuário Ninja Forms o " "melhor suporte possível. Se você encontrar um problema ou tem uma pergunta, " "%spor favor contate-nos%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Obrigada por atualizar para a última versão! Ninja Forms %s está preparado " "para tornar agradável sua experiência na gestão de submissões!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms é criado por uma equipe mundial de desenvolvedores que visam " "proporcionar a comunidade WordPress número 1 para Plugin de criação de formulário." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Nenhum log de mudanças válido foi encontrado." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Visualizar %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Desativar preenchimento automático do navegador" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "Valor de cálculo %sMarcado%s" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Este é o valor que será usado se %sMarcado%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "Valor de cálculo %sDesmarcado%s" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Este é o valor que será usado se %sDesmarcado%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Incluir no auto-total? (Se habilitado)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Personalizar Classes CSS" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Antes de Tudo" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Antes do Rótulo" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Depois do Rótulo" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Depois de Tudo" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Se \"texto de descrição\" estiver habilitado, terá uma exclamação %s colocada " "próximo ao campo. Passando o mouse sobre esta exclamação mostrará o texto de ajuda." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Adicionar Descrição" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Posição da Descrição" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Conteúdo da Descrição" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Se \"texto de ajuda\" estiver ligado, terá uma exclamação %s colocada próximo " "ao campo. Passando o mouse sobre esta exclamação mostrará o texto de ajuda." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Mostrar Texto de Ajuda" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Texto de Ajuda" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Se deixar esta caixa vazia, nenhum limite será utilizado" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limite de entrada para este número" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "de" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Caracteres" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Palavras" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Texto para exibir após o contador de caracteres/palavras" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "À Esquerda do Elemento" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Acima do Elemento" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Abaixo do Elemento" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "À Direita do Elemento" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Dentro do Elemento" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Posição da Etiqueta " #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "ID Campo" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Configurações de Restrição" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Opções de Cálculo" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Remover" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Preencha isto com a taxonomia" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr " - Nenhum" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Placeholder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Obrigatório" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Salvar Configurações dos Campos" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Classificar como numérico" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Se esta caixa estiver marcada, esta coluna na tabela de submissões será " "classificada por número." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Etiqueta Admin" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Esta é a etiqueta usada ao visualizar/editar/exportar submissões" #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Faturamento" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Frete" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Customizado" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Agrupamento de Campos com Informação do Usuário" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Agrupamento de Campos Customizado" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Por favor, inclua esta informação ao solicitar suporte:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Obter Relatório do Sistemas" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Ambiente" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL Pessoal" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Site URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms Versão" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Versão" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite Habilitado" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Sim" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Não" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Informações do Web Server" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP Versão" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Versão" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Local" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Limite de Memória" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Modo Depurador" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP Idioma" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Padrão" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Tamanho Máximo de Upload" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Tamanho Máximo de Post" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Máxima entrada de nível de aninhamento" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Tempo Limite" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Máxima Entrada de Variáveis" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Instalado" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Fuso Horário Padrão" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Fuso Horário Padrão é %s - deve ser UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Fuso Horário Padrão é %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Seu servidor tem fsockopen and cURL habilitados." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Seu servidor tem fsockopen habilitado, cURL está desabilitado." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Seu servidor tem cURL habilitado, fsockopen está desabilitado.." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Seu servidor não tem fsockopen and cURL habilitados - PayPal IPN e outros " "scripts que se comunicam com outros servidores não funcionarão. Entre em " "contato com seu provedor de hospedagem." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Seu servidor tem a classe SOAP Client habilitada." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Seu servidor não tem a classe %sSOAP Client%s habilitada - alguns plugins de " "gateway que usam SOAP podem não funcionar como experado." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() realizado com sucesso - PayPal IPN está funcionando." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() falhou. PayPal IPN não funcionará com seu servidor. Entre em " "contato com seu provedor de hospedagem. Erro:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() falhou. PayPal IPN pode não funcionar com seu servidor." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Plugins Instalados" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visitar página de Plugins" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "por" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "versão" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Dê ao seu formulário um título. É assim que você o encontrará mais tarde." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Você não adicionou um botão de submissão ao seu formulário." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Máscara de Input" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Todo caracter que colocar no box da \"máscara customizada\" que não está na " "lista abaixo será automaticamente colocada para o usuário enquanto ele " "digita, e não poderá ser removida." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Estes são os caracteres de máscara pré-definidos:" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Representa um caracter textual (A-Z,a-z) - Apenas letras poderão ser inseridas" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Representa um caracter numérico (0-9) - Somente números poderão ser inseridos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Representa um caracter texto ou número (A-Z,a-z,0-9) - Este caracter " "deixa tanto letras como números serem inseridos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Então, se você quer criar uma máscara para um número de segurança social, " "você deve digitar 999-99-9999 no campo" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "Os 9s representarão qualquer número, e os pontos e sinal de menos serão " "automaticamente adicionados" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Isto prevenirá o usuário de colocar qualquer coisa a não ser números" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Você também poderá combinar estes para aplicações específicas" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Por exemplo, se seu produto tem uma chave no formato A4B51.989.B.43C, sua " "máscara poderia ser: a9a99.999.a.99a, que iria forçar todos os a's para serem " "letras e 9s para serem números" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Campos Definidos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Campos de Pagamento" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Campos Modelo" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Informação do Usuário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Todos" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Ações em Massa" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Aplicar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formulários Por Página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Ir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Ir para a primeira página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Ir para a página anterior" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Página atual" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Ir para a próxima página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Ir para a última página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Título do Formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Deletar este formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicar Formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formulários Deletados" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formulário Deletado" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Preview do Formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Exibir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Mostrar Título do Formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Adicionar formulário para esta página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Submeter via AJAX (sem recarregar a página)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Limpar formulário completado com sucesso?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Se esta caixa estiver marcada, Ninja Forms limpará todos os valores do " "formulário depois que este for submetido com sucesso." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Esconder formulário completado com sucesso?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Se este box for checado, Ninja Forms irá esconder o formulário após ele ter " "sido submetido com sucesso." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Restrições" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Requerer que o usuário esteja logado para ver formulário?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Mensagem para usuário não logado" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Mensagem exibida a usuários se a caixa \"logado\" acima está marcada e se não " "estão logados." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limite de Submissões" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Selecione o número de submissões que este formulário aceitará. Deixe em " "branco para não ter limite." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Limite de Mensagens Atingido" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Por favor, digite uma mensagem que você deseja exibir quando este formulário " "alcançar seu número limite de submissões e não irá aceitar novas submissões." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Configurações do Form Salvas" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Configurações Básicas" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms ajuda básica vai aqui." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Extender Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentação em breve." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Ativo" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Instalado" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Saiba mais" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup / Recuperação" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Recuperar Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Dados recuperados com sucesso!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importar Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Selecionar Arquivo" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importar Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Nenhum Campo Favorito Encontrado" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Exportar Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Exportar Campos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Por favor selecione campos favoritos para exportar." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoritos importados com sucesso." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Por favor selecione um campo favorito válido." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importar um formulário" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importar Formulário" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Exportar um formulário" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Exportar Formulário" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Por favor selecione um formulário." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Form importado com sucesso." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Por favor selecione um arquivo exportado válido." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importar / Exportar Submissões" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Configurações de Datas" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Geral" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Configurações Gerais" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versão" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Formato das Datas" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Tenta seguir as especificações da %sfunção date() do PHP%s, mas nem todos os " "formatos são suportados." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Símbolo da Moeda" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Configurações do reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Chave de site do reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Obtenha uma chave de site para seu domínio registrando-se %saqui%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Chave secreta do reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Idioma do reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Idioma usado pelo reCAPTCHA. Para obter o código do seu idioma, clique %saqui%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Se esta caixa for marcada, TODOS os dados Ninja Forms serão removidos do " "banco de dados após exclusão. %sTodos os formulários e submissões não poderão " "ser recuperados.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Desabilitar avisos do administrador" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Nunca ver um aviso do administrador do Ninja Forms no painel. Desmarque para " "vê-los novamente." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Esta configuração removerá COMPLETAMENTE tudo relacionado ao Ninja Forms ao " "excluir o plugin. Isso inclui ENVIOS e FORMULÁRIOS. Isso não pode ser desfeito." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Continuar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Configurações Salvas" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etiquetas" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Etiqueta de Mensagem" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Etiqueta de Campos Obrigatórios" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Símbolo de campo obrigatório" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Mensagem de erro se todos os campos obrigatórios não forem completados" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Erro de Campo Obrigatório" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Mensagem de Erro Anti-Spam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Mensagem de Erro Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Mensagem de Erro do Timer" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Mensagem de Erro de JavaScript desabilitado" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Por favor entre com um email válido" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Etiqueta de Processando Submissão" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Esta mensagem é exibida dentro do botão de submissão sempre que um usuário " "clicar \"submeter\" para que saibam que está processando." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Etiqueta de Incompatibilidade de Senha" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Esta mensagem é exibida para um usuário quando as senhas digitadas não correspondem." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licenças" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Salvar & Ativar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Desativar todas as licenças" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Para ativar as licenças das extensões do Ninja Forms, primeiro você precisa " "%sinstalar e ativar%s a extensão desejada. Em seguida, as configurações da " "licença aparecerão." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Redefinir conversão de formulários" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Redefinir conversão de formulário" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Se seus formulários estiverem \"ausentes\" após atualizar para o 2.9, este " "botão tentará reconverter os formulários antigos para mostrá-los no 2.9. " "Todos os formulários atuais permanecerão na tabela \"Todos os formulários\"." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Todos os formulários atuais permanecerão na tabela \"Todos os formulários\". " "Em alguns casos, alguns formulários serão duplicados durante esse processo." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "E-mail do Administrador" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Email do Usuário" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms precisa atualizar as suas notificações de formulário, clique " "%saqui%s para iniciar a atualização." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms precisa atualizar as suas configurações de email, clique %saqui%s " "para iniciar a atualização." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms precisa atualizar a tabela de submissões, clique %saqui%s para " "iniciar a atualização." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Obrigada por atualizar para a versão 2.7 de Ninja Forms. Por favor, atualize " "as extensões de Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Sua versão da extensão File Upload de Ninja Forms não é compatível com a " "versão 2.7 de Ninja Forms. É preciso que seja ao menos a versão 1.3.5. Por " "favor, atualize esta extensão em" #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Sua versão da extensão Save Progress de Ninja Forms não é compatível com a " "versão 2.7 de Ninja Forms. É preciso que seja ao menos a versão 1.1.3. Por " "favor, atualize esta extensão em" #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Atualizando banco de dados de formulários" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms precisa atualizar as suas configurações de formulário, clique " "%saqui%s para iniciar a atualização." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Processamento do upgrade do Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sEntre em contato com o suporte%s sobre o erro acima." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "O Ninja Forms concluiu todos os upgrades disponíveis!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Acessar formulários" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Upgrade do Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Atualizar" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Upgrade concluído" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "O Ninja Forms precisa processar %s upgrade(s). Isso pode levar alguns minutos " "para terminar. %sIniciar upgrade%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Etapa %d de aproximadamente %d processando" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Status do Sistema Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Indicador de força" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Muito fraco" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Fraco" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Médio" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Forte" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Não correspondem" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Selecione Um" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Se você for um humano e está vendo este campo, por favor, deixe-o em branco." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Campos marcados com um * são obrigatórios." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Este campo é obrigatório." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Por favor verifique os campos obrigatórios" #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Cálculo" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Número de casas decimais." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Textbox" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Mostrar cálculo como" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etiqueta" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Desabilitar Entrada?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Use os seguintes shortcodes para inserir o final do cálculo: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Você pode digitar equações de cálculo aqui usando field_x onde x é o ID do " "campo que você quer usar. Por exemplo, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Equações complexas podem ser criadas adicionando parênteses: %s( field_45 * " "field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Por favor use estes operadores: + - * /. Esta é uma funcionalidade avançada. " "Cuidado com coisas como divisão por zero (0)." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Valors dos Cálculos de Total Automáticos" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Especificar Operações e Campos (Avançado)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Usar uma equação (Avançado)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Método de Cálculo" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Operações de Campo" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Operação de Adição" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Equação Avançada" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Nome do Cálculo" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Este é o nome programático do seu campo. Exemplos são: meu_calculo, " "preco_total, total-usuario, etc." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Valor Padrão" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Classe CSS Customizada" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr " - Selecione um campo" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Checkbox" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Desmarcado" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Marcado" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Exibir Isto" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Esconder Isto" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Alterar Valor" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afeganistão" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albânia" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Argélia" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Samoa Americana" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguila" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antárctida" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antígua e Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Arménia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Austrália" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Áustria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijão" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrein" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "República de Belarus" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Bélgica" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermudas" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Butão" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolívia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bósnia-Hersegóvina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botsuana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Ilha Bouvet" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Território Britânico do Oceano Índico" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgária" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Camboja" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Camarões" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canadá" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cabo Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Ilhas Caimão" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "República Centro-Africana" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chade" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Ilha do Natal" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Ilhas dos Cocos" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colômbia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comores" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "República Democrática do Congo" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Ilhas Cook" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Costa do Marfim" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croácia" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Chipre" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "República Tcheca" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Dinamarca" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibuti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "República Dominicana" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor Leste" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Equador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egito" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Guiné Equatorial" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritréia" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estônia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiópia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Ilhas Falkland (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Ilhas Feroe" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlândia" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "França" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "França Metropolitana" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Guiana Francesa" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polinésia Francesa" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Terras Austrais e Antárticas Francesas" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabão" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gâmbia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Geórgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Alemanha" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Gana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grécia" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Gronelândia" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Granada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadalupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guiné" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guiné-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guiana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Ilha Heard e Ilhas McDonald" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Cidade do Vaticano" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungria" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islândia" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Índia" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonésia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Irã" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraque" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlanda" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Itália" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japão" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordânia" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Cazaquistão" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Quénia" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Coréia do Norte" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Coreia do Sul" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Quirguistão" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Letónia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Líbano" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesoto" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Libéria" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Líbia" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lituânia" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemburgo" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "República da Macedônia" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagáscar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malásia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldivas" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Ilhas Marshall" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinica" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritânia" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Maurícia" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "México" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Estados Federados da Micronésia" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldávia" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Mónaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongólia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marrocos" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Moçambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namíbia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Países Baixos" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antilhas Neerlandesas" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nova Caledónia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nova Zelândia" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicarágua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Níger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigéria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Ilha Norfolk" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Ilhas Marianas do Norte" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Noruega" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Omã" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Paquistão" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panamá" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua - Nova Guiné" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguai" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filipinas" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Ilhas Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polônia" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Porto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Catar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunião" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romênia" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Rússia" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "São Cristóvão e Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Santa Lúcia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "São Vicente e Granadinas" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "São Tomé e Príncipe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Arábia Saudita" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Sérvia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Serra Leoa" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapura" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Eslováquia" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Eslovênia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Ilhas Salomão" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somália" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "África do Sul" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Ilhas Geórgia do Sul e Sandwich do Sul" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Espanha" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Santa Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint-Pierre e Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudão" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard e Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Suazilândia" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Suécia" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Suíça" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Síria" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "República da China" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajiquistão" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzânia" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Tailândia" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinodad e Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunísia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turquia" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turcomenistão" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks e Caicos" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ucrânia" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Emirados Árabes Unidos" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Reino Unido" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Estados Unidos" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Ilhas Menores Distantes dos Estados Unidos" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguai" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbequistão" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnã" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Ilhas Virgens Britânicas" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Ilhas Virgens Americanas" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis e Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Saara Ocidental" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Iémen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Reino da Iugoslávia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zâmbia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbábue" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "País" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "País Padrão" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Usar uma primeira opção customizada" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Customizar primeira opção" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sudão do Sul" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Cartão de Crédito" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etiqueta Número do Cartão" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Número do Cartão" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Descrição Número do Cartão" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "Os (normalmente) 16 dígitos na parte frontal do seu cartão de crédito" #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Etiqueta Cartão CVC" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Descrição Cartão CVC" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Os 3 (últimos) dígitos ou 4 dígitos (iniciais) em seu cartão." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Etiqueta Nome do Cartão" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Nome no Cartão" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Descrição do Nome do Cartão" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "O nome exibido na parte frontal do seu cartão de crédito." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Etiqueta de Mês de Expiração do Cartão" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Mês de Expiração (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Descrição do Mês de Expiração do Cartão" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "O mês que seu cartão de crédito expira, normalmente na parte frontal do cartão." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etiqueta de Ano de Expiração do Cartão" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Ano de Expiração (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Descrição de Ano de Expiração do Cartão" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "O ano que seu cartão de crédito expira, normalmente na parte frontal do cartão." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Texto" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Elemento Textual" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Campo Oculto" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID do Usuário (se logado)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Primeiro Nome do Usuário (se logado)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Último Nome do Usuário (se logado)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Apelido do Usuário (se logado)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Email do Usuário (se logado)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "ID Post / Página (se disponível)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Título do Post/Página (se disponível)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL Post / Página (se disponível)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Data Atual" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variável de string de consulta" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Esta palavra-chave é reservada pelo WordPress. Tente outra." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Este é um campo de email?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Se este box for checado, Ninja Forms irá validar este campo como um email." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "mandar uma cópia do formulário para este endereço?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Se este box for checado, Ninja Forms mandará uma cópia do formulário para " "este endereço." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Lista" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Este é o estado do usuário" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valor Selecionado" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Adicionar Valor" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Remover Valor" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Checkboxes" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multi-Select" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Tipo de Lista" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Box de Múltiplas Seleções" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importar Itens da Lista" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Exibir valores de item da lista" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importar" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Para usar esta funcionalidade, cole seu CSV na textarea acima." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "O formato deverá parecer com o seguinte:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Rótulo,Valor,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Se você quiser enviar um valor ou cálculo nulo, você deve usar '' para eles." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Selecionado" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Número" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Valor Mínimo" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Valor Máximo" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Passo (valor a ser incrementado)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizador" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Senha" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Use este como o campo de senha do registro" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Se este box for marcado, tanto os boxes de senha como o de reentrar senha " "serão mostrados. " #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Etiqueta do Re-entre Senha" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Redigite a Senha" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Mostrar Indicador de Força da Senha" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Dica: A senha deverá ter no mínimo sete caracteres. Para torná-la mais forte, " "mescle letras maiúsculas com minúsculas, números e símbolos como !, ?, $, %, " "etc. )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Senhas não correspondem" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Classificação" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Número de Estrelas" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Confirme que você não é um bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Preencha o campo do captcha" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Verifique se você inseriu suas chaves de site e secreta corretamente" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Os captchas não correspondem. Insira o valor correto no campo do captcha" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Pergunta do Spam" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Resposta do Spam" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Submeter" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Imposto" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Percentual de Imposto" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Deve entrar como porcentagem, ex: 8.25%, 4%, etc." #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Textarea" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Exibir Editor de Texto Rico (Rich Text Editor)" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Exibir Botão de Upload de Media" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Desabilitar Editor de Texto Rico (Rich Text Editor) em Mobile" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Validar como um endereço de e-mail? (Campo deve ser obrigatório)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Desabilitar entrada" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datepicker" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefone - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Moeda" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Definição de Máscara Customizada" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Ajuda" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Temporizado" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Texto do Botão de Envio após o timer expirar" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Por favor, espere %n segundos" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n será usado para mostrar o número de segundos" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Número de segundos para contagem regressiva" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Quanto tempo um usuário deve esperar até submeter o formulário" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Se você for um humano, por favor, vá devagar." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Você precisa do JavaScript para submeter este formulário. Por favor, " "habilite-o e tente novamente." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Mapeamento de campos de lista" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Interest Groups" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Single" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Múltiplo" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listas" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Atualizar" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Metabox de envio" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Meta de usuário (se estiver acessando sua conta)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Coletar pagamento" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Nenhum formulário encontrado." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Data de criação" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "título" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "atualizado" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Sua tentativa falhou" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Item Principal:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Todos" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Adicionar Novo Slide" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Novo Slide" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Editar Slide" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Atualizar Slide" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Ver Item" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Pesquisar Slide" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Nada na lixeira" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Respostas do formulário" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Envio de informações" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Adicionar novo formulário" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Erro de importação do modelo de formulário" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Campos" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "O arquivo carregado não está em um formato válido." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Upload de formulário inválido." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importar formulários" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Exportar Formulários" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Equiparação (Avançado)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operações e campos (Avançado)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Campos de total automáticos" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "O arquivo carregado excede a diretiva upload_max_filesize em php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "O arquivo carregado excede a diretiva MAX_FILE_SIZE especificada no " "formulário HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "O arquivo carregado foi apenas parcialmente carregado." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Nenhum arquivo carregado." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Está faltando uma pasta temporária." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Falha ao gravar arquivo no disco." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "O carregamento do arquivo foi interrompido pela extensão." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Erro desconhecido no carregamento." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Erro de upload do arquivo" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Licenças de add-ons" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrações e dados simulados concluídos. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Exibir formulários" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Salvar configurações" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Endereço IP do servidor" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Nome do host" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Acrescentar um Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Formulário não encontrado" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Campo não encontrado" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Ocorreu um erro inesperado." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "A prévia não existe." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Gateways de Pagamento" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Total do pagamento" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Tag de gancho" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Endereço de email ou procurar um campo" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Texto de assunto ou procurar um campo" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Anexar CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL - Localizador-Padrão de Recursos, basicamente o endereço de uma página web (Uniform Resource Locator)" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Rótulo aqui" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Texto de ajuda aqui" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Insira o rótulo do campo do formulário. É assim que o usuário identificará " "campos individuais." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Padrão do formulário" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Ocultar" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Selecione a posição de seu rótulo relativa ao próprio elemento do campo." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Campo Obrigatório" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Verifique se este campo está preenchido antes de permitir que o formulário " "seja enviado." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Opções de números" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Máx" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Passo" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Opciones" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Um" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "um" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Dois" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "dois" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Três" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "três" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Valor do cálculo" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Restringe o tipo de entrada que o usuário pode inserir neste campo." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "nenhuma" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Telefone dos EUA" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "personalizado" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Máscara personalizada" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Representa um caractere alfa " "(A-Z,a-z) - Permite somente letras.
    • \n
    • 9 " "- Representa um caractere numérico (0-9) - Permite somente " "números.
    • \n
    • * - Representa um caractere " "alfanumérico (A-Z,a-z,0-9) - Permite tanto números " "quanto\n letras.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Limitar entrada a este número" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Caractere(s)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Palavra(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Texto a aparecer depois da contagem" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Caractere(s) restante(s)" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Insira o texto que você gostaria que fosse exibido no campo antes de um " "usuário inserir dados." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Nomes de classe personalizados" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Container" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Adiciona uma classe extra ao wrapper do campo." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Elemento" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Adiciona uma classe extra ao elemento do campo." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/AAAA" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-AAAA" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/AAAA" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-AAAA" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "AAAA/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Sexta-feira, 18 de novembro de 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Data atual por padrão" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "A quantidade de segundos para envios temporizados." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Chave do Campo" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Cria uma chave única para identificar e apontar seu campo para " "desenvolvimento personalizado." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Rótulo usado ao visualizar e exportar envios." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Mostrado para usuários como hover." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Descrição" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Classificar como numérico" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Esta coluna na tabela de envios será classificada por ordem numérica." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Quantidade de segundos para a contagem regressiva" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Use isto como um campo de registro de senha. Se esta caixa estiver marcada, " "as\n caixas de texto de senha e repetição da senha " "serão de saída" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Confirmar" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Permite entrada em texto com formatação." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Rótulo de processamento" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Valor de cálculo marcada" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Este número será usado nos cálculos se a caixa estiver marcada." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Valor de cálculo desmarcada" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Este número será usado nos cálculos se a caixa estiver desmarcada." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Mostrar esta variável de cálculo" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Selecione uma variável" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Preço" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Usar quantidade" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Permite que os usuários escolham mais de um deste produto." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Tipo do Produto" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Produto único (padrão)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multiprodutos - Lista suspensa" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multiprodutos - Escolher quantos" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multiprodutos - Escolher um" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Entrada do usuário" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Preço" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Opções de custo" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Custo único" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Lista suspensa de custo" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Tipo de custo" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produto" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Selecione um produto" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Resposta" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Uma resposta que diferencia letras maiúsculas de minúsculas para ajudar a evitar envios de spam em seu formulário." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomia" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Adicionar novos termos" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Este é o estado de um usuário." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Usado para marcar um campo para processamento." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Campos salvos" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Campos comuns" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Campos de informações de usuários" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Campos de preço" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Campos de layout" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Campos de diversos" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Seu formulário foi enviado com sucesso." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Envio de Ninja Forms" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Salvar envio" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Nome da variável" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Equação" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Posição padrão do rótulo" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Invólucro" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Chave do Formulário" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Nome programático que pode ser usado como referência a este formulário." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Adicionar botão de envio" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Notamos que você não tem um botão de envio em seu formulário. Podemos " "adicionar um para você automaticamente." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Fazer o login" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Aplica-se à prévia do formulário." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Limite de envio" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "NÃO se aplica à prévia do formulário." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Configurações de Exibição" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Cálculos" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Preço:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Quantidade:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Adicionar" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Abrir em nova janela" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Se você for um humano, deixe este campo em branco." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Disponível" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Digite um endereço de email válido." #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Estes campos precisam ser correspondentes." #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Erro no número mínimo" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Erro no número máximo" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Incremente por " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Insira o Link" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Inserir mídia" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Corrija os erros antes de enviar este formulário." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Erro do Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Upload de arquivo em andamento." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "UPLOAD DE ARQUIVO" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Todos os Campos" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Subsequência" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "ID da publicação" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Titulo do Post" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL do post" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "User ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Primeiro nome" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Último Nome" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Mostrar nome" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Estilos recomendados" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Light" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Escuro" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Usar as convenções de estilo padrão do Ninja Forms." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Reverter" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Reverter para a v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Reverte para a versão 2.9.x mais recente." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/A" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Configurações do reCAPTCHA" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Tema do reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Editor de texto com formatação (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Avançadas" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administração" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Formulários em branco" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Entre em contato:" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Simular ação de mensagem de sucesso" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Agradeço a você, {field:name}, por preencher meu formulário!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Simular ação de email" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Esta é uma ação de email." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Olá, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Simular ação de salvamento" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Este é um teste" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "Fulano de Tal" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "usuario@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Este é outro teste." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Obtenha Ajuda" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Em que podemos ajudar você?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Concorda?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Melhor forma de contato?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telefone" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Correio tradicional" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Enviar" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Selecionar lista" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Opção 1" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Opção 2" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Opção 3" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Lista radial" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Pia do banheiro" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Lista de caixas de seleção" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Estes são todos os campos da seção Informações do usuário." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Endereço" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Cidade" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Cep" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Estes são todos os campos da seção Preços." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produto (quantidade incluída)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produto (quantidade separada)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Quantidade" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Total" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Nome completo no cartão de crédito" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Número do cartão de crédito" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Código de segurança do cartão de crédito" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Validade do cartão de crédito" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Código postal do cartão de crédito" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Estes são vários campos especiais." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Pergunta antisspam (resposta = resposta)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "resposta" #: includes/Database/MockData.php:805 msgid "processing" msgstr "processando" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Formulário longo - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Campos" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Campo no" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Formulário de inscrição por email" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Endereço de e-mail" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Insira seu endereço de email" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Assinar" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Formulário de produto (com o campo Quantidade)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Comprar" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Você comprou " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "produtos por " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Formulário de produto (quantidade incluída)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " produtos por " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Formulário de produto (vários produtos)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produto A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Quantidade de Produto A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produto B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Quantidade de Produto B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "de Produto A e " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "de Produto B por US$" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formulário com cálculos" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Meu primeiro cálculo" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Meu segundo cálculo" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Os cálculos são retornados com a resposta AJAX (resposta -> dados -> cálculos)" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Copiar" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Salvar formulário" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Código postal do cartão de crédito" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Você precisa estar conectado para ver a prévia de um formulário." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Nenhum campo encontrado." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Aviso: Shortcode do Ninja Forms usado sem especificar um formulário." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Shortcode do Ninja Forms usado sem especificar um formulário." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Complemento" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Botão" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Caixa de seleção única" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "marcada" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "desmarcada" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Código de segurança do cartão de crédito" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-A" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-A" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "A-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d/m/Y" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d A" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divisor" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Selecionar" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Estado" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "O texto da nota pode ser editado nas configurações avançadas do campo da nota abaixo." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Nota" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Confirmação da senha" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "senha" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Preencha o recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Frete avançado" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Perguntas" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Posição da pergunta" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Resposta incorreta" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Quantidade de estrelas" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Lista de termos" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Nenhum termo disponível para esta taxonomia. %sAdicionar um termo%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Nenhuma taxonomia selecionada." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Termos disponíveis" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Texto de parágrafo" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Texto de linha única" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Código postal" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "em artigos" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Strings de consulta" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "String de consulta" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Sistema" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Usuário" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " requer uma atualização. Você tem uma versão " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " instalada. A versão atual é " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Editando campo" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Nome da legenda" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Campo acima" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Campo abaixo" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "À esquerda do campo" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "À direita do campo" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Ocultar legenda" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Nome da classe" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Campos básicos" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Várias opções" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Adicionar novo campo" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Adicionar nova ação" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Expandir menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Publicar" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLICAR" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Carregando" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Exibir alterações" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Adicionar campos do formulário" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Comece adicionando seu primeiro campo do formulário." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Adicionar novo campo" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Basta clicar aqui e selecionar os campos desejados." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "É fácil! Ou..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Comece por um modelo" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Entre em contato" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Permita que seus usuários entrem em contato com você por meio deste " "formulário de contato simples. É possível adicionar e remover campos, se necessário." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Solicitação de orçamento" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Gerencie solicitações de orçamento do seu site facilmente com este modelo. É " "possível adicionar e remover campos, se necessário." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Registro de eventos" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Permita que o usuário se inscreva para seu próximo evento simplesmente " "preenchendo um formulário. É possível adicionar e remover campos, se necessário." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Formulário de inscrição de boletim informativo" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Adicione inscritos e aumente sua lista de emails com este formulário de " "inscrição de boletim informativo. É possível adicionar e remover campos, se necessário." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Adicione ações de formulário" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Comece adicionando seu primeiro campo do formulário. Basta clicar no sinal de " "mais e selecionar as ações desejadas. É fácil!" #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicar (^ + C + clique)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Excluir (^ + D + click)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Ações" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Alternar carteira" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Tela cheia" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Tela parcial" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Desfazer" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Feito" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Desfazer tudo" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Desfazer tudo" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Quase lá..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Ainda não" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Abrir em nova janela" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Desativar" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Consertar." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Selecione um formulário" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Data" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Antes de pedir ajuda da nossa equipe de suporte, consulte:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Documentação do Ninja Forms 3.0" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "O que tentar antes de entrar em contato com o suporte" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Nosso escopo de suporte" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importar campos" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Atualizado em: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Enviado em: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Enviado por: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Envio de dados" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Visualizar" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Mais" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Editando campo" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Campos do formulário" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Alterações anteriores" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Formulário de contato" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Opa! O addon ainda não é compatível com o Ninja Forms TRÊS. %sSaiba mais%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s foi desativado." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Ajude-nos a melhorar o Ninja Forms." #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Se você se inscrever, alguns dados sobre a instalação do Ninja Forms serão " "enviados para NinjaForms.com (NÃO inclui seus envios)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Se você pular isto, não tem problema! O Ninja Forms continuará funcionando normalmente." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sPermitir%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sNão permitir%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Você não tem permissão." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Permissão negada" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Desenvolvedor do Ninja Forms" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEPURAR: Alternar para 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEPURAR: Alternar para 3.0.x" lang/ninja-forms-zh_CN.po000064400000617414152331132460011264 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "注意:此内容要求 JavaScript。" #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "开玩笑,呵?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "标有 %s*%s 的字段为必填" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "请确保完成所有必填字段。" #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "这是一个必填字段" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "请正确回答反垃圾邮件的问题。" #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "请不要填写垃圾邮件字段。" #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "请等待提交表格。" #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "您无法在启用了 Javascript 的情况下提交表格。" #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "请输入有效的电子邮件地址。" #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "正在处理" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "提供的密码不符" #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "添加表单" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "选择一个表单或类型进行搜索" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "取消" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "插入" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "无效的表单 ID" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "提升转化率" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "您知道吗?将较大的表单分割为较小的、更容易消化的多个部分有助于提升表单转化率。

    Ninja Forms 的“多部分表单”扩展让这个操作变得轻松快捷。

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "详细了解“多部分表单”" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "以后再说" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "忽略" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "如果能进行保存并稍后回来完成表单提交,则用户更可能完成较长的表单。

    Ninja Forms 的“保存进度”扩展让这一操作变得轻松快捷。

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "详细了解“保存进度”" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "电子邮件" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "发件人姓名" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "名字或字段" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "电子邮件将显示为来自此名字。" #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "发件人地址" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "一个电子邮件地址或字段" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "电子邮件将显示为来自此电子邮件地址。" #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "发送给" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "电子邮件地址或搜索字段" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "这封电子邮件应发给谁?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "主题" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "主题文本或搜索字段" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "这将是此邮件的主题。" #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "电子邮件消息" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "附件" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "提交 CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "高级设置" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "格式" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "编辑 HTML 源码" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "纯文本" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "回复" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "抄送" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "密件抄送" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "重定向" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "成功消息" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "前表单" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "后表单" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "位置" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "邮件" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "复制" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "停用" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "激活" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "编辑" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "删除" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "复制" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "名称" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "类型" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "更新日期" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- 查看所有类型" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "获取更多类型" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "电子邮件和操作" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "添加新的搜索项" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "新操作" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "编辑操作" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "返回表单" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "操作名称" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "获取更多操作" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "操作已更新" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "选择一个字段或类型进行搜索" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "插入字段" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "插入所有字段" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "请选择一个表单以查看提交" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "未找到提交" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "提交" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "提交" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "添加新提交" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "编辑提交" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "新提交" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "查看提交" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "搜索提交" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "回收站中未找到提交" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "日期" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "编辑此项目" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "导出此项" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "导出" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "将此项移至回收站" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "回收站" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "从回收站还原此项" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "还原" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "永久删除此项" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "永久删除" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "未发布" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s 前" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "已提交" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "- 选择表单" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "开始日期" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "结束日期" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s 已更新。" #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "自定义字段已更新。" #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "自定义字段已删除" #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s 已从 %2$s 复原为修订版。" #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s 已发布。" #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s 已保存。" #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s 已提交。预览 %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "已为 %2$s 安排了 %1$s。预览 %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s 草稿已更新。预览 %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "下载所有提交" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "返回表单" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "用户提交的值" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "提交状态" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "字段" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "值" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "状态" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "表单" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "提交于:" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "修改于:" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "提交人:" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "更新" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "数据已提交" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "Ninja Forms 无法网络激活。请访问各个网站的仪表板以激活插件。" #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "您将在您的购买邮件中找到它。" #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "密钥" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "无法激活许可证。请验证您的许可证密钥。" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "停用许可证" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "用户提交的值:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "感谢您填写此表单。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "有一个新版的 %1$s 可用。查看 %3$s 版详情。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "有一个新版的 %1$s 可用。查看 %3$s " "版详情立即更新。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "您没有安装插件更新的许可。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "错误" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "标准字段" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "布局元素" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "帖子创建" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "请在 %sWordPress.org%s 为 %sNinja Forms%s %s 评分,帮助我们继续免费提供此插件。WP Ninja 团队向您表示感谢!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms 小组件" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "显示标题" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "无" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "表单" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "全部表单" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms 升级" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "升级" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "导入/导出" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "导入 / 导出" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form 设置" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "设置" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "系统状态" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "加载项" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "预览" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "保存" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "剩余字符" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "不显示这些项" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "保存选项" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "预览表单" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "升级为 Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "您符合升级为 Ninja Forms THREE 发布候选的资格!%s立即升级%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE 即将到来!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "Ninja Forms 将获得重大更新。%s详细了解新功能、向后兼容性,以及更多常见问题解答。%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "最近可好?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "感谢您使用 Ninja Forms!我们希望您找到了自己所需的一切,但如果您还有任何问题:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "查看我们的文档" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "获取帮助" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "编辑菜单项" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "全选" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "附加一个 Ninja 表单" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "您想如何命名此收藏项?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "您必须为此收藏项提供一个名称。" #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "真的要停用所有许可证吗?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "为 v2.9+ 重置表单转化流程" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "卸载时移除所有 Ninja Forms 数据?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "编辑表单" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "已保存" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "正在保存..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "移除此字段?即便您不保存,此字段也会被移除。" #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "查看提交" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms 正在处理" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - 正在处理" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "正在加载……" #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "未指定操作..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "流程已经启动,请耐心等候。这可能需要花费几分钟。流程完成后,您将被自动重新定向。" #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "欢迎使用 Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "感谢您进行升级!Ninja Forms %s 让表单建造变得前所未有的容易!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "欢迎使用 Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms 更新日志" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Ninja Forms 使用入门" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "建立 Ninja Forms 的人们" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "新增功能" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "开始" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "积分" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "%s 版" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "一种更加简单、更加强大的表单建造体验。" #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "新的建造器选项卡" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "在创建和编辑表单时,直接前往最重要的部分。" #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "字段设置组织得更好了" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "最常见的设置将立即显示出来,而其他不重要的设置则隐藏在可扩展的部分中。" #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "更加清楚了" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "除“建造您的表单”选项卡外,我们还移除了“通知”,更换为“电子邮件和操作”。这更清楚地说明了此选项卡的作用。" #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "移除所有 Ninja Forms 数据" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "在您删除插件时,我们添加了移除所有 Ninja Forms 数据(提交、表单、字段、选项)的选项。我们称其为原子弹选项。" #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "更好的许可证管理" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "逐个或按组从设置选项卡中停用 Ninja Forms 扩展许可证。" #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "更多内容即将到来" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "此版本的界面更新为将来的重大改进奠定了基础。3.0 版将在此基础上继续改进,让 Ninja Forms 成为一款更稳定、更强大、更易用的表单建造软件。" #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "文档" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "查看下面详细的 Ninja Forms 文档。" #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms 文档" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "获取客户支持" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "返回 Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "查看完整更新日志" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "完整更新日志" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "转到 Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "使用下面的提示开始学习使用 Ninja Forms。您很快就能学会!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "关于表单的一切" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "“表单”菜单是您访问所有 Ninja Forms 内容的接入点。我们已经创建了您的第一个%s联系表%s,您可以将其作为范例。您也可以单击%s添加新的%s创建您自己的表单。" #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "建造您的表单" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "在这里,您将添加字段并将其拖动排列为您想要的顺序,从而建造自己的表单。每个字段都将有一系列选项,如标签、标签位置和占位符。" #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "电子邮件和操作" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "如果您想要您的表单在有用户点击提交时通过电子邮件对您进行通知,您可以在此选项卡中进行设置。您可以创建无限量的电子邮件,包括发送给填写了表单的用户的电子邮件。" #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "此选项卡中有标题和提交方式等通用表单设置,并有显示设置,如完成表单后进行隐藏。" #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "显示您的表单" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "附加到网页" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "在“表单设置”中的“基础表单行为”下,您可以轻松选择一个页面,让表单自动附加到该页面内容的末尾。每个内容编辑屏幕的侧边栏中都有一个类似的选项。" #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "短代码" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "将 %s 放置在任何接受短代码的区域,以便在您想要的地方显示表单。甚至在页面或帖子内容中间也可以。" #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "Ninja Forms 提供一个小组件,您可以将其放置在网站的任何小组件区域,并选择您想在该空间中显示哪个表单。" #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "模板功能" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "Ninja Forms 还有一个简单的模板功能,可以直接放置在 PHP 模板文件中。 %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "需要帮助?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "不断扩充的文档" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "从%s故障排除%s到我们的%s开发者 API%s,文档中什么都有。我们还在不断添加新的文档。" #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "业内最佳的客户支持" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "我们尽己所能,为每位 Ninja Forms 用户提供尽可能好的客户支持。如果您遇到问题或有疑问,%s请联系我们%s。" #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "感谢您升级为最新版本!Ninja Forms %s 能让管理提交成为让您享受的体验!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "Ninja Forms 由来自世界各地的开发者组成的团队打造,他们的目标是提供世界第一的 WordPress 社区表单创建插件。" #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "未找到有效的更新日志。" #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "查看 %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "禁用浏览器自动完成" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%s选中%s的计算值" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "如%s选中%s,将使用此值。" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%s未选中%s的计算值" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "如%s未选中%s,将使用此值。" #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "包括在自动计总之内?(如启用)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "自定义 CSS 类别" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "在一切之前" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "在标签之前" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "在标签之后" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "在一切之后" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "如果启用了“描述文本”,输入字段旁会放置一个问号 %s。将鼠标悬停在问号上方将显示描述文本。" #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "添加描述" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "描述位置" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "描述内容" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "如果启用了“帮助文本”,输入字段旁会放置一个问号 %s。将鼠标悬停在问号上方将显示帮助文本。" #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "显示帮助文本" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "帮助文本" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "如果您将文本框留空,则将不会使用限制" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "限制对此号码的输入" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "/" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "字符" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "词语" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "在字符/词语计数器后显示的文本" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "元素左边" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "元素上方" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "元素下方" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "元素右边" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "元素内部" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "标签位置" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "字段 ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "限制设置" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "计算设置" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "删除" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "用分类进行填充" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- 无" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "占位" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "必填" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "保存字段设置" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "按数字排序" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "如果选中此框,提交表中的此列将按照数字排序。" #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "管理标签" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "这是查看/编辑/导出提交时使用的标签。" #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "账单:" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "配送" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "自定义" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "用户信息字段组" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "自定义字段组" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "请在请求客户支持时包含此信息:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "获取系统报告" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "环境" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "首页 URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "站点 URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms 版本" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "软件版本" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "已启用 WP Multisite" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "是" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "否" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web 服务器信息" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP 版本" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "软件版本" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP 语言环境" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP内存限制" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP 调试模式" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP 语言" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "默认" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP 最大上传尺寸" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "服务器的 post_max_size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "最大输入嵌套级别" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "已达上传限制" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP最大输入字符数" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "安装了SUHOSIN " #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "默认时区" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "默认时区是 %s - 他将是 UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "默认时区是 %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "您的服务器启用了 fsockopen 和 cRUL。" #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "您的服务器启用了 fsockopen,禁用了 cURL。" #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "您的服务器启用了 cURL,禁用了 fsockopen。" #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "您的服务器不支持 fsockopen 或 cURL - PayPal IPN和其它连接别的服务器的脚本将不会工作.请联系您的服务器提供商." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP 客户端" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "您的服务器启用了 SOAP 客户端类别。" #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "您的服务器没有启用 %sSOAP 客户端%s类别 - 一些使用 SOAP 的网关插件可能无法正常工作。" #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP 远程帖子" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() 成功 - PayPal IPN 正常工作。" #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "wp_remote_post() 失败。PayPal IPN 无法在您的服务器使用。请联系您的主机提供商。出错:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() 失败。PayPal IPN 可能无法在您的服务器使用。" #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "插件" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "已安装的插件" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "访问插件主页" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "by" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "版本" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "给您的表单取个标题。以便将来查找表单。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "您尚未给您的表单添加提交按钮。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "输入掩码" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "您在“自定义掩码”文本框中输入的任何不在下面列表中的字符将在用户键入时自动输入,且不可移除。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "这些是 预定义的掩码字符" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "a - 代表字母字符 (A-Z,a-z) - 仅允许输入字母" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "9 - 代表数字字符 (0-9) - 进允许输入数字" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "* - 代表字母数字字符 (A-Z,a-z,0-9) - 这允许输入数字和字母" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "因此,如果您想要为美国社会安全号创建一个掩码,您将在文本框中输入 999-99-9999。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "这些 9 代表任何数字,且将自动添加“s”" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "这可以防止用户输入任何数字以外的字符" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "您还可以将这些结合用于特定应用" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "例如,如果您有一个格式为 A4B51.989.B.43C 的产品密钥,您可以用掩码表示为:a9a99.999.a.99a,这将强制所有的 a " "都为字母,所有的 9 都为数字" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "定义的字段" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "收藏字段" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "付款字段" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "模板字段" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "用户信息" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "所有" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "批量操作" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "应用" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "每页的表单数" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "确定" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "到第一页" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "到上一页" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "当前页" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "到下一页" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "到末页" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "表单标题" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "删除此表单" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "复制表单" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "删除的表单" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "删除的表单" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "表单预览" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "显示" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "显示表单标题" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "将表单添加到此页面" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "通过 AJAX 提交(无页面重载)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "清除成功完成的表单?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "如果选中此框,Ninja Forms 将在表单成功提交后清除表单值。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "隐藏成功完成的表单?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "如果选中此框,Ninja Forms 将在表单成功提交后隐藏表单。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "限制" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "要求用户登录以查看表单?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "未登录消息" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "如果用户勾选了上面的“登录”复选框但未登录时显示的消息。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "限制提交" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "选择此表单接受的提交数量。如无限制则留空。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "达到限制消息" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "请输入当此表单达到提交限制且不接受新的提交后您想要显示的消息。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "已保存的表单设置" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "基本设置" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms 基础帮助在此处。" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "延长 Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "文档即将到来。" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "激活" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "已安装" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "了解更多" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "备份 / 还原" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "备份 Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "还原 Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "数据成功还原!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "导入收藏字段" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "选择文件" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "导入收藏夹" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "未找到收藏字段" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "导出收藏字段" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "导出字段" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "请选择要导出的收藏字段。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "收藏夹已成功导出。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "请选择一个有效的收藏字段文件。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "导入一个表单" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "导入表单" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "导出一个表单" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "导出表单" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "请选择一个表单。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "表单已成功导出。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "请选择一个有效的已导出表单文件。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "导入 / 导出提交" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "日期设置" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "常规" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "常规设置" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "版本" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "日期格式" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "尝试遵循 %sPHP 日期()功能%s规格,但不是所有格式都支持。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "货币符号" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA 设置" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA 网站密钥" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "在%s这里%s注册,为您的域名获取网站密钥。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA 密钥" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA 语言" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "reCAPTCHA 使用的语言。单击%s此处%s为您的语言获取代码" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "如果勾选此框,删除时将从数据库中移除所有 Ninja Forms 的数据。%s所有的表单和提交数据将无法复原。%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "禁用管理通知" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "不再从 Ninja Forms 的仪表板上看到管理通知。取消选择则可再次看到通知。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "此设置将在删除插件时完全移除所有与 Ninja Forms 相关的东西。这包括提交和表单。此操作无法撤消。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "继续" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "已保存的设置" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "标签" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "消息标签" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "必填字段标签" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "必填字段符号" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "未完成所有必填字段时给出的出错消息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "必填字段出错" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "反垃圾信息出错消息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot 出错消息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "计时器出错消息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript 禁用出错消息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "请输入有效的电子邮件地址" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "正在处理提交标签" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "当用户单击“提交”时,此消息将显示在提交按钮内部,让用户知道提交正在处理。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "密码匹配标签" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "当密码字段中输入不匹配的值时,将向用户显示此消息。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "许可证" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "保存和激活" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "停用全部许可证" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "要激活 Ninja Forms 扩展的许可证,您必须首先%s安装并激活%s选择的扩展。然后将在下方出现许可证设置。" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "重置表单转化" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "重置表单转化" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "如果您的表单在升级 2.9 后“消失”,此按钮将尝试重新转换您的旧表单以便在 2.9 中显示。当前所有表单将留在“全部表单”表中。" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "当前所有表单将留在“全部表单”表中。在一些情况下,一些表单可能在此过程中被复制。" #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "管理员电子邮件" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "用户电子邮件" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "Ninja Forms 需要升级您的表单通知,单击%s此处%s开始升级。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "Ninja Forms 需要升级您的电子邮件设置,单击%s此处%s开始升级。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "Ninja Forms 需要升级您的提交表,单击%s此处%s开始升级。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "感谢您升级为 Ninja Forms 2.7 版。请更新所有 Ninja Forms 扩展 " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "您的 Ninja Forms “文件上传”扩展版本与 Ninja Forms 2.7 版不兼容。至少需要为 1.3.5 版。请更新此扩展: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "您的 Ninja Forms “保存进度”扩展版本与 Ninja Forms 2.7 版不兼容。至少需要为 1.1.3 版。请更新此扩展: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "更新表单数据库" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "Ninja Forms 需要升级您的表单设置,单击%s此处%s开始升级。" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms 升级正在处理" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "请%s联系客户支持%s解决上面看到的问题。" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms 已完成了所有可用的升级!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "转到表单" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms 升级" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "升级" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "升级完成" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "Ninja Forms 需要处理 %s 个升级。这需要花费几分钟来完成。%s开始升级%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "约 %d 步中的第 %d 步正在进行" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms 系统状态" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "强度指示器" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "非常弱" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "弱" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "中" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "强" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "不匹配" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- 选择一个" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "如果您是人类并看到了此字段,请将其留空。" #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "标有 * 的字段为必填。" #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "这是一个必填字段。" #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "请检查必填字段。" #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "计算" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "小数位数。" #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "文本框" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "输出计算为" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "标签" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "禁用输入?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "使用以下短代码插入最终计算:\n[ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "您可以使用 field_x 在此输入计算等式,x 为您想要使用的字段的 ID。例如:%sfield_53 + field_28 + field_65%s。" #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "复杂的等式可通过添加括号创建:%s( field_45 * field_2 ) / 2%s。" #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "请使用这些计算符号:+ - * /。这是一个高级功能。注意被“0”除等问题。" #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "自动总计计算值" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "指定操作和字段(高级)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "使用等式(高级)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "计算方法" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "字段操作" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "添加操作" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "高级等式" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "计算名称" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "这是您字段的编程名称。例如:my_calc、price_total、user-total。" #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "默认值" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "自定义 CSS 类别" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- 选择字段" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "复选框" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "未选中" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "已选中" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "显示这个" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "隐藏这个" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "更改值" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "阿富汗" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "阿尔巴尼亚" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "阿尔及利亚" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "美属萨摩亚" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "安道尔" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "安哥拉" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "安圭拉" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "南极洲" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "安提瓜和巴布达" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "阿根廷" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "亚美尼亚" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "阿鲁巴" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "澳大利亚" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "奥地利" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "阿塞拜疆" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "巴哈马" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "巴林" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "孟加拉国" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "巴巴多斯" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "白俄罗斯" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "比利时" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "伯利兹" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "贝宁" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "百慕大" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "不丹" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "玻利维亚" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "波斯尼亚和黑塞哥维那" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "博茨瓦纳" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "圣诞岛" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "巴西" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "英属印度洋领地" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "文莱达鲁萨兰国" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "保加利亚" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "布基纳法索" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "布隆迪" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "柬埔寨" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "喀麦隆" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "加拿大" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "佛得角" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "开曼群岛" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "中非共和国" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "乍得" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "智利" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "中国" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "圣诞岛" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "科科斯(基林)群岛" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "哥伦比亚" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "科摩罗" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "刚果" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "刚果民主共和国" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "库克群岛" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "哥斯达黎加" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "科特迪瓦" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "克罗地亚(当地名称:赫尔瓦)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "古巴" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "塞浦路斯" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "捷克共和国" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "丹麦" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "吉布提" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "多米尼克" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "多米尼加共和国" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "东帝汶" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "厄瓜多尔" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "埃及" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "萨尔瓦多" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "赤道几内亚" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "厄立特里亚" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "爱沙尼亚" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "埃塞俄比亚" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "福克兰群岛(马尔维纳斯)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "法罗群岛" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "斐济" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "芬兰" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "法国" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "法国本土" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "法属圭亚那" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "法属波利尼西亚" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "法国南部领土" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "加蓬" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "冈比亚" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "格鲁吉亚" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "德国" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "加纳" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "直布罗陀" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "希腊" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "格陵兰" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "格林纳达" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "瓜德罗普岛" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "关岛" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "危地马拉" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "几内亚" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "几内亚比绍" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "圭亚那" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "海地" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "赫德和麦克唐纳群岛" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "罗马教廷(梵蒂冈城国)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "洪都拉斯" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "香港特别行政区,中国" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "匈牙利" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "冰岛" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "印度" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "印尼" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "伊朗(伊斯兰共和国)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "伊拉克" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "爱尔兰" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "以色列" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "意大利" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "牙买加" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "日本" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "约旦" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "哈萨克斯坦" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "肯尼亚" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "基里巴斯" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "朝鲜" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "韩国" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "科威特" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "吉尔吉斯斯坦" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "老挝老挝人民民主共和国" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "拉脱维亚" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "黎巴嫩" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "莱索托" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "利比里亚" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "阿拉伯利比亚民众国" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "列支敦士登" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "立陶宛" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "卢森堡" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "中国澳门" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "前南斯拉夫马其顿共和国" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "马达加斯加" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "马拉维" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "马来西亚" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "马尔代夫" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "马里" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "马耳他" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "马绍尔群岛" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "马提尼克" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "毛里塔尼亚" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "毛里求斯" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "马约特岛" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "墨西哥" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "密克罗尼西亚联邦" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "摩尔多瓦共和国" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "摩纳哥" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "蒙古国" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "黑山" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "蒙特塞拉特" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "摩洛哥" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "莫桑比克" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "缅甸" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "纳米比亚" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "瑙鲁" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "尼泊尔" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "荷兰" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "荷属安的列斯群岛" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "新喀里多尼亚" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "新西兰" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "尼加拉瓜" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "尼日尔" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "尼日利亚" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "纽埃" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "诺福克岛" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "北马里亚纳群岛" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "挪威" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "阿曼" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "巴基斯坦" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "帕劳共和国" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "巴拿马" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "巴布亚新几内亚" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "巴拉圭" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "秘鲁" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "菲律宾" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "皮特凯恩" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "波兰" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "葡萄牙" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "波多黎各" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "卡塔尔" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "留尼旺" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "罗马尼亚" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "俄罗斯联邦" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "卢旺达" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "圣基茨和尼维斯" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "圣卢西亚" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "圣文森特和格林纳丁斯" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "萨摩亚群岛" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "圣马力诺" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "圣多美与普林希比共和国" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "沙特阿拉伯" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "塞内加尔" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "塞尔维亚" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "塞舌尔" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "塞拉利昂" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "新加坡" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "斯洛伐克(斯洛伐克共和国)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "斯洛文尼亚" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "所罗门群岛" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "索马里" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "南非" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "南乔治亚岛与南桑威奇群岛" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "西班牙" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "斯里兰卡" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "圣赫勒拿" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "圣皮埃尔和密克隆群岛" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "苏丹" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "苏里南" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "斯瓦尔巴特和扬马延岛" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "斯威士兰" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "瑞典" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "瑞士" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "阿拉伯叙利亚共和国" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "台湾" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "塔吉克斯坦" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "坦桑尼亚联合共和国" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "泰国" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "多哥" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "托克劳" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "汤加" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "特里尼达和多巴哥" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "突尼斯" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "土耳其" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "土库曼斯坦" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "特克斯和凯科斯群岛" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "图瓦卢" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "乌干达" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "乌克兰" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "阿拉伯联合酋长国" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "英国" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "美国" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "美国本土外小岛屿" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "乌拉圭" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "乌兹别克斯坦" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "瓦努阿图" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "委内瑞拉" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "越南" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "维尔京群岛(英国)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "维尔京群岛(美国)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "瓦利斯和富图纳群岛" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "西撒哈拉" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "也门" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "南斯拉夫" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "赞比亚" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "津巴布韦" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "国家" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "默认国家" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "使用自定义首选项" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "自定义首选项" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "南非" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "信用卡" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "卡号标签" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "卡号" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "卡号描述" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "信用卡正面的 16 位数字(通常情况下)。" #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "卡 CVC 标签" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "安全码" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "卡 CVC 描述" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "卡上的 3 位(反面)或 4 位(正面)数值。" #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "卡名标签" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "卡上的名字" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "卡名描述" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "您信用卡正面所印的名字。" #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "卡到期月份标签" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "到期月份 (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "卡到期月份描述" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "您信用卡到期的月份,通常在卡的正面。" #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "卡到期年份标签" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "到期年份 (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "卡到期年份描述" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "您信用卡到期的年份,通常在卡的正面。" #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "文本" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "文本元素" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "隐藏字段" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "用户 ID(如果登录)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "用户名字(如果登录)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "用户姓氏(如果登录)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "用户显示名(如果登录)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "用户电子邮件(如果登录)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "帖子 / 网页 ID(如果可用)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "帖子 / 网页名称(如果可用)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "帖子 / 网页 URL(如果可用)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "今天的日期" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "查询字符串变量" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "此关键词为 WordPress 保留。请尝试另一个。" #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "这是个电子邮件地址吗?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "如果选中此框,Ninja Forms 将验证此输入为电子邮件地址。" #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "将表单的副本发送到此地址?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "如果选中此框,Ninja Forms 将发送此表单的副本(以及任何附加的消息)到此地址。" #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "小时" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "列表" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "这是用户的状态" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "选中的值" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "添加值" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "移除值" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "计算" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "下拉" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "广播" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "复选框" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "复选" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "列表类型" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "复选框尺寸" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "导入列表项" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "显示列表项值" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "导入" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "要使用此功能,您可以将您的 CSV 粘贴到上面的文本区域中。" #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "格式看起来应该是这样的:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "标签,值,计算" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "如果您想要发送一个空白的值或计算,您应使用 ‘’。" #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "选中的" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "数字" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "最小值" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "最大值" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "阶跃(递增量)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "管理器" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "密码" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "将其用作注册密码字段" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "如果选中此框,密码和重新输入密码文本框都将为输出。" #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "重新输入密码标签" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "重新输入密码" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "显示密码强度指示器" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "提示:此密码长度至少应为七个字节。要提升密码强度,请使用大写和小写字母、数字和符号,如 ! \" ? $ % ^ & )。" #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "密码不符" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "星级" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "星星的数量" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "确认您不是机器人" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "请完成 captcha 字段" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "请确保您已正确输入您的网站和密钥" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha 不符。请在 captcha 字段输入正确的值" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "反垃圾" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "垃圾邮件问题" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "垃圾邮件回答" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "提交" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "税" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "税费比例" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "应以百分比输入,如 8.25%,4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "文本区域" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "显示富文本编辑器" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "显示媒体上传按钮" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "在移动设备上禁用富文本编辑器" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "作为电子邮件地址验证?(字段必须为必填)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "禁用输入" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "日期选择器" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "电话 - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "货币" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "自定义掩码定义" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "帮助" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "定时提交" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "在定时器到期后提交按钮文本" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "请等待 %n 秒" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n 将被用于指示秒数" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "倒数秒数" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "这是用户提交表单需要等待的时间" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "如果您是人类,请慢下来。" #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "您需要 JavaScript 才能提交此表单。请启用然后重试。" #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "列表字段映射" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "利益群体" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "单个" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "多个" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "列表" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "刷新" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "提交 Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "用户 Meta(如果登录)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "收集付款" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "没有找到表单。" #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "已创建日期" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "标题" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "已更新" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Go get a life, script kiddies" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "父项:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "全部项目" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "添加新项目" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "新项目" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "编辑项目" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "更新项目" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "查看项目" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "搜索项目" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "回收站中未找到" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "表单提交" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "提交信息" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "添加新表单" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "表单模板导入出错。" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "字段" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "所上传的文件表单无效。" #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "上传的表单无效。" #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "导入表单" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "导出表单" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "等式(高级)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "操作和字段(高级)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "自动总计字段" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上传的文件超出 php.ini 中的 upload_max_filesize 指示。" #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "上传的文件超出 HTML 表单中指定的 MAX_FILE_SIZE 指示。" #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "上传的文件仅上传了一部分。" #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "未上传任何文件。" #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "缺失一个临时文件夹。" #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "无法将文件写入磁盘。" #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "文件上传被扩展终止。" #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "未知的上传错误。" #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "文件上传出错" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "加载项许可证" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "完成迁移和模拟数据。 " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "查看格单" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "保存设置" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "服务器 IP 地址" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Host Name(主机名)" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "附加一个 Ninja 表单" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "未找到格单" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "未找到字段" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "发生了意外错误。" #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "预览不存在。" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "支付网关" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "付款总额" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "钩子标签" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "电子邮件地址或搜索字段" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "主题文本或搜索字段" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "附加 CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "标签在此" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "帮助文本在此" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "输入表单字段的标签。用户以这种方式指认各字段。" #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "表单默认" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "隐藏" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "选择您的标签相对字段元素本身的位置。" #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "必填字段" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "确保此字段填写完毕,然后才允许提交表单。" #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "数字选项" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "最小" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "最大" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "阶跃" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "选项" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "一个" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "一个" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "两个" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "两个" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "三个" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "三个" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "计算值" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "限制您的用户在此字段中能进行哪种输入。" #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "无" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "美国手机" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "自定义" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "自定义掩码" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - 代表字母字符 (A-Z,a-z) - " "仅允许输入字母。
    • \n
    • 9 - 代表数字字符 (0-9) - " "进允许输入数字。
    • \n
    • * - 代表字母数字字符 (A-Z,a-z,0-9) - " "这允许输入数字\n 和字母。
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "限制对此号码的输入" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "字符" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "词语" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "在计数器后显示的文本" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "剩余字符" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "输入您想要在用户输入任何数据前显示在字段中的文本。" #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "自定义类别名称" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "容器" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "向您的字段包装添加一个额外的类别。" #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "元素" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "向您的字段元素添加一个额外的类别。" #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "2019 年 11 月 18 日,星期五" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "默认为当前日期" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "定时提交的秒数。" #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "字段密钥" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "创建一个独一无二的密钥以指认和标记用于自定义开发的字段。" #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "查看和导出提交时使用的标签。" #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "以悬停方式向用户显示。" #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "描述" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "按数字排序" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "提交表中的此列将按照数字排序。" #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "倒数秒数" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "将其用作注册密码字段。如果选中此框,\n 密码和重新输入密码文本框都将为输出" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "确认" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "允许富文本输入。" #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "正在处理标签" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "选中的计算值" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "如果选中此框,该数字将被用于计算。" #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "未选中的计算值" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "如果未选中此框,该数字将被用于计算。" #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "显示此计算变量" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- 选择变量" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "价格" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "使用数量" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "允许用户选择一个以上的本产品。" #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "产品类型" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "单个产品(默认)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "多个产品 - 下拉" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "多个产品 - 选择多个" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "多个产品 - 选择一个" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "用户输入" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "成本" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "成本选项" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "单个成本" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "成本下拉" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "成本类型" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "产品" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- 选择产品" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "答案" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "一个区分大小写的回答,帮助防止您表单的垃圾提交。" #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "分类" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "添加新的术语" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "这是一个用户的状态" #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "用于标识处理的字段。" #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "保存的字段" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "普通字段" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "用户信息字段" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "定价字段" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "布局字段" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "其他字段" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "您的表单已成功提交。" #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "忍者表格提交" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "保存提交" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "变量名称" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "公式" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "默认标签位置" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "包装" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "表单密钥" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "纲领性的名称,可用于引用此表单。" #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "添加提交按钮" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "我们发现您的表单中没有提交按钮。我们可以自动帮您添加一个。" #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "‌已登录" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "适用于表单预览。" #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "提交限制" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "不适用于表单预览。" #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "显示设置" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "计算" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "价格:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "数量:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "添加" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "新窗口打开" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "如果您看到了这个字段,请保留空白。" #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "可用" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "请输入一个有效的电子邮件地址!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "这些字段必须匹配!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "数字最少出错" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "数字最多出错" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "请通过 " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "插入链接" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "插入媒体增加" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "提交此表单前,请改正错误。" #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot 出错" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "上传文件进行中。" #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "上传文件" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "所有字段" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "子序列" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "帖子 ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "帖子标题" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "帖子 URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP 地址" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "用户 ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "名字" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "姓氏" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "显示名称" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "个性风格" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "亮" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "暗" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "使用默认的 Ninja Forms 风格惯例。" #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "回退" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "回退到 v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "回退到最近的 2.9.x 发布。" #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha 设置" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA 主题" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "富文本编辑器 (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "高级" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "管理" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "空白表单" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "与我联系" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "模拟成功消息操作" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "感谢 {field:name} 填写表单!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "模拟电子邮件操作" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "这是电子邮件操作。" #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "你好, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "模拟保存操作" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "这是一个测试" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "这是另一个测试。" #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "获取帮助" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "我们有什么可以帮到您的?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "同意?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "最佳联系方式?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "电话" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "蜗牛邮件" #: includes/Database/MockData.php:315 msgid "Send" msgstr "发送" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "选择列表" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "方案一" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "方案二" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "选项三" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "电台列表" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "浴室水槽" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "复选框列表" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "这些是用户信息部分的所有字段。" #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "地址" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "城市" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "邮政编码" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "这些是价格部分的所有字段。" #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "产品(包括的数量)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "产品(单独的数量)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "数量" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "合计" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "信用卡全名" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "信用卡号" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "信用卡 CVV" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "信用卡到期日期" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "信用卡邮政编码" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "这些是各种特殊字段。" #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "反垃圾邮件问题 (Answer = answer)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "答案" #: includes/Database/MockData.php:805 msgid "processing" msgstr "正在处理" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "长格式 - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " 字段" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "字段 #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "电子邮件订阅表单" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "电子邮件地址" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "输入电子邮件地址" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "订阅" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "产品表单(带数量字段)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "购买" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "您已订购 " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "产品的 " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "产品表单(内联数量)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " 产品的 " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "产品表单(多种产品)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "产品 A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "产品 A 的数量" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "产品 B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "产品 B 的数量" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "产品 A 和 " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "产品 B 只需 $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "带运算的表单" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "我的第一次运算" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "我的第二次运算" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "使用 AJAX 回复返回运算(回复 -> 数据 -> 运算" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "复制" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "保存表单" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "信用卡邮编" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "您必须登录才能预览表单。" #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "未找到字段。" #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "注意:使用的 Ninja Forms 短代码未指定一个表单。" #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "使用的 Ninja Forms 短代码未指定一个表单。" #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "地址2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "按钮" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "单个复选框" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "已选中" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "未选中" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "信用卡 CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y-m-d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "分隔符" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "选择" #: includes/Fields/ListState.php:26 msgid "State" msgstr "省/直辖市/自治区" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "注释文本可以在注释下方的高级设置中编辑。" #: includes/Fields/Note.php:45 msgid "Note" msgstr "注意" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "密码确认" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "密码" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "请完成 Recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "高级发货" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "问题" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "问题位置" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "不正确的答案" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "星星的数量" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "术语列表" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "此分类无可用的术语。%s添加术语%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "无选中的分类。" #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "可用的术语" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "段落文本" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "单行文本" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "邮政编码" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "帖子" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "查询字符串" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "查询字符串" #: includes/MergeTags/System.php:13 msgid "System" msgstr "系统" #: includes/MergeTags/User.php:13 msgid "User" msgstr "用户" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " 要求更新。您的版本 " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " 已安装。当前版本是 " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "编辑字段" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "标签名称" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "以上字段" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "以下字段" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "字段左侧" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "字段右侧" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "隐藏标签" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "类别" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "普通字段" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "多项选择" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "添加新字段" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "添加新操作" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "展开菜单" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "发布" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "发布" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "正在加载" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "查看更改" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "添加表单字段" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "通过添加第一个表单字段开始。" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "添加新字段" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "只需单击此处并选择想要的字段。" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "就这么简单。或者......" #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "从模板开始" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "联系我们" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "让您的用户使用这个简单的联系表单与您联系。可以根据需要添加和删除字段。" #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "报价请求" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "使用这个模板可以从您的网站轻松地管理报价。可以根据需要添加和删除字段。" #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "事件注册" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "允许用户注册您的下一个事件轻松完成表单。可以根据需要添加和删除字段。" #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "新闻事件注册表单" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "使用这个新闻事件注册表单添加订户和增加电子邮件列表。可以根据需要添加和删除字段。" #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "添加表单操作" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "通过添加第一个表单字段开始。只需单击加号并选择想要执行的行动。就这么简单。" #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "复制(^ + C + 单击)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "删除(^ + D + 单击)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "操作" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "切换清单" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "全屏" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "半屏" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "撤消" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "完成" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "全部撤消" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " 全部撤消" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "即将完成..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "还没有" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " 新窗口打开" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "停用" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "进行修复。" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- 选择表单" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "存在日期" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "向我们支持团队请求支援之前,请查看:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE 文件" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "联系支持之前可以尝试的方法" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "我们的支持范围" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "导入字段" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "更新日期: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "提交日期: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "提交人: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "提交数据" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "查看" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "显示更多" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "编辑字段" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "表单字段" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "预览更改" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "联系表" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "哎呀!此加载项与 Ninja Forms THREE 尚不兼容。%s了解更多%s。" #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s 已停用。" #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "请帮助我们改进 Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "如果选择加入,您 Ninja Forms 的一些安装数据将被发送到 NinjaForms.com(不包括您的提交)。" #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "您也可以跳过这一步骤。Ninja Forms 仍然会良好运行。" #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%s允许%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%s不允许%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "您没有权限。" #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "没有权限" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "调试:切换到 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "调试:切换到 3.0.x" lang/ninja-forms-nb_NO.mo000064400000261011152331132460011237 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 ( $BOD1bD)/n   &j@ Tjd98" [ h r  #;Qdx--'= LVg   e"8 (/GZ( @N U_g mz $  -Jgo w  D : D O]d k y" '/E NY`   5;A } =3Oj   ". 3>CWu    ) 2?`H#   ) 3>C[ p }3b 4@Sf   $ 5?Wq&5D]v}  a$  , :IOeu  #()<DHYbx  +'  )7@ Ygow  # 8 ES&k':2(=GMO]C[bi|? "8@Xiz #  %3LQY am|%$/AI Q[_g5<K Ze w $5 GQ es   '1F V `nG4| z J)=Rj}     *< BN^ e q  >LU ^h}    8b\AX%`~`=@B~05(PETH ' 0 ? _ v        )  1 ; W  ]  g t }          , L Q X s z    !   *    &  / (< e x       =   T&m  #8@Hd m{""  ' 2 = HS bm|1  xl {  kpy(    "4W^fm v  %# 7Ebh~  k    "   ,8Piz":Ulc-u<ul``C]`c9X]a{'L2La%x  I1\? /!N-pQ% 8 W  j x          ! #!/!8!A!G!N! ^!l!u!!! !! !! """" '" 3"A"Z"i" " #. #.:#%i###0#/#z$ $"$!$&$4!%V%*h%G%%'b&&%&!&%&j's''' '''''%'((&E(l((( ( ((( (() ) ))-)I)Q)l) ) )))) )E*K* T*`*f* l*v****** **++ +(+-7+)e+ + ++0+ ++H,K,6T,,,,,, , -3.- b-n-+- - -@-.'.&0.W.j.~........ ../ '/3/P/ V/a/ v//// ///// / 00%090 >0 H0%S0 y00'0O0D 1Q1 W1c1,h1111 11 111;182H2b2j22 22-2 2 2 33 $323E3 \3j3333 "40484L4 `4!l4 4444)4 4 45 5+5<5M5R5Y5^5y555 55"5"5 66"636K6b6{6 66+6167 7 7$7 -787@7R7X7`7 v77777 777 7B788 !8 -878 ?8K8Z8 `8#m8%8 8 88'88d9T9iT:3:>:E1;`w;;"<<Q=@>0>>?-?^?J@0Y@N@@yyA0A%$B0JB*{BB!B@B'CAC\CmCCC@CRCcPDD8D8 EBE=FqUFXFF GRgGGgHI=(IfIiIIIIIJ\J JJJJJJ J[JDKWK_K fKsKKKKK KKKK"K KL M M )M7M;MOM fMqMzM MM MMMM NNN 3N&?N+fNUNiN0ROO,5P bP%nPP&PP P Q Q&QFQXQ"oQQQQQ R=RRS S S#S +S 6SCSKSOS VS dS qS}SSSSSS T TT;TJT`T pT{TT9UmUcViVVV VV,V,W ;WZGW$WWWWWW WWWX]X9fXX>;YHzYY.Y6 Z*AZYlZ Z3Z[[[4S\(\4\*\]] d^o^v^ ^ ^X^^ ^_ _"_+_ 2_?_F_a_j_{__ __________ ` ` `&`7`R`j``` ` ````` ```]aq_a7a Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Felt Åpne i nytt vindu Angre alle installert. Den gjeldende versjonen er produkt(er) for krever oppdatering. Du har versjon #%1$s utkast oppdatert. Forhåndsvisning %3$s%1$s gjenopprettet til revidert versjon fra %2$s.%1$s planlagt for: %2$s. Forhåndsvisning %4$s%1$s sendt. Forhåndsvisning %3$s%n vil bli brukt til å betegne antall sekunder%s siden%s publisert.%s lagret.%s oppdatert.%s ble deaktivert.%sTillat%s%sAvmerket%s beregningsverdi%sIkke tillat%s%sFjernet merking av%s beregningsverdi* – Representer et alfanumerisk tegn (A-Z,a-z,0-9) – Dette lar både tall og bokstaver bli skrevet inn- Ingen -- Velg en- Velg et felt- Velg et produkt- Velg en variabel- Velg et skjema- Vis alle typera – Representerer et numerisk tegn (0-9) – Tillater kun at tall blir skrevet inn
    • a – Representerer et alfategn (A-Z,a-z) – Tillater kun at bokstaver blir skrevet inn
    • a – Representerer et numerisk tegn (0-9) – Tillater kun at tall blir skrevet inn.
    • * – Representerer et alfanumerisk tegn (A-Z,a-z,0-9) – Dette lar både tall og bokstaver bli skrevet inn.
    En svar som skiller mellom store og bokstaver for å hindre søppelpostutsendelser av skjemaet ditt.Det kommer en stor oppdatering av Ninja Forms. %sLær mer om nye funksjoner, baklengs kompatibilitet og flere Vanlige spørsmål.%sEn forenklet og kraftigere opplevelse for skjemabygging.Over elementOver feltHandlingsnavnHandling oppdatertHandlingAktiverAktivLegg tilLegg til beskrivelseLegg til skjemaLegg til nyLegg til nytt feltLegg til nye skjemaerLegg til nytt elementLegg til ny innsendelseLegg til nye søkeordLegg til operasjonLegg til Send-knappLegg til verdiLegg til skjemahandlingerLegg til skjemafeltLegg skjemaet på denne sidenLegg til ny handlingLegg til nytt feltLegg til abonnenter og voks e-postlisten din med dette nyhetsbrev-registreringsskjemaet. Du kan legge til og fjerne felt etter behov.TilleggslisenserTilleggAddresseAdresselinje 2Legg til en ekstra klasse til felt-elementet.Legg til en ekstra klasse til felt-wrapperen.E-post til administratorAdministrativ etikettAdministrasjonDetaljertAvansert ligningAvanserte innstillingerAvansert forsendelseAfghanistanEtter altEtter skjemaEtter etikettGodta?AlbaniaAlgerieAlleAlt om skjemaerAlle feltAlle skjemaerAlle elementerAlle nåværende skjemaer vil forbli i "Alle skjemaer"-tabellen. I noen tilfeller kan skjemaer bli duplisert under denne prosessen.La brukeren registrere seg for ditt neste arrangement med dette brukervennlige skjemaet. Du kan legge til og fjerne felt etter behov.La brukere kontakte deg med dette enkle kontaktskjemaet. Du kan legge til og fjerne felt etter behov.Tillater rikt tekstformat.Tillat at brukere velger mer enn ett av dette produktet.Nesten ferdig ...I tillegg til "Bygg ditt skjema"-fanen har vi fjernet "Varslinger" i favør for "E-poster og handlinger". Dette er en mye tydeligere indikasjon på hva som kan gjøres i denne fanen.Amerikansk SamoaEn uventet feil har oppstått.AndorraAngolaAnguillaSvarAntarktisAnti-SpamAntisøppelpost-spørsmål (Svar = svar)Søppelpost-feilmeldingAntigua og BarbudaAlle tegn du plasserer i "egendefinert maske"-boksen som ikke er i listen nedenfor vil blir automatisk skrevet inn for brukeren etter hvert som de skriver og vil ikke kunne fjernesLegg til et Ninja-skjemaLegg ved et Ninja FormsLegg til sideUtførArgentinaArmeniaArubaLegg ved CSVVedleggAustraliaØsterrikeAutomatiske Totalt felterRegn automatisk ut utregningsverdierTilgjengeligTilgjengelige søkeordAserbajdsjanTilbake til listenTilbake til listenSikkerhetskopier/gjenopprettSikkerhetskopier Ninja FormsBahamasBahrainBangladeshBarBarbadosGrunnleggende-feltGrunnleggende innstillingerBaderomsvaskBazBccFør altFør skjemaFør etikettFør du ber om hjelp fra støtteteamet vårt ser du gjerne igjennom:StartdatoVære-datoHviterusslandBelgiaBelizeUnder elementUnder feltBeninBermudaBeste kontaktmetode?Beste brukerstøtte i bransjenBedre organisert FeltinnstillingerBedre lisensadministrasjonBhutanFakturering:Tomme skjemaerBoliviaBosnia og HerzegovinaBotswanaBouvetøyaBrasilBritish Indian Ocean TerritoryBrunei DarussalamBygg ditt skjemaBulgariaMassehandlingerBurkina FasoBurundiKnappCVCCalcRegn ut verdiBeregningBeregningsmetodeBeregningsinnstillingerNavn på utregningenBeregningerUtregninger returneres med AJAX-svar ( svar -> data -> utr.KambodsjaKamerunCanadaKansellerKapp VerdeManglende captcha-samsvar. Angi riktig verdi i captcha-feltetKortets CVC-beskrivelseKortets CVC-etikettBeskrivelse for utløpsmånedKortets utløpsdato-etikettBeskrivelse for utløpsårEtikett for kortets utløpsårKortnavn-beskrivelseKortnavn-etikettKortnummerBeskrivelse for kortnummerEtikett for kortnummerCaymanøyeneCcDen sentralafrikanske republikkTsjadEndre verdiTegnTegn igjenTegnCheatin’ huh?Sjekk ut dokumentasjonen vårAvmerkingsboksAvmerkingsboks-listeAvkrysningsbokserAvkryssetAvmerket beregningsverdiChileKinaChristmasøyaBy/stedKlassenavnTøm utfylt skjema?KokosøyeneMotta betalingColombiaVanlige feltKomoreneDu kan opprette komplekse ligninger ved å legge til parenteser: %s( field_45 * field_2 ) / 2%s.BekreftBekreft at du ikke er en robotKongoKongo, Den demokratiske republikkenKontaktskjemaKontakt megKontakt ossBeholderFortsetteCookøyenePrisKostnad-rullegardinmenyKostnadsalternativerKostnadstypeCosta RicaElfenbenskystenKunne ikke aktivere lisens. Sjekk din lisensnøkkelLandOppretter en unik nøkkel for å identifisere og målrette feltet ditt for egendefinert utvikling.KredittkortKredittkortets CVCKredittkortets CVCKredittkortets utløpsdatoNavn på kredittkortetKredittkortnummerPostnummer for kredittkortetKredittkortets postnummerKreditterKroatia (lokalt navn: Hrvatska)CubaValutaValutasymbolNåværende sideTilpassetEgendefinert CSS-klasseEgendefinerte CSS-klasserEgendefinerte klassenavnEgendefinert feltgruppeEgendefinert maskeTilpasset maskeTillpasset felt slettetTilpasset felt oppdatertEgendefinert første alternativKyprosTsjekkiaDD-MM-ÅÅÅÅDD/MM/ÅÅÅÅFEILSØK: Bytt til 2.9.xFEILSØK: Bytt til 3.0.xMørktData gjenopprettet!DatoDato opprettetDatoformatDatoinnstillingerInnsendtOppdateringsdatoDatovelgerDeaktiverDeaktiverDeaktiver alle lisenserDeaktiver lisensDeakitver Ninja Forms-utvidelseslisenser individuelt eller som en gruppe fra innstillinger-fanen.StandardStandardlandStandard etikettplasseringStandard tidssoneBruk dagens dato som standardStandardverdiStandard tidssone er %sStandard tidssone er %s - den skal være UTCDefinerte feltSlettSlett (^ + D + klikk)Slett permanentSlett dette skjemaetSlett dette produktet permanentDanmarkBeskrivelseBeskrivelsePlassering av beskrivelseVisse du at du kan øke antallet konverteringer ved å bryte store skjemaer opp i mindre, lettere fordøyelige deler?

    Multi-Part-skjemautvidelsen for Ninja Forms gjør dette raskt og enkelt.

    Deaktiver administratormeldingerDeaktiver nettleserens autofullførDeaktiver inndataDeaktiver rik-tekst redigering på mobilDeaktiver inndata?ForkastVisVis skjematittelVis navnVisningsinnstillingerVis denne beregningsvariabelenVis tittelVise ditt skjemaDelerDjiboutiIkke vis disse søkeordeneDokumentasjonDokumentasjon kommer snart.Dokumentasjon er tilgjengelig som dekker alt fra %sfeilsøking%s til vår %sutvikler-API%s. Det blir alltid lagt til nye dokumenter.Gjelder IKKE for forhåndsvisning av skjemaGjelder for forhåndsvisning av skjema.DominicaDen dominikanske republikkFullførtLast ned alle innsendelserNedtrekksmenyDupliserDupliser (^ + C + klikk)Kopier skjemaEcuadorRedigerRediger handlingRediger skjemaRediger elementRediger menyelementRediger innsendelseRediger dette produktetRedigere feltRedigere feltEgyptEl SalvadorElementEpostE-post og handlingerEpostadresseE-postmeldingE-postabonnement-skjemaE-postadresse eller søk etter et feltE-postadresser eller søk etter et feltE-poster vil se ut som de kommer fra denne e-postadressen.E-poster vil se ut som de kommer fra dette navnet.E-post og handlingerAvslutningsdatoSørg for at dette feltet er utfylt før du lar skjemaet bli sendt inn.Angi tekst du ønsker skal vises i feltet før en bruker skriver inn noen data.Angi etiketten i skjema-feltet. Dette er måten brukere vil identifisere individuelle felter.Angi e-postadressen dinMiljøFormelLigning (avansert)Ekvatorial-GuineaEritreaFeilFeilmelding som oppgis hvis alle påkrevde felt ikke er fylt utEstlandEtiopiaArrangementsregistreringUtvid menyUtløpsmåned (MM)Utløpsår (ÅÅÅÅ)EksportEksporter favoritt-feltEksporter felterEksporter skjemaEksporter skjemaerEksporter et skjemaEksporter dette elementetUtvid Ninja FormsFILOPPLASTINGSkriving av fil til disk mislyktes.Falklandsøyene (Malvinas)FærøyeneFavoritt-feltFavoritt-felt importert.FeltFeltnr.Felt-IDFeltnøkkelFant ikke feltFeltoperasjonerFelterFelt merket med en * er obligatoriskePåkrevde felter er merket med %s*%sFijiFeil ved filopplastingFilopplasting pågår.Opplasting av fil stoppet på grunn av filtype.FinlandFornavnFiks det.FooFoo BarFor eksempel hvis du hadde en produktnøkkel som var i formen A4B51.989.B.43C, kunne du maskere den med: a9a99.999.a.99a, som ville tvinge alle a-ene til å være bokstaver og 9-tallene til å være nummerSkjemaStandardskjemaSkjema slettetSkjemafeltSkjema importert.SkjemanøkkelFant ikke skjemaForhåndsvis skjemaLagret skjemainnstillingerSkjemainnsendelserImportfeil av skjemamalSkjematittelSkjema med utregningerFormatSkjemaerSkjemaer slettetSkjemaer per sideFrankrikeFrankrike, metropolFransk GuyanaFransk PolynesiaFranske sørterritorierFredag 18. november 2019Fra adresseFra-navnFull endringsloggFull skjermGabonGambiaGenereltGenerelle innstillingerGeorgiaTysklandFå hjelpFå flere handlingerFå flere typerFå hjelpBrukerstøtteFå SystemrapportFå en nettstedsnøkkel for domenet ditt ved å registrere deg %sher%sKom i gang ved å legge til ditt første skjemafelt.Kom i gang ved å legge til ditt første skjemafelt. Bare klikk på pluss og velg handlingene du ønsker. Så enkelt er det.Kom i gangKom i gang med Ninja FormsGhanaGibraltarGi skjemaet ditt en tittel. Det er slik du vil finne skjemaet ditt senere.GåForsøket ditt mislyktesGå til skjemaerGå til Ninja FormsGå til første sideGå til den siste sidenGå til neste sideGå til forrige sideHellasGrønlandGrenadaØkende dokumentasjonGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalv skjermHeardøya og McDonaldøyeneHei, Ninja Forms!HjelpHjelpetekstHjelpetekst herSkjultSkjult feltSkjul etikettSkjul detteSkjul innsendt skjema?Hint: Passordet bør bestå av minst syv tegn. Bruk både store og små bokstaver, tall og spesialtegn som ! for å gjøre det sterkere. " ? $ % ^ & ).VatikanstatenHjem-URLHondurasHoney PotHoneypot-feilmeldingHoneypot-feilmeldingHong KongKoblingsmerkeVertsnavnHvordan går det?UngarnIP adresseIslandHvis "beskr. tekst" er aktivert, vil det være et spørsmålstegn %s ved siden av inndatafeltet. Å bevege markøren over dette spørsmålsmerket vil vise beskrivelsesteksten.Hvis "hjelpetekst" er aktivert, vil det være et spørsmålstegn %s ved siden av inndatafeltet. Å bevege markøren over dette spørsmålsmerket vil vise hjelpeteksten.Hvis denne boksen er avmerket, vil ALLE Ninja Forms-data bli fjernet fra databasen ved sletting. %sDu vil ikke kunne gjenopprette noen skjema- og innsendelsesdata.%sHvis denne boksen er avmerket, vil Ninja Forms tømme skjemaverdiene etter at det har blitt sendt.Hvis denne boksen er avmerket, vil Ninja Forms skjule skjemaet etter at det har blitt sendt.Hvis denne boksen er merket av, vil Ninja Forms sende en kopi av dette skjemaet (og eventuelle vedlagte meldinger) til denne adressen.Hvis denne boksen er avkrysset, vil Ninja Forms validere innholdet som en e-postadresse.Hvis denne boksen er avmerket, vises tekstbokser både for passordet og for å gjenta passordet.Hvis denne boksen er merket av, vil kolonnen i denne innsendelsestabellen sorteres etter nummer.Hvis du er et menneske og ser dette feltet, la det stå tomt.Hvis du er et menneske som ser dette feltet, lar du det stå tomt.Hvis du er et menneske, vennligst ta det med ro.Hvis du lar boksen være tom, vil ingen grense brukesHvis du velger å delta, vil noen data om installeringen din av Ninja Forms bli sendt til NinjaForms.com (dette inkluderer IKKE innsendelsene dine).Det er OK om du hopper over dette! Ninja Forms vil fremdeles fungere helt greit.Hvis du ønsker å sende en tom verdi eller, bør du bruke '' for de.Hvis du ønsker at skjemaet ditt skal varsle deg via e-post når en bruker klikker på send, kan du konfigurere dette på denne fanen. Du kan opprettet et ubegrenset antall e-poster, inkludert e-poster sendt til brukeren som fylte ut skjemaet.Hvis skjemaene dine "mangler" etter oppdateringen til 2.9, vil denne knappen prøve å konvertere de de gamle skjemaene dine på nytt for å vise dem i 2.9. Alle nåværende skjemaer vil forbli i "Alle skjemaer"-tabellen.ImporterImport/eksportImporter/eksporter innsendelserImporter favoritt-feltImporter favoritterImporter feltImporter skjemaImporter skjemaerImporter listeelementerImporter et skjemaImporter/eksporterBedre klarhet Inkludere i auto-totalen? (Hvis aktivert)Feil svarØk antallet konverteringerIndiaIndonesiaInndatamaskeSett innSett inn alle feltSett inn feltSett inn koblingSett inn medieInne i elementInstallertInstallerte utvidelserInteressegrupperUgyldig skjemaopplasting.Ugyldig skjema-IDIran (Den islamske republikken)IrakIrlandEr dette en e-postadresse?IsraelSå enkelt er det. Eller ...ItaliaJamaicaJapanJavaScript deaktivert-feilmeldingOla NordmannJordanBare klikk her og velg feltene du ønsker.KasakhstanKenyaNøkkelKiribatiKjøkkenvaskKorea, Den demokratiske folkerepublikkenKorea, RepublikkenKuwaitKirgisistanEtikettEtikett herEtikettnavnEtikettplasseringEtikett som brukes når du viser og eksporterer innsendelser.Etikett,Verdi,CalcEtiketterSpråk som brukes av reCAPTCHA. For å få koden for ditt språk, klikker du %sher%sLaos (Den demokratiske folkerepublikk)EtternavnLatviaLayout-elementerLayout-feltLær merLær mer om Multi-Part-skjemaerLær mer om Lagre fremdriftLibanonVenstre for elementTil venstre for feltLesothoLiberiaLibyske arabiske JamahiriyaLisenserLiechtensteinLystBegrens inndata til dette nummeretGrense nådd-meldingBegrens innsendingerBegrens inndata til dette antalletListeList opp felttilordningListetypeListerLitauenLaster innLaster …PlasseringLogget innLang form – LuxembourgMM-DD-ÅÅÅÅMM/DD/ÅÅÅÅMacauMakedonia, Den tidligere jugoslaviske republikkenMadagaskarMalawiMalaysiaMaldiveneMaliMaltaAdministrer anbudsforespørsler fra nettstedet ditt enkelt med denne malen. Du kan legge til og fjerne felt etter behov.MarshalløyeneMartiniqueMauritaniaMauritiusMaxMaks nivå for inndatanestingMaksimal verdiKanskje senereMayotteMediumMeldingMeldingsetiketterMeldingen som vises til brukere hvis «pålogget»-boksen over er krysset av og brukeren ikke er pålogget.MetaboksMexicoMikronesiaføderasjonenOverføringer og falske data fullført. MinMinste verdiDiverse feltIkke samsvarEn midlertidig mappe mangler.Falsk e-posthandlingFalsk lagre-handlingMeldingshandling – falsk-suksessEndretMoldovaMonacoMongoliaMontenegroMontserratMer kommerMarokkoFlytt dette produktet til papirkurvenMosambikFlervalgFlere produkter – Velg mangeFlere produkter – Velg ettFlere produkter – RullegardinmenyFlervalgsboksStørrelse på flervalgsboksFlereMin første utregningMin andre utregningMySQL-versjonMyanmarNavnNavn på kortetNavn eller feltNamibiaNauruTrenger du hjelp?NepalNederlandDe Nederlandske AntillerAldri se en administratormelding på instrumentbordet fra Ninja Forms. Fjern merkingen for å se dem igjen.Ny handlingNy bygger-faneNy-CaledoniaNytt elementNy innsendelseNew ZealandRegistreringsskjema for nyhetsbrevNicaraguaNigerNigeriaInnstillinger for Ninja-skjemaNinja FormsNinja Forms - BehandlerNinja Forms endringsloggNinja Forms utv.Ninja Forms dokumentasjonNinja Forms BehandlerInnsending av Ninja-skjemaNinja Forms systemstatusNinja Forms THREE-dokumentasjonNinja Forms-oppgraderingBehandler Ninja Forms-oppgraderingNinja Forms-oppgraderingerVersjon av Ninja FormsNinja Forms WidgetNinja Forms kommer også med en enkel malfunksjon som kan plasseres direkte inn i en php-malfil. %sGrunnleggende hjelp for Ninja Forms går her.Ninja Forms kan ikke bli aktivert via nettverk. Gå til hvert nettsteds instrumentbord for å aktivere pluginmodulen.Ninja Forms har fullført alle tilgjengelige oppgraderinger!Ninja Forms er opprettet av et verdensomspenennde team av utviklere som har som mål å levere den beste WordPress-pluginmodulen for opprettelse av fellesskapskjemaer.Ninja Forms må behandle %s oppgradering(er). Det kan ta et par minutter å fullføre dette. %sStart oppgraderingen%sNinja Forms må oppgradere dine e-postinnstillinger, klikk %sher%s for å starte oppgraderingen.Ninja Forms må oppgradere innsendelsestabellen din, klikk %sher%s for å starte oppgraderingen.Ninja Forms må oppgradere dine skjemavarslinger, klikk %sher%s for å starte oppgraderingen.Ninja Forms må oppgradere skjemainnstillingen dine, klikk %sher%s for å starte oppgraderingen.Ninja Forms tilbyr kontrollprogrammer som du kan plassere i alle kontrollprogramaktiverte områder på nettstedet ditt og velge nøyaktig hvilket skjema du ønsker vist på det området.Ninja Forms-kortkode brukt uten å spesifisere et skjema.NiueNeiIngen handling angitt …Fant ingen favoritt-feltFant ingen felt.Fant ingen innsendelserIngen innsendinger funnet i papirkurvenIngen tilgjengelige søkeord for denne taksonomien. %sLegg til et søkeord%sIngen fil ble lastet opp.Fant ingen skjemaer.Ingen taksonomi valgt.Ingen gyldig endringslogg ble funnet.IngenNorfolkøyaNord-MarianeneNorgeMelding hvis ikke påloggetNei, ikke ennåIkke funnet i søppelkurvenMerkNotattekst kan redigeres i notatfeltets avanserte innstillinger nedenfor.Merk: JavaScript er påkrevd for dette innholdet.Merk: Ninja Forms-kortkode brukt uten å spesifisere et skjema.NummerMaks antall feilMinimum antall feilNummeralternativerAntall stjernerAntall desimaler.Antall sekunder for nedtellingAntall sekunder for nedtellingen.Antall sekunder for tidsinnstilt innsendelse.Antall stjernerOmanÉnEn e-postadresse eller feltOps! Det tillegget er ikke kompatibelt med Ninja Forms THREE ennå. %sLær mer%s.Åpne i nytt vinduOperasjoner og felt (avansert)Egenrådige stilerAlternativ enAlternativ treAlternativ toAlternativArrangørVårt støtteomfangVis beregning somPHP-stedPHP maks inputvariablerPHP maks innleggsstørrelseTidsbegrensning i PHPPHP VersjonPUBLISERPakistanPalauPanamaPapua Ny-GuineaParagraftekstParaguayOverordnet element:PassordPassordbekreftelseManglende passordsamsvar-etikettPassordene samsvarer ikkeBetalingsfeltBetalingsløsningerBetalingssumTillatelse avslåttPeruFilippineneTelefonnummerTelefon - (555) 555-5555PitcairnøyenePlasser %s i alle områder som godtar kortkorder for å vise skjemaet ditt hvor som helst du vil. Selv i midten av siden eller postinnhold.PlassholderRen tekst%sKontakt støtte%s med feilen du ser ovenfor.Svar korrekt på spørsmålene om søppelpost.Vennligst sjekk obligatoriske felter.Fyll ut captcha-feltetFyll ut recaptchaRett opp feil før du sender inn dette skjemaet.Kontroller at alle påkrevde felter er fylt ut.Angi en melding som du vil skal vises når dette skjemaet har nådd innsendingsgrensen og ikke vil godta nye innsendelser.Fyll inn en gyldig e-postadresseSkriv inn en gyldig e-postadresse!Fyll inn en gyldig e-postadresse.Hjelp oss med å forbedre Ninja Forms!Inkluder denne informasjonen når du ber om støtte:Øk trinnvis med Vennligst la antispamfeltet forbli blankt.Sørg for at du har angitt Nettstedsnøkler og Hemmelige nøkler riktigRanger %sNinja Forms%s %s på %sWordPress.org%s for å hjelpe oss med å holde denne pluginmodulen gratis. Takk fra WP Ninjas-teamet!Velg et skjema for å vise innsendelserVelg et skjema.Velg en gyldig eksportert skjema-fil.Velg en gyldig favoritt-felt-fil.Velg favoritt-felt du vil eksportere.Bruk disse operatorene: + - * /. Dette er en avansert funksjon. Vær på utkikk etter ting som delt på 0.Vennligst vent %n sekunderVennligst vent før du sender skjemaet.UtvidelserPolenFyll ut dette med taksonomienPortugalInnleggInnleggs-/side-ID (hvis tilgjengelig)Innleggs-/sidetittel (hvis tilgjengelig)Innleggs-/side-URL (hvis tilgjengelig)InnleggsopprettelsePost-IDInnleggstittelInnlegg URLForhåndsvisForhåndsvis endringerForhåndsvis skjemaForhåndsvisning eksisterer ikkePrisPris:Pris-feltBehandlerBehandler etikettBehandle innsending-etikettProduktProdukt (antall inkludert)Produkt (separat antall)Produkt AProdukt BProduktskjema (innebygd antall)Produktskjema (flere produkter)Produktskjema (med antall-felt)ProdukttypeProgrammatisk navn som kan brukes til å referere til dette skjemaet.PubliserPuerto RicoKjøpQatarkvantitetAntall for produkt AAntall for produkt BAntall:SpørringsstrengSpørringsstrengerQueryString-variabelSpørsmålSpørsmålsplasseringAnbudsforespørsel:RadioRadio-listeGjenta passordEtikett for tekstboks for å gjenta passordetVil du virkelig deaktivere alle lisenser?RecaptchaOmdirigerFjernFjerne ALLE Ninja Forms-data ved avinstallering?Fjern verdiFjern alle Ninja Forms-dataVil du fjerne dette feltet? Det vil bli fjernet, selv om du ikke lagrer.Svar tilKrev at bruker må være pålogget for å se skjemaet?PåkrevdObligatorisk feltPåkrevd felt-feilEtikett for påkrevd feltSymbol for påkrevd feltTilbakestill skjema-konverteringTilbakestill skjema-konverteringTilbakestill skjemakonverteringsprosessen for v2.9+GjenopprettGjenopprett Ninja FormsGjenopprett dette produktet fra papirkurvenBegrensningerRestriksjonerBegrens typen inndata brukerne dine kan plassere i dette feltet.Tilbake til Ninja FormsRéunionRedigeringsprogram for rik tekst (RTE)Høyre for elementTil høyre for feltTilbakerullingTilbakerulling til den nyeste 2.9.x-versjonen.Tilbakerulling til v2.9.xRomaniaRusslandRwandaSMTPSOAP-klientSUHOSIN InstallertSaint Kitts og NevisSaint LuciaSaint Vincent og GrenadineneSamoaSan MarinoSao Tome og PrincipeSaudi ArabiaLagreLagre og aktiverLagre feltinnstillingerLagre skjemaLagre alternativerLagre innstillingerLagre innsendingLagretLagrede feltLagrer …Søk i elementSøk i innsendelserVelgVelg alleVelg listeVelg et felt eller skriv for å søkeVelg en filVelg et skjemaVelg et skjema eller skriv for å søkeVelg antall innsendelser dette skjemaet vil godta. La stå tomt for ubegrenset.Velg plasseringen av etiketten din relativt til selve feltelementet.ValgtValgt verdiSendSend en kopi av skjemaet til denne adressen?SenegalSerbiaServerens IP-adresseInnstillingerInnstillingene ble lagretSeychelleneFraktKortkodeSkal skrives inn som en prosentandel. for eksempel 14%, 25%Vis hjelpetekstVis mediaopplastingsknappVis merVis passordstyrkeindikatorVis rik-tekst redigeringVis detteVis verdier for listeobjektVist til brukere som en pekerfølsom kobling.Sierra LeoneSingaporeEnkelEnkel avmerkingsboksEnkeltkostnadEnkelt linje-tekstEtt produkt (standard)Nettsteds-URLSlovakia (Slovakiske Republikk)SloveniaBrevpostSå hvis du ville opprette en maske for et amerikansk social security number (personnummer), ville du skrive 999-99-9999 inn i boksenSalomonøyeneSomaliaSorter som numeriskSorter som numeriskSør-AfrikaSør-Georgia, Sør-SandwichøyeneSør-SudanSpaniaSøppelpost-svarSøppelpost-spørsmålSpesifiser operasjoner og felt (avansert)Sri LankaSt. HelenaSt. Pierre og MiquelonStandardfeltStjernerangeringStart fra en malStatStatusStegTrinn %d av ca. %d kjørerTrinn (mengen å øke med)StyrkeindikatorSterktUndersekvensEmneEmnetekst eller søk etter et feltEmnetekst eller søk etter et feltInnsendelseCSV for innsendingInnsendelsesdataInnsendelsesinformasjonGrense for innsendelseMetaboks for innsendelseInnsendingsstatistikkInnsendelserSendSend knappetekst etter at timeren utløper.Send inn via AJAX (uten å laste siden på nytt)?InnsendtInnsendt avInnsendt av: InnsendtInnsendt: AbonnerVellykket meldingSudanSurinamSvalbard og Jan MayenSwazilandSverigeSveitsSyriaSystemSystemstatusTHREE kommer snart!TaiwanTadsjikistanTa en titt på vår inngående Ninja Forms-dokumentasjon nedenfor.TanzaniaMVAMVA-prosentTaksonomiMalfeltMalfunksjonSøkeord-listeTekstTekstelementTekst som skal vises etter tellerenTekst som vises etter tegn-/ordtellerTekstområdeTekstboksThailandTakk for at du fylte ut dette skjemaet.Takk for at du oppdaterer til den siste versjonen! Ninja Forms %s er klar til å gjøre din opplevelse av å administrere innsendelser til en hyggelig en!Takk for at du oppgraderte til versjon 2.7 av Ninja Forms. Oppdater alle Ninja Forms-utvidelser fra Takk for at du oppdaterte! Ninja Forms %s gjør skjemabygging enklere enn noensinne!Takk for at du bruker Ninja Forms! Vi håper at du har funnet alt du trenger, men hvis du har spørsmål:Takk {field:name} for at du fylte ut skjemaet mitt!De (vanligvis) 16 siffrene på forsiden av kredittkortet ditt.Den 3-sifrede- (bak) eller 4-sifrede (foran) verdien på kortet ditt.9-tallene ville representere et hvilket som helst nummer, og -s-en ville bli lagt til automatiskSkjemaer-meynen er tilgangspunktet for alt som har å gjøre med Ninja Forms. Vi har allerede opprettet det første %skontaktskjemaet ditt%s, slik at du har et eksempel. Du kan også opprettet ditt eget ved å klikke på %sLegg til nytt%s.Formatet skal se ut som følgende:Grensesnittoppdateringene i denne versjonen legger grunnarbeidet for noen ypperlige forbedringer i fremtiden. Versjon 3.0 kommer til å bygge videre på disse endringene for å gjøre Ninja Forms til en enda mer stabil, kraftig og brukervennlig skjemabygger.Måneden kredittkortet ditt utløper, det står vanligvis på forsiden av kortet.De mest vanlige innstillingene vises umiddelbart, mens andre, ikke-essensielle innstillinger blir gjemt inna i utvidbare seksjoner.Navnet trykt på forsiden av kredittkortet ditt.Passordene samsvarer ikkeFolkene som lager Ninja FormsProsessen har startet, vær tålmodig. Dette kan ta flere minutter. Du vil automatisk bli omdirigert når prosessen er fullført.Den opplastede filen overskrider MAX_FILE_SIZE-direktivet som ble spesifisert i HTML-skjemaet.Den opplastede filen overskrider upload_max_filesize-direktivet i php.ini.Den opplastede filen ble bare delvis lastet opp.Året kredittkortet ditt utløper, det står vanligvis på forsiden av kortet.Det er en ny versjon av %1$s tilgjengelig. Vis versjon %3$s-detaljer eller oppdater nå.Det er en ny versjon av %1$s tilgjengelig. Vis versjon %3$s-detaljer.Den opplastede filen er ikke i et gyldig format.Dette er alle feltene i Priser-delen.Dette er alle feltene i Brukerinformasjon-delen.Disse er forhåndsdefinerte maskeringstegnDette er diverse spesialfelt.Disse feltene må stemme overens!Denne kolonnen i innsendelsestabellen vil sorteres etter nummer.Dette er et påkrevd feltDette er et påkrevd felt.Dette er en testDette er en brukers status.Dette er en e-posthandling.Dette er enda en test.Dette er hvor lenge brukeren må vente med å sende inn skjemaetDette er etiketten som brukes ved visning/redigering/eksportering av innsendelser.Dette er det programmatiske navnet på feltet ditt. Eksempler er: my_calc, price_total, user-total.Dette er brukerens tilstandDette er verdien som vil bli brukt hvis %ser avmerket%s.Dette er verdien som vil bli brukt hvis %ser avmerket%s.Det er her du bygger skjemaet ditt ved å legge til felt og dra dem inn i den rekkefølgen du ønsker at de skal vises. Hvert felt vil ha et utvalg av alternativer, slik som etikk, etikettposisjon og plassholder.Dette nøkkelordet er reservert av WordPress. Prøv et annet.Denne meldingen vises i send-knappen når en bruker klikker på "send", for å la brukeren vite at den behandles.Denne meldingen vises til en bruker når ikke-samsvarende verdier angis i passordfeltet.Dette nummeret vil brukes i beregninger hvis denne boksen er avmerket.Dette nummeret vil brukes i beregninger hvis merkingen av denne boksen er fjernet.Denne innstillingen vil FULLSTENDIG fjerne alt som er Ninja Forms-relatert når pluginmodulen slettes. Dette inkluderer INNSENDELSER OG SKJEMAER. Dette kan ikke gjøres om.Denne fanen har generelle innstilinger, slik som tittle og innsendelsesmetode, i tilleggt til visningsinnstillinger som å skjule et skjema når det er ferdig utfylt.Dette blir e-postens emneDette ville hindre at brukeren skriver inn noe annet enn tallToTidsbestemt innsendingTidtaker-feilmeldingTimor-Leste (Øst-Timor)TilFor å aktivere lisenser for Ninja Forms-utvidelser, må du først %sinstallere og aktivere%s den valgte utvidelsen. Lisensinnstillinger vil deretter dukke opp nedenfor.For å bruke denne funksjonen, kan du lime inn CSV inn i tekstfeltet over.Dagens datoVeksle skuffenTogoTokelauTongaTotalsumPapirkurvPrøver å følge %sPHP dato()-funksjon%s-spesifikasjoner, men ikke alle formater støttes.Trinidad og TobagoTunisiaTyrkiaTurkmenistanTurks- og CaicosøyeneTuvaluTreTypeURLTelefon i USAUgandaUkraniaIkke avkryssetFjernet merking av beregningsverdiUnder Grunnleggende skjemaatferd i Skjema-innstillinger kan du enkelt velge en side som du vil at skjemaet automatisk skal legges til på slutten av innholdet på den siden. Et lignende alternativ er tilgjengelig i hver innholdsredigeringsskjerm i skjermens sidestolpe.AngreAngre alleDe forente arabiske emiraterStorbritanniaUSAUSAs ytre småøyerUkjent opplastingsfeilUpublisertOppdaterOppdater elementOppdatert: Oppdaterer skjemadatabasenOppgraderOppgrader til Ninja Forms THREEOppgraderingerOppgraderinger fullførtUrl-adresseUruguayBruk en ligning (avansert)Bruk antallBruk et egendefinert alternativ førstBruk standard Ninja Forms stilkonvensjoner.Bruk følgende kortkode for å sette inn den endelige utregningen: [ninja_forms_calc]Bruk tipsene nedenfor for å komme i gang med å bruke Ninja Forms. Du vil være i gang på et øyeblikk!Bruk dette som et felt for å registrere passordBruk dette som et passordfelt for registrering. Hvis denne boksen er merket av, vil både passord- og skriv inn passord på nytt-tekstbokser være utdataBrukt til å markere et felt for behandling.BrukerkontoBrukers visningsnavn (hvis innlogget)E-post til brukerBrukers e-postadresse (hvis innlogget)BrukerregistreringBrukers fornavn (hvis innlogget)Bruker IDBruker-ID (hvis innlogget)Brukerinformasjon om feltgruppeBrukerinformasjonBrukerinformasjon-feltBrukers etternavn (hvis innlogget)Brukermeta (hvis pålogget)Brukerinnsendte verdierBrukers innsendte verdier:Det er mer sannsynlig at brukere vil fylle ut lange skjemaer når de kan lagre og vende tilbake for å fullføre innsendelsen senere.

    Lagre fremdrift-utvidelsen for Ninja Forms gjør dette raskt og enkelt.

    UsbekistanValider feltet som e-postadresse? (Feltet må være påkrevd)VerdiVanuatuVariabelnavnVenezuelaVersjonVersjon %sVeldig svaktVietnamVisVis %sVis endringerVis skjemaerVis elementVis innsendelseVis innsendingerVis full endringsloggDe britiske jomfruøyeneDe amerikanske jomfruøyeneBesøk utvidelsens nettsideWP debugmodusWP-språkWP Maks opplastingsstørrelseWP MinnegrenseWP Multisite AktivertWP Ekstern postWP-versjonWallis- og FutunaøyeneVi gjør alt vi kan for å gi alle Ninja Forms-brukere best mulig støtte. Hvis du støter på et problem eller har et spørsmål, %star du gjerne kontakt med oss%s.Vi har lagt til alternativet å fjerne alle Ninja Forms-data (innsendelser, skjemaer, felter, alternativer) når du sletter plugin-modulen. Vi kaller det for den kjernefysiske løsningen.Vi har lagt merke til at du ikke har en send-knapp på skjemaet ditt. Vi kan legge til en for deg automatisk.SvaktInformasjon om nettserverVelkommen til Ninja FormsVelkommen til Ninja Forms %sVest-SaharaHva kan vi hjelpe deg med?Hva du bør prøve før du kontakter støtteHvilket navn vil du gi til denne favoritten?Hva er nyttNår du oppretter og redigerer skjemaer, går du direkte til den delen som er mest viktig.Hvem skal sende e-posten sendes til?OrdsOrdWrapperÅ-m-dd/m/YYYYY-MM-DDÅÅÅÅ/MM/DDJemenJaDu er kvalifiser til å oppgradere til Ninja Forms THREE Release Candidate! %sOppgrader nå%sDu kan også kombinere disse for spesifikke applikasjonerDu kan angi utregningsligninger her ved hjelp av field_x, hvor x er ID-en til feltet du ønsker å bruke. For eksempel %sfield_53 + field_28 + field_65%s.Du kan ikke sende inn skjemaet uten å ha Javascript aktivert.Du har ikke tillatelse til å installere oppdateringer av pluginmoduler.Du har ikke tillatelse.Du har ikke lagt til en send-knapp i skjemaet.Du må være pålogget for å forhåndsvise et skjema.Du må oppgi et navn på denne favoritten.Du trenger JavaScript for å sende inn dette skjemaet. Aktiver JavaScript og prøv igjen.Du kjøpte Du vil finne dette inkludert med din kjøps-e-post.Skjemaet er sendt.Din server ikke har fsockopen eller cURL aktivert - PayPal IPN og andre scripts som kommuniserer med andre servere vil ikke fungere. Ta kontakt med din hostingleverandør.Serveren din har ikke %sSOAP-klienten%s klasseaktivert – noen gateway-pluginmoduler som bruker SOAP vil kanskje ikke fungere som forventet.Serveren har cURL aktivert, fsockopen er deaktivert.Serveren har Fsockopen og cURL aktivert.Serveren har fsockopen aktivert, cURL er deaktivert.Serveren har SOAP-klient-klassen aktivert.Din versjon av utvidelsen Ninja Forms Filopplasting er ikke kompatibel med versjon 2.7 av Ninja Forms. Den må være minst versjon 1.3.5. Oppdater denne utvidelsen på Din versjon av utvidelsen Ninja Forms Lagre fremgang er ikke kompatibel med versjon 2.7 av Ninja Forms. Den må være minst versjon 1.3.3. Oppdater denne utvidelsen på JugoslaviaZambiaZimbabwePostnummerPostnummera – Representerer et alfategn (A-Z,a-z) – Tillater kun at bokstaver blir skrevet innsvarbutton-secondary nf-download-allavtegn igjenavmerketKopieregendefinertd-m-Ådashicons dashicons-updatelag kopifoo@wpninjas.comtimejs-newsletter-list-update extral, F d Åm-d-Åm/d/Åingenavav produkt A og av produkt B for $enone_week_supportpassordbehandlerprodukt(er) for reCAPTCHAreCAPTCHA språkreCAPTCHA hemmelig nøkkelreCAPTCHA-innstillingerreCAPTCHA-nettstedsnøkkelreCAPTCHA-temareCaptcha-innstillingeroppdatérsmtp_porttretitteltomerking fjernetoppdatertbruker@gmail.comversjonwp_remote_post() mislyktes. Det er ikke sikkerhet at PayPal IPN vil fungere med serveren din.wp_remote_post() mislyktes. PayPal IPN vil ikke fungere med serveren din. Kontakt hostingleverandøren din. Feil:wp_remote_post() var vellykket – PayPal IPN fungerer.lang/ninja-forms-de_DE.po000064400000644126152331132460011223 0ustar00msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2017-05-08 09:49-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.5.7\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Hinweis: Für diese Inhalte ist JavaScript erforderlich." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Schummeln, wie?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Felder mit einem %s*%s müssen ausgefüllt werden" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "" "Bitte stellen Sie sicher, dass alle erforderlichen Felder vollständig " "ausgefüllt sind." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Dies ist ein Pflichtfeld" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Bitte beantworte die Antispam-Frage richtig." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Bitte lassen Sie das Spam-Feld leer." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Bitte warten, um das Formular einzureichen." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Sie können das Formular nur einreichen, wenn Javascript aktiviert ist." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Bitte geben Sie eine gültige E-Mail Adresse an!" #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Verarbeite" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Die eingegebenen Passwörter stimmen nicht überein." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Formular hinzufügen" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Wählen Sie ein Formular aus oder geben Sie es für die Suche ein" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Abbrechen" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Einfügen" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Ungültige Formular-ID" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Conversions steigern" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Wussten Sie schon, dass Sie die Conversions steigern können, indem Sie lange " "Formulare in kleinere, sozusagen leichter verdauliche Formularteile " "aufsplitten?

    Die Erweiterung Multi-Part Forms für mehrteilige Formulare " "für Ninja Forms erledigt diese Aufgabe einfach und schnell.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Weitere Informationen zu Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Vielleicht später" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 #: includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Schliessen" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Benutzer sind eher geneigt, lange Formulare auszufüllen, wenn sie diese " "speichern und vor dem Abschicken zur weiteren Bearbeitung zu ihnen " "zurückkehren können.

    Die Erweiterung Save Progress für das Speichern von " "Eingaben für Ninja Forms erledigt diese Aufgabe schnell und einfach.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Weitere Informationen zu Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "E-Mail" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Name des Absenders" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Name oder Felder" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Die E-Mail wird so aussehen, als ob sie von diesem Namen ist." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Absenderadresse" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "1 E-Mail-Adresse oder Feld" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Die E-Mail wird so aussehen, als ob sie von dieser E-Mail-Adresse ist." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Empfänger" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "E-Mail-Adressen oder nach einem Feld suchen" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "An wen soll diese E-Mail gesendet werden?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Betreff" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Betrefftext oder nach einem Feld suchen" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Dies wird die Betreffzeile Ihrer E-Mail." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "E-Mail-Nachricht" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Anhänge" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Einreichungen als CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Reiner Text" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Antwort an" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "CC" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "BCC" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Umleitung" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Erfolgsmeldung" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Vor Formular" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Nach Formular" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Standort" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Nachricht" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "Duplizieren" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Deaktivieren" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Aktivieren" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Bearbeiten" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Löschen" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplizieren" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Name" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Typ" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Datum geändert" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Alle Typen anzeigen" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Mehr Typen abrufen" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "E-Mail und Aktionen" #: deprecated/classes/notifications.php:219 #: deprecated/classes/subs-cpt.php:118 deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 #: includes/Admin/CPT/Submission.php:47 includes/Config/FieldSettings.php:153 #: includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Hinzufügen" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Neue Aktion" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Aktion bearbeiten" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Zurück zur Liste" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Aktionsname" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Mehr Aktionen abrufen" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Aktion aktualisiert" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Wählen Sie ein Feld aus oder machen Sie eine Eingabe für die Suche" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Feld einfügen" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Alle Felder einfügen" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Wählen Sie ein Formular aus, um die Einreichungen anzuzeigen" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Keine Einreichungen gefunden" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Einträge" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Einreichung" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Neue Einreichung hinzufügen" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Einreichung bearbeiten" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Neue Einreichung" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Einreichung anzeigen" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Nach Einreichungen suchen" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Keine Einreichungen im Papierkorb gefunden" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 #: includes/Config/MergeTagsSystem.php:27 includes/Database/MockData.php:620 #: includes/Fields/Date.php:30 msgid "Date" msgstr "Datum" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Produkt bearbeiten" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Dieses Objekt exportieren" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 #: includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Exportieren" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Produkt in den Papierkorb verschieben" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Papierkorb" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Produkt aus dem Papierkorb wiederherstellen." #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Wiederherstellen" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Produkt dauerhaft löschen" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Dauerhaft löschen" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Nicht veröffentlicht" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "vor %s" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Abgesendet" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Ein Formular auswählen" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Start-Datum" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Enddatum" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s aktualisiert." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "" "Benutzerdefiniertes\n" " \n" "Feld\n" " \n" "aktualisiert\n" "." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "" "Benutzerdefiniertes\n" " \n" "Feld\n" " \n" "gelöscht\n" "." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s zur Überprüfung wiederhergestellt von %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s veröffentlicht." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s gespeichert." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s eingereicht. Vorschau%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s geplant für: %2$s. Vorschau%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "" "%1$s Entwurf aktualisiert. Vorschau%3$s" #: deprecated/classes/subs-cpt.php:709 #: includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Alle Einträge herunterladen" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Zurück zur Liste" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Vom Benutzer übermittelte Werte" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Statistiken zu Einreichungen" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Feld" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Wert" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 #: includes/Admin/Menus/ImportExport.php:99 includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formular" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Abgesendet am" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Geändert am" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Abgesendet von" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Aktualisieren" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Datum der Einreichung" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms kann nicht über Netzwerk aktiviert werden. Rufen Sie bitte das " "Dashboard jeder Site auf, um das Plugin zu aktivieren." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Dies erhalten Sie zusammen mit Ihrer Kauf-E-Mail." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Schlüssel" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "" "Lizenz konnte nicht aktiviert werden. Bitte prüfen Sie Ihren Lizenzschlüssel" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Lizenz deaktivieren" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Vom Benutzer eingegebene Daten:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "" "Vielen Dank, dass Sie sich die Zeit genommen haben, dieses Formular " "auszufüllen!" #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Eine neue Version von %1$s ist verfügbar. Details zur Version %3$s anzeigen." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Eine neue Version von %1$s ist verfügbar. Details zur Version %3$s anzeigen oder jetzt aktualisieren." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Du hast keine Berechtigung um Plugin Updates zu installieren." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Fehler" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standardfelder" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Layoutelemente" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Nach der Erstellung" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Bitte bewerten Sie %sNinja Forms%s %s auf %sWordPress.org%s, um uns darin zu " "unterstützen, dass dieses Plugin weiterhin kostenlos angeboten werden kann. " "Das WP Ninjas-Team sagt vielen Dank!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Titel anzeigen" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Keine" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formulare" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Alle Formulare" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms-Upgrades" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Upgrades" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Import/ Export" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Import/ Export" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Formulare Einstellungen" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Einstellungen" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Systemstatus" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Add-Ons" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Vorschau" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Speichern" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "Zeichen übrig" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Diese Begriffe nicht anzeigen" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Einstellungen speichern" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Formularvorschau" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Upgrade auf Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Sie können ein Upgrade auf die Version Ninja Forms THREE vornehmen! %sJetzt " "upgraden%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE kommt!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Für Ninja Forms erscheint in Kürze ein großes Update. %sErfahren Sie mehr " "über neue Funktionen, Rückwärtskompatibilität und Häufig gestellte Fragen.%s" #: deprecated/includes/admin/notices.php:53 #: includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Wie sieht's aus?" #: deprecated/includes/admin/notices.php:54 #: includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Wir freuen uns, dass Sie Ninja Forms verwenden! Wir hoffen, dass Sie alles " "gefunden haben, was Sie benötigen. Falls noch Fragen offen sind, können Sie:" #: deprecated/includes/admin/notices.php:55 #: includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Unsere Dokumentation aufrufen" #: deprecated/includes/admin/notices.php:56 #: includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Hilfe erhalten" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Menüpunkt bearbeiten" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Alle auswählen" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Ein Ninja-Formular anfügen" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Wie möchten Sie diesen Favoriten nennen?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Sie müssen einen Namen für diesen Favoriten angeben." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Alle Lizenzen wirklich deaktivieren?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Formular-Konvertierungsvorgang für v2.9+ zurücksetzen" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "ALLE Ninja Forms-Daten bei der Deinstallation entfernen?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Formular bearbeiten" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Gespeichert" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Wird gespeichert ..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "" "Dieses Feld entfernen? Es wird entfernt, auch wenn Sie nicht speichern." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Einträge ansehen" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms-Verarbeitung" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms – Verarbeitung" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Lädt..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Keine Aktion angegeben..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Dieser Vorgang hat bereits begonnen. Bitte haben Sie etwas Geduld. Dieser " "Vorgang kann einige Minuten dauern. Bei Abschluss des Vorgangs werden Sie " "automatisch weitergeleitet." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Willkommen bei Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Vielen Dank für die Aktualisierung! Mit Ninja Forms %s können Sie Formulare " "jetzt noch einfacher erstellen!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Willkommen bei Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms-Changelog" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Erste Schritte mit Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Entwickler von Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Neues" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Erste Schritte" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Würdigungen" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Version %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Formularerstellung jetzt noch einfacher und besser!" #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Neues Builderrregister" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Gehen Sie beim Erstellen und Bearbeiten von Formularen jetzt direkt zu dem " "Bereich, der für Sie am wichtigsten ist." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Bessere Organisation der Feldeinstellungen" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Die gängigsten Einstellungen werden direkt angezeigt, während andere, nicht " "so wichtige Einstellungen in den erweiterbaren Bereichen untergebracht sind." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Klarerer Aufbau" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Zusammen mit der Registerkarte \"Formular erstellen\" haben wir " "\"Mitteilungen\" zugunsten von \"E-Mails und Aktionen\" entfernt. Dadurch " "wird klarer, was auf dieser Registerkarte gemacht werden kann." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Alle Ninja Forms-Daten entfernen" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Wir haben eine Option hinzugefügt, mit der alle Ninja Forms-Daten " "(Einreichungen, Formulare, Felder, Optionen) beim Löschen des Plugins " "entfernt werden. Wir nennen sie Kernoption." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Verbesserte Lizenzverwaltung" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Deaktivieren Sie die Lizenzen für Ninja Forms-Erweiterungen einzeln oder als " "Ganzes auf der Registerkarte mit den Einstellungen." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Weitere Verbesserungen in Arbeit" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Die Änderungen der Oberfläche in dieser Version legen die Grundlage für " "zukünftige weitere Verbesserungen. Version 3.0 baut auf diesen Änderungen " "auf, um Ninja Forms zu einem noch stabileren, leistungsfähigeren und " "benutzerfreundlichen Tool für die Formularerstellung zu machen." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Laden-Finder-Dokumentation" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Sehen Sie sich unsere detaillierte Ninja Forms-Dokumentation an." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms-Dokumentation" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Hole Unterstützung" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Zurück zu Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Vollständiges Changelog anzeigen" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Vollständiges Changelog" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Zu Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Mit den Tipps unten ist der Einstieg in Ninja Forms ganz einfach. In " "Nullkommnichts sind Sie und das Programm bereit!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Infos zu Formularen" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Das Menü \"Formulare\" ist Ihr Startpunkt für alles bei Ninja Forms. Wir " "haben für Sie bereits ein erstes %sKontaktformular%s erstellt, so dass Sie " "ein Beispiel haben. Sie können auch ein eigenes erstellen, indem Sie auf " "%sNeu hinzufügen%s klicken." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Formular erstellen" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Hier erstellen Sie Ihr Formular, indem Sie Felder hinzufügen und diese an " "die gewünschte Stelle ziehen. Für jedes Feld stehen verschiedene Optionen " "wie Beschriftung, Position der Beschriftung und Platzhalter zur Verfügung." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "E-Mails und Aktionen" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Wenn Sie eine E-Mail erhalten möchten, wenn ein Benutzer für Ihr Formular " "auf \"Absenden\" klickt, können Sie dies auf dieser Registerkarte " "einstellen. Sie können eine unbegrenzte Anzahl E-Mails einrichten " "einschließlich einer E-Mail, die an den Benutzer gesendet wird, der das " "Formular ausgefüllt hat." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Auf diesen Register befinden sich allgemeine Formulareinstellungen wie Titel " "und Einreichungsmethode sowie Anzeigeeinstellungen wie das Ausblenden des " "Formulars nach erfolgreichem Ausfüllen." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Formular anzeigen" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "An Seite anhängen" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "In den Formulareinstellungen können Sie unter dem grundlegenden " "Formularverhalten mühelos eine Seite auswählen, die das Formular automatisch " "ans Ende des Seiteninhalts anhängen soll. Eine ähnliche Option ist in der " "Seitenleiste eines jeden Bildschirms zur Bearbeitung von Inhalten verfügbar." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Shortcode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Positionieren Sie %s in jedem Bereich, in dem Sie Shortcode eingeben können, " "um Ihr Formular an jeder gewünschten Stelle anzuzeigen. Sogar in der Mitte " "Ihres Seiten- oder Beitragsinhalts." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms bietet ein Widget, das Sie in jedem Widget-Bereich Ihrer Website " "positionieren können, und Sie können genau auswählen, welches Formular an " "der Stelle angezeigt werden soll." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Template-Funktion" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms bietet außerdem eine einfache Vorlagenfunktion, die direkt in " "einer PHP-Vorlagendatei angeordnet werden kann. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Benötigst du Hilfe?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Wachsende Dokumentation" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Für alle Themen von der %sFehlerbehebung%s bis zu unserer %sEntwickler-API%s " "steht Dokumentation zur Verfügung. Ständig werden neue Dokumente ergänzt." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Bester Support in der Branche" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Wir tun alles, um jedem Ninja Forms-Benutzer bestmöglichen Support zu " "bieten. Wenn Sie auf ein Problem stoßen oder eine Frage haben, " "%skontaktieren Sie uns bitte%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Vielen Dank für Ihr Update auf die neueste Version! Ninja Forms %s möchte " "Ihnen die Verwaltung von Einreichungen möglichst angenehm machen!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms wird von einem weltweiten Team aus Entwicklern erstellt, deren " "Ziel es ist, das Plugin Nr. 1 der WordPress-Community zur Formularerstellung " "bereitzustellen." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Kein gültiger Changelog gefunden." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Zeige %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Autovervollständigen des Browsers deaktivieren" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sAktivierter%s Berechnungswert" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Dieser Wert wird verwendet, wenn %sAktiviert%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sDeaktivierter%s Berechnungswert" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Dieser Wert wird verwendet, wenn %sDeaktiviert%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Im automatischen Gesamtwert einschließen? (Falls aktiviert)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Eigene CSS-Klassen" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Vor allem" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Vor Bezeichnung" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Nach Bezeichnung" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Nach allem" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Wenn \"Beschreibungstext\" aktiviert ist, wird neben das Eingabefeld ein " "Fragezeichen %s gesetzt. Bewegt sich die Maus über dieses Fragezeichen, wird " "der Beschreibungstext angezeigt." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Beschreibung hinzufügen" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Position der Beschreibung" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Inhalt der Beschreibung" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Wenn der \"Hilfetext\" aktiviert ist, werden Fragezeichen %s neben den " "Feldern angezeigt. Wenn Sie mit der Maus über das Fragezeichen fahren, wird " "ein entsprechender Hilfetext angezeigt." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Hilfetext anzeigen" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Hilfetext" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Bleibt dieses Feld leer, wird kein Grenzwert verwendet." #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Eingabe für diese Zahl begrenzen" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "von" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Zeichen" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Wörter" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Text nach Zeichen-/Wortzähler anzeigen" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Links des Elements" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Über dem Element" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Unter dem Element" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Rechts des Elements" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Innerhalb des Elements" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 #: includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Position der Beschriftung" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Feld-ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Beschränkungseinstellungen" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Berechnungseinstellungen" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Entfernen" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Dies mit Taxonomie ausfüllen" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Nichts" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Platzhalter" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Pflichtfeld" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Feld-Einstellungen speichern" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Als numerisch sortieren" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Wenn dieses Feld aktiviert ist, sortiert dieses Spalte in der " "Einreichungstabelle nach Zahl." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Admin-Bezeichnung" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "" "Diese Bezeichnung wird beim Anzeigen/Bearbeiten/Export der Einreichungen " "verwendet." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Rechnung" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Versand" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Benutzerdefiniert" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Benutzerinfo Feldgruppe" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Benutzerdefinierte Feldgruppe" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "" "Geben Sie bitte die folgenden Informationen an, wenn Sie Support anfragen:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Den Systemreport holen" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Umgebung" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Home URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Seiten URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms-Version" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WordPress-Version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP-Multisite aktiviert" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Ja" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Nein" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Webserverinfo" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP Version" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL-Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP-Gebietsschema" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WordPress Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WordPress Debug-Modus" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP-Sprache" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Standard" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP-Maximalgröße für Upload" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Max. Schachtelungsebene für Eingabe" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN installiert" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Standardzeitzone" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Standard-Zeitzone ist %s – es sollte UTC sein" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Die Standardzeitzone ist %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Für Ihren Server sind fsockopen und cURL aktiviert." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Für Ihren Server ist fsockopen aktiviert und cURL deaktiviert." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Für Ihren Server ist cURl aktiviert und fsockopen deaktiviert." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Dein Webserver hat weder fsockopen noch cURL " "aktiviert. Die sofortige Zahlungsbestätigung bei PayPal (IPN) und andere " "Skripte, welche mit anderen Servern kommunizieren, werden daher nicht " "funktionieren. Kontaktiere deinen Webhosting-Anbieter." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP-Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Für Ihren Server ist die Klasse SOAP-Client aktiviert." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Für Ihren Server ist die Klasse %sSOAP-Client%s nicht aktiviert – einige " "Gateway-Plugins, die SOAP verwenden, zeigen daher ggf. ein anderes Verhalten " "als erwartet." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() war erfolgreich - PayPal-IPN funktioniert." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() fehlgeschlagen. PayPal IPN wird mit Ihrem Server nicht " "funktionieren. Wenden Sie sich an Ihren Hostinganbieter. Fehler:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "" "wp_remote_post() fehlgeschlagen. PayPal IPN wird mit Ihrem Server ggf. nicht " "funktionieren." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Installierte Plugins" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Plugin-Homepage besuchen" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "von" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "Version" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "" "Geben Sie dem Formular einen Namen. So finden Sie das Formular später " "einfach wieder." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "" "Sie haben für Ihr Formular keine Schaltfläche für das Absenden hinzugefügt." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Eingabemaske" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Jedes Zeichen, welches Sie in die Box für die \"Eigene Maske\" (Custom Mask) " "einfügen und dass nicht in der Liste unten enthalten ist, wird automatisch " "für den Benutzer eingefügt, während dieser tippt - und es ist nicht " "entfernbar!" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Dies sind die voreingestellten Maskierungszeichen" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Repräsentiert alphanumerische Zeichen (A-Z,a-z) - Erlaubt nur die " "Eingabe von Buchstaben" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Repräsentiert numerische Zeichen (0-9) - Erlaubt nur die Eingabe von " "Nummern" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Repräsentiert ein alphanumerisches Zeichen (A-Z,a-z,0-9) - Dies erlaubt " "die Eingabe von Nummern und Buchstaben." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Wenn Sie beispielsweise eine Maske für eine US-amerikanische Social Security " "Number erstellen möchten, geben Sie 999-99-9999 in das Feld ein." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "Die 9'er repräsentieren eine Zahl. Die Bindestriche würden automatisch " "hinzugefügt." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "" "Dies verhindert, dass der Benutzer etwas anderes als Zahlen in das Formular " "eingibt." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Sie können das mit verschiedenen Anwendungen kombinieren." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Wenn Sie beispielsweise einen Produkt-Schlüssel haben, der so aussieht: " "A4B51.989.B.43C können Sie das Feld mit a9a99.999.a.99a maskieren. Das " "bedeutet, dass alle a's nur Buchstaben zulässt und alle 9'er nur Zahlen." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Definierte Felder" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Favoriten-Felder" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Zahlungs-Felder" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Template-Felder" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Benutzerinformation" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Alle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Aktion wählen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Anwenden" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formulare pro Seite" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Los" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Zur ersten Seite gehen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Zur vorherigen Seite gehen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Aktuelle Seite" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Zur nächsten Seite gehen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Zur letzten Seite gehen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Formulartitel" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Dieses Formular löschen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Formular duplizieren" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formulare gelöscht" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formular gelöscht" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Formularvorschau" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Anzeige -" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Formulartitel anzeigen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Formular dieser Seite hinzufügen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Über AJAX senden (ohne Neuladen der Seite)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Erfolgreich komplettiertes Formular leeren?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Wenn dieses Feld aktiviert ist, löscht Ninja Forms die Werte im Formular, " "sobald dieses erfolgreich abgesendet wurde." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Fertiggestellte Formulare verstecken?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Aktivieren Sie dieses Kontrollkästchen, wenn das Formular ausgeblendet " "werden soll, wenn es erfolgreich abgeschickt wurde." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Beschränkungen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Müssen Benutzer zum Anzeigen des Formulars angemeldet sein?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Meldung über Nicht-Anmeldung" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Diese Meldung wird Benutzern angezeigt, wenn das \"Angemeldet\"-" "Kontrollkästchen oben aktiviert ist und die Benutzer nicht angemeldet sind." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Einreichungen begrenzen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Wählen Sie aus, wie viele Einreichungen dieses Formular akzeptieren soll. " "Freilassen, wenn keine Begrenzung." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Meldung über erreichten Grenzwert" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Geben Sie bitte eine Meldung ein, die angezeigt werden soll, wenn die " "Höchstzahl der Einreichungen für dieses Formular erreicht ist und keine " "weiteren Einreichungen mehr akzeptiert werden." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Formulareinstellungen gespeichert" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Allgemeine Einstellungen" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "(Ninja Formulare Standard-Hilfe wird demnächst hier erscheinen.)" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Ninja Formulare erweitern" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Dokumentation erscheint bald." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktiviert" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Installiert" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Mehr erfahren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Sichern/ Wiederherstellen" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Ninja Formulare sichern" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Ninja Formulare wiederherstellen" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Daten erfolgreich wiederhergestellt!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Favoriten-Felder importieren " #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Eine Datei auswählen" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Favoriten importieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Keine Favoriten-Felder gefunden" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Favouriten-Felder exportieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Felder exportieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Bitte wählen Sie eine gültige Felder-Exportdatei aus." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoriten wurden erfolgreich importiert." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Bitte wählen Sie eine gültige Favoriten-Felder-Datei aus." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Ein Formular importieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Formular importieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Ein Formular exportieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Formular exportieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Bitte wählen Sie ein Formular aus." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Das Formular wurde erfolgreich importiert." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Bitte wählen Sie eine gültige Formulardatei aus." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Einträge importieren/ exportieren" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Datumseinstellungen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Allgemein" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Allgemeine Einstellungen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Version" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Datumsformat" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Es wird versucht, die Spezifikationen für die %sFunktion PHP date()%s zu " "befolgen, aber es wird nicht jedes Format unterstützt." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Währungssymbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Einstellungen für reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Siteschlüssel für reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "" "Holen Sie sich einen Siteschlüssel für Ihre Domain, indem Sie sich %shier" "%sregistrieren." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Geheimer Schlüssel für reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Sprache für reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Von reCAPTCHA verwendete Sprache. Wenn Sie den Code für Ihre Sprache " "erhalten möchten, klicken Sie %shier%s." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Wenn dieses Feld aktiviert ist, werden bei der Löschung ALLE Ninja Forms-" "Daten aus der Datenbank entfernt. %sFormular- und Einreichungsdaten können " "nicht wiederhergestellt werden.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Administratorhinweise deaktivieren" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Dadurch werden niemals Administratorhinweise auf dem Dashboard von Ninja " "Forms angezeigt. Durch Deaktivieren werden diese wieder angezeigt." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Mit dieser Einstellung wird bei Löschen des Plugins alles, was mit Ninja " "Forms zusammenhängt, VOLLSTÄNDIG entfernt. Dazu zählen auch die " "EINREICHUNGEN und die FORMULARE. Diesen Vorgang können Sie nicht rückgängig " "machen." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Fortfahren" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Einstellungen gespeichert" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Beschriftungen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Beschriftung der Nachricht" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Pflichtfeld-Beschriftung" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Pflichtfeld-Symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "" "Fehlermeldung, welche angezeigt wird, wenn erforderliche Felder nicht " "ausgefüllt wurden" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Pflichtfeld-Fehler" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Antispam Fehlermeldung" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot-Fehlermeldung" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Timer-Fehlermeldung" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Fehlermeldung bei deaktiviertem JavaScript" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Bitte geben Sie eine gültige E-Mail Adresse an!" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Beschriftung bei Verarbeiten der Einreichung" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Diese Meldung wird in der Schaltfläche für die Einreichung angezeigt, sobald " "ein Benutzer auf \"Absenden\" klickt. So weiß er, dass die Verarbeitung " "läuft." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Beschriftung bei nicht übereinstimmendem Passwort" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Diese Meldung wird dem Benutzer angezeigt, wenn in das Passwortfeld Werte " "eingegeben werden, die nicht mit dem Passwort übereinstimmen." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Lizenzen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Speichern und Aktivieren" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Alle Lizenzen deaktivieren" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Um Lizenzen für Ninja Forms-Erweiterungen zu aktivieren, müssen Sie zunächst " "die gewählte Erweiterung %sinstallieren und aktivieren%s. Die " "Lizenzeinstellungen werden dann darunter angezeigt." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Konvertierung für Formulare zurücksetzen" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Konvertierung für Formular zurücksetzen" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Wenn die Formulare nach dem Update auf 2.9 \"fehlen\", versucht diese " "Schaltfläche die alten Formulare erneut zu konvertieren, damit sie in 2.9 " "angezeigt werden. Alle aktuellen Formulare verbleiben in der Tabelle \"Alle " "Formulare\"." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Alle aktuellen Formulare verbleiben in der Tabelle \"Alle Formulare\". In " "einigen Fällen werden Formulare durch diesen Vorgang dupliziert." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Administrator-E-Mail" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Empfänger E-Mail-Adresse" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms muss die Mitteilungen zu Ihren Formularen upgraden. Klicken Sie " "%shier%s, um das Upgrade zu starten." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms muss Ihre E-Mail-Einstellungen aktualisieren. Klicken Sie %shier" "%s, um das Upgrade zu starten." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms muss die Einreichungstabelle upgraden. Klicken Sie %shier%s, um " "das Upgrade zu starten." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Vielen Dank für die Aktualisierung auf Version 2.7 von Ninja Forms. " "Aktualisieren Sie bitte alle Ninja Forms-Erweiterungen von " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Ihre Version der Erweiterung Ninja Forms File Upload für das Hochladen von " "Dateien ist nicht mit Version 2.7 von Ninja Forms kompatibel. Sie muss " "mindestens Version 1.3.5 sein. Aktualisieren Sie diese Erweiterung bitte " "unter " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Ihre Version der Erweiterung Ninja Forms Save Progress ist nicht mit Version " "2.7 von Ninja Forms kompatibel. Sie muss mindestens Version 1.1.3 sein. " "Aktualisieren Sie diese Erweiterung bitte unter " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Aktualisieren der Formulardatenbank" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms muss Ihre Formulareinstellungen upgraden. Klicken Sie %shier%s, " "um das Upgrade zu starten." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms Upgrade – Verarbeitung" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "" "Bitte %swenden Sie sich an den Support%s und geben Sie dabei die oben " "stehende Fehlermeldung an." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms hat alle verfügbaren Upgrades abgeschlossen." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Zu den Formularen" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms-Upgrade" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Aktualisierung" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Upgrades abgeschlossen" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms muss %s Upgrade(s) verarbeiten. Das kann ein paar Minuten " "dauern. %sUpgrade starten%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Schritt %d von ungefähr %d läuft" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms-Systemstatus" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Stärkeindikator" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Sehr schwach" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Schwach" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Mittel" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Stark" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Keine Übereinstimmung" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Land auswählen" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "" "Wenn Sie ein Mensch sind und dieses Feld sehen, lassen Sie es bitte leer." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Felder mit einem * sind Pflichtfelder." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Das ist ein erforderliches Feld." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Bitte überprüfen Sie alle Pflichtfelder!" #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Berechnung" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Anzahl der Dezimalstellen." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Textbox" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Ausgabe berechnen als" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Beschriftung" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Eingabe deaktivieren?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Verwenden Sie den folgenden Shortcode, um die finale Berechnung einzufügen: " "[ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Hier können Sie mithilfe von \"field_x\" Gleichungen zur Berechnung " "eingeben, wobei das x die ID des Felds ist, das Sie verwenden möchten. " "Beispiel: %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Komplexe Gleichungen können durch Hinzufügen von Klammern erstellt werden: %s" "( field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Bitte verwenden Sie diese Operatoren: + - * /. Dies ist eine " "erweiterte Funktion. Schauen Sie nach Sachen wie Division durch 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automatische Gesamtwertberechnung" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Operationen und Felder angeben (Erweitert)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Eine Gleichung verwenden (Erweitert)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Berechnungsmethode" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Feldoperationen" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Operation hinzufügen" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Erweiterte Gleichung" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Berechneter Name" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Dies ist der programmatisch erzeugte Name Deines Feldes. Beispiele sind: " "my_calc, price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Standartwert" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Eigene CSS-Klasse" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Ein Feld auswählen" #: deprecated/includes/fields/checkbox.php:4 #: includes/Database/MockData.php:443 includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Kontrollkästchen" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Nicht ausgewählt" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Ausgewählt" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Dies anzeigen" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Dies verbergen" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Wert ändern" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albanien" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algerien" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Amerikanisch-Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarktis" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua und Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentinien" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenien" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australien" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Österreich" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Aserbaidschan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Weißrussland" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgien" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivien" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnien und Herzegowina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvetinsel" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasilien" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Britisches Territorium im Indischen Ozean" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgarien" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Kambodscha" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Kamerun" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Kanada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Kap Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Kaimaninseln" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Zentralafrikanische Republik" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Tschad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Weihnachtsinseln" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Islands" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Kolumbien" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Kongo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Kongo, Demokratische Republik des" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cook-Inseln" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Cote D'Ivoire" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Kroatien (Lokaler Name: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Kuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Zypern" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Tschechische Republik" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Dänemark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Dschibuti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominikanische Republik" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Osttimor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Ägypten" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Äquatorialguinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estland" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Äthopien" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falkland-Inseln (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Färöer" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fidschi" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finnland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Frankreich" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Frankreich, Mutterland" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Französisch-Guayana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Französisch-Polynesien" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Französische Süd- und Antarktisgebiete" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgien" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Deutschland" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Griechenland" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Grönland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard und McDonaldinseln" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Holy See (Vatikanstadt)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hongkong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Ungarn" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Island" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Indien" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesien" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Islamische Republik des)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irland" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italien" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaika" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordanien" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kasachstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenia" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Nordkorea" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Südkorea" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirgistan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Lettland" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Libanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Lybien" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Litauen" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemburg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macao" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Mazedonien" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagaskar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Malediven" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshallinseln" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauretanien" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexiko" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Mikronesien" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldawien" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolei" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marokko" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mosambik" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Niederlande" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Niederländische Antillen" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Neukaledonien (franz.)" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Neuseeland" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk-Inseln" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Nördliche Marianen" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norwegen" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua-Neuguinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Philippinen" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polen" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Katar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Réunion (franz.)" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Rumänien" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Russland (Russ. Föderation)" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts und Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "St. Vincent und die Grenadinen" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "São Tomé und Príncipe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi-Arabien" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbien" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychellen" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapur" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slowakei (Slowakische Republik)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slowenien" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Salomonen" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Südafrika" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Südgeorgien und die Südlichen Sandwichinseln" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spanien" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint Pierre und Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Surinam" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Spitzbergen (Inselgruppe v. Norwegen)" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Schweden" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Schweiz" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syrien" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tadschikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tansania" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad und Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunesien" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Türkei" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks und Caicos Islands" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraine" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Vereinigte Arabische Emirate" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Vereinigtes Königreich (GB)" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "USA - Vereinigte Staaten" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Usbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Britische Jungferninseln" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Amerikanische Jungferninseln" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis und Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Westsahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Jemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Jugoslawien" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Sambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Simbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Land" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Standardland" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Eine eigene erste Option verwenden" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Eigene erste Option" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "South Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Kreditkarte" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Beschriftung Kartennummer" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Kreditkartennummer" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Beschreibung Kartennummer" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "Die (typischerweise) 16 Ziffern auf der Vorderseite Ihrer Kreditkarte." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Beschriftung Kartenprüfnummer" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "Prüfziffer (CVC)" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Beschreibung Kartenprüfnummer" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "" "Wert der 3 Ziffern (Rückseite) ODER 4 Ziffern (Vorderseite) Ihrer " "Kreditkarte." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Beschriftung Kartenname" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Name auf der Karte" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Beschreibung Kartenname" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Der Name, welcher auf der Vorderseite Ihrer Kreditkarte angegeben ist." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Beschriftung Ablaufdatum Karte, Monat" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Monat des Ablaufdatums (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Beschreibung Ablaufdatum Karte, Monat" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "" "Der Monat, in dem Ihre Kreditkarte abläuft, üblicherweise auf der " "Vorderseite der Karte." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Beschriftung Ablaufdatum Karte, Jahr" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Jahr des Ablaufdatums (JJJJ)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Beschreibung Ablaufdatum Karte, Jahr" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "" "Das Jahr, in dem Ihre Kreditkarte abläuft, üblicherweise auf der Vorderseite " "der Karte." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Text" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Textelement" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Verborgenes Feld" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Benutzer-ID (falls angemeldet)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Benutzer Vorname (falls angemeldet)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Benutzer Nachname (falls angemeldet)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Benutzer Anzeigename (falls angemeldet)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Empfänger E-Mail Adresse (falls angemeldet)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Beitrags-/Seiten-ID (sofern verfügbar)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Beitrags-/Seitentitel (sofern verfügbar)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Beitrags-/Seiten-URL (sofern verfügbar)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Heutiges Datum" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Querystring-Variable" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "" "Dieses Keyword ist von WordPress reserviert. Bitte wählen Sie ein anderes." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Ist dies eine E-Mail Adresse?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Aktivieren Sie dieses Kontrollkästchen, wenn dieses Feld auf die Gültigkeit " "der E-Mail Adresse hin überprüft werden soll." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Eine Kopie des Formulars an diese E-Mail Adresse senden?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Aktivieren Sie dieses Kontrollkästchen, wenn nach dem Absenden des Formulars " "eine Kopie des Formularinhalts an diese E-Mail Adresse gesendet werden soll." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Liste" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Bundesland des Benutzers" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Gewählter Wert" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Wert hinzufügen" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Wert entfernen" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Berechnen" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Aufklappmenü" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Kontrollkästchen" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Mehrfachauswahl" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Listentyp" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Mehrfach-Auswahfeld Größe" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Listenartikel importieren" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Werte der Listenartikel anzeigen" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importieren" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "" "Um diese Funktion zu verwenden, können Sie Ihre CSV-Daten in das mehrzeilige " "Textfeld oben einfügen." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Das Format sollte folgendermaßen aussehen:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Beschriftung,Wert,Berechn." #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Wenn Sie einen leeren Wert oder eine leere Berechnung senden möchten, müssen " "Sie dafür \" verwenden." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Ausgewählt" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Zahl" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Mindestwert" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Höchstwert" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Schritt (Menge, um die erhöht wird)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizer" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Passwort" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Verwenden Sie dies als das Registrierungs-Passwort-Feld" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Wenn diese Box aktiviert wird, wird das Passwortfeld zweimal ausgegeben (ein " "Normales und eines zur Bestätigung). " #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Beschriftung des \"Passwort erneut eingeben\"-Feldes" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Passwort erneut eingeben" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Zeige Passwortstärke-Anzeige" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Hinweis: Das Passwort sollte zumindest sieben Zeichen lang sein. Um es noch " "sicherer zu machen, sollten Sie Groß- und Kleinbuchstaben, Zahlen und " "Symbole wie z.B. ! \" ? $ % ^ & ) verwenden." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Die Passwörter stimmen nicht überein" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Stern-Bewertung" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Anzahl der Sterne" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Bestätigen Sie, dass Sie kein Bot sind" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Bitte füllen Sie das Captcha-Feld aus" #: deprecated/includes/fields/recaptcha.php:98 #: includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "" "Bitte überprüfen Sie, ob Sie Ihre Website- und geheimen Schlüssel korrekt " "eingegeben haben" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "" "Captcha-Einträge stimmen nicht überein. Bitte geben Sie den richtigen Wert " "ins Captcha-Feld ein." #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Antispam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Spam-Frage" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Spam-Antwort" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Absenden" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Steuer" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Steuer-Prozentsatz" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Sollte als ein Prozentsatz angegeben werden, z.B. 19%, 7%" #: deprecated/includes/fields/textarea.php:4 #: includes/Database/MockData.php:382 includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "mehrz. Textfeld" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Eleganten Editor anzeigen" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Dateien hochladen Button anzeigen" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Visuellen Editor auf mobilen Geräten deaktivieren" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Als E-Mail-Adresse überprüfen? (Feld muss Pflichtfeld sein)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Eingabe deaktivieren" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datumswähler" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefon - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Währung" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Benutzerdefinierte Maskendefinition" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Hilfe" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Zeitgesteuertes Absenden" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "" "Text auf der Schaltfläche zum Absenden, nachdem die Zeit abgelaufen ist" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Bitte warten Sie %n Sekunden" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n gibt die Anzahl von Sekunden an" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Anzahl der Sekunden für den Countdown" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "So lange muss ein Benutzer warten, um das Formular abzusenden" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Wenn Sie ein Mensch sind, gehen Sie bitte langsamer vor." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Zum Absenden dieses Formulars benötigen Sie JavaScript. Bitte aktivieren Sie " "es und versuchen Sie es noch einmal." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Feldzuordnung aufführen" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Interessengruppen" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Einzel" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Mehrere" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listen" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "aktualisieren" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metafeld" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Metafeld für Einreichung" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Benutzermeta (sofern angemeldet)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Zahlung kassieren" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Keine Formulare gefunden." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Erstellungsdatum" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "Titel" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "aktualisiert" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Der Versuch ist leider fehlgeschlagen" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Übergeordneter Artikel:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Alle Einträge" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Neuer Eintrag" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Neuer Eintrag" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Bearbeite Eintrag" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Artikel aktualisieren" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Betrachte Eintrag." #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Eintrag suchen" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Im Papierkorb nicht gefunden" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Formular-Einträge" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Infos zur Einreichung" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Neues Formular hinzufügen" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Importfehler Formularvorlage" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Felder" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Die hochgeladene Datei besitzt kein gültiges Format." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Ungültiger Formular-Upload." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Formulare importieren" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Formulare exportieren" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Gleichung (Erweitert)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operationen und Felder (Erweitert)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Auto-Summenfelder" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Die hochgeladene Datei überschreitet die upload_max_filesize-Richtlinie in " "php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Die hochgeladene Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im " "HTML-Formular angegeben wurde." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Nur Teile der Datei wurden hochgeladen." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Keine Datei hochgeladen." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Der temporary Ordner fehlt." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Kann die Datei nicht schreiben." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Der Datei-Upload wurde von einer Erweiterung gestoppt." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Unbekannter Fehler beim Hochladen." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Fehler Datei-Upload" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Add-on-Lizenzen" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrations- und Simulationsdaten vollständig. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Formulare anzeigen" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Einstelllungen speichern" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Server-IP-Adresse" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Host-Name" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "SMTP_Port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Ninja Forms anhängen" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Formular nicht gefunden" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Feld nicht gefunden" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Ein unerwarteter Fehler ist aufgetreten." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Vorschau ist nicht vorhanden." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Zahlungs Gateways" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Zahlungssumme" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Hook-Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "E-Mail-Adresse oder nach einem Feld suchen" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Betrefftext oder nach einem Feld suchen" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "CSV anhängen" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Webseite" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Beschriftung hier" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Hilfetext hier" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Geben Sie die Beschriftung des Formularfelds ein. Darüber erkennen die " "Benutzer die einzelnen Felder." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Formularstandard" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Verborgen" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "" "Wählen Sie die Position Ihrer Beschriftung relativ zum Feldelement selbst." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Erforderliches Feld" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Achten Sie darauf, dass dieses Feld ausgefüllt wurde, bevor Sie das Absenden " "des Formulars gestatten." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Zahlenoptionen" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min." #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max." #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Schritt" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Optionen" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Einer" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "1" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Zwei" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "zwei" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Drei" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "drei" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Berechnungswert" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "" "Begrenzt die Art der Eingabe, die Ihre Benutzer in diesem Feld vornehmen " "können." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "nichts" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "US-Telefon" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "benutzerdefiniert" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Benutzerdefinierte Maske" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n" "
    • a - Stellt ein alphabetisches Zeichen dar (A-" "Z, a-z) - Es dürfen nur Buchstaben eingegeben werden.
    • \n" "
    • 9 - Stellt ein numerisches Zeichen dar (0-9) " "- Es dürfen nur Zahlen eingegeben werden.
    • \n" "
    • * - Stellt ein alphanumerisches Zeichen dar " "(A-Z, a-z, 0-9) - Es dürfen Zahlen und\n" " Buchstaben eingegeben werden.
    • \n" "
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Eingabe für diese Zahl begrenzen" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Zeichen" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Wort/Wörter" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Text, der nach dem Zähler angezeigt werden soll" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Zeichen übrig" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Geben Sie Text ein, der in dem Feld angezeigt werden soll, bevor der " "Benutzer Daten eingibt." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Benutzerdefinierte Klassennamen" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Behälter" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Fügt Ihrem Feld-Wrapper eine zusätzliche Klasse hinzu." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Fügt Ihrem Feldelement eine zusätzliche Klasse hinzu." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "JJJJ-MM-TT" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Freitag, 18. November 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Standard ist aktuelles Datum" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Anzahl von Sekunden für zeitgesteuertes Absenden." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Feldschlüssel" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Erstellt einen eindeutigen Schlüssel zum Identifizieren und Auswählen Ihres " "Felds zur benutzerspezifischen Entwicklung." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Beschriftung beim Anzeigen und Exportieren von Einreichungen." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Wird den Benutzern als Tooltipp angezeigt." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Beschreibung" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Als numerisch sortieren" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Diese Spalte in der Einreichungstabelle wird nach Zahlen sortiert." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Anzahl der Sekunden für den Countdown" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Verwenden Sie dies als Feld für das Registrierungspasswort. Wenn dieses Feld " "aktiviert ist, werden\n" " die Textfelder für das Passwort und die wiederholte " "Eingabe des Passworts ausgegeben." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Bestätigen" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Gestattet Rich-Text-Eingabe." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Beschriftung Verarbeitung" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Berechnungswert aktiviert" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "" "Wenn das Feld aktiviert ist, wird diese Zahl in Berechnungen verwendet." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Berechnungswert deaktiviert" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "" "Wenn das Feld nicht aktiviert ist, wird diese Zahl in Berechnungen verwendet." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Diese Berechnungsvariable anzeigen" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Variable auswählen" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Preis" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Anzahl verwenden" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Gestattet Benutzern, dieses Produkt mehrmals auszuwählen." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Produkttyp" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Einzelprodukt (Standard)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multiprodukt - Dropdown" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multiprodukt - Mehrere wählen" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multiprodukt - Eines wählen" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Benutzereingabe" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Preis" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Kostenoptionen" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Einzelkosten" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Kosten-Dropdown" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Kostentyp" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produkt" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Produkt auswählen" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Antwort" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "" "Eine Antwort, bei der die Klein- und Großschreibung eine Rolle spielt, um " "Spam-Einreichungen Ihres Formulars zu vermeiden." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomie" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Neue Begriffe hinzufügen" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Dies ist der Zustand eines Benutzers." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Dient zum Kennzeichnen eines Felds zur Verarbeitung." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Gespeicherte Felder" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Gemeinsame Felder" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Benutzerinformationsfelder" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Preisfelder" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Layout-Felder" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Sonstige Felder" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Ihr Formular wurde erfolgreich gesendet." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Ninja Forms-Einreichung" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Einreichung speichern" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Variablenname" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Gleichung" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Standardbeschriftungsposition" #: includes/Config/FormDisplaySettings.php:111 #: includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Formular Schlüssel" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "" "Programmatischer Name, der als Referenz für dieses Formular verwendet werden " "kann." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Schaltfläche zum Absenden hinzufügen" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Wir haben festgestellt, dass sich auf Ihrem Formular keine Schaltfläche zum " "Absenden befindet. Für können für Sie automatisch eine hinzufügen." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Eingeloggt" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Gilt für die Formularvorschau." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Einsendelimit" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Gilt NICHT für die Formularvorschau." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Zeige Einstellungen" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Berechnungen" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Preis:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Menge:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Hinzufügen" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "In neuem Fenster öffnen" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "" "Wenn Sie ein Mensch sind und dieses Feld sehen, lassen Sie es bitte leer." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Verfügbar" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Geben Sie bitte eine gültige E-Mail-Adresse ein!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Diese Felder müssen übereinstimmen!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Fehler bei Zahlminimum" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Fehler bei Zahlmaximum" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Bitte erhöhen um " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Link einfügen" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Medium einfügen" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Korrigieren Sie bitte die Fehler, bevor Sie dieses Formular absenden." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot-Fehler" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Datei-Upload läuft." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "DATEI-UPLOAD" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Alle Felder" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Untersequenz" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Artikel ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Inhaltstyp-Überschrift" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Beitrag-URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP Addresse" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "Benutzer ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Vorname" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Nachname" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Anzeigename" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Vorgefertigte Stile" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Hell" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Dunkel" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Standardstilkonventionen von Ninja Forms verwenden." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Rollback" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Rollback auf v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Rollback auf die letzte 2.9.x-Version." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha-Einstellungen" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA-Theme" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Rich-Text-Editor (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Erweiterte Einstellungen" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Verwaltung" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Leere Formulare" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Kontakt" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Erfolgsmeldungsaktion simulieren" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Vielen Dank für das Ausfüllen des Formulars, {field:name}!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "E-Mail-Aktion simulieren" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Dies ist eine E-Mail-Aktion." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hallo Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Speicheraktion simulieren" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Dies ist ein Test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "Max Mustermann" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "benutzer@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Dies ist ein weiterer Test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Hilfe erhalten" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Wobei können wir Sie unterstützen?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Einverstanden?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Beste Kontaktmethode?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telefon" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Post" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Senden" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Küchenspüle" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Liste auswählen" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Option 1" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Option 2" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Option 3" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Liste mit Optionsfeldern" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Waschbecken" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Liste mit Kontrollkästchen" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Dies sind alle Felder im Bereich „Benutzerinformationen“." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Adresse" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Veranstaltungsort" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Postleitzahl" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Dies sind alle Felder im Bereich „Preise“." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produkt (Menge inkl.)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produkt (Menge separat)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Häufigkeit" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Gesamtpreis" #: includes/Database/MockData.php:735 #: includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Kreditkarte Vollständiger Name" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Kreditkartennummer" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Kreditkarte Prüfziffer" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Kreditkarte Ablauf" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Kreditkarte PLZ" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Es gibt verschiedene Sonderfelder." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Spamabwehr-Frage (Antwort = Antwort)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "Antwort" #: includes/Database/MockData.php:805 msgid "processing" msgstr "Verarbeitung läuft" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Langes Formular " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Felder" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Feld Nr." #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Formular E-Mail-Abonnement" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "E-Mail-Adresse" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "E-Mail-Adresse eingeben" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Abonnieren" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Produktformular (mit Mengenfeld)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Kaufen" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Sie haben gekauft: " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "Produkt(e) für " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Produktformular (Inline-Menge)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " Produkt(e) für " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Produktformular (mehrere Produkte)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produkt A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Menge für Produkt A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produkt B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Menge für Produkt B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "von Produkt A und " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "von Produkt B für $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formular mit Berechnungen" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Meine erste Berechnung" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Meine zweite Berechnung" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Berechnungen werden mit AJAX-Response zurückgegeben (Response -> Daten -> " "Berechnungen)" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Kopieren" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Formular speichern" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Kreditkarte PLZ" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Sie müssen angemeldet sein, um die Formularvorschau zu sehen." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Keine Felder gefunden." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Hinweis: Ninja Forms-Shortcode ohne Angabe eines Formulars verwendet." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms-Shortcode ohne Angabe eines Formulars verwendet." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Adressfeld 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Button" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Einzelnes Kontrollkästchen" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "ausgewählt" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "nicht ausgewählt" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Kreditkarte Prüfziffer" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d.m.Y" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Trennung" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Auswählen" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Staat / Bundesland" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "" "Hinweistext kann im Hinweisfeld der erweiterten Einstellungen unten " "bearbeitet werden." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Achtung" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Passwortbestätigung" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "Passwort" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Füllen Sie bitte das recaptcha aus" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Erweiterte Versandoptionen" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Fragen" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Frageposition" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Ungültige Antwort" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Anzahl der Sterne" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Begriffliste" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "" "Für diese Taxonomie stehen keine Begriffe zur Verfügung. %sBegriff hinzufügen" "%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Keine Taxonomie ausgewählt." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Verfügbare Begriffe" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Textabsatz" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Einzelne Textzeile" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Zip" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Post" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Querystrings" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Übergabe String" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Benutzer" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " muss aktualisiert werden. Sie haben Version " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " installiert. Die aktuelle Version ist " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Bearbeitungsfeld" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Etikettenname" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Über Feld" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Unter Feld" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Links vom Feld" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Rechts vom Feld" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Etikett ausblenden" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Klassenname" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Grundfelder" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Mehrfachauswahl" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Neues Feld hinzufügen" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Neue Aktion hinzufügen" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Menü erweitern" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Veröffentlichen" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "VERÖFFENTLICHEN" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Wird geladen" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Änderungen anzeigen" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Formularfelder hinzufügen" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Beginnen Sie, indem Sie Ihr erstes Formularfeld hinzufügen." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Neues Feld hinzufügen" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Klicken Sie einfach hier und wählen Sie das gewünschte Feld aus." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "So einfach ist das. Oder..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Mit einer Vorlage beginnen" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Kontaktieren Sie uns" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Erlauben Sie Benutzern, sich über dieses einfache Kontaktformular an Sie zu " "wenden. Sie können Felder nach Bedarf hinzufügen oder entfernen." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Angebotsanfrage" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Verwalten Sie Angebotsanfragen mit dieser Vorlage ganz unkompliziert von " "Ihrer Website aus. Sie können Felder nach Bedarf hinzufügen oder entfernen." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Event-Registrierung" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Erlauben Sie Benutzern sich ganz einfach für Ihre nächste Veranstaltung zu " "registrieren, indem sie dieses Formular ausfüllen. Sie können Felder nach " "Bedarf hinzufügen oder entfernen." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Registrierungsformular für Newsletter" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Fügen Sie mithilfe dieses Registrierungsformulars für Newsletter Abonnenten " "Ihrer E-Mail-Liste hinzu, so dass die Liste immer weiter wächst. Sie können " "Felder nach Bedarf hinzufügen oder entfernen." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Formularaktionen hinzufügen" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Beginnen Sie, indem Sie Ihr erstes Formularfeld hinzufügen. Klicken Sie " "einfach auf das Plus-Zeichen und wählen Sie die gewünschte Aktion aus. So " "einfach ist das." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplizieren (^ + C + Klick)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Löschen (^ + D + Klick)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Aktion" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Fach umschalten" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Vollbild" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Halber Bildschirm" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Rückgängig" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Fertig" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Alles rückgängig" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Alles rückgängig" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Fast fertig ..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Noch nicht" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " In neuem Fenster öffnen" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Deaktivieren" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Beheben." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Formular auswählen" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Aktuelles Datum" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "" "Bitte lesen Sie sich Folgendes durch, bevor Sie sich an unser Support-Team " "wenden:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE-Dokumentation" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Was Sie versuchen sollten, bevor Sie sich an den Support wenden" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Supportumfang" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Felder importieren" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Aktualisiert am: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Abgesendet am: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Abgesendet von: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Eingereichte Daten" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Anzeigen" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Zeige mehr" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Bearbeitungsfeld" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Formularfelder" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Änderungen in der Vorschau anzeigen" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Kontaktformular" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Ups! Das Add-on ist noch nicht mit Ninja Forms THREE kompatibel. %sWeitere " "Informationen%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s wurde deaktiviert." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Helfen Sie mit Ninja Forms zu verbessern!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Wenn Sie sich einverstanden erklären, werden einige Daten über Ihre " "Installation von Ninja Forms an Ninja Forms.com gesendet (NICHT Ihre " "Einreichungen)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "" "Es ist in Ordnung, dies zu überspringen! Ninja Forms funktioniert dennoch " "einwandfrei." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sZulassen%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sNicht zulassen%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Sie haben keine Berechtigung." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Berechtigung verweigert" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEBUG: Zu 2.9.x wechseln" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEBUG: Zu 3.0.x wechseln" lang/ninja-forms-ja.mo000064400000314071152331132460010643 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8GF,^f?_4W2% > I TuV "/J\n C]%i=Sfy  (;'T| $$'$Cb= Yfm?u<& 6 CPfv  *=0xH -   +8?F*Y'   6Ie -' @JZpt i q {  '3:'n  $ !;Zy      C'k{ W!!2'T'|'' &6Oh{~  '!.Pi| 9"$7G `Rj?0Fe{ d x''C$k'009,I v  ',B$^$*  ' '1Y-^  -!&xH!$ !. P*ZG '7_ov?B8HQ! ! .AW _*iK0-5E['b*!:\l   +6G6~N?D `Zjl2  %o/ %32$f!!!'!5EW3<@Pat'"$ *$-OW}" $  $ D 9`  $  '  <, i    $   ' 2 B $X }            %  / !9 [ t  ! e 9+ e   =G^Z7P iv 0   ! &0'I q 6&]. AO bl! !(Zk~]luu@rQ){Y=e3$C-h0!! *'Iq"7   9 C V f $m      '!+!-J!x!!! !!*!!$ " 0"="M",T"" "T"" " # ##3# L#Y#i# |## ##Q# $ $o*$$$$ $!$ %,%9<%)v% %%% % % %%&#&)&9&U&e& &'&& &&&&' ''6' L' W' b'3l'' '''' ''(((( (') 0) :) G) T)^)n))F* Y*f*4* * ** *-*!+>+-]+ ++ + ++++ +' ,3, F,S,r,', ,$,,,--.->-E-X- w- -- - -$--... ...5/M/]/m// ////*/0%0*60/a000$001%1312H233z4(55677X08 8 8-8?8* 9'699^9P9<99&:`:9|::::::;(; G;fQ;;;b;W<^<w<<<<<!<!=5= E=R=4T=t==$><>O>a>s>> >!>>>>> ??-?4? D? N?X?t?????!?$?@0@@@'P@ x@@ @@@@AA^A<-B0jB1B$BEBH8CC9-D<gD<D/DQE+cE9EQEF<F*'GWRGQGTGQHH9H0I@IPIoI I%I/I&I JJJ /J=JMJcJ'JJJJ JJJKK+KJKRK*ZK$K3KKEK4L;LNL UL bLmL~LLLLLL LLM'M>M!WMQyM MMMXM HN+UN[N NfNNOUOkOOO0O0OG'PoPvP0PPPZP5Q KQ*UQQQQ=QQR'R :RGRLR(dR!RR9R RSS5SKSRSbSSSSSSS T T(T8TQTaT3qTTT0TvUWyU UUUEU ;V HVUVpVwVV VV=VW0#W TW3^W*WW!W6W&X9X LX$YX~XX$X XXXY YY YYYY?Y'Z 7Z!DZ!fZ-ZZZ'Z[ [!$[F[\[ c[)p[-[[[[[3\36\j\ q\{\ \\\ \\\]\Q=] ] ] ] ] ]]] ] ]9^=^P^ c^m^ ^^^^^a^A_`_d_k_!~___ __3`I5````K`aaZbcWcGt}m}!~<~~N <!UHw6ـ2#-V!66!'!I$kO  !1D Ta hrȄ-G `$jم߆jSZp -H?0 pc}      " - 8ELiъ;LKO$<KBIz30L}d\Sd`zۑҒ Гݓ  `h o  Ô Дܔ2 ;GM`dv  ԕޕ  =P` gq s 3O Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . フィールド 新しい画面で開く すべて元に戻す がインストールされています。現在のバージョンは 個の商品、価格 は更新が必要です。バージョン #%1$s のドラフトが更新されました。 プレビュー%3$s%1$sが改訂するために %2$sから復元されました。%1$s 予定日: %2$sプレビュー%4$s%1$s が送信されました。 プレビュー%3$s「%n」は秒数を示すために使用します%s前%s 公開されました保存: %s更新: %s%sは無効化されました。%s許可する%s%sオン%s計算値%s許可しない%s%sオフ%s計算値* - 英数字 (A~Z、a~z、0~9) を表し、文字も数字も入力できます- なし- 1つ選択- フィールドを選択- 商品を選択- 変数を選択- フォームを選択- すべてのタイプを表示9 - 数字 (0~9) を表し、数字以外は入力できません
    • a - アルファベット文字(A~Z、a~z)を表します。文字のみを入力できます。
    • 9 - 数字(0~9)を表します。数字のみを入力できます。
    • * - 英数字(A~Z、a~z、0~9)を表します。この場合数字と文字の両方を 入力できます。
    フォームのスパム送信を防ぐため、大文字と小文字を区別する答え。Ninja Forms では大規模な更新を予定しています。 %s新しい機能、下位互換性、そしてよくある質問に関する詳細をご覧ください。%sシンプル、かつよりパワフルになったフォーム作成をお楽しみいただけます。エレメントの上フィールド上アクション名更新されたアクションアクション有効化有効追加説明を追加フォームを追加新規追加新規フィールドの追加フォームを追加新規商品追加新しい送信を追加新しい使用条件>>>を追加演算を追加送信ボタンの追加値の追加フォームアクションを追加フォームフィールドを追加このページにフォームを追加新規アクションを追加新規フィールドを追加このニュースレター サインアップ フォームで購読者を追加し、メーリングリストを拡大しましょう。必要に応じてフィールドを追加したり削除したりできます。アドオンライセンスアドオン番地住所2フィールドエレメントにクラスを追加します。フィールドラッパーにクラスを追加します。管理者のメール管理ラベル管理上級高度な数式詳細設定高度配送アフガニスタンすべての後フォームの後ラベル後同意されますか?アルバニアアルジェリアすべてフォームについてすべてのフィールドすべてのフォームすべての項目現在のフォームはすべて、「すべてのフォーム」表に残ります。 場合によっては、この処理中に複製されるフォームもあります。この簡単に入力できるフォームで、ユーザーが次回イベントに登録できるようにします。必要に応じてフィールドを追加したり削除したりできます。このシンプルな連絡先フォームで、ユーザーがあなたに連絡できるようにします。必要に応じてフィールドを追加したり削除したりできます。リッチテキスト入力を許可します。ユーザーがこの商品を複数選択できるようにします。もうすぐ完了します...「フォームを作成」タブに加えて、「通知」を「メール & アクション」に変更しました。 これで、このタブで行う操作がより明確になりました。米サモア予期せぬエラーが発生しました。アンドラアンゴラアンギラ回答南極アンチスパムスパム防止の質問 (Answer = answer)スパム防止エラーメッセージアンチグアバーブーダ以下のリストにない文字を「カスタムマスク」ボックスに入力すると、ユーザーがタイプする際に自動的に入力され、削除することはできません。Ninja Form を追加Ninja Formsを追加ページに追加適用アルゼンチンアルメニアアルバCSV添付添付ファイルオーストラリアオーストリア自動合計フィールド自動的に計算値を合計利用可能利用可能な使用条件>>>>>>アゼルバイジャンリストに戻るリストに戻るバックアップ/復元Ninja Forms をバックアップするバハマバーレーンバングラデシュBarバルバドスベーシックフィールド基本設定バスルームの洗面台BazBccすべての前フォームの前ラベルの前弊社のサポートチームにお問い合わせいただく前にこちらをご確認ください:開始日Being Dateベラルーシベルギーベリーズエレメントの下フィールド下ベナンバミューダご希望の連絡方法は?ビジネス界で最高のサポート使いやすく整理されたフィールド設定ライセンス管理がスムーズにブータン請求空白のフォームボリビアボスニア・ヘルツェゴビナボツワナブーベ島ブラジルイギリス領インド洋地域ブルネイ・ダルサラム自分でフォームを作成ブルガリア一括操作ブルキナファソブルンジボタンCVC (半角数字。例: 123)計算計算値計算計算方法計算の設定計算名計算計算はAJAX応答で返されます(応答→データ→計算カンボジアカメルーンカナダキャンセルカーボベルデCAPTCHAの不一致。 CAPTCHAフィールドに正しい値を入力してくださいカード確認コードの説明カード確認コードラベルカード有効期限(月)の説明カード有効期限(月)ラベルカード有効期限(年)の説明カード有効期限(年)ラベルカード名義の説明カード名義ラベルカード番号カード番号の説明カード番号ラベルケイマン諸島Cc中央アフリカ共和国チャド値を変更文字文字入力可能文字数間違えましたか ?ドキュメンテーションを確認チェックボックスチェックボックスリストチェックボックスチェック済みオン計算値チリ中国クリスマス島市区町村クラス名完了したフォームの内容を削除しますか?ココス (キーリング) 諸島支払いの回収コロンビア共通のフィールドコモロ複雑な式は括弧を追加して作ります: %s( field_45 * field_2 ) / 2%s確認あなたがボットでないことを確認してくださいコンゴ共和国コンゴ民主共和国連絡先フォーム私まで連絡をくださいお問い合わせ先コンテナー次へクック諸島コストコストドロップダウンコストオプションコストの種類コスタリカコートジボワールライセンスを有効にできませんでした。 ライセンスキーをご確認ください国カスタム開発用にフィールドを識別してターゲットとするための固有キーを作成します。クレジットカードクレジットカード確認コードクレジットカード確認コードクレジットカード有効期限クレジットカード名義人氏名クレジットカード番号クレジットカード郵便番号(米国)クレジットカード郵便番号(米国)クレジットクロアチア (現地名: フルバツカ)キューバ通貨通貨記号現在のページカスタムカスタムCSSクラスカスタム CSS クラスカスタムクラス名カスタムフィールドグループカスタムマスクカスタムマスク定義カスタムフィールドの削除カスタムフィールドの更新カスタムファーストオプションキプロスチェコ共和国DD-MM-YYYYDD/MM/YYYYデバッグ:2.9.x に切り替えるデバッグ:3.0.x に切り替えるDarkデータは正常に復元されました!日付作成日日付フォーマット日付け設定送信日更新日日付の選択解除停止すべてのライセンスを無効にするライセンスを無効にするNinja Forms 拡張機能ライセンスを、設定タブから個別またはグループ単位で無効にします。デフォルトデフォルトの国デフォルトのラベル位置デフォルトのタイムゾーン現在の日付にデフォルト既定値デフォルトのタイムゾーンは %sデフォルトのタイムゾーンは%s - UTCの必要があります定義済みフィールド削除削除 (^ + D + クリック)永久削除このフォームを削除永久にこの項目を削除しますデンマーク説明説明の内容説明の位置長いフォームをより取り組みやすい小さなパートに分割することで、フォームのコンバージョンを増加させることができるのをご存知でした?

    Ninja Forms のマルチパートフォーム拡張機能を使用すれば、迅速かつ簡単に実行できます。

    管理通知を無効にするブラウザのオートコンプリート機能を無効にする入力を無効にするモバイル端末でリッチテキストエディタを無効にする入力を無効にしますか?非表示表示フォームタイトルを表示表示される名前表示設定この計算変数を表示表示タイトルフォームの表示Dividerジブチこれらの使用条件を表示しないドキュメンテーションドキュメンテーションは間もなくご利用いただけます。ドキュメンテーションでは、%sトラブルシューティング%s から %s開発者API %s まで幅広くカバーしています。 新しいドキュメンテーションが随時追加されます。フォームプレビューに適用しない。フォームプレビューに適用する。ドミニカ国ドミニカ共和国終了すべての送信をダウンロードドロップダウンリスト重複複製 (^ + C + クリック)フォームを複製エクアドル編集アクションを編集フォームの編集項目を編集メニューアイテムを編集送信を編集このアイテムをで編集編集フィールド編集フィールドエジプトエルサルバドルエレメントメールメール&アクションEメールメール本文メール登録フォームメールアドレスまたはフィールドを検索メールアドレスまたはフィールドを検索ここで登録したメールアドレスがメールに表示されます。ここで登録した名前がメールに表示されます。メール&アクション終了日必ずフォームを送信する前にこのフィールドに入力してください。ユーザーがデータを入力する前にフィールドに表示するテキストを入力します。フォームフィールドのラベルを入力します。 このようにしてユーザーが個別のフィールドを識別します。メール アドレスの入力環境方程式数式(高度)赤道ギニアエリトリアエラーすべての必須フィールドに入力していない場合、エラーメッセージが表示されますエストニアエチオピアイベント登録メニューを広げる有効期限(月:2桁)有効期限(年:4桁)書き出しお気に入りフィールドをエクスポートフィールドをエクスポートフォームをエクスポートフォームをエクスポートフォームのエクスポートこのアイテムをエクスポートNinja Forms を延長するファイルのアップロードディスクへのファイルの書き込みに失敗しました。フォークランド諸島 (マルビナス諸島)フェロー諸島お気に入りフィールドお気に入りは正常にインポートされました!フィールドフィールド#フィールド IDフィールドキーフィールドが見つかりませんフィールド演算項目*のついた欄は必須です。%s*%s のついた欄は必須ですフィジーファイルのアップロードエラーファイルのアップロード中です。拡張モジュールによってファイルアップロードが停止しました。フィンランド名(ローマ字 - 例:Taro)修正するFooFoo Bar例えば、A4B51.989.B.43C という形式の製品キーをお持ちの場合、 a9a99.999.a.99a とマスク表示させることができます。a 部分には文字、9 の部分には数字がきますフォーム:フォームデフォルトフォームが削除されましたフォームフィールドフォームは正常にインポートされました。フォーム識別子フォームが見つかりませんフォームプレビューフォーム設定を保存しましたフォーム送信フォームテンプレートのインポートエラー。フォームタイトル計算機能つきフォームフォーマットフォームフォームが削除されましたフォーム/ページフランスフランス・メトロポリテーヌ仏領ギアナ仏領ポリネシアフランス領南方・南極地域2019年11月18日金曜日送信者アドレス送信者名すべての変更ログフルスクリーンガボンガンビア一般一般設定ジョージアドイツヘルプさらにアクションを取得他のタイプを取得ヘルプを利用するサポートを依頼システムレポートを見る %sこちらで%s登録して、ドメインで使用するサイトキーを入手してくださいフォームフィールドの追加から始めます。フォームフィールドの追加から始めます。プラス記号をクリックして必要なアクションを選択するだけです。とても簡単です。はじめにNinja Forms を使い始めるガーナジブラルタルフォームにタイトルを付けます。 こうすれば、後で見つけられます。表示失敗しましたフォームに移動Ninja Forms に移動最初のページに戻る最後のページに移動次のページに進む前のページに戻るギリシャグリーンランドグレナダさらに充実のドキュメンテーショングアドループグアムグアテマラギニアギニアビサウガイアナHTMLハイチハーフスクリーンハード島とマクドナルド諸島こんにちは、Ninja Forms!ヘルプヘルプテキストここにヘルプテキストhiddenフィールド非表示のフィールドラベルを隠すこれを隠す完了したフォームを非表示にしますか?ヒント: パスワードは7文字以上にしてください。 より安全にするために、大文字と小文字、数字、および以下のような記号を使用します:! " ? $ % ^ & )バチカン市国ホーム URLホンジュラスHoney PotHoneypot エラーHoneypot エラーメッセージ香港タグの接続>>>>>ホスト名いかがお過ごしですか?ハンガリーIPアドレスアイスランド「説明テキスト」が有効の場合、クエスチョンマーク %s が入力フィールドの横に表示されます。 このクエスチョンマークの上を通過すると、説明テキストが表示されます。「ヘルプテキスト」が有効の場合、クエスチョンマーク %s が入力フィールドの横に表示されます。 このクエスチョンマークの上を通過すると、ヘルプテキストが表示されます。この欄がオンの場合、削除時にすべての Ninja Forms データがデータベースから削除されます。 %sすべてのフォームおよび送信データは回復不能です。%sこの欄がオンの場合、フォームが正常に送信された後、Ninja Forms によりフォームの数値が削除されます。この欄がオンの場合、フォームが正常に送信された後、Ninja Forms によりフォームが非表示になります。この欄がオンの場合、Ninja Formsがこのフォームのコピー(および添付メッセージ)をこのアドレスに送信します。この欄がオンの場合、Ninja Formsがこの入力をメールアドレスとして確認します。この欄がオンの場合、パスワードと再入力パスワードの両方のテキストボックスを出力します。この欄がオンの場合、送信表にあるこの列は数字でソートされます。あなたがヒトでこのフィールドをご覧になっている場合、空白にしておいてください。あなたがヒトでこのフィールドをご覧になっている場合、空白にしておいてください。あなたがもし機械でなく人間でしたら、少しスピードを落としてください。>>>>ボックス内に何も入力されていない場合、無制限となりますオプトインされると、お客様のNinja Formsインストールに関するデータの一部がNinjaForms.comへ送信されます(お客様の送信内容は含まれません)。スキップされてもかまいません。Ninja Formsは通常通り稼働します。値または計算を空欄にして送信する場合には「''」を代わりに入力します。ユーザーが送信をクリックした際、メールでフォームからの通知を希望される場合には、このタブ上で設定できます。 フォームに記入したユーザーに対するメールを含め、メールの作成数に制限はありません。2.9 にアップデート後ぶフォームが「見当たらない」場合は、このボタンが 2.9 で表示するために古いフォームを再変換しようと働きかけます。 現在のフォームはすべて、「すべてのフォーム」表に残ります。インポートインポート / エクスポート送信のインポート / エクスポートお気に入りフィールドをインポートお気に入りのインポートフィールドのインポートフォームをインポートフォームのインポートリストアイテムのインポートフォームのインポートインポート/エクスポート分かりやすさが向上自動合計に含めますか? (有効の場合)間違った答えコンバージョンを増加インドインドネシア入力マスク挿入すべてのフィールドを挿入フィールドを挿入リンクを挿入メディアを挿入エレメント内部インストール済みインストール済みプラグインインタレストグループ無効なフォームのアップロード。無効なフォーム IDイラン・イスラム共和国イラクアイルランドこれはメールアドレスですか?イスラエルとても簡単です。または…イタリアジャマイカ日本JavaScript 無効のエラーメッセージJohn Doeヨルダンこちらをクリックして必要なフィールドを選択するだけです。カザフスタンケニアキーキリバスキッチンシンク北朝鮮人民共和国大韓民国クウェートキルギスタンラベルここにラベルラベル名ラベルの位置送信内容を表示してエクスポートする際に使用するラベル。ラベル,値,計算ラベルreCAPTCHA で使用する言語。 %sこちらで%s使用する言語用のコードを入手してくださいラオス人民民主共和国姓(ローマ字 - 例:Yamada)ラトビアエレメントのレイアウトレイアウトフィールド詳細を読むマルチパートフォームに関する詳細を見るSave Progress に関する詳細を見るレバノンエレメントの左フィールド左レソトリベリアリビアライセンスリヒテンシュタインLight入力数制限制限到達メッセージ送信を制限この数字に入力を制限リストリストフィールドマッピングリストタイプリストリトアニア読み込み中読み込み中...場所ログイン中ロングフォーム - ルクセンブルクMM-DD-YYYYMM/DD/YYYYマカオマケドニア、旧ユーゴスラビア共和国マダガスカルマラウィマレーシアモルディブマリマルタこのテンプレートで、あなたのWebサイトから簡単に見積りリクエストを管理。必要に応じてフィールドを追加したり削除したりできます。マーシャル諸島マルティニークモーリタニアモーリシャス最大値最大入力ネスティングレベル最大値後で行うマヨットふつうメッセージメッセージラベル上の 「ログイン」チェックボックスにチェックが入っており、ユーザーがログインしていない場合、ユーザーにメッセージが表示されます。メタボックスメキシコミクロネシア連邦移行とモックデータが完了しました。 最小値最小値その他のフィールド不一致一時フォルダが見つかりません。モックメールアクションモック保存アクションモック成功メッセージアクション修正日モルドバ共和国モナコモンゴルモンテネグロモントセラト他にも続々登場モロッコゴミ箱にこの項目を移動するモザンビーク複数選択複数の商品 - 複数選択複数の商品 - 1つ選択複数の商品 - ドロップダウン複数選択複数選択ボックスのサイズ複数最初の計算2回目の計算MySQL のバージョンミャンマー名称カードの名義名前またはフィールドナミビアナウルお困りですか?ネパールオランダオランダ領アンティル諸島Ninja Forms から送られてくる管理通知は、今後ダッシュボードに表示されなくなります。 オフにすると、再度表示されるようになります。新しいアクション新規作成タブニューカレドニア新規項目新しい送信ニュージーランドニュースレター サインアップ フォームニカラグアニジェールナイジェリアNinja Form の設定Ninja FormsNinja Forms - 処理中Ninja Forms の変更ログNinja Forms DevNinja Forms ドキュメンテーションNinja Forms処理中Ninja Form送信Ninja Forms のシステムステータスNinja Forms THREEドキュメンテーションNinja Forms の更新Ninja Forms の更新処理中Ninja Forms のアップグレードNinja Forms バージョンNinja FormsウィジェットNinja Forms にはシンプルなテンプレート機能が備わっており、php テンプレートファイル内に直接設定することが可能です。 %sNinja Forms 基本ヘルプがここにきます。Ninja Forms はネットワーク経由では起動できません。 それぞれのサイトのダッシュボードにアクセスして、プラグインを起動してください。Ninja Forms は利用できるすべての更新を完了しました!Ninja Forms は、世界一の WordPress コミュニティフォーム作成プラグインを提供することをめざし、世界中の開発者から成るチームによって作成されました。Ninja Forms は、%s アップグレード処理を行う必要があります。 完了するまでには数分かかります。 %sアップグレード%sを開始Ninja Forms がメール設定のアップグレードを必要としています。%sこちら%s をクリックして、アップグレードを開始してください。Ninja Forms が送信表のアップグレードを必要としています。%sこちら%s をクリックして、アップグレードを開始してください。Ninja Forms がフォーム通知機能のアップグレードを必要としています。%sこちら%sをクリックして、アップグレードを開始してください。Ninja Forms がフォーム設定のアップグレードを必要としています。%sこちら%s をクリックして、アップグレードを開始してください。Ninja Formsではウィジェットをご利用いただけます。お客様のサイトのウィジェット部分であればどこでも設置でき、その場所に表示させたいフォームを間違いなく選ぶことができます。Ninja Formショートコードがフォームを特定せずに使用されました。ニウエいいえアクションが指定されていませんお気に入りフィールドが見つかりませんでしたフィールドが見つかりません。送信は見つかりませんでしたゴミ箱の中に送信は見つかりませんでしたこの分類での使用条件>>>>はありません。 %s使用条件%sファイルはアップロードできませんでした。いいえフォームがみつかりませんでした。分類が未選択です。有効な変更ログが見つかりませんでした。なしノーフォーク島北マリアナ諸島ノルウェー非ログインメッセージまだしないゴミ箱には見られないノート注意事項テキストは下記の注意事項フィールドの高度設定で編集できます。ご注意: この内容にはJavaScriptが必要です。通知: Ninja Formショートコードがフォームを特定せずに使用されました。数字最高文字数エラー最低文字数エラー数字オプションスターの数小数点以下の桁数。カウントダウンの秒数カウントダウン用の秒数タイマー送信用の秒数。スターの数オマーン1メールアドレスまたはフィールドを1つ申し訳ありません。 そのアドオンはまだNinja Forms THREEに対応していません。 %s詳細%s。新しい画面で開く演算とフィールド(高度)独自スタイルオプション 1オプション 3オプション 2設定主催者弊社サポートの対応範囲計算した数値を出力PHP ロケールPHP Max Input VarsPHP Post Max SizePHP Time LimitPHP バージョン公開パキスタンパラオパナマパプアニューギニア段落テキストパラグアイ親アイテム:パスワードパスワード確認パスワード不一致ラベルパスワードが一致しません支払いフィールド支払い方法支払い合計アクセス権が拒否されましたペルーフィリピン電話番号電話番号 - (555) 555-5555ピトケアン諸島ショートコードを受け入れ可能な場所に %s を入力してお好きなところにフォームを表示します。 ページや投稿コンテンツの真ん中でさえ表示可能です。プレースホルダ―標準テキスト上のエラー情報をご準備して、%sサポートへお問い合わせください%s。スパム防止の質問に正しくお答えください。必須フィールドをお確かめ下さい。CAPTCHAフィールドに入力してくださいreCAPTCHAを入力してください本フォームの送信前にエラーを修正してください。必須項目の記入が済んでいることをご確認ください。このフォームの送信数が制限数に達して、これ以上新しい送信を受けつけない時点で表示するメッセージを入力してください。有効なメールアドレスを入力してください有効なメールアドレスを入力してください。有効なメールアドレスを入力してください。Ninja Formsの改善にご協力ください!サポートを依頼する際は、以下の情報をお知らせください。次の数だけ増やしてください: スパム欄には何も記入しないでください。サイト&秘密キーを正しく入力したことを確認してください本プラグインを今後も無料でご提供するために、%sWordPress.org%s にて %sNinja Forms%s %s評価にご協力ください。 WP Ninjaチーム一同、ご協力に感謝いたします!フォームを選択して送信を表示してくださいフォームを選択してください。エクスポートした有効なフォームファイルを選択してください。有効なお気に入りフィールドファイルを選択してください。エクスポートするお気に入りフィールドを選択してください。これらの演算子を使用してください: + - * / これは高度機能です。 ゼロ除算などにご注意ください。%n 秒お待ちください申込書が送信されるまでお待ちください。プラグインポーランド分類によって事前設定ポルトガルポスト投稿/ページID(可能な場合)投稿/ページタイトル(可能な場合)投稿/ページURL(可能な場合)投稿作成投稿ID投稿タイトル投稿の URLプレビュー変更プレビューフォームのプレビュープレビューは存在しません。値段価格:価格フィールド処理中処理状況ラベル送信処理中ラベル商品商品(数量を含む)商品(数量を分ける)商品A商品B商品フォーム(数量を埋込む)商品フォーム(複数商品)商品フォーム(数量フィールド付き)商品タイプこのフォームを参照する際に使用するプログラム名公開プエルトリコ購入カタール数量。 商品Aの数量商品Bの数量数量:クエリ文字列クエリ文字列クエリ文字列変数質問質問位置見積りリクエストラジオボタンラジオボタンリスト>>>>パスワード再入力パスワード再入力ラベルすべてのライセンスを本当に無効にしてもよろしいですか?reCAPTCHAリダイレクト削除アンインストール時にすべての Ninja Forms データを削除しますか?値の除去すべての Ninja Forms データを削除このフィールドを削除しますか? 保管しない場合も削除されます。返信先フォームを表示する上で、ユーザーにログインすることを義務付けますか?必須必須フィールド必須フィールドエラー必須フィールドラベル必須フィールド記号フォームコンバージョンのリセットフォームコンバージョンのリセットv2.9+用にフォームコンバージョンプロセスをリセット復元Ninja Forms を復元するゴミ箱からこのアイテムを復元する制約の設定制限ユーザーがこのフィールドに入力できる内容の種類を制限します。Ninja Forms に戻る同窓会リッチテキストエディタ(RTE)エレメントの右フィールド右ロールバック最新リリースの 2.9.x にロールバックします。v2.9.x にロールバックルーマニアロシア共和国ルワンダSMTPSOAP クライアントSUHOSINをインストールしましたセントキッツ・ネビス島セントルシアセントビンセント及びグレナディーン諸島サモアサンマリノサントメ・プリンシペサウジアラビア保存保存&起動フィールド設定の保存フォームを保存オプションを保存設定を保存する送信情報を保存保存されました保存済みフィールド保存中…項目検索送信を検索セレクトボックスすべて選択選択リストフィールドを選択または入力して検索ファイルを選択フォームを選択フォームを選択または入力して検索このフォームで受けつける送信数を選択します。 無制限の場合は空欄にしてください。フィールドエレメント自体に対するラベルの位置を選択します。選択済み選択した値送信このアドレスにフォームのコピーを送信しますか?セネガルセルビアサーバーIPアドレス設定設定を保存しましたセーシェル配送方法ショートコードパーセントで入力してください。例:8.25%、4%ヘルプテキストの表示メディアアップロードボタンを表示もっとパスワード強度インジケーターの表示リッチテキストエディタを表示これを表示リストアイテム値の表示ユーザーにはホバー時に表示されます。シエラレオネシンガポールシングルシングルチェックボックス1件のコスト一行のテキスト入力1つの商品(デフォルト)サイトURLスロバキア共和国スロベニア郵便アメリカの社会保障番号に対するマスクを作成したい場合、ボックス内に 999-99-9999 と入力しますソロモン諸島ソマリア数値でソート数字でソート南アフリカサウスジョージア・サウスサンドウィッチ諸島南スーダンスペイン迷惑メールに関する答え迷惑メールに関する質問演算とフィールドを指定(高度)スリランカセント・ヘレナサンピエール島・ミクロン島標準フィールド星評価テンプレートから始める州(都道府県)状態ステップ約%d/%dのステップが実行中ですステップ(合計増分>>>>>)パスワード強度強いサブシーケンス件名件名テキストまたはフィールドを検索件名テキストまたはフィールドを検索送信送信CSV送信データ送信情報送信リミット送信メタボックス送信統計送信送信タイマーに設定した時間になるとテキストを送信するボタン>>>>AJAX 経由で (ページを再読み込みすることなく)送信しますか?送信済み送信者送信者: 送信日送信日: 登録成功メッセージスーダンスリナムスヴァールバル諸島およびヤンマイエン島スワジランドスウェーデンスイスシリアアラブ共和国システムシステム状況THREE が登場します!台湾タジキスタン以下の Ninja Forms に関する詳細なドキュメンテーションをご覧ください。タンザニア連合共和国税税率タクソノミーテンプレートフィールドテンプレート機能使用条件>>>リストテキストテキストエレメントカウンターの後に表示されるテキスト文字数/ワード数カウンターの次に表示されるテキストテキストエリアテキストボックスタイ本フォームにご記入いただき、ありがとうございます。最新バージョンに更新していただき、ありがとうございます! Ninja Forms %s は、送信管理を楽しい体験にするお手伝いをいたします! Ninja Forms を バージョン 2.7 に更新していただき、ありがとうございます。 Ninja Forms 拡張機能を次から更新してください: 更新していただき、ありがとうございます! Ninja Forms %s を利用して、かつてなく簡単にフォームを作成することができます!Ninja Forms をご利用いただき、ありがとうございます! 必要なものはすべてご確認いただけましたでしょうか?ご不明な点がございましたら、以下をご確認ください:本フォームにご記入いただき、{field:name}ありがとうございます!クレジットカードの表面にある(通常)16桁の数字。カードの3桁(裏面)または4桁(表面)の数字。9を他の番号に置き換え、-s が自動的に追加されますフォームメニューは、あらゆる Ninja Forms に関するアクセスポイントです。 最初の%s連絡先フォーム%sを既に作成済みですので、サンプルとしてご覧ください。 %s新規追加%s をクリックしてご自身で作成することも可能です。以下のような形になります:このバージョンにおけるインターフェースの更新は、将来の改善に備えて基礎を形成します。 バージョン 3.0 はこれらの変更に基づいて作成され、Ninja Formsの安定性が一層増し、より強力でユーザーフレンドリーなフォームビルダーになりました。クレジットカードの有効期限の月で、通常カードの表面に記載。もっともよく使用する設定を瞬時に表示し、使用頻度の低い設定は拡張式セクション内に収まっています。クレジットカードの表面に印刷されている名前。入力されたパスワードが一致しませんNinja Forms の作成者処理を開始しました。少々お待ちください。 この処理には数分かかる場合があります。 処理が完了すると、自動的にリダイレクトされます。アップロードしたファイルがHTMLフォームで指定されている MAX_FILE_SIZE 指示を超過しています。アップロードしたファイルが php.ini の upload_max_filesize 指示を超過しています。アップロードされたファイルは、部分的にアップロードされました。クレジットカードの有効期限の年で、通常カードの表面に記載。%1$s の新しいバージョンが入手可能です。 %3$sバージョンの詳細を表示 するか、今すぐ更新します。%1$s の新しいバージョンが入手可能です。 %3$sバージョンの詳細を表示します。アップロードしたファイルが有効な形式ではありません。これらは価格セクションのすべてのフィールドです。これらはユーザー情報セクションのすべてのフィールドです。これらは予め登録されているマスキング用の文字ですこれは様々な特別フィールドです。これらのフィールドは一致する必要があります。送信表のこの列は数字順にソートされます。この欄は入力必須です。これは必須フィールドです。これはテストですこれはユーザーの状態です。これはメールアクションです。これは別のテストです。これはユーザーがフォームを送信する際に待機する時間です送信を表示/編集/エクスポートする際に、このラベルを使用します。これはフィールドのプログラム名です。 例:my_calc、price_total、user-totalこれはユーザーの状態ですこの値は、%sチェックがある%s場合に使用されます。この値は、%sチェックがない%s場合に使用されます。ここで、フィールドを追加したり、表示する順番にフィールドをドラッグしてフォームを作成します。 フィールドごとに、ラベル、ラベル位置、プレースホルダーなどのオプションが用意されています。このキーワードはWordPressが留保しています。 別のキーワードをお試しください。このメッセージは、現在処理中であることを伝える為にユーザーが[送信]をクリックする度に送信ボタン内に表示されます。このメッセージは、パスワードフィールドに一致しない値が入力された際に、ユーザーに表示されます。欄にチェックがある場合、この数字を計算に使用します。欄にチェックがない場合、この数字を計算に使用します。この設定にすると、プラグイン削除時に Ninja Forms 関連のデータが完全に削除されます。 この中には、送信やフォームも含まれます。 削除すると、元に戻せません。このタブでは、タイトル、送信方法に加えて、完了時のフォームの非表示等の表示設定など、一般的なフォーム設定ができます。これがメールの件名になります。ユーザーが数字以外を入力しないように、このような仕様になっています3タイマー送信タイマーエラーメッセージ東ティモール宛先Ninja Forms 拡張機能のライセンスを有効にするには、最初に選択した拡張機能を%sインストールして起動する%s 必要があります。 すると、ライセンスの設定が下に表示されます。本機能を使用するには、上のテキストエリアにCSVを貼り付けてください。本日の日付トグル引き出しトーゴトケラウトンガトータルゴミ箱%sPHP 日付け() 機能%s の仕様に添って設定してください。ただし、すべての形式がサポートされているわけではありません。トリニダード・トバゴチュニジアトルコトルクメニスタンタークス・カイコス諸島ツバル2タイプURL米国の電話番号ウガンダウクライナオフオフ計算値[フォーム設定]の[基本フォーム動作]で、ページコンテンツの最後に自動的に追加したいページを簡単にお選びいただけます。 サイドバーのコンテンツ編集画面に、同様のオプションをご用意しています。元に戻すすべて元に戻すアラブ首長国連邦イギリスアメリカ合衆国合衆国領有小離島不明なアップロードエラー。未公開更新更新アイテム更新日: フォームデータベースの更新中アップグレードNinja Forms THREE にアップグレードアップグレードアップグレードが完了しましたUrlウルグアイ数式を使用(高度)数量を使用カスタムファーストオプションを使用デフォルトのNinja Formsスタイルを使用します。最終計算結果を挿入するために次のショートコードを使用します: [ninja_forms_calc]以下のヒントを参考にして、Ninja Forms の使用を開始しましょう。 すぐにご使用いただけます!登録パスワードフィールドとしてこれを使用登録パスワードフィールドとしてこれを使用します。 この欄がオンの場合、 パスワードと再入力パスワードの両方のテキストボックスを出力します処理用にフィールドをマークするために使用されました。ユーザユーザーの表示名(ログインしている場合)ユーザーメールアドレスユーザーのメールアドレス(ログインしている場合)ユーザーエントリユーザーの名(ログインしている場合)ユーザーIDユーザーID(ログインしている場合)ユーザー情報フィールドグループユーザー情報ユーザー情報フィールドユーザーの姓(ログインしている場合)ユーザーメタ(ログインしている場合)ユーザーが送信した数値ユーザーが送信した値:ユーザーは、一度保存して、後でもう一度入力してから送信できる場合に、より高い頻度で長いフォームを完了する傾向があります。

    Ninja Forms の Save Progress 拡張機能を使用すれば、迅速かつ簡単に実行できます。

    ウズベキスタンメールアドレスとして確認しますか? (必須フィールド)値バヌアツ変数名ベネズエラバージョンバージョン %s非常に弱いベトナム表示表示 %s変更を表示フォームの表示項目を表示送信の表示送信を表示変更ログをすべて表示英領バージン諸島米領バージン諸島プラグインのホームページへ移動WP デバッグモードWP 言語WP 最大アップロードサイズWPメモリー制限WP マルチサイト有効WP リモートポストWP バージョンウォリス・フツナすべてのNinja Formsユーザーの方へ最高のサポートをご提供することをお約束いたします。 何か問題やご質問がある場合には、%sお気軽にお問い合わせください%s。プラグインを削除する際、すべての Ninja Forms データ (送信、フォーム、フィールド、オプション) を削除するためのオプションを追加しました。 これは私たちが原子力オプションと呼ぶものです。フォームにまだ送信ボタンがありません。 自動的に追加することができます。弱点Webサーバー情報Ninja Forms へようこそNinja Forms へようこそ %s西サハラ何をお手伝いいたしましょうか?サポートへお問い合わせいただく前にご確認くださいこのお気に入りに何という名前を付けますか?新着情報フォームを作成および編集する際は、最も重要な部分に直接移動します。送信先単語ワードラッパー年-月-日Y年m月d日YYYY-MM-DDYYYY/MM/DDイエメンはいNinja Forms THREE リリース候補版 にアップグレードする資格をお持ちです! %s今すぐアップグレード%s特定のアプリケーション用に、これらの英数字を組み合わせることも可能です使用するフィールドのIDを「x」に入力した「field_x」を使用して、ここに計算式を入力できます。 例えば、%sfield_53 + field_28 + field_65%sと入力します。フォームを送信するにはJavascriptを有効にしてください。プラグインの更新を実行するための許可がありません。アクセス権がありません。フォームに送信ボタンを追加していません。フォームをプレビューするにはログインしてください。このお気に入りに名前を付ける必要があります。本フォームを送信するにはJavaScriptが必要です。 有効にしてからもう一度お試しください。購入内容: こちらは購入メールに記載されます。フォームが正常に送信されました。ご使用のサーバーには、fsockopenが無いか、cURLが有効になっていません。- PayPal IPN および他のサーバと通信する他のスクリプトが動作しません。ホスティングプロバイダにお問い合わせください。お使いのサーバーでは %sSOAP クライアント%s クラスが有効になっていません。SOAP を使用するゲートウェイの一部が、期待通りに動作しない可能性があります。お使いのサーバーでは cURL は有効になっていますが、fsockopen は無効です。お使いのサーバーでは fsockopen と cURL が有効になっています。お使いのサーバーでは fsockopen は有効になっていますが、cURL は無効です。お使いのサーバーでは SOAP クライアントクラスが有効になっています。お客様の Ninja Forms ファイルアップロード拡張機能は、Ninja Forms のバージョン 2.7 と互換性がありません。 1.3.5 以降のバージョンが必要です。 この拡張機能を次で更新してください: お客様の Ninja Forms 保存処理拡張機能は、Ninja Forms のバージョン 2.7 と互換性がありません。 1.1.3 以降のバージョンが必要です。 この拡張機能を次で更新してください: ユーゴスラヴィアザンビアジンバブエ郵便番号郵便番号a - アルファベット文字 (A~Z、a~z) を表し、文字以外は入力できません回答button-secondary nf-download-allby文字入力可能チェック済みコピーカスタム日-月-年dashicons dashicons-update複製foo@wpninjas.comhrjs-newsletter-list-update extral, F d Y月-日-年m/d/Yありません。の個の商品Aと 個の商品B、価格$1one_week_supportパスワード処理中個の商品、価格 reCAPTCHAreCAPTCHA の言語reCAPTCHA の秘密キーreCAPTCHA の設定reCAPTCHA のサイトキーreCAPTCHAテーマreCAPTCHA設定更新smtp_port3タイトル2オフ更新日user@gmail.comバージョンwp_remote_post() は失敗しました。 PayPal IPN はご利用のサーバーでは動作しない可能性があります。wp_remote_post() は失敗しました。 PayPal IPN はご利用のサーバーでは動作しません。 ホスティングプロバイダにご相談ください。 エラー:wp_remote_post() は成功しました - PayPal IPN は動作しています。lang/ninja-forms-nb_NO.po000064400000630613152331132460011252 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Merk: JavaScript er påkrevd for dette innholdet." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Cheatin’ huh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Påkrevde felter er merket med %s*%s" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Kontroller at alle påkrevde felter er fylt ut." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Dette er et påkrevd felt" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Svar korrekt på spørsmålene om søppelpost." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Vennligst la antispamfeltet forbli blankt." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Vennligst vent før du sender skjemaet." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Du kan ikke sende inn skjemaet uten å ha Javascript aktivert." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Fyll inn en gyldig e-postadresse." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Behandler" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Passordene samsvarer ikke" #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Legg til skjema" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Velg et skjema eller skriv for å søke" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Kanseller" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Sett inn" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Ugyldig skjema-ID" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Øk antallet konverteringer" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Visse du at du kan øke antallet konverteringer ved å bryte store skjemaer opp " "i mindre, lettere fordøyelige deler?

    Multi-Part-skjemautvidelsen for Ninja " "Forms gjør dette raskt og enkelt.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Lær mer om Multi-Part-skjemaer" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Kanskje senere" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Forkast" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Det er mer sannsynlig at brukere vil fylle ut lange skjemaer når de kan lagre " "og vende tilbake for å fullføre innsendelsen senere.

    Lagre " "fremdrift-utvidelsen for Ninja Forms gjør dette raskt og enkelt.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Lær mer om Lagre fremdrift" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Epost" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Fra-navn" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Navn eller felt" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "E-poster vil se ut som de kommer fra dette navnet." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Fra adresse" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "En e-postadresse eller felt" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "E-poster vil se ut som de kommer fra denne e-postadressen." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Til" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "E-postadresser eller søk etter et felt" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Hvem skal sende e-posten sendes til?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Emne" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Emnetekst eller søk etter et felt" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Dette blir e-postens emne" #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "E-postmelding" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Vedlegg" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV for innsending" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Avanserte innstillinger" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Ren tekst" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Svar til" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Omdiriger" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url-adresse" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Vellykket melding" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Før skjema" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Etter skjema" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Plassering" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Melding" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "lag kopi" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Deaktiver" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Aktiver" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Rediger" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Slett" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Dupliser" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Navn" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Type" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Oppdateringsdato" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Vis alle typer" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Få flere typer" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "E-post og handlinger" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Legg til ny" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Ny handling" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Rediger handling" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Tilbake til listen" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Handlingsnavn" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Få flere handlinger" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Handling oppdatert" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Velg et felt eller skriv for å søke" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Sett inn felt" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Sett inn alle felt" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Velg et skjema for å vise innsendelser" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Fant ingen innsendelser" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Innsendelser" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Innsendelse" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Legg til ny innsendelse" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Rediger innsendelse" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Ny innsendelse" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Vis innsendelse" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Søk i innsendelser" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Ingen innsendinger funnet i papirkurven" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Dato" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Rediger dette produktet" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Eksporter dette elementet" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Eksport" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Flytt dette produktet til papirkurven" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Papirkurv" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Gjenopprett dette produktet fra papirkurven" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Gjenopprett" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Slett dette produktet permanent" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Slett permanent" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Upublisert" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s siden" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Innsendt" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Velg et skjema" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Startdato" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Avslutningsdato" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s oppdatert." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Tilpasset felt oppdatert" #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Tillpasset felt slettet" #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s gjenopprettet til revidert versjon fra %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s publisert." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s lagret." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s sendt. Forhåndsvisning %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s planlagt for: %2$s. Forhåndsvisning %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s utkast oppdatert. Forhåndsvisning %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Last ned alle innsendelser" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Tilbake til listen" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Brukerinnsendte verdier" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Innsendingsstatistikk" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Felt" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Verdi" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Skjema" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Innsendt" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Endret" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Innsendt av" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Oppdater" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Innsendt" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms kan ikke bli aktivert via nettverk. Gå til hvert nettsteds " "instrumentbord for å aktivere pluginmodulen." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Du vil finne dette inkludert med din kjøps-e-post." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Nøkkel" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Kunne ikke aktivere lisens. Sjekk din lisensnøkkel" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Deaktiver lisens" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Brukers innsendte verdier:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Takk for at du fylte ut dette skjemaet." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Det er en ny versjon av %1$s tilgjengelig. Vis versjon %3$s-detaljer." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Det er en ny versjon av %1$s tilgjengelig. Vis versjon %3$s-detaljer eller oppdater nå." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Du har ikke tillatelse til å installere oppdateringer av pluginmoduler." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Feil" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standardfelt" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Layout-elementer" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Innleggsopprettelse" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Ranger %sNinja Forms%s %s på %sWordPress.org%s for å hjelpe oss med å holde " "denne pluginmodulen gratis. Takk fra WP Ninjas-teamet!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Vis tittel" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Ingen" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Skjemaer" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Alle skjemaer" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms-oppgraderinger" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Oppgraderinger" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importer/eksporter" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Import/eksport" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Innstillinger for Ninja-skjema" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Innstillinger" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Systemstatus" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Tillegg" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Forhåndsvis" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Lagre" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "tegn igjen" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Ikke vis disse søkeordene" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Lagre alternativer" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Forhåndsvis skjema" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Oppgrader til Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Du er kvalifiser til å oppgradere til Ninja Forms THREE Release Candidate! " "%sOppgrader nå%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE kommer snart!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Det kommer en stor oppdatering av Ninja Forms. %sLær mer om nye funksjoner, " "baklengs kompatibilitet og flere Vanlige spørsmål.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Hvordan går det?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Takk for at du bruker Ninja Forms! Vi håper at du har funnet alt du trenger, " "men hvis du har spørsmål:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Sjekk ut dokumentasjonen vår" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Få hjelp" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Rediger menyelement" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Velg alle" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Legg til et Ninja-skjema" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Hvilket navn vil du gi til denne favoritten?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Du må oppgi et navn på denne favoritten." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Vil du virkelig deaktivere alle lisenser?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Tilbakestill skjemakonverteringsprosessen for v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Fjerne ALLE Ninja Forms-data ved avinstallering?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Rediger skjema" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Lagret" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Lagrer …" #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Vil du fjerne dette feltet? Det vil bli fjernet, selv om du ikke lagrer." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Vis innsendinger" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms Behandler" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Behandler" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Laster …" #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Ingen handling angitt …" #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Prosessen har startet, vær tålmodig. Dette kan ta flere minutter. Du vil " "automatisk bli omdirigert når prosessen er fullført." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Velkommen til Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Takk for at du oppdaterte! Ninja Forms %s gjør skjemabygging enklere enn noensinne!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Velkommen til Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms endringslogg" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Kom i gang med Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Folkene som lager Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Hva er nytt" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Kom i gang" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Kreditter" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versjon %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "En forenklet og kraftigere opplevelse for skjemabygging." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Ny bygger-fane" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Når du oppretter og redigerer skjemaer, går du direkte til den delen som er " "mest viktig." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Bedre organisert Feltinnstillinger" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "De mest vanlige innstillingene vises umiddelbart, mens andre, " "ikke-essensielle innstillinger blir gjemt inna i utvidbare seksjoner." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Bedre klarhet " #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "I tillegg til \"Bygg ditt skjema\"-fanen har vi fjernet \"Varslinger\" i " "favør for \"E-poster og handlinger\". Dette er en mye tydeligere indikasjon " "på hva som kan gjøres i denne fanen." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Fjern alle Ninja Forms-data" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Vi har lagt til alternativet å fjerne alle Ninja Forms-data (innsendelser, " "skjemaer, felter, alternativer) når du sletter plugin-modulen. Vi kaller det " "for den kjernefysiske løsningen." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Bedre lisensadministrasjon" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Deakitver Ninja Forms-utvidelseslisenser individuelt eller som en gruppe fra innstillinger-fanen." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Mer kommer" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Grensesnittoppdateringene i denne versjonen legger grunnarbeidet for noen " "ypperlige forbedringer i fremtiden. Versjon 3.0 kommer til å bygge videre på " "disse endringene for å gjøre Ninja Forms til en enda mer stabil, kraftig og " "brukervennlig skjemabygger." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Dokumentasjon" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Ta en titt på vår inngående Ninja Forms-dokumentasjon nedenfor." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms dokumentasjon" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Brukerstøtte" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Tilbake til Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Vis full endringslogg" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Full endringslogg" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Gå til Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Bruk tipsene nedenfor for å komme i gang med å bruke Ninja Forms. Du vil være " "i gang på et øyeblikk!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Alt om skjemaer" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Skjemaer-meynen er tilgangspunktet for alt som har å gjøre med Ninja Forms. " "Vi har allerede opprettet det første %skontaktskjemaet ditt%s, slik at du har " "et eksempel. Du kan også opprettet ditt eget ved å klikke på %sLegg til nytt%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Bygg ditt skjema" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Det er her du bygger skjemaet ditt ved å legge til felt og dra dem inn i den " "rekkefølgen du ønsker at de skal vises. Hvert felt vil ha et utvalg av " "alternativer, slik som etikk, etikettposisjon og plassholder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "E-post og handlinger" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Hvis du ønsker at skjemaet ditt skal varsle deg via e-post når en bruker " "klikker på send, kan du konfigurere dette på denne fanen. Du kan opprettet et " "ubegrenset antall e-poster, inkludert e-poster sendt til brukeren som fylte " "ut skjemaet." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Denne fanen har generelle innstilinger, slik som tittle og " "innsendelsesmetode, i tilleggt til visningsinnstillinger som å skjule et " "skjema når det er ferdig utfylt." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Vise ditt skjema" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Legg til side" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Under Grunnleggende skjemaatferd i Skjema-innstillinger kan du enkelt velge " "en side som du vil at skjemaet automatisk skal legges til på slutten av " "innholdet på den siden. Et lignende alternativ er tilgjengelig i hver " "innholdsredigeringsskjerm i skjermens sidestolpe." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Kortkode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Plasser %s i alle områder som godtar kortkorder for å vise skjemaet ditt hvor " "som helst du vil. Selv i midten av siden eller postinnhold." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms tilbyr kontrollprogrammer som du kan plassere i alle " "kontrollprogramaktiverte områder på nettstedet ditt og velge nøyaktig hvilket " "skjema du ønsker vist på det området." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Malfunksjon" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms kommer også med en enkel malfunksjon som kan plasseres direkte " "inn i en php-malfil. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Trenger du hjelp?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Økende dokumentasjon" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Dokumentasjon er tilgjengelig som dekker alt fra %sfeilsøking%s til vår " "%sutvikler-API%s. Det blir alltid lagt til nye dokumenter." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Beste brukerstøtte i bransjen" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Vi gjør alt vi kan for å gi alle Ninja Forms-brukere best mulig støtte. Hvis " "du støter på et problem eller har et spørsmål, %star du gjerne kontakt med oss%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Takk for at du oppdaterer til den siste versjonen! Ninja Forms %s er klar til " "å gjøre din opplevelse av å administrere innsendelser til en hyggelig en!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms er opprettet av et verdensomspenennde team av utviklere som har " "som mål å levere den beste WordPress-pluginmodulen for opprettelse av fellesskapskjemaer." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Ingen gyldig endringslogg ble funnet." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Vis %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Deaktiver nettleserens autofullfør" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sAvmerket%s beregningsverdi" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Dette er verdien som vil bli brukt hvis %ser avmerket%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sFjernet merking av%s beregningsverdi" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Dette er verdien som vil bli brukt hvis %ser avmerket%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Inkludere i auto-totalen? (Hvis aktivert)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Egendefinerte CSS-klasser" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Før alt" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Før etikett" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Etter etikett" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Etter alt" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Hvis \"beskr. tekst\" er aktivert, vil det være et spørsmålstegn %s ved siden " "av inndatafeltet. Å bevege markøren over dette spørsmålsmerket vil vise beskrivelsesteksten." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Legg til beskrivelse" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Plassering av beskrivelse" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Beskrivelse" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Hvis \"hjelpetekst\" er aktivert, vil det være et spørsmålstegn %s ved siden " "av inndatafeltet. Å bevege markøren over dette spørsmålsmerket vil vise hjelpeteksten." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Vis hjelpetekst" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Hjelpetekst" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Hvis du lar boksen være tom, vil ingen grense brukes" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Begrens inndata til dette antallet" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "av" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Tegn" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Ord" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Tekst som vises etter tegn-/ordteller" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Venstre for element" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Over element" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Under element" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Høyre for element" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Inne i element" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Etikettplassering" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Felt-ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Begrensninger" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Beregningsinnstillinger" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Fjern" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Fyll ut dette med taksonomien" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Ingen -" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Plassholder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Påkrevd" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Lagre feltinnstillinger" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sorter som numerisk" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Hvis denne boksen er merket av, vil kolonnen i denne innsendelsestabellen " "sorteres etter nummer." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Administrativ etikett" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Dette er etiketten som brukes ved visning/redigering/eksportering av innsendelser." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Fakturering:" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Frakt" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Tilpasset" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Brukerinformasjon om feltgruppe" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Egendefinert feltgruppe" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Inkluder denne informasjonen når du ber om støtte:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Få Systemrapport" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Miljø" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Hjem-URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Nettsteds-URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Versjon av Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP-versjon" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite Aktivert" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Ja" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Nei" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Informasjon om nettserver" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP Versjon" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL-versjon" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP-sted" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Minnegrense" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP debugmodus" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP-språk" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Standard" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Maks opplastingsstørrelse" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP maks innleggsstørrelse" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Maks nivå for inndatanesting" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "Tidsbegrensning i PHP" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP maks inputvariabler" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Installert" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Standard tidssone" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Standard tidssone er %s - den skal være UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Standard tidssone er %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Serveren har Fsockopen og cURL aktivert." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Serveren har fsockopen aktivert, cURL er deaktivert." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Serveren har cURL aktivert, fsockopen er deaktivert." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Din server ikke har fsockopen eller cURL aktivert - PayPal IPN og andre " "scripts som kommuniserer med andre servere vil ikke fungere. Ta kontakt med " "din hostingleverandør." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP-klient" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Serveren har SOAP-klient-klassen aktivert." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Serveren din har ikke %sSOAP-klienten%s klasseaktivert – noen " "gateway-pluginmoduler som bruker SOAP vil kanskje ikke fungere som forventet." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Ekstern post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() var vellykket – PayPal IPN fungerer." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() mislyktes. PayPal IPN vil ikke fungere med serveren din. " "Kontakt hostingleverandøren din. Feil:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() mislyktes. Det er ikke sikkerhet at PayPal IPN vil fungere med serveren din." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Utvidelser" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Installerte utvidelser" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Besøk utvidelsens nettside" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "av" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "versjon" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Gi skjemaet ditt en tittel. Det er slik du vil finne skjemaet ditt senere." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Du har ikke lagt til en send-knapp i skjemaet." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Inndatamaske" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Alle tegn du plasserer i \"egendefinert maske\"-boksen som ikke er i listen " "nedenfor vil blir automatisk skrevet inn for brukeren etter hvert som de " "skriver og vil ikke kunne fjernes" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Disse er forhåndsdefinerte maskeringstegn" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a – Representerer et alfategn (A-Z,a-z) – Tillater kun at bokstaver blir " "skrevet inn" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "a – Representerer et numerisk tegn (0-9) – Tillater kun at tall blir skrevet inn" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* – Representer et alfanumerisk tegn (A-Z,a-z,0-9) – Dette lar både tall og " "bokstaver bli skrevet inn" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Så hvis du ville opprette en maske for et amerikansk social security number " "(personnummer), ville du skrive 999-99-9999 inn i boksen" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "9-tallene ville representere et hvilket som helst nummer, og -s-en ville bli " "lagt til automatisk" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Dette ville hindre at brukeren skriver inn noe annet enn tall" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Du kan også kombinere disse for spesifikke applikasjoner" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "For eksempel hvis du hadde en produktnøkkel som var i formen A4B51.989.B.43C, " "kunne du maskere den med: a9a99.999.a.99a, som ville tvinge alle a-ene til å " "være bokstaver og 9-tallene til å være nummer" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Definerte felt" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Favoritt-felt" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Betalingsfelt" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Malfelt" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Brukerinformasjon" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Alle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Massehandlinger" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Utfør" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Skjemaer per side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Gå" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Gå til første side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Gå til forrige side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Nåværende side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Gå til neste side" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Gå til den siste siden" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Skjematittel" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Slett dette skjemaet" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Kopier skjema" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Skjemaer slettet" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Skjema slettet" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Forhåndsvis skjema" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Vis" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Vis skjematittel" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Legg skjemaet på denne siden" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Send inn via AJAX (uten å laste siden på nytt)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Tøm utfylt skjema?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Hvis denne boksen er avmerket, vil Ninja Forms tømme skjemaverdiene etter at " "det har blitt sendt." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Skjul innsendt skjema?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Hvis denne boksen er avmerket, vil Ninja Forms skjule skjemaet etter at det " "har blitt sendt." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Restriksjoner" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Krev at bruker må være pålogget for å se skjemaet?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Melding hvis ikke pålogget" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Meldingen som vises til brukere hvis «pålogget»-boksen over er krysset av og " "brukeren ikke er pålogget." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Begrens innsendinger" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Velg antall innsendelser dette skjemaet vil godta. La stå tomt for ubegrenset." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Grense nådd-melding" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Angi en melding som du vil skal vises når dette skjemaet har nådd " "innsendingsgrensen og ikke vil godta nye innsendelser." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Lagret skjemainnstillinger" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Grunnleggende innstillinger" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Grunnleggende hjelp for Ninja Forms går her." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Utvid Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Dokumentasjon kommer snart." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktiv" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Installert" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Lær mer" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Sikkerhetskopier/gjenopprett" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Sikkerhetskopier Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Gjenopprett Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Data gjenopprettet!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importer favoritt-felt" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Velg en fil" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importer favoritter" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Fant ingen favoritt-felt" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Eksporter favoritt-felt" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Eksporter felter" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Velg favoritt-felt du vil eksportere." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoritt-felt importert." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Velg en gyldig favoritt-felt-fil." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importer et skjema" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importer skjema" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Eksporter et skjema" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Eksporter skjema" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Velg et skjema." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Skjema importert." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Velg en gyldig eksportert skjema-fil." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importer/eksporter innsendelser" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Datoinnstillinger" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Generelt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Generelle innstillinger" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versjon" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Datoformat" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Prøver å følge %sPHP dato()-funksjon%s-spesifikasjoner, men ikke alle " "formater støttes." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Valutasymbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA-innstillinger" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA-nettstedsnøkkel" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Få en nettstedsnøkkel for domenet ditt ved å registrere deg %sher%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA hemmelig nøkkel" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA språk" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Språk som brukes av reCAPTCHA. For å få koden for ditt språk, klikker du %sher%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Hvis denne boksen er avmerket, vil ALLE Ninja Forms-data bli fjernet fra " "databasen ved sletting. %sDu vil ikke kunne gjenopprette noen skjema- og innsendelsesdata.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Deaktiver administratormeldinger" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Aldri se en administratormelding på instrumentbordet fra Ninja Forms. Fjern " "merkingen for å se dem igjen." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Denne innstillingen vil FULLSTENDIG fjerne alt som er Ninja Forms-relatert " "når pluginmodulen slettes. Dette inkluderer INNSENDELSER OG SKJEMAER. Dette " "kan ikke gjøres om." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Fortsette" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Innstillingene ble lagret" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etiketter" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Meldingsetiketter" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Etikett for påkrevd felt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Symbol for påkrevd felt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Feilmelding som oppgis hvis alle påkrevde felt ikke er fylt ut" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Påkrevd felt-feil" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Søppelpost-feilmelding" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot-feilmelding" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Tidtaker-feilmelding" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript deaktivert-feilmelding" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Fyll inn en gyldig e-postadresse" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Behandle innsending-etikett" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Denne meldingen vises i send-knappen når en bruker klikker på \"send\", for å " "la brukeren vite at den behandles." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Manglende passordsamsvar-etikett" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Denne meldingen vises til en bruker når ikke-samsvarende verdier angis i passordfeltet." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Lisenser" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Lagre og aktiver" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Deaktiver alle lisenser" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "For å aktivere lisenser for Ninja Forms-utvidelser, må du først %sinstallere " "og aktivere%s den valgte utvidelsen. Lisensinnstillinger vil deretter dukke " "opp nedenfor." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Tilbakestill skjema-konvertering" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Tilbakestill skjema-konvertering" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Hvis skjemaene dine \"mangler\" etter oppdateringen til 2.9, vil denne " "knappen prøve å konvertere de de gamle skjemaene dine på nytt for å vise dem " "i 2.9. Alle nåværende skjemaer vil forbli i \"Alle skjemaer\"-tabellen." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Alle nåværende skjemaer vil forbli i \"Alle skjemaer\"-tabellen. I noen " "tilfeller kan skjemaer bli duplisert under denne prosessen." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "E-post til administrator" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "E-post til bruker" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms må oppgradere dine skjemavarslinger, klikk %sher%s for å starte oppgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms må oppgradere dine e-postinnstillinger, klikk %sher%s for å " "starte oppgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms må oppgradere innsendelsestabellen din, klikk %sher%s for å " "starte oppgraderingen." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Takk for at du oppgraderte til versjon 2.7 av Ninja Forms. Oppdater alle " "Ninja Forms-utvidelser fra " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Din versjon av utvidelsen Ninja Forms Filopplasting er ikke kompatibel med " "versjon 2.7 av Ninja Forms. Den må være minst versjon 1.3.5. Oppdater denne " "utvidelsen på " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Din versjon av utvidelsen Ninja Forms Lagre fremgang er ikke kompatibel med " "versjon 2.7 av Ninja Forms. Den må være minst versjon 1.3.3. Oppdater denne " "utvidelsen på " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Oppdaterer skjemadatabasen" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms må oppgradere skjemainnstillingen dine, klikk %sher%s for å " "starte oppgraderingen." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Behandler Ninja Forms-oppgradering" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sKontakt støtte%s med feilen du ser ovenfor." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms har fullført alle tilgjengelige oppgraderinger!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Gå til skjemaer" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms-oppgradering" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Oppgrader" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Oppgraderinger fullført" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms må behandle %s oppgradering(er). Det kan ta et par minutter å " "fullføre dette. %sStart oppgraderingen%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Trinn %d av ca. %d kjører" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms systemstatus" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Styrkeindikator" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Veldig svakt" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Svakt" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Medium" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Sterkt" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Ikke samsvar" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Velg en" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Hvis du er et menneske og ser dette feltet, la det stå tomt." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Felt merket med en * er obligatoriske" #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Dette er et påkrevd felt." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Vennligst sjekk obligatoriske felter." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Beregning" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Antall desimaler." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Tekstboks" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Vis beregning som" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etikett" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Deaktiver inndata?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Bruk følgende kortkode for å sette inn den endelige utregningen: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Du kan angi utregningsligninger her ved hjelp av field_x, hvor x er ID-en til " "feltet du ønsker å bruke. For eksempel %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Du kan opprette komplekse ligninger ved å legge til parenteser: %s( field_45 " "* field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Bruk disse operatorene: + - * /. Dette er en avansert funksjon. Vær på utkikk " "etter ting som delt på 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Regn automatisk ut utregningsverdier" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Spesifiser operasjoner og felt (avansert)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Bruk en ligning (avansert)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Beregningsmetode" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Feltoperasjoner" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Legg til operasjon" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Avansert ligning" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Navn på utregningen" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Dette er det programmatiske navnet på feltet ditt. Eksempler er: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Standardverdi" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Egendefinert CSS-klasse" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Velg et felt" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Avmerkingsboks" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Ikke avkrysset" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Avkrysset" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Vis dette" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Skjul dette" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Endre verdi" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algerie" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Amerikansk Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarktis" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua og Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Østerrike" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Aserbajdsjan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Hviterussland" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgia" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia og Herzegovina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvetøya" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Kambodsja" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Kamerun" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Kapp Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Caymanøyene" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Den sentralafrikanske republikk" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Tsjad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Kina" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmasøya" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Kokosøyene" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Komorene" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Kongo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Kongo, Den demokratiske republikken" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cookøyene" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Elfenbenskysten" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Kroatia (lokalt navn: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Kypros" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Tsjekkia" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Danmark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Den dominikanske republikk" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Øst-Timor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypt" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Ekvatorial-Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estland" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falklandsøyene (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Færøyene" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Frankrike" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Frankrike, metropol" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Fransk Guyana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Fransk Polynesia" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Franske sørterritorier" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Tyskland" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Hellas" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Grønland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heardøya og McDonaldøyene" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Vatikanstaten" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Ungarn" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Island" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Den islamske republikken)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irland" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italia" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kasakhstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korea, Den demokratiske folkerepublikken" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea, Republikken" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirgisistan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos (Den demokratiske folkerepublikk)" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Libanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libyske arabiske Jamahiriya" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Litauen" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxembourg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Makedonia, Den tidligere jugoslaviske republikken" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagaskar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldivene" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshalløyene" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Mikronesiaføderasjonen" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldova" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marokko" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mosambik" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Nederland" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "De Nederlandske Antiller" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Ny-Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "New Zealand" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolkøya" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Nord-Marianene" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norge" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua Ny-Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filippinene" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairnøyene" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polen" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Réunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Russland" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts og Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent og Grenadinene" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tome og Principe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychellene" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakia (Slovakiske Republikk)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Salomonøyene" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Sør-Afrika" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Sør-Georgia, Sør-Sandwichøyene" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spania" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "St. Pierre og Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Surinam" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard og Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Sverige" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Sveits" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syria" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tadsjikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad og Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Tyrkia" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks- og Caicosøyene" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukrania" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "De forente arabiske emirater" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Storbritannia" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "USA" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "USAs ytre småøyer" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Usbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "De britiske jomfruøyene" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "De amerikanske jomfruøyene" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis- og Futunaøyene" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Vest-Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Jemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Jugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Land" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Standardland" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Bruk et egendefinert alternativ først" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Egendefinert første alternativ" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sør-Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Kredittkort" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etikett for kortnummer" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Kortnummer" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Beskrivelse for kortnummer" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "De (vanligvis) 16 siffrene på forsiden av kredittkortet ditt." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Kortets CVC-etikett" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Kortets CVC-beskrivelse" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Den 3-sifrede- (bak) eller 4-sifrede (foran) verdien på kortet ditt." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Kortnavn-etikett" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Navn på kortet" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Kortnavn-beskrivelse" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Navnet trykt på forsiden av kredittkortet ditt." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Kortets utløpsdato-etikett" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Utløpsmåned (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Beskrivelse for utløpsmåned" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Måneden kredittkortet ditt utløper, det står vanligvis på forsiden av kortet." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etikett for kortets utløpsår" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Utløpsår (ÅÅÅÅ)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Beskrivelse for utløpsår" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Året kredittkortet ditt utløper, det står vanligvis på forsiden av kortet." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Tekst" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Tekstelement" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Skjult felt" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Bruker-ID (hvis innlogget)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Brukers fornavn (hvis innlogget)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Brukers etternavn (hvis innlogget)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Brukers visningsnavn (hvis innlogget)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Brukers e-postadresse (hvis innlogget)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Innleggs-/side-ID (hvis tilgjengelig)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Innleggs-/sidetittel (hvis tilgjengelig)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Innleggs-/side-URL (hvis tilgjengelig)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Dagens dato" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "QueryString-variabel" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Dette nøkkelordet er reservert av WordPress. Prøv et annet." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Er dette en e-postadresse?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Hvis denne boksen er avkrysset, vil Ninja Forms validere innholdet som en e-postadresse." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Send en kopi av skjemaet til denne adressen?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Hvis denne boksen er merket av, vil Ninja Forms sende en kopi av dette " "skjemaet (og eventuelle vedlagte meldinger) til denne adressen." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "time" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Liste" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Dette er brukerens tilstand" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valgt verdi" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Legg til verdi" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Fjern verdi" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Nedtrekksmeny" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Avkrysningsbokser" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Flervalgsboks" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Listetype" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Størrelse på flervalgsboks" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importer listeelementer" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Vis verdier for listeobjekt" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importer" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "For å bruke denne funksjonen, kan du lime inn CSV inn i tekstfeltet over." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Formatet skal se ut som følgende:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Etikett,Verdi,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "Hvis du ønsker å sende en tom verdi eller, bør du bruke '' for de." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Valgt" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Nummer" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minste verdi" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maksimal verdi" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Trinn (mengen å øke med)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Arrangør" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Passord" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Bruk dette som et felt for å registrere passord" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Hvis denne boksen er avmerket, vises tekstbokser både for passordet og for å " "gjenta passordet." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Etikett for tekstboks for å gjenta passordet" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Gjenta passord" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Vis passordstyrkeindikator" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Hint: Passordet bør bestå av minst syv tegn. Bruk både store og små " "bokstaver, tall og spesialtegn som ! for å gjøre det sterkere. \" ? $ % ^ " "& )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Passordene samsvarer ikke" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Stjernerangering" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Antall stjerner" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Bekreft at du ikke er en robot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Fyll ut captcha-feltet" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Sørg for at du har angitt Nettstedsnøkler og Hemmelige nøkler riktig" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Manglende captcha-samsvar. Angi riktig verdi i captcha-feltet" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Søppelpost-spørsmål" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Søppelpost-svar" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Send" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "MVA" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "MVA-prosent" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Skal skrives inn som en prosentandel. for eksempel 14%, 25%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Tekstområde" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Vis rik-tekst redigering" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Vis mediaopplastingsknapp" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Deaktiver rik-tekst redigering på mobil" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Valider feltet som e-postadresse? (Feltet må være påkrevd)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Deaktiver inndata" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datovelger" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefon - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Valuta" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Tilpasset maske" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Hjelp" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Tidsbestemt innsending" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Send knappetekst etter at timeren utløper." #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Vennligst vent %n sekunder" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n vil bli brukt til å betegne antall sekunder" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Antall sekunder for nedtelling" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Dette er hvor lenge brukeren må vente med å sende inn skjemaet" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Hvis du er et menneske, vennligst ta det med ro." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Du trenger JavaScript for å sende inn dette skjemaet. Aktiver JavaScript og " "prøv igjen." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "List opp felttilordning" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Interessegrupper" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Enkel" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Flere" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Lister" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "oppdatér" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metaboks" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Metaboks for innsendelse" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Brukermeta (hvis pålogget)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Motta betaling" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Fant ingen skjemaer." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Dato opprettet" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "tittel" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "oppdatert" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Forsøket ditt mislyktes" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Overordnet element:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Alle elementer" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Legg til nytt element" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nytt element" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Rediger element" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Oppdater element" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Vis element" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Søk i element" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Ikke funnet i søppelkurven" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Skjemainnsendelser" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Innsendelsesinformasjon" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Legg til nye skjemaer" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Importfeil av skjemamal" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Felter" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Den opplastede filen er ikke i et gyldig format." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Ugyldig skjemaopplasting." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importer skjemaer" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Eksporter skjemaer" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Ligning (avansert)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operasjoner og felt (avansert)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Automatiske Totalt felter" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Den opplastede filen overskrider upload_max_filesize-direktivet i php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Den opplastede filen overskrider MAX_FILE_SIZE-direktivet som ble spesifisert " "i HTML-skjemaet." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Den opplastede filen ble bare delvis lastet opp." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Ingen fil ble lastet opp." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "En midlertidig mappe mangler." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Skriving av fil til disk mislyktes." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Opplasting av fil stoppet på grunn av filtype." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Ukjent opplastingsfeil" #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Feil ved filopplasting" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Tilleggslisenser" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Overføringer og falske data fullført. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Vis skjemaer" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Lagre innstillinger" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Serverens IP-adresse" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Vertsnavn" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Legg ved et Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Fant ikke skjema" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Fant ikke felt" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "En uventet feil har oppstått." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Forhåndsvisning eksisterer ikke" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Betalingsløsninger" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Betalingssum" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Koblingsmerke" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "E-postadresse eller søk etter et felt" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Emnetekst eller søk etter et felt" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Legg ved CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Etikett her" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Hjelpetekst her" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Angi etiketten i skjema-feltet. Dette er måten brukere vil identifisere " "individuelle felter." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Standardskjema" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Skjult" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Velg plasseringen av etiketten din relativt til selve feltelementet." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Obligatorisk felt" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "Sørg for at dette feltet er utfylt før du lar skjemaet bli sendt inn." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Nummeralternativer" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Steg" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Alternativ" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Én" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "en" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Tre" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "to" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "To" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "tre" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Regn ut verdi" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Begrens typen inndata brukerne dine kan plassere i dette feltet." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "ingen" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Telefon i USA" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "egendefinert" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Egendefinert maske" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a – Representerer et alfategn (A-Z,a-z) " "– Tillater kun at bokstaver blir skrevet inn
    • " "\n
    • a – Representerer et numerisk tegn (0-9) – " "Tillater kun at tall blir skrevet inn.
    • \n " "
    • * – Representerer et alfanumerisk tegn (A-Z,a-z,0-9) – Dette lar både " "tall og bokstaver bli skrevet " "inn.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Begrens inndata til dette nummeret" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Tegn" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Ords" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Tekst som skal vises etter telleren" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Tegn igjen" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Angi tekst du ønsker skal vises i feltet før en bruker skriver inn noen data." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Egendefinerte klassenavn" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Beholder" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Legg til en ekstra klasse til felt-wrapperen." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Legg til en ekstra klasse til felt-elementet." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/ÅÅÅÅ" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-ÅÅÅÅ" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/ÅÅÅÅ" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-ÅÅÅÅ" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "ÅÅÅÅ/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Fredag 18. november 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Bruk dagens dato som standard" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Antall sekunder for tidsinnstilt innsendelse." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Feltnøkkel" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Oppretter en unik nøkkel for å identifisere og målrette feltet ditt for " "egendefinert utvikling." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Etikett som brukes når du viser og eksporterer innsendelser." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Vist til brukere som en pekerfølsom kobling." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Beskrivelse" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sorter som numerisk" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Denne kolonnen i innsendelsestabellen vil sorteres etter nummer." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Antall sekunder for nedtellingen." #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Bruk dette som et passordfelt for registrering. Hvis denne boksen er merket " "av, vil både\n passord- og skriv inn passord på " "nytt-tekstbokser være utdata" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Bekreft" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Tillater rikt tekstformat." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Behandler etikett" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Avmerket beregningsverdi" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Dette nummeret vil brukes i beregninger hvis denne boksen er avmerket." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Fjernet merking av beregningsverdi" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Dette nummeret vil brukes i beregninger hvis merkingen av denne boksen er fjernet." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Vis denne beregningsvariabelen" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Velg en variabel" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Pris" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Bruk antall" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Tillat at brukere velger mer enn ett av dette produktet." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Produkttype" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Ett produkt (standard)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Flere produkter – Rullegardinmeny" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Flere produkter – Velg mange" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Flere produkter – Velg ett" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Brukerregistrering" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Pris" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Kostnadsalternativer" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Enkeltkostnad" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Kostnad-rullegardinmeny" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Kostnadstype" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produkt" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Velg et produkt" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Svar" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "En svar som skiller mellom store og bokstaver for å hindre søppelpostutsendelser av skjemaet ditt." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taksonomi" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Legg til nye søkeord" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Dette er en brukers status." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Brukt til å markere et felt for behandling." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Lagrede felt" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Vanlige felt" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Brukerinformasjon-felt" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Pris-felt" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Layout-felt" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Diverse felt" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Skjemaet er sendt." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Innsending av Ninja-skjema" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Lagre innsending" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Variabelnavn" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Formel" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Standard etikettplassering" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Skjemanøkkel" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Programmatisk navn som kan brukes til å referere til dette skjemaet." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Legg til Send-knapp" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Vi har lagt merke til at du ikke har en send-knapp på skjemaet ditt. Vi kan " "legge til en for deg automatisk." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Logget inn" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Gjelder for forhåndsvisning av skjema." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Grense for innsendelse" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Gjelder IKKE for forhåndsvisning av skjema" #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Visningsinnstillinger" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Beregninger" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Pris:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Antall:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Legg til" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Åpne i nytt vindu" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Hvis du er et menneske som ser dette feltet, lar du det stå tomt." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Tilgjengelig" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Skriv inn en gyldig e-postadresse!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Disse feltene må stemme overens!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Minimum antall feil" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Maks antall feil" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Øk trinnvis med " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Sett inn kobling" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Sett inn medie" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Rett opp feil før du sender inn dette skjemaet." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot-feilmelding" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Filopplasting pågår." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "FILOPPLASTING" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Alle felt" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Undersekvens" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Post-ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Innleggstittel" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Innlegg URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP adresse" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "Bruker ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Fornavn" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Etternavn" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Vis navn" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Egenrådige stiler" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Lyst" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Mørkt" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Bruk standard Ninja Forms stilkonvensjoner." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Tilbakerulling" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Tilbakerulling til v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Tilbakerulling til den nyeste 2.9.x-versjonen." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Å" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha-innstillinger" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA-tema" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Redigeringsprogram for rik tekst (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Detaljert" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administrasjon" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Tomme skjemaer" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Kontakt meg" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Meldingshandling – falsk-suksess" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Takk {field:name} for at du fylte ut skjemaet mitt!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Falsk e-posthandling" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Dette er en e-posthandling." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hei, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Falsk lagre-handling" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Dette er en test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "Ola Nordmann" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "bruker@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Dette er enda en test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Få hjelp" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Hva kan vi hjelpe deg med?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Godta?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Beste kontaktmetode?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telefonnummer" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Brevpost" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Send" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kjøkkenvask" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Velg liste" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Alternativ en" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Alternativ to" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Alternativ tre" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Radio-liste" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Baderomsvask" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Avmerkingsboks-liste" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Dette er alle feltene i Brukerinformasjon-delen." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Addresse" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "By/sted" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Postnummer" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Dette er alle feltene i Priser-delen." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produkt (antall inkludert)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produkt (separat antall)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "kvantitet" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Totalsum" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Navn på kredittkortet" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Kredittkortnummer" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Kredittkortets CVC" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Kredittkortets utløpsdato" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Kredittkortets postnummer" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Dette er diverse spesialfelt." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Antisøppelpost-spørsmål (Svar = svar)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "svar" #: includes/Database/MockData.php:805 msgid "processing" msgstr "behandler" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Lang form – " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Felt" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Feltnr." #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "E-postabonnement-skjema" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Epostadresse" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Angi e-postadressen din" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Abonner" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Produktskjema (med antall-felt)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Kjøp" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Du kjøpte " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "produkt(er) for " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Produktskjema (innebygd antall)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " produkt(er) for " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Produktskjema (flere produkter)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produkt A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Antall for produkt A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produkt B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Antall for produkt B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "av produkt A og " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "av produkt B for $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Skjema med utregninger" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Min første utregning" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Min andre utregning" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "Utregninger returneres med AJAX-svar ( svar -> data -> utr." #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Kopier" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Lagre skjema" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Postnummer for kredittkortet" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Du må være pålogget for å forhåndsvise et skjema." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Fant ingen felt." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Merk: Ninja Forms-kortkode brukt uten å spesifisere et skjema." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms-kortkode brukt uten å spesifisere et skjema." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Adresselinje 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Knapp" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Enkel avmerkingsboks" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "avmerket" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "merking fjernet" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Kredittkortets CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Å" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Å" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Å-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d/m/Y" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Å" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Deler" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Velg" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Stat" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Notattekst kan redigeres i notatfeltets avanserte innstillinger nedenfor." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Merk" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Passordbekreftelse" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "passord" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Fyll ut recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Avansert forsendelse" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Spørsmål" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Spørsmålsplassering" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Feil svar" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Antall stjerner" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Søkeord-liste" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Ingen tilgjengelige søkeord for denne taksonomien. %sLegg til et søkeord%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Ingen taksonomi valgt." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Tilgjengelige søkeord" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Paragraftekst" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Enkelt linje-tekst" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Postnummer" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Innlegg" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Spørringsstrenger" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Spørringsstreng" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Brukerkonto" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " krever oppdatering. Du har versjon " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " installert. Den gjeldende versjonen er " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Redigere felt" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Etikettnavn" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Over felt" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Under felt" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Til venstre for felt" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Til høyre for felt" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Skjul etikett" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Klassenavn" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Grunnleggende-felt" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Flervalg" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Legg til nytt felt" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Legg til ny handling" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Utvid meny" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Publiser" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLISER" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Laster inn" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Vis endringer" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Legg til skjemafelt" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Kom i gang ved å legge til ditt første skjemafelt." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Legg til nytt felt" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Bare klikk her og velg feltene du ønsker." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Så enkelt er det. Eller ..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Start fra en mal" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Kontakt oss" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "La brukere kontakte deg med dette enkle kontaktskjemaet. Du kan legge til og " "fjerne felt etter behov." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Anbudsforespørsel:" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Administrer anbudsforespørsler fra nettstedet ditt enkelt med denne malen. Du " "kan legge til og fjerne felt etter behov." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Arrangementsregistrering" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "La brukeren registrere seg for ditt neste arrangement med dette " "brukervennlige skjemaet. Du kan legge til og fjerne felt etter behov." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Registreringsskjema for nyhetsbrev" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Legg til abonnenter og voks e-postlisten din med dette " "nyhetsbrev-registreringsskjemaet. Du kan legge til og fjerne felt etter behov." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Legg til skjemahandlinger" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Kom i gang ved å legge til ditt første skjemafelt. Bare klikk på pluss og " "velg handlingene du ønsker. Så enkelt er det." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Dupliser (^ + C + klikk)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Slett (^ + D + klikk)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Handling" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Veksle skuffen" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Full skjerm" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Halv skjerm" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Angre" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Fullført" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Angre alle" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Angre alle" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Nesten ferdig ..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Nei, ikke ennå" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Åpne i nytt vindu" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Deaktiver" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Fiks det." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Velg et skjema" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Være-dato" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Før du ber om hjelp fra støtteteamet vårt ser du gjerne igjennom:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE-dokumentasjon" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Hva du bør prøve før du kontakter støtte" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Vårt støtteomfang" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importer felt" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Oppdatert: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Innsendt: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Innsendt av: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Innsendelsesdata" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Vis" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Vis mer" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Redigere felt" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Skjemafelt" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Forhåndsvis endringer" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Kontaktskjema" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Ops! Det tillegget er ikke kompatibelt med Ninja Forms THREE ennå. %sLær mer%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s ble deaktivert." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Hjelp oss med å forbedre Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Hvis du velger å delta, vil noen data om installeringen din av Ninja Forms " "bli sendt til NinjaForms.com (dette inkluderer IKKE innsendelsene dine)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Det er OK om du hopper over dette! Ninja Forms vil fremdeles fungere helt greit." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sTillat%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sIkke tillat%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Du har ikke tillatelse." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Tillatelse avslått" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms utv." #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "FEILSØK: Bytt til 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "FEILSØK: Bytt til 3.0.x" lang/ninja-forms-ru_RU.mo000064400000360610152331132460011305 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 &&[>~Fdr[n  #B7Y<')(GpbZ<`-!# 3B!Su$&&( *I!t4!/$8B,{$K15 g rXX'1'Y)):8M!c 1":0BLJu \)#=  3?DP MDa$~   C/`s!""AFd5 %#=(ash   +1DAv> '&6]nK !;S bo s# !  n(g"WQ S]MKEK("# B"e!l!A(7 S`2o  B0Bs \3s K8Wj.z, o((7;(S(|-  !;[/r1:8+HBt:B<5r#{  )) 7NWq 4)-^>$V1{/6( 3= Tq   %  9 5S   % # h FX C  z z   0 ! #;8't!/V-b]k/ &>\-s!!%%+.Q'0%% %2ET7[16I%joH7#[w ; /) 4 CP2:@XK,!';c{45(@E!= #<Nkfe [(f5d*=DW[-c "   5 #!7!:V!0! !6!"& " G" T"_")y""%"#")"6&#)]#!##,## $ $%$#6$ Z$g$x$$$$#$. %|<%Z%&&('.'7'J''+'(3(1Q(5(5(9( ))6)K)-Z)))) )) )) ))/ *&=* d*q*$**** *>+zE+,,, ,,<-R-a-y--- --4-/#/0S112^344yN5R5\6ix667c8 9; <<(<*<!=7=%O=u=,===,=d>#~>:> >>>? "?C?]?#{???)?$?'#@"K@2n@@@J@AA 1A >A KADXAAA]AB (B3BNRNKO4gO OOOOOO2P8APzP0PGP=QGBQ%Q?QQ(R(,RUR iRvR(}RRR RR RR>SOS6T2RTTTTTBT4U GURUaU U"U+U"U'U&VEV-bV:V V=V *WKWdW}WkJXXR}Y!YZ[Q\\])^` _n_w_6~_/__ `2$`rW`*``)aI?aaa4aaGb Jb%Xb~bbQKcxc d!!dCdcdd1dJdJeN]eeeeEef%f9f'g6gNgdgzgg$g g gPg8Hh>hhhh h i&i:iXi(ii i'i2i$ij5jSj(ljjjjjjjll2lplK:m<m%mRmRWy;y<yz#zzzz zz${$({M{c{{ {{{4{ &|)1|,[|2|P| }}1}V@}}I}~~m~!00R.086US(€<)(Ri!!:0"k E '* R_dv-ǃ !!6X.k.Ʉ%& #4Xk ȅ! P9Pzt#F :%M%ssȉ*<9g EE:EK]'!6"X7{:Œ(# 9=F=ŽIڎ$:I]Hs$Ώ! 5 V w 9,Ґ''76n.w.Ց! >:!y! ʒvݒ]TǓ7=N 2ٔ 8 E!TvyQ5 #˖ (@DZC'k;ΙKZeg ;tWOX%36jH?QߦH2ɧXZU:Ik5))˩) :7(rp b(d!i0!#˯|8|*n%u35ϴ1 <Ƕ6' 6 AMV  5 @M*f  θ۸76ʺۺ8,I/P5ѻ3K'Z'μFݼ-$URWQTX^ 4lZ!EdYH0#9TMS>0?o5J -:Jbq'#!"CD:,0! >7J4,9XT-.<1k$CH  '8>D W bmrq^a&KKr|Q;`385gObgM:hD  7B  !&HWl/FO `m %1N _ip SU2 Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Поля Открыть в новом окне Отменить все . Текущая версия товаров для нуждается в обновлении. У вас установлена версия №Черновик%1$s обновлен. Предварительный просмотр %3$s%1$s восстановлена для пересмотра из %2$s.%1$s запланирована для: %2$s. Предварительный просмотр %4$s%1$s отправлена. Предварительный просмотр %3$s%n используется для обозначения количества секунд%s назад%s опубликовано.%s сохранено.%s обновлено.%s деактивирован.%sРазрешить%s%sВыбранное %s значение расчета%sНе разрешать%s%sНе выбранное %s значение расчета* – представляет алфавитно-цифровой символ (A–Z, a–z, 0–9) – допускается вводить как цифры, так и буквы- Нет- Выберите одно- Выберите поле- Выберите товар- Выберите переменную- Выберите форму- Просмотреть все типы9 – представляет числовой символ (0–9) – допускается вводить только цифры
    • a – представляет букву латинского алфавита (A–Z, a–z) – допускается вводить только буквы.
    • 9 – представляет цифру (0–9) – допускается вводить только цифры.
    • * – представляет алфавитно-цифровой символ (A–Z, a–z, 0–9) – допускается вводить как цифры, так и буквы.
    Ответ с учетом регистра, чтобы предотвратить спам-рассылку заявок по вашей форме.Выходит основное обновление для Ninja Forms. %sПолучите подробную информацию о новых возможностях и обратной совместимости, а также ознакомьтесь с часто задаваемыми вопросами.%sОблегченный и более мощный плагин для создания форм.Над элементомСверху от поляНазвание действияДействие обновленодействияАктивироватьАктивенДобавитьДобавить описаниеДобавить формуДобавить новоеДобавить новое полеДобавить новую формуДобавить новый товарДобавить новую заявкуДобавить новые терминыДобавить операциюДобавить кнопку «Отправить»Добавить значениеДобавьте действия в формуДобавить поля формыДобавить форму на эту страницуДобавить новое действиеДобавить новое полеДобавьте абонентов и расширьте свой список рассылки с помощью этой формы подписки на рассылку новостей. При необходимости можно добавлять и удалять поля.Лицензии для дополнительных компонентовДополнительные компонентыАдресАдрес 2Добавляет дополнительный класс к элементу поля.Добавляет дополнительный класс к оболочке поля.Почта администратораМетка администратораУправлениеПередовойРасширенное уравнениеРасширенные настройкиДополнительные методы доставкиАфганистанПосле всегоПоследующая формаПосле меткиСогласны?АлбанияАлжирВсеПолная информация о формахВсе поляВсе формыВсе элементыВсе текущие формы останутся в таблице «Все формы». Иногда некоторые формы могут дублироваться в ходе этого процесса.Предоставьте пользователям простую возможность зарегистрироваться на ваше следующее мероприятие, заполнив форму. При необходимости можно добавлять и удалять поля.Предоставьте пользователям возможность обратиться к вам через эту простую контактную форму. При необходимости можно добавлять и удалять поля.Позволяет вводить форматированный текст.Позволяет пользователям выбрать несколько штук данного товара.Уже почти все...Наряду с вкладкой «Создать форму» мы убрали вкладку «Уведомления», заменив ее на «Электронные письма и действия». Это дает более ясное представление о том, что можно сделать на этой вкладке.Американское СамоаПроизошла непредвиденная ошибка.АндорраАнголаАнгильяОтветАнтарктикаАнтиспамАнтиспамовый вопрос (Ответ = ответ)Сообщение об ошибке системы защиты от спамаАнтигуа и БарбудаЛюбой символ, заданный в поле маски ввода (за исключением тех, что приведены в списке ниже), будет автоматически отображаться при вводе данных пользователем без возможности удаленияДобавить Ninja FormsДобавить Ninja FormsДобавить к страницеПринятьАргентинаАрменияАрубаПрисоединить CSVВложенияАвстралияАвстрияПоля автоматического подсчета итогаАвтоматическое получение итоговых значений расчетаДоступноДоступные условияАзербайджанВернуться к спискуВернуться к спискуРезервное копирование/восстановлениеРезервное копирование Ninja FormsБагамыБахрейнБангладешBarБарбадосБазовые поляОсновные настройкиУмывальник для ваннойBazСкрытая копияПеред всемПредыдущая формаПеред меткойПеред тем, как обратиться в нашу службу поддержки, просмотрите:Начальная датаТекущая датаБелоруссияБельгияБелизНиже элементаСнизу от поляБенинБермудыЛучший способ контакта?Лучшая поддержка в бизнесеЛучше организованы настройки полейУлучшенное управление лицензиямиБутанПлатёжПустые формыБоливияБосния и ГерцеговинаБотсванаОстров БувеБразилияБританская территория Индийского океанаБрунейСоздать формуБолгарияПакетные операцииБуркина-ФасоБурундиКнопкаCVCРасчетРасчетное значениеРасчетМетод расчетаНастройки расчетаНазвание расчетаРасчётыРезультаты вычислений возвращаются с ответом AJAX (ответ -> данные -> вычисленияКамбоджаКамерунКанадаОтменаКабо-ВердеНеверный код капчи Введите корректное значение в поле капчиОписание кода CVC картыМетка кода CVC картыОписание месяца окончания срока действия картыМетка месяца окончания срока действия картыОписание года окончания срока действия картыМетка года окончания срока действия картыОписание имени и фамилии владельца картыМетка имени и фамилии владельца картыНомер картыОписание номера картыМетка номера картыКайманские островаКопияЦентральная Африканская РеспубликаЧадИзменить значениеСимволысимволов осталосьСимволыХакер что ли?Ознакомьтесь с нашей документациейЧекбоксСписок флажковФлажкиВыбраноВыбранное значение расчетаЧилиКитайОстров РождестваГородНазвание классаОчистить успешно заполненную форму?Кокосовые (Килинг) островаПолучение оплатыКолумбияОбщие поляКоморыСложные уравнения могут быть созданы путем добавления скобок: %s(поле_45 * поле_2) / 2%s.ПодтвердитьПодтвердите, что вы не роботКонгоКонго (Демократическая Республика Конго)Контактная формаСпросите меняСвязаться с намиКонтейнерПродолжитьОстрова КукаЦенаВыпадающей список затратПараметры затратТип затратКоста-РикаКот-д'ИвуарНе удалось активировать лицензию. Проверьте ваш лицензионный ключСтранаСоздает уникальный ключ для идентификации и назначения вашего поля для пользовательской разработки.Кредитная картаКод CVC кредитной картыCVV-код кредитной картыСрок действия кредитной картыИмя и фамилия на кредитной картеНомер кредитной картыZip-код кредитной картыZip-код на кредитной картеБлагодарностиХорватия ( Hrvatska)КубаВалютаСимвол валютыТекущая страницаПроизвольноПользовательский класс CSSПользовательские классы CSSПользовательские имена классовГруппа пользовательских полейПользовательская маскаОпределение пользовательских масокНастраиваемое   поле   удалено .Обновление   настраиваемого   поля .Первый пользовательский вариантКипрЧешская РеспубликаDD-MM-YYYYDD/MM/YYYYОТЛАДКА: Перейти на 2.9.xОТЛАДКА: Перейти на 3.0.xТемнаяДанные успешно восстановлены!ДатаДата созданияФормат датыНастройки датыДата отправкиДата обновленияВыбор датыДеактивироватьДеактивироватьДеактивировать все лицензииДеактивировать лицензиюНа вкладке настроек можно деактивировать лицензии для расширений Ninja Forms по одной или по группам.По умолчаниюСтрана по умолчаниюПозиция метки по умолчаниюЧасовой пояс по умолчаниюПо умолчанию для текущей датыЗначение по умолчаниюЧасовой пояс по умолчанию: %sВременная зона по умолчанию %s — должна быть UTCЗадаваемые поляУдалитьУдалить (^ + D + щелчок)Удалить НавсегдаУдалить формуУдалить эту позицию навсегдаДанияОписаниеСодержание описанияПоложение описанияЗнаете ли вы, что разбиение больших форм на меньшие, легко усваиваемые части помогает улучшить показатель конверсии?

    Это удобно делать при помощи расширения «Многоэлементные формы» для Ninja Forms.

    Отключить уведомления администратораОтключить автозаполнение в браузереОтключить вводОтключить расширенный текстовый редактор на мобильном устройствеОтключить ввод?ПропуститьОтображатьОтобразить название формыПоказать названиеПоказать настройкиПоказать эту переменную расчетаОтображать заголовокОтображение формыРазделительДжибутиНе показывать эти условияДокументацияДокументация будет доступна в ближайшее время.В настоящее время доступны все основные документы от %sРуководства по устранению неполадок%s до %sИнтерфейса прикладного программирования для разработчиков%s. Тем не менее, постоянно добавляются новые документы.НЕ применяется для предварительного просмотра формы.Применяется для предварительного просмотра формы.ДоминикаДоминиканская РеспубликаГотовоЗагрузить все заявкиВыпадающее менюДублироватьДублировать (^ + C + щелчок)Дублировать формуЭквадорИзменитьИзменить действиеРедактировать формуРедактировать товарРедактировать пункт менюРедактировать заявкуРедактировать эту позициюРедактирование поляРедактирование поляЕгипетСальвадорЭлементE-mailЭлектронные письма и действияEmail-адресТекст письмаФорма подписки на рассылкуАдрес эл. почты или поиск поляАдреса электронной почты или поиск поляПисьмо будет отправлено с этого адреса электронной почты.Письмо будет отправлено от этого имени.Электронные письма и действияДата окончанияПеред предоставлением разрешения на отправку формы убедитесь в том, что это поле заполнено.Введите текст, который должен отображаться в поле перед тем, как пользователь начнет вводить данные.Введите метку поля формы. Таким образом пользователи будут идентифицировать отдельные поля.Введите адрес электронной почтыСредаПодсчетУравнение (дополнительно)Экваториальная ГвинеяЭритреяОшибкаСообщение об ошибке, которое отображается, если не все обязательные поля заполненыЭстонияЭфиопияРегистрация на мероприятиеРазвернуть менюМесяц окончания срока действия (ММ)Год окончания срока действия карты (ГГГГ)ЭкспортЭкспорт избранных полейЭкспорт полейЭкспортировать формуЭкспорт формЭкспорт формыЭкспортировать этот элементРасширьте возможности Ninja FormsПередача файлаОшибка записи на диск.Фолклендские (Мальвинские) островаФарерские островаИзбранные поляИзбранное успешно импортировано.ПолеПоле №Идентификатор поляКлюч поляПоле не найденоОперации поляПоляПоля, помеченные символом «*», обязательны к заполнению.Поля, помеченные символом %s*%s, обязательны к заполнениюФиджиОшибка передачи файлаПродолжается передача файла.Загрузка остановлена по причине неверного расширения.ФинляндияИмяИсправитьFooFoo BarНапример, если у вас есть ключ продукта A4B51.989.B.43C, то вы можете замаскировать его как a9a99.999.a.99a. Таким образом, все «а» должны быть буквами, а все «9» должны быть числамиФормаФорма по умолчаниюФорма удаленаПоля формыФорма успешно импортирована.Ключ формыФорма не найденаПредварительный просмотр формыПараметры формы сохраненыФормыОшибка импорта шаблона формы.Название формыФорма с вычислениямиФорматФормыФормы удаленыЧисло форм на страницеФранцияФранция (метрополия)Французская ГвианаФранцузская ПолинезияФранцузские южные территорииПятница, 18 ноября 2019 г.Адрес отправителяИмя отправителяПолный список измененийВо весь экранГабонГамбияОсновныеОсновные настройкиГрузияГерманияПолучить помощь!Другие действияДругие типыПолучите помощьПолучить поддержкуПолучить системный отчетПолучите ключ сайта для своего домена, зарегистрировавшись %sздесь%sНачните с добавления своего первого поля в форму.Начните с добавления своего первого поля в форму. Щелкните знак «плюс» и выберите необходимые действия. Вот и все.Общая информацияНачало работы с Ninja FormsГанаГибралтарПрисвойте вашей форме название. По этому названию вы сможете найти ее позже.Перейти кВаша попытка не удаласьПерейти к формамПерейти к Ninja FormsПерейти на первую страницуПерейти к последней страницеПерейти к следующей страницеПерейти на предыдущую страницуГрецияГренландияГренадаРасширение документацииГваделупаГуамГватемалаГвинеяГвинея-БисауГайанаHTMLГаитиПол-экранаОстрова Херд и МакдональдЗдравствуйте, Ninja Forms!ПомощьТекст справкиТекст справки здесьНевидимыйСкрытое полеСкрыть названиеСкрытьСкрыть успешно заполненную форму?Подсказка: Пароль должен содержать не менее семи символов. Для обеспечения более высокого уровня надежности используйте заглавные и строчные буквы, а также цифры и специальные символы, такие как ! " ? $ % ^ &).ВатиканДомашний URLГондурасHoney PotОшибка HoneypotСообщение об ошибке системы HoneypotГонконгТег привязкиHost Name (Имя хоста)Как идут дела?ВенгрияIP-адресИсландияЕсли функция пояснительного текста включена, то рядом с полем ввода будет отображаться знак вопроса %s. При наведении курсора на этот знак появится пояснительный текст.Если функция текста справки включена, то рядом с полем ввода будет отображаться знак вопроса %s. При наведении курсора на этот знак появится текст справки.Если этот флажок установлен, ВСЕ данные Ninja Forms будут удалены из вашей базы данных при удалении плагина. %sВсе формы и данные заявок будут окончательно удалены.%sЕсли этот флажок установлен, плагин Ninja Forms очистит значения формы после ее успешной отправки.Если этот флажок установлен, Ninja Forms скроет форму после ее успешной отправки.Если этот флажок установлен, Ninja Forms отправит копию этой формы (и любые прилагаемые сообщения) по указанному адресу.Если этот флажок установлен, Ninja Forms зарегистрирует введенные данные как адрес электронной почты.Если этот флажок установлен, будут выводиться поля для пароля и его подтверждения.Если этот флажок установлен, данный столбец в таблице заявок будет упорядочен по номерам.Если вы человек и видите это поле, пожалуйста, оставьте его пустым.Если вы человек, не вводите данные в это поле.Если вы человек, пожалуйста, действуйте медленнее.Если оставить это поле пустым, предел не будет установленЕсли вы примете участие, некоторые данные о вашей установке Ninja Forms будут отправляться на сайт NinjaForms.com (НЕ включая ваши присланные данные).Если вы этого не хотите, нет проблем! Ninja Forms продолжит работать как надо.Если вы хотите отправить пустое значение или расчет, необходимо использовать символ ''.Если вы хотите, чтобы ваша форма отправляла вам уведомление по электронной почте, когда пользователь нажимает кнопку отправки, это можно сделать на этой вкладке. Можно создать неограниченное количество сообщений, включая сообщения, адресованные пользователю, который заполнил форму.Если после обновления до версии 2.9 ваши формы «пропали», нажмите эту кнопку, чтобы запустить процесс преобразования старых форм в формат, подходящий для версии 2.9. Все текущие формы останутся в таблице «Все формы».ИмпортИмпорт / ЭкспортИмпорт/экспорт заявокИмпорт избранных полейИмпорт избранногоИмпорт полейИмпортировать формуИмпорт формИмпорт элементов спискаИмпорт формыИмпорт/экспортБолее ясные обозначенияВключить автоматический подсчет итога? (Если включено)Неправильный ответПовышение показателя конверсийИндияИндонезияМаска вводаВставитьВставить все поляВставить полеВставить ссылкуВставить медиафайлВнутри элементаУстановленоУстановленные плагиныГруппы по интересамОшибка импорта формы.Неверный код формыИран (Исламская Республика)ИракИрландияЭто должен быть адрес электронной почты?ИзраильВот и все. Или...ИталияЯмайкаЯпонияСообщение об ошибке отключения JavaScriptJohn DoeИорданияПросто щелкните здесь и выберите необходимые поля.КазахстанКенияКлючКирибатиKitchen SinkСеверная Корея (Корейская Народно-Демократическая Республика)Южная Корея (Республика Корея)КувейтКыргызстанМеткаМетка здесьНазваниеПозиция меткиМетка используется при просмотре и экспорте заявок.метка, значение, расчетМеткиЯзык, используемый для reCAPTCHA. Чтобы получить код для вашего языка, нажмите %sздесь%sЛаос (Лаосская Народно-Демократическая Республика)ФамилияЛатвияЭлементы компоновкиПоля макетаИзучить подробнееУзнайте больше о многоэлементных формахУзнайте больше о расширении Save ProgressЛиванСлева от элементаСлева от поляЛесотоЛиберияЛивийская Арабская ДжамахирияЛицензииЛихтенштейнсветлаяОграничение элементов ввода до указанного числаСообщение о достижении пределаОграничение заявокОграничение элементов ввода до указанного числаСписокСопоставление полей спискаТип спискаСписки рассылокЛитваИдет загрузкаЗагрузка...МестонахождениеЗарегистрированыДлинная форма: ЛюксембургMM-DD-YYYYMM/DD/YYYYМакауМакедония (бывшая республика Югославии)МадагаскарМалавиМалайзияМальдивыМалиМальтаУправляйте запросами ценовых предложений на своем сайте с помощью этого шаблона. При необходимости можно добавлять и удалять поля.Маршалловы островаМартиникаМавританияМаврикийМаксМаксимальный уровень вложенности при вводеМаксимальное значениеМожет быть, потомМайоттаСреднеСообщениеМетки сообщенийОтображается для тех пользователей, которые не выполнили авторизацию, если флажок «авторизация» выше установлен.Поле метаданныхМексикаМикронезия (Федеративные Штаты Микронезии)Миграция и заполнение демонстрационными данными завершены. МинутаМинимальное значениеПрочие поляНесоответствиеОтсутствует временная папка.Демонстрация действия электронной почтыДемонстрация действия сохраненияДемонстрация сообщения об успешном действииДата измененияМолдова (Республика Молдова)МонакоМонголияЧерногорияМонсерратВскоре ожидаются дополнительные улучшенияМароккоПереместить эту позицию в урнуМозамбикВыбор нескольких значенийНесколько товаров – выбрать несколькоНесколько товаров – выбрать одинНесколько товаров – выпадающий списокМножественный выборРазмер окна множественного выбораНесколькоМое первое вычислениеМое второе вычислениеВерсия MySQL МьянмаИмяИмя и фамилия на картеИмя или поляНамибияНауруНужна помощь?НепалНидерландыНидерландские Антильские островаУведомления администратора от Ninja Forms не будут отображаться на панели управления. Снимите этот флажок, чтобы увидеть их снова.Новое действиеНовая вкладка конструктораНовая КаледонияНовый элементНовая заявкаНовая ЗеландияФорма подписки на рассылку новостейНикарагуаНигерНигерияНастройки Ninja FormsNinja FormsNinja Forms – обработкаСписок изменений Ninja FormsРазработчик Ninja FormsДокументация к Ninja FormsОбработка Ninja FormsОтправка Ninja FormsСостояние системы Ninja FormsДокументация для Ninja Forms версии 3Обновление Ninja FormsОсуществляется обновление Ninja FormsОбновления Ninja FormsВерсия Ninja FormsВиджет Ninja FormsПлагин Ninja Forms также укомплектован простым шаблоном, который можно вставить непосредственно в файл шаблона php. %sЗдесь представлена основная справочная информация Ninja Forms.Ninja Forms нельзя активировать через сеть. Для активации плагина используйте панель управления на каждом сайте.Все доступные обновления Ninja Forms установлены!Плагин Ninja Forms создан международной группой разработчиков, которые поставили своей целью предоставить сообществу WordPress идеальное средство для создания форм.Ninja Forms должен выполнить обновления %s. Это может занять несколько минут. %sНачать обновление %sНеобходимо обновить настройки электронной почты Ninja Forms, нажмите %sздесь%s, чтобы начать обновление.Необходимо обновить таблицу заявок Ninja Forms, нажмите %sздесь%s, чтобы начать обновление.Необходимо обновить уведомления форм Ninja Forms, нажмите %sздесь%s, чтобы начать обновление.Необходимо обновить параметры форм Ninja Forms, нажмите %sздесь%s, чтобы начать обновление.Ninja Forms имеет виджет, который можно использовать на вашем сайте, указав какую из форм необходимо отобразить в заданном месте.Короткий код Ninja Forms используется без указания формы.НиуэНетНикаких действий не указано...Избранные поля не найденыПоля не найдены.Заявки не найденыЗаявки не найдены в корзинеНет доступных условий для этой таксономии. %sДобавить условие%sНет файла для загрузки!Формы не найдены.Таксономия не выбрана.Действующий список изменений не найден.ОтсутствуетОстров НорфолкСеверные Марианские островаНорвегияСообщение о необходимости авторизацииЕще нетНе найдено в корзинеПримечаниеТекст примечания можно редактировать в поле для примечания в разделе дополнительных настроек ниже.Помните: для этого контента требуется JavaScript.Уведомление: короткий код Ninja Forms используется без указания формы.ЧислоМакс. номер ошибкиМин. номер ошибкиЧисловые опцииЧисло звездЧисло десятичных разрядов.Количество секунд для обратного отсчетаКоличество секунд для обратного отсчетаКоличество секунд для отправки по таймеру.Число звездОманОдинОдин адрес электронной почты или полеПроблема! Этот дополнительный компонент еще не совместим с Ninja Forms 3. %sПодробнее%s.Открыть в новом окнеОперации и поля (дополнительно)Мотивированные стилиВариант одинВариант триВариант дваПараметрыОрганизаторНаш объем поддержкиВывод расчета какЯзык PHPКоличество входящих параметров в запросе PHPМаксимальный размер запроса PHPОграничение времени выполнения PHPВерсия PHPОПУБЛИКОВАТЬПакистанПалауПанамаПапуа — Новая ГвинеяТекст параграфаПарагвайРодительский элемент:ПарольПодтверждение пароляМетка несовпадения паролейПароли не совпадаютПоля оплатыПлатёжные шлюзыОплата: всегоОтказано в разрешенииПеруФилиппиныТелефонТелефон: (555) 555-5555ПиткэрнПоместите %s в любой области, которая принимает короткие коды для отображения формы. Это можно сделать даже в середине содержимого страницы или поста.ЗаполнительОбычный текстПожалуйста, %sсвяжитесь со службой поддержки%s и сообщите об указанной выше ошибке.Пожалуйста, ответьте правильно на вопрос для защиты от спама.Пожалуйста, проверьте обязательные поля.Пожалуйста, заполните поле капчиЗаполните поле ReCaptchaИсправьте ошибки перед отправкой этой формы.Пожалуйста, заполните все обязательные поля.Введите сообщение, которое будет отображаться при достижении предела заявок и прекращении приема новых заявок для этой формы.Введите правильный адрес электронной почтыУкажите действительный адрес электронной почты!Введите действительный адрес электронной почты.Помогите нам улучшить Ninja Forms!При запросе поддержки укажите следующую информацию:Увеличивайте с шагом Пожалуйста, оставьте поле “спам” пустым.Убедитесь, что вы правильно ввели ключ сайта и секретный ключПожалуйста, оцените плагин %sNinja Forms%s %s на %sвеб-сайте WordPress.org%s, чтобы помочь нам предоставлять этот плагин бесплатно. Спасибо от команды WP Ninjas!Выберите форму для просмотра заявокВыберите форму.Выберите допустимый файл для экспортируемой формы.Выберите допустимый файл избранных полей.Выберите избранные поля для экспорта.Используйте следующие операторы: + - * /. Это дополнительная функция. Не допускайте таких операций, как деление на 0.Пожалуйста, подождите %n секундПожалуйста, подождите, пока отправляется форма.ПлагиныПольшаЗаполнить это поле с помощью таксономииПортугалияПостИдентификатор публикации/страницы (если есть)Название публикации/страницы (если есть)URL-адрес публикации/страницы (если есть)Создание постаID записиЗаголовокСсылка на записьПредпросмотрПросмотреть измененияПредварительный просмотр формыПредварительный просмотр не предусмотрен.ЦенаЦена:Поля ценыОбработкаОбработка меткиМетка обработки заявкитоварТовар (вместе с количеством)Товар (количество отдельно)Товар АТовар БФорма товара (количество в строке)Форма товара (несколько товаров)Форма товара (с полем количества)Тип товараПрограммное имя, которое может использоваться для ссылки на эту форму.ОпубликоватьПуэрто-РикоПокупкаКатарКоличестовКоличество товара АКоличество товара БКоличество:Строка запросаСтроки запросаПеременная QueryStringТема(Вопрос)Позиция вопросаЗапрос ценового предложенияРадиоСписок переключателейПовторно введите парольМетка подтверждения пароляДействительно деактивировать все лицензии?ReCaptchaПеренаправитьУдалитьУдалить ВСЕ данные Ninja Forms при удалении плагина?Удалить значениеВозможность удаления всех данных Ninja FormsУдалить это поле? Оно будет удалено даже в том случае, если вы не сохраните форму.Кому ответитьДолжен ли пользователь авторизоваться для просмотра формы?НеобходимОбязательное полеОшибка обязательного поляМетка обязательного поляСимвол обязательного поляСбросить преобразование формыСбросить преобразование формСбросить процесс преобразования для версии 2.9+ВосстановитьВосстановление Ninja FormsВосстановить эту позицию из урныНастройки ограниченийОграниченияОграничивает для пользователя тип данных, которые должны быть введены в это поле.Вернуться к Ninja FormsРеюньонРасширенный редактор текста (RTE)Справа от элементаСправа от поляОткатОткат к самому последнему выпуску 2.9.x.Откат к версии 2.9.xРумынияРоссийская ФедерацияРуандаSMTPКлиент SOAPУстановлен SUHOSINСент-Китс и НевисСент-ЛюсияСент-Винсент и ГренадиныСамоаСан-МариноСао-Том и ПринсипиСаудовская АравияСохранитьСохранить и активироватьСохранить настройки поляСохранить формуСохранить параметрыСохранить настройки.Сохранить отправкуСохраненоСохраненные поляИдет сохранение...Поиск элементаПоиск заявокВыпадающий списокВыбрать ВсеВыберите в спискеВыберите поле или введите данные для поискаВыберите файлВыбрать формуВыберите форму или введите текст для поискаВыберите количество заявок, которые можно будет принять по этой форме. Если ограничение не требуется, оставьте это поле пустым.Выберите положение вашей метки относительно самого элемента поля.ВыбраноВыбранное значениеОтправитьОтправить копию формы по этому адресу?СенегалСербияIP-адрес сервераНастройкиНастройки сохраненыСейшельские ОстроваДоставкаСокращенный кодЗдесь должно быть введено значение в процентах, например: 8,25%, 4%Показать текст справкиПоказать кнопку загрузки медиаБольшеПоказать индикатор надежности пароляПоказать расширенный редактор текстаПоказатьОтображать значения элементов спискаПоказывается пользователям при наведении курсора.Сьерра-ЛеонеСингапурРазовыйЧекбоксЕдиничные затратыТекст одной строкиЕдиничный товар (по умолчанию)URL СайтаСловакия (Словацкая Республика)СловенияОбычная почтаНапример, если вы хотите создать маску для номера американского социального страхования, вам нужно ввести в поле значение 999-99-9999Соломоновы ОстроваСомалиСортировка по числовым значениямСортировка по числовым значениямЮжная АфрикаЮжная Георгия, Южные Сандвичевы ОстроваЮжный СуданИспанияСпам-ответСпам-вопросУкажите операции и поля (дополнительно)Шри-ЛанкаОстров Святой ЕленыСен-Пьер и МикелонСтандартные поляРейтинг в звездахНачните с шаблонаСтатусСтатусШагВыполняется шаг %d из примерно %dШаг (степень увеличения)Индикатор надёжностиСильныйВложенная последовательностьТемаТекст темы или поиск поляТекст темы или поиск поляОтправкаCSV заявкиПрисланные данныеСведения о заявкеОграничение кол-ва отправок формыМетаданные заявкиСтатистика заявокЗаявкиОтправитьТекст кнопки «Отправить» появляется после срабатывания таймераОтправить с помощью AJAX (без перезагрузки страницы)?ОтправленоКем отправленоКем отправлено: Дата отправкиДата отправки: ПодписатьсяСообщение об успешном выполненииСуданСуринамОстрова Свалбрад и Ян-МайенСвазилендШвецияШвейцарияСирийская Арабская РеспубликаСистемаСостояние системыВыходит версия 3!ТайваньТаджикистанОзнакомьтесь с приведенной ниже подробной документацией к Ninja Forms.Танзания (Объединенная Республика Танзания)НалогНалоговые процентыТаксономияПоля шаблонаФункция шаблонаСписок условийТекстЭлемент текстаТекст, отображаемый после счетчикаТекст, отображаемый после счетчика слов/символовТекстовое полеТекстовое полеТайландБлагодарим за заполнение этой формы.Спасибо за обновление до последней версии! Ninja Forms %s сделает вашу работу по управлению заявками легкой и приятной!Спасибо за обновление плагина Ninja Forms до версии 2.7. Обновите расширения Ninja Forms от Благодарим за обновление! Ninja Forms %s позволяет создавать формы быстрее и проще, чем когда либо ранее!Благодарим за использование Ninja Forms! Мы надеемся, что вы нашли все, что вам нужно, но если у вас есть какие-либо вопросы:{field:name}, спасибо за заполнение моей формы!Обычно 16 цифр на лицевой стороне вашей кредитной карты.3 цифры (на обороте) или 4 цифры (на лицевой стороне карты).9 будет представлять любую цифруОтправной точкой для Ninja Forms является меню «Формы». Мы уже создали вам первую %sконтактную форму%s для примера. Вы также можете создать свою собственную форму, нажав кнопку %sДобавить новую%s.Формат должен выглядеть следующим образом:Обновление интерфейса в этой версии является основой для значительных улучшений в будущем. Эти изменения будут использованы в версии 3.0, чтобы сделать Ninja Forms еще более стабильным, мощным и удобным конструктором форм.Месяц, в котором истекает срок действия вашей кредитной карты (как правило, указывается на лицевой стороне).Основные настройки отображаются сразу, в то время как другие, несущественные настройки скрыты внутри расширяемых разделов.Имя и фамилия, отпечатанные на лицевой стороне вашей кредитной карты.Пароли не совпадают.Люди, которые создали Ninja FormsПроцесс запущен, пожалуйста, подождите. Это может занять несколько минут. По окончании процесса вы будете автоматически направлены на другую страницу.Размер загружаемого файла превышает максимально допустимое значение MAX_FILE_SIZE, указанное для данной HTML-формы.Размер загружаемого файла превышает максимально допустимое значение (параметр upload_max_filesize directive в файле php.ini).Файл был загружен только частично.Год, в котором истекает срок действия вашей кредитной карты (как правило, указывается на лицевой стороне).Доступна новая версия %1$s. Просмотреть сведения о версии %3$s или обновить.Доступна новая версия %1$s. Просмотреть сведения о версии %3$s.Неправильный формат переданного файла.Это все поля из раздела цен.Это все поля из раздела сведений о пользователе.Это предварительно заданные маскирующие символыЭто различные специальные поля.Содержание этих полей должно совпадать!Этот столбец в таблице заявок будет упорядочен по номерам.Это обязательное поле.Это обязательное поле.Это проверкаЭто штат пользователя.Это действие электронной почты.Это еще одна проверка.Это время должен выждать пользователь, чтобы отправить формуЭта метка используется при просмотре, редактировании или экспорте заявок.Это программное имя поля. Например: my_calc, price_total, user-total.Это штат пользователяЭто значение будет использоваться, если оно %sвыбрано%s.Это значение будет использоваться, если оно %sне выбрано%s.Здесь вы будете создавать вашу форму, добавляя поля и перетаскивая их в требуемом порядке. Каждое поле имеет набор опций, таких как метка, позиция метки и заполнитель.Этот ключевое слово зарезервировано для WordPress. Попробуйте ввести другое.Это сообщение появляется внутри кнопки отправки, когда пользователь нажимает кнопку «Отправить». Оно уведомляет пользователя, что его заявка обрабатывается.Это сообщение появляется, если пользователь вводит разный текст в поля для пароля и его подтверждения.Этот число будет использоваться в расчетах, если флажок установлен.Этот число будет использоваться в расчетах, если флажок не установлен.Эта опция позволяет ПОЛНОСТЬЮ удалить все, что имеет отношение к плагину Ninja Forms, включая ЗАЯВКИ и ФОРМЫ. Это действие нельзя отменить.Эта вкладка содержит общие параметры формы, такие как название и метод представления, а также параметры отображения, такие как скрытие формы, когда она успешно заполнена.Это будет темой письма.В результате пользователь не сможет вводить любые другие символы, кроме цифрТриОтложенная отправкаСообщение об ошибке таймераТимор-Лешти (Восточный Тимор)НаДля активации лицензий для расширений Ninja Forms вы должны сначала %sустановить и активировать%s выбранное расширение. После этого параметры лицензий будут показаны ниже.Чтобы использовать эту функцию, вы можете вставить CSV в текстовое поле выше.Сегодняшняя датаПереключить всплывающее менюТогоТокелауТонгаОбщее УрнаСледуйте спецификациям для %sфункции PHP date()%s, но учтите, что поддерживаются не все существующие форматы.Тринидад и ТобагоТунисТурцияТуркменистанТёркс и Кайкос, островаТувалуДваТипСайтТелефон в СШАУгандаУкраинаНе выбраноНе выбранное значение расчетаНа вкладке «Основные настройки формы» вы можете выбрать страницу, в конце которой выбранная форма будет отображаться автоматически. Аналогичную функцию можно увидеть на боковой панели во всех окнах редактора контента.ОтменитьОтменить всеОбъединённые Арабские ЭмиратыВеликобританияСШАВнешние малые острова СШАНеизвестная ошибка загрузки.НеопубликованОбновитьОбновить элементОбновлено: Обновление базы данных формАпгрейдОбновление до Ninja Forms 3ОбновленияОбновление завершеноURL-адресУругвайИспользуйте уравнение (дополнительно)Использовать количествоИспользовать первый пользовательский вариантИспользуйте правила стилей Ninja Forms по умолчанию.Используйте следующий короткий код для вставки окончательного расчета: [ninja_forms_calc]Используйте приведенные ниже советы чтобы начать работу с Ninja Forms. Все будет готово в кратчайшие сроки!Используйте это поле для регистрации пароляИспользуйте это поле для регистрации пароля. Если этот флажок установлен, будут выводиться поля для пароля и повторного ввода пароляИспользуется для маркировки поля для обработки.пользовательОтображаемое имя пользователя (при входе в систему)Адрес эл. почты пользователяАдрес эл. почты пользователя (при входе в систему)Ввод пользователяИмя пользователя (при входе в систему)ID ПользователяИдентификатор пользователя (при входе в систему)Группа полей информации о пользователеИнформация о пользователеПоля информации о пользователеФамилия пользователя (при входе в систему)Метаданные пользователя (при входе в систему)Введенные пользователем значенияВведенные пользователем значения:Пользователи более охотно заполняют длинные формы, когда они могут сохранить изменения, а затем вернуться к этой работе и завершить ее позже.

    Расширение Save Progress для Ninja Forms позволяет сделать это легко и быстро.

    УзбекистанЗарегистрировать как адрес электронной почты? (Поле обязательно для заполнения)ЗначениеВануатуИмя переменнойВенесуэлаВерсияВерсия %sОчень слабыйВьетнамПросмотрПросмотр %sПосмотреть измененияПосмотреть формыПосмотреть товарПросмотреть заявкуПосмотреть заявкиПросмотреть полный список измененийВиргинские острова (британские)Виргинские острова (США)Посетить страницу плагинаРежим отладки WPЯзык WPМаксимальный объем загрузки WPЛимит памяти WPВключение распределенного WPWP Remote PostВерсия WPУоллис и Футуна, островаМы делаем все возможное для предоставления каждому пользователю Ninja Forms оптимальной поддержки. Если вы столкнулись с проблемой или у вас есть вопросы, %sобращайтесь к нам%s.Мы добавили опцию удаления всех данных Ninja Forms (заявок, форм, полей, настроек) при удалении плагина из WordPress. Мы назвали ее «ядерной» опцией.Мы заметили, что в вашей форме нет кнопки «Отправить». Мы можем добавить ее автоматически.НенадежныйИнформация о веб-сервереДобро пожаловать в Ninja FormsДобро пожаловать в Ninja Forms %sЗападная СахараКак мы можем помочь?Действия, которые необходимо попробовать выполнить перед тем, как обращаться в службу поддержкиКак назвать этот элемент избранного?Что новогоПри создании и редактировании форм вы можете перейти непосредственно к тому разделу, который имеет наибольшее значение.Кто должен быть адресатом этого письма?СловаСловаОболочкаY-m-dd/m/YГГГГ-ММ-ДДYYYY/MM/DDЙеменДаВы имеете право выполнить обновление до версии-кандидата Ninja Forms 3! %sОбновить прямо сейчас%sСимволы также можно комбинировать их для конкретных ситуацийВы можете ввести здесь уравнение для расчета, используя поле_x, где х – идентификатор используемого поля. Например, %sполе_53 + поле_28 + поле_65%s.Вы не сможете отправить форму при отключении Javascript.У вас нет разрешения на установку обновлений плагинаУ вас нет разрешения.Вы не добавили кнопку для отправки формы.Для предварительного просмотра формы вы должны пройти авторизацию.Необходимо указать название для избранного.Для отправки этой формы требуется JavaScript. Включите JavaScript и повторите попытку.Вы приобрели Вы найдете это в письме, относящемся к вашей покупке.Ваша форма успешно отправлена.Ваш сервер не имеет включенных fsockopen или cURL — PayPal IPN и другие скрипты, которые связываются с другими серверами, не будут работать. Свяжитесь со своим хостинг провайдером.На вашем сервере не включен класс %sклиента SOAP%s – некоторые плагины шлюза, которые используют протокол SOAP, могут работать неправильно.На вашем сервере включен пакет cURL и отключен пакет fsockopen.На вашем сервере включены пакеты fsockopen и cURL.На вашем сервере включен пакет fsockopen и отключен пакет cURL.На вашем сервере включен класс клиента SOAP.Ваша версия расширения для загрузки файлов не совместима с плагином Ninja Forms версии 2.7. Расширение должно иметь версию не ниже 1.3.5. Пожалуйста, обновите это расширение здесь: Ваша версия расширения для сохранения прогресса не совместима с плагином Ninja Forms версии 2.7. Расширение должно иметь версию не ниже 1.1.3. Пожалуйста, обновите это расширение здесь: ЮгославияЗамбияЗимбабвеПочтовый индексZIP-кодa – представляет букву латинского алфавита (A–Z, a–z) – допускается вводить только буквыответbutton-secondary nf-download-allопубликовалсимволов осталосьвыбраноКопироватьспециальныйd-m-Ydashicons dashicons-updateдубликатfoo@wpninjas.comч.js-newsletter-list-update extral, F d Ym-d-Ym/d/Yотсутствуетизтовара А и товара Б за $одинone_week_supportпарольидет обработкатоваров для reCAPTCHAЯзык reCAPTCHAСекретный ключ reCAPTCHAНастройки reCAPTCHAКлюч сайта reCAPTCHAТема reCAPTCHAНастройка reCaptchaобновитьsmtp_portтризаголовокдване выбранообновленouser@gmail.comверсииОперация wp_remote_post() не выполнена. PayPal IPN может не работать с вашим сервером.Операция wp_remote_post() не выполнена. PayPal IPN не будет работать с вашим сервером. Обратитесь к поставщику услуг хостинга. Ошибка:Операция wp_remote_post() выполнена – PayPal IPN работает.lang/ninja-forms-vi.mo000064400000304603152331132460010667 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 517D|X~=jE: 2@V r18tu~G RmrJ<  ' 3?Ugy3I_"2 HUEdD  ",F\ q}  %71Gi ' N *o $:>#B0f   !) 1<@Ib x^1DLQXs%,<")L S`t| * +8@E IU lx d -7@G M]X!:Wk |*3 ^k ,  +I`i~ 4 I St  *5ZF -?Uk (' ,9U hu&!)>%h + 5 ;G\ nz / '1GQ 3*Fq5I, I S`/$"++ Wc/-(] #  $ 4 @L]q 55N6(` {jo%V|_9AJar!   3-H!v*   %B ^8h;H bmr "& IUi{  $%)Jt"!8L_rQ=  $    _ q (u       $  - 7 ?  Y d  i s  z     !    " ) .  = H  M n B \ l  u         jZHm\L]gJo@YU%e $3:"J!m  " &I>#   0BXq #5*<gj r"I  /,\t { <r&'),V^w&   &&7&V }            % 0 )7  a l s |    &! =! H! S! ]!-g!!!!! ! !!""""<" ##/#D# V#w##.#### # $ $($G$$O$ t$$%$#$#$$"%4%<%U%k%~%%%%%%%%%%%|&& & && &!& ' ''' 3'?')]'''''&' (+(2C(v((((MB))K$*p*++G,,`--O...//-6/d/%/7/M/.00_0-~060001 1&1F1$W1|1e1;1X&2222222 2 3(,3U3^3c3)i3m34%4C4V4h4w4 44&44414.+5Z5w5 5555555 5 55 6-6H6^6q666 66 66677N7F281y8,88/8:$9_9/90-:/^:1:6::';X0;;9><x<4<=</=4=="= > >->I>X>"_>+>#>>> >> ?)?B?&U?|?????? ?&?)@2@A@-P@)~@5@@I@ [-\2.\a\]]11^Sc^^i_@_>0`Ko`Q`5 a%CaAia&a'aa*b ?b&`bCbPbdc,cOcVcUdPUeeaf_ffNggh'Gidoiiiijj#ji kwkkkkk k kkPldlll |lllllllll l3m@4m unn$n1nn$n%o=o So`oso-o o"o oopp-pMp1gp=pYp1q8qr2rr<r/s*Dsos/ss's)st#9t/]t)t.t/t$u ;vCFv vv v v vv v vvvv w ww(w&?w"fwwwww,wx.xFx^xnxxy`zzz,{.<{k{*z{L{8{+|N>|*||| ||| | |||k|`g}};~M~"(:K94VL9\3ʀ;\5;΂7 B9 .9@IOWW    $ ?L]c!  &0Fbx  Ňχ ҇އ l!E= Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Trường Mở trong cửa sổ mới Hoàn tác tất cả được cài đặt. Phiên bản hiện tại là sản phẩm cho yêu cầu bản cập nhật. Bạn có phiên bản #Đã cập nhật %1$s bản nháp. Xem trước %3$s%1$s đã được khôi phục để sửa đổi từ %2$s.%1$s được lên lịch cho: %2$s. Xem trước %4$s%1$s đã gửi. Xem trước %3$s%n sẽ được sử dụng để biểu thị số giây%s trước đây%s đã được xuất bản.%s đã lưu.%s đã cập nhật.Đã hủy kích hoạt %s.%sCho phép%sGiá trị Phép tính %sĐược đánh dấu%s %sKhông cho phép%sGiá trị Phép tính %sKhông được đánh dấu%s * - Đại diện cho ký tự chữ-số (A-Z,a-z,0-9) - Tùy chọn này cho phép nhập cả chữ cái và số- Không- Chọn Mẫu- Chọn một Trường- Chọn một Sản phẩm- Chọn một biến số- Chọn một mẫu- Xem tất cả loại9 - Đại diện cho ký tự số (0-9) - Chỉ cho phép nhập số
    • a - Đại diện cho ký tự chữ (A-Z, a-z) - Chỉ cho phép nhập chữ cái.
    • 9 - Đại diện cho ký tự số (0-9) - Chỉ cho phép nhập số.
    • * - Đại diện cho ký tự chữ-số (A-Z,a-z,0-9) - Cho phép nhập cả số và chữ cái.
    Một câu trả lời phân biệt dạng chữ giúp tránh gửi thư rác đối với mẫu của bạn.Ninja Forms sắp diễn ra một đợt nâng cấp quy mô lớn. %sTìm hiểu thêm về các tính năng mới, khả năng tương thích ngược, và nhiều Câu hỏi thường gặp khác.%sMột trải nghiệm tạo mẫu đơn giản và giàu tính năng hơn.Bên trên Thành phầnPhía trên trườngTên thao tácĐã cập nhật thao tácCác thao tácKích hoạt captchaKích hoạtThêmThêm Mô tảThêm mẫuThêm mớiThêm trường mớiThêm mẫu mớiThêm mục mớiThêm lượt gửi mớiThêm thuật ngữ mớiThêm Phép toánThêm Nút GửiThêm giá trịThêm các thao tác mẫuThêm các trường mẫuThêm mẫu vào trang nàyThêm thao tác mớiThêm trường mớiThêm người đăng ký và mở rộng danh sách email của bạn với mẫu đăng ký nhận bản tin này. Bạn có thể thêm và xóa các trường nếu cần.Giấy phép Tiện ích bổ sungTiện ích bổ sungĐịa chỉđịa chỉ 2Thêm một nhóm bổ sung vào thành phần trường của bạn.Thêm một nhóm bổ sung vào trình bọc trường của bạn.Email quản trịNhãn Quản trịQuản trịNâng caoPhương trình Nâng caoCài đặt nâng caoGiao hàng nâng caoAfghanistanSau Mọi thứSau mẫuSau NhãnĐồng ý?AlbaniaAlgeriaTất cảToàn bộ thông tin về MẫuTất cả trườngTất cả MẫuTất cả các mụcTất cả các mẫu hiện tại sẽ vẫn nằm trong bảng "Tất cả các mấu". Trong một vài trường hợp, một số mẫu có thể được sao y trong suốt quy trình này.Cho phép người dùng đăng ký sự kiện tiếp theo của bạn với mẫu dễ điền này. Bạn có thể thêm và xóa các trường nếu cần.Cho phép người dùng của bạn liên hệ với bạn thông qua mẫu liên hệ đơn giản này. Bạn có thể thêm và xóa các trường nếu cần.Cho phép đầu vào ở dạng văn bản phong phú.Cho phép người dùng lựa chọn nhiều sản phẩm loại này.Sắp xong...Cùng với thẻ "Tạo mẫu của bạn", chúng tôi đã xóa "Thông báo" để hỗ trợ cho "Email & Thao tác." Đây là cách chỉ báo rõ ràng hơn về những gì có thể thực hiện được trên thẻ này.American SamoaĐã xảy ra lỗi không mong đợi.AndorraAngolaAnguillaTrả lờiAntarcticaChống thư rácCâu hỏi về phòng chống thư rác (Câu trả lời = câu trả lời)Thông báo lỗi phòng chống thư rácAntigua Và BarbudaBất kỳ ký tự nào bạn điền vào ô "mặt nạ tùy chỉnh" mà không nằm trong danh sách dưới đây sẽ không được tự động thêm vào cho người dùng khi họ nhập nội dung và sẽ không thể xóa đượcGắn thêm Ninja FormGắn kèm một Ninja FormsGắn thêm vào trangĐồng ýArgentinaArmeniaArubaĐính kèm CSVTập tin đính kèmÚcÁoTrường Tự động Tính tổngTự động Tính tổng Giá trị Phép tínhKhả dụngThuật ngữ hiện cóAzerbaijanQuay lại Danh sáchQuay lại danh sáchSao lưu / Khôi phụcSao lưu Ninja FormsBahamasBahrainBangladeshBarBarbadosCác trường cơ bảnCài đặt cơ bảnBồn tắmBazBccTrước Mọi thứTrước mẫuTrước NhãnTrước khi yêu cầu trợ giúp từ nhóm hỗ trợ của chúng tôi, hãy tham khảo:Ngày Bắt đầuNgày hiện tạiBelarusBỉBelizeBên dưới Thành phầnPhía dưới trườngBeninBermudaCách thức liên hệ tốt nhất?Hỗ trợ Tốt nhất trong Doanh nghiệpPhần cài đặt trường được tổ chức tốt hơnQuản lý giấy phép tốt hơnBhutanThanh toán:Mẫu để trốngBoliviaBosnia Và HerzegovinaBotswanaĐảo BouvetBrazilLãnh thổ Ấn Độ Dương thuộc AnhBrunei DarussalamTạo mẫu của bạnBulgariaCác thao tác hàng loạtBurkina FasoBurundiNútCVCPhép tínhGiá trị Phép tínhPhép tínhPhương pháp Tính toánCài đặt Phép tínhTên phép tínhPhép tínhPhép tính được trả về với phản hồi AJAX ( phản hồi -> dữ liệu -> phép tínhCampuchiaCameroonCanadaHủyCape VerdeMã captcha không đúng. Vui lòng nhập giá trị chính xác vào trường mã captchaMô tả CVC ThẻNhãn CVC ThẻMô tả tháng hết hạn thẻNhãn tháng hết hạn thẻMô tả năm hết hạn thẻNhãn năm hết hạn thẻMô tả tên thẻNhãn tên thẻSố thẻMô tả số thẻNhãn số thẻQuần đảo CaymanCcCộng hòa Trung PhiChadThay đổi Giá trịKý tựKý tự còn lạiKý tựGian lận’ hả?Tham khảo tài liệu của chúng tôi.Hộp kiểmDanh mục hộp kiểmCác hộp kiểmĐã chọnGiá trị phép tính được đánh dấuChileTrung QuốcChristmas IslandThành phốTên lớpXóa mẫu điền thành công?Quần đảo Cocos (Keeling)Thu tiền thanh toánColombiaCác trường chungComorosCó thể tạo các phương trình phức tạp bằng cách thêm dấu ngoặc đơn: %s( trường_45 * trường_2 ) / 2%s.Xác nhậnXác nhận rằng bạn không phải là máy mócCông gôCộng hòa Dân chủ Công-gôMẫu liên hệLiên hệ với tôiLiên hệ với chúng tôiPhần chứaTiếp tụcQuần đảo CookChi phíKéo xuống chi phíTùy chọn chi phíLoại chi phíCosta RicaBờ Biển NgàKhông thể kích hoạt giấy phép. Vui lòng xác minh khóa giấy phép của bạnQuốc giaTạo một khóa duy nhất để xác định và hướng mục tiêu trường của bạn để phát triển tùy chỉnh.Thẻ tín dụngCVC thẻ tín dụngThẻ tín dụng CVVHết hạn thẻ tín dụngHọ tên thẻ tín dụngSố thẻ tín dụngZip thẻ tín dụngMã zip của thẻ tín dụngTín dụngCroatia (Tên Địa phương: Hrvatska)CubaHiện tạiBiểu tượng tiền tệTrang hiện tạiTùy chỉnhNhóm CSS Tùy chỉnhCác Nhóm CSS Tùy chỉnhTên Nhóm Tùy chỉnhNhóm Trường Tùy chỉnhMặt nạ Tùy chỉnhĐịnh nghĩa Mặt nạ Tùy chỉnhTrường tùy chỉnh đã xóa.Trường tùy chỉnh đã cập nhật.Tùy chọn tùy chỉnh đầu tiênCyprusCộng hòa SécDD-MM-YYYYDD/MM/YYYYSỬA LỖI: Chuyển sang 2.9.xSỬA LỖI: Chuyển sang 3.0.xMàu tốiĐã khôi phục dữ liệu thành công!NgàyNgày tạoĐịnh dạng ngàyCài đặt ngàyNgày GửiNgày cập nhậtChọn ngàyHủy kích hoạtHủy kích hoạtHủy kích hoạt tất cả các giấy phépHủy kích hoạt giấy phépHủy kích hoạt các giấy phép tiện ích mở rộng của Ninja Forms riêng lẻ hay theo nhóm từ thẻ cài đặt.Mặc địnhQuốc gia Mặc địnhVị trí nhãn mặc địnhMúi giờ mặc địnhĐặt mặc định ngày hiện tạiGiá trị Mặc địnhMúi giờ mặc định là %sMúi giờ mặc định là %s - múi giờ mặc định nên là UTCTrường xác địnhXóaXóa (^ + D + nhấp)Xóa Vĩnh ViễnXóa mẫu nàyXoá mục này vĩnh viễnĐan MạchMô tảNội dung Mô tảVị trí Mô tảBạn có biết rằng bạn có thể tăng tốc độ chuyển đổi mẫu bằng cách chia các mẫu lớn thành các phần nhỏ hơn và dễ xử lý hơn không?

    Tiện ích mở rộng Mẫu Đa phần cho Ninja Forms làm cho quá trình này nhanh chóng và dễ dàng hơn.

    Tắt thông báo quản trịTắt tính năng Tự động điền Trình duyệtVô hiệu hóa Đầu vàoTắt Trình soạn thảo văn bản giàu tính chất trên di độngVô hiệu hóa đầu vào?Xóa bỏHiển thịHiển thị tiêu đề mẫuTên hiển thịHiển thị thiết lậpHiển thị biến số của phép tính nàyHiển thị Tiêu đềĐang hiển thị mẫu của bạnDividerDjiboutiKhông hiển thị các thuật ngữ nàyTài liệuSẽ sớm có tài liệu.Tài liệu sẵn có bao gồm mọi thứ từ %sKhắc phục sự cố%s đến %sAPI Nhà phát triển%s của chúng tôi. Tài liệu mới luôn được bổ sung.KHÔNG áp dụng cho bản xem trước mẫu.Áp dụng cho bản xem trước mẫu.DominicaCộng hòa DominicaHoàn thànhTải về tất cả lượt gửiThả xuốngSao chépNhân đôi (^ + C + nhấp)Sao y mẫuEcuadorSửaSửa thao tácSửa mẫuSửa mụcSửa mục menuSửa lượt gửiSửa mục nàySửa trườngSửa trườngAi CậpEl SalvadorThành phầnEmailEmail & Thao tácĐịa chỉ emailNội dung EmailMẫu đăng ký emailĐịa chỉ email hoặc tìm kiếm một trườngĐịa chỉ email hoặc tìm kiếm một trườngEmail sẽ xuất hiện từ địa chỉ email này.Email sẽ xuất hiện từ tên này.Emails & Thao tácNgày kết thúcHãy đảm bảo rằng trường này được hoàn tất trước khi cho phép gửi mẫu.Nhập nội dung bạn muốn hiển thị trong trường này trước khi người dùng nhập dữ liệu bất kỳ.Nhập nhãn của trường mẫu. Đây là cách người dùng sẽ xác định các trường đơn lẻ.Nhập địa chỉ email của bạnMôi trườngPhương trìnhPhương trình (Nâng cao)Guinea Xích đạoEritreaLỗiHiển thị thông báo lỗi nếu chưa điền hết tất cả các trường bắt buộcEstoniaEthiopiaĐăng ký sự kiệnMở rộng menuTháng hết hạn (MM)Năm hết hạn (YYYY)XuấtXuất các trường yêu thíchXuất trườngXuất MẫuXuất mẫuXuất một mẫuXuất mục nàyMở rộng Ninja FormsTẢI TẬP TIN LÊNKhông thể lưu tập tin vào đĩa cứngQuần đảo Falkland (Malvinas)Quần đảo FaroeCác trường yêu thíchĐã nhập mục yêu thích thành côngTrườngTrường #ID TrườngKhóa TrườngKhông tìm thấy trườngPhép toán trong TrườngTrườngCác trường được đánh dấu * là bắt buộc.Các trường được đánh dấu %s*%s là bắt buộcFijiLỗi tải lên tập tinĐang tải tập tin lên.Tập tin đã bị ngưng tải lên do dạng tập tin không đúng.Phần LanHọKhắc phục sự cố.FooFoo BarVí dụ, nếu bạn có một khóa sản phẩm với định dạng A4B51.989.B.43C, bạn có thể ngụy trang khóa này thành: a9a99.999.a.99a, theo cách này thì tất cả các ký tự a sẽ là chữ cái và 9 sẽ là chữ sốMẫuMặc định mẫuĐã xóa mẫuCác trường mẫuĐã nhập mẫu thành công.Khóa MẫuKhông tìm thấy mẫuXem trước mẫuĐã lưu phần cài đặt mẫuGửi mẫuLỗi nhập mẫu.Tiêu đề mẫuMẫu kèm theo phép tínhĐịnh dạngCác mẫuĐã xóa mẫuSố mẫu trên một trangPhápPháp, MetropolitanGuyane thuộc PhápPolynesia thuộc PhápLãnh thổ miền Nam nước PhápThứ sáu, ngày 18 tháng 11, năm 2019Địa chỉ người gửiTên người gửiToàn bộ nhật ký cập nhậtToàn màn hìnhGabonGambiaChungThiết lập chungGeorgiaĐứcNhận trợ giúpNhận thêm thao tácNhận thêm loạiNhận trợ giúpNhận trợ giúpLấy Báo cáo hệ thốngLấy khóa trang cho miền của bạn bằng cách đăng ký %stại đây%sBắt đầu bằng cách thêm trường mẫu đầu tiên.Bắt đầu bằng cách thêm trường mẫu đầu tiên. Chỉ cần nhấp vào dấu cộng và chọn các thao tác mà bạn muốn. Thật dễ dàng phải không.Bắt đầuBắt đầu sử dụng Ninja FormsGhanaGibraltarĐặt tiêu đề cho mẫu. Đây là cách giúp bạn sẽ tìm thấy mẫu này về sau.ĐiNỗ lực của bạn đã thất bạiChuyển sang MẫuChuyển đến Ninja FormsTới trang đầu tiênTới trang trướcTới trang sauTới trang kế tiếpHy LạpGreenlandGrenadaPhát triển Tài liệuGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiBán màn hìnhQuần đảo Heard và Mc DonaldXin chào Ninja Forms!Giúp đỡVăn bản Trợ giúpVăn bản Trợ giúp tại đâyẨnTrường ẨnẨn nhãnẨnẨn mẫu điền thành công?Gợi ý: Mật khẩu mới cần dài tối thiểu bảy ký tự. Để mật khẩu mạnh hơn, hãy sử dụng cả chữ hoa và chữ thường, số, và các biểu tượng như ! " ? $ % ^ & ).Holy See (Thành Vatican)URL trang chủHondurasHoney PotLỗi HoneypotThông báo lỗi HoneypotHồng KôngThẻ móc nốiTên máy chủMọi việc thế nào rồi?HungaryĐịa chỉ IPIcelandNếu bật "văn bản mô tả", sẽ có một dấu hỏi %s được đặt bên cạnh trường nhập liệu. Di chuột trên dấu hỏi này sẽ hiển thị văn bản mô tả.Nếu bật "văn bản trợ giúp", sẽ có một dấu hỏi %s được đặt bên cạnh trường nhập liệu. Di chuột trên dấu hỏi này sẽ hiển thị văn bản trợ giúp.Nếu bạn đánh dấu ô này, TẤT CẢ dữ liệu Ninja Forms sẽ bị xóa khỏi cơ sở dữ liệu khi gỡ cài đặt. %sTất cả dữ liệu mẫu và lượt gửi sẽ không thể khôi phục lại được.%sNếu chọn ô này, Ninja Forms sẽ xóa các giá trị mẫu sau khi nó được gửi thành công.Nếu chọn ô này, Ninja Forms sẽ ẩn mẫu sau khi nó được gửi thành công.Nếu chọn ô này, Ninja Forms sẽ gửi một bản sao của mẫu này (và bất kỳ thông báo đính kèm nào) đến địa chỉ này.Nếu chọn ô này, Ninja Forms sẽ xác thực thông tin đầu vào này như một địa chỉ email.Nếu chọn ô này, cả ô mật khẩu và nhập lại mật khẩu sẽ là đầu ra.Nếu đánh dấu ô này, cột này trong bảng lượt gửi sẽ sắp xếp theo số.Nếu bạn không phải là máy móc và đang nhìn thấy trường này, vui lòng để trống.Nếu bạn là người đang xem trường này, hãy để trống nó.Nếu bạn không phải là máy móc, vui lòng chậm lại.Nếu bạn để trống ô này, sẽ không có giới hạn nào được sử dụngNếu bạn chọn đăng ký, một số dữ liệu về phần cài đặt Ninja Forms của bạn sẽ được gửi cho NinjaForms.com (phần này KHÔNG bao gồm số lần gửi mẫu của bạn).Nếu bạn bỏ qua bước này cũng không có vấn đề gì cả! Ninja Forms sẽ vẫn hoạt động bình thường.Nếu bạn muốn gửi một phép tính hoặc giá trị rỗng, bạn nên sử dụng dấu ''.Nếu bạn muốn mẫu thông báo cho bạn qua email khi có người dùng nhấp gửi, bạn có thể cài đặt tùy chọn trên thẻ này Bạn có thể tạo vô số các email, kể cả các email được gửi tới người dùng đã điền vào mẫu đó.Nếu các mẫu của bạn bị "thiếu" sau khi nâng cấp lên 2.9, nút này sẽ gúp chuyển đổi lại các mẫu cũ của bạn để hiển thị chúng trong 2.9. Tất cả các mẫu hiện tại sẽ vẫn nằm trong bảng "Tất cả các mấu".NhậpXuất / NhậpNhập / Xuất các lượt gửiNhập các trường yêu thíchNhập Mục yêu thíchNhập trườngNhập MẫuNhập mẫuNhập các mục trong danh sáchNhập một mẫuXuất/NhậpĐộ rõ ràng được cải thiệnBao gồm trong tính năng tự động tính tổng? (Nếu đã bật)Câu trả lời không chính xácTăng tỷ lệ chuyển đổiẤn ĐộIndonesiaMặt nạ nhập liệuChènChèn tất cả các trườngChèn trườngChèn liên kếtChèn phương tiệnBên trong Thành phầnĐã cài đặtTrình cắm đã càiNhóm Yêu thíchTải mẫu không hợp lệ.ID mẫu không hợp lệ(Cộng hòa Hồi giáo) IranIraqIrelandĐây là một địa chỉ email?IsraelThật dễ dàng phải không. Hoặc...ÝJamaicaNhật BảnThông báo lỗi tắt JavaScriptJohn DoeJordanChỉ cần nhấp vào đây và chọn các trường mà bạn muốn.KazakhstanKenyaTênKiribatiBồn rửa bátCộng hòa Dân chủ Nhân dân Triều TiênĐại Hàn Dân QuốcKuwaitKyrgyzstanNhãnNhãn tại đâyTên nhãnVị trí NhãnNhãn được sử dụng khi xem và xuất lượt gửi.Nhãn,Giá trị,Phép tínhNhãnNgôn ngữ được reCAPTCHA.sử dụng Để lấy mã cho ngôn ngữ bạn dùng, hãy nhấp vào %sđây%sCộng hòa Dân chủ Nhân dân LàohọLatviaCác thành phần bố cụcTrường bố cụcTìm hiểu thêmTìm hiểu thêm về Mẫu Đa phầnTìm hiểu thêm về Lưu Tiến trìnhLebanonBên trái Thành phầnBên trái trườngLesothoLiberiaCộng hòa Nhân dân Ả-rập LybiaGiấy phépLiechtensteinÁnh sángGiới hạn Đầu vào cho Số nàyThông báo đạt đến giới hạnHạn chế số lượt gửiGiới hạn đầu vào cho số nàyDanh sáchÁnh xạ trường Danh sáchLoại danh sáchDanh sáchLithuaniaĐang tảiĐang tải...Vị tríĐăng nhậpMẫu dài - LuxembourgMM-DD-YYYYMM/DD/YYYYMa CaoCộng hòa Macedonia thuộc Nam Tư cũMadagascarMalawiMalaysiaMaldivesMaliMaltaQuản lý dễ dàng các yêu cầu báo giá từ website của bạn với mẫu này. Bạn có thể thêm và xóa các trường nếu cần.Quần đảo MarshallMartiniqueMauritaniaMauritiusTối đaMức lồng thông tin đầu vào tối đaGiá trị Tối đaCó thể để sauMayottePhương tiệnTin nhắnNhãn thưThông báo sẽ được hiển thị cho người dùng nếu hộp kiểm "đã đăng nhập" phía trên được đánh dấu và họ vẫn chưa đăng nhập vào.MetaboxMexicoNhà nước Liên bang MicronesiaĐã hoàn thành việc di chuyển và giả dữ liệu. Tối thiểuGiá trị Tối thiểuCác trường khácKhông phù hợpThiếu thư mục tạm thời.Giả thao tác emailGiả thao tác lưuThao tác Giả thông báo gửi thành côngĐã sửa ngàyCộng hòa MoldovaMonacoMông CổMontenegroMontserratVà còn nhiều tính năng khác nữaMoroccoChuyển mục này vào thùng rácMozambiqueChọn nhiềuNhiều sản phẩm - Chọn nhiềuNhiều sản phẩm - Chọn mộtNhiều sản phẩm - Kéo xuốngNhiều lựa chọnKích cỡ ô nhiều lựa chọnNhiềuPhép tính đầu tiênPhép tính thứ haiPhiên bản MySQLMyanmarTênTên trên thẻTên hoặc trườngNamibiaNauruCần hỗ trợ?NepalHà LanAntilles thuộc Hà LanKhông bao giờ xem thông báo quản trị từ Ninja Forms trên bảng điều khiển.. Bỏ chọn ô này để xem lại.Thao tác mớiThẻ Người tạo mớiNew CaledoniaMục mớiLượt gửi mớiNew ZealandMẫu đăng ký nhận bản tinNicaraguaNigerNigeriaCài đặt Ninja FormsNinja FormsNinja Forms - Đang xử lý Nhật ký cập nhật trong Ninja FormsPhát triển Ninja FormsTài liệu Ninja FormsĐang xử lý Ninja FormsGửi mẫu NinjaTrạng thái Hệ thống Ninja FormsTài liệu Ninja Forms THREENâng cấp Ninja FormsĐang xử lý quá trình nâng cấp Ninja FormsNâng cấp Ninja FormsPhiên bản Ninja FormsWidget Ninja FormsNinja Forms cũng được trang bị chức năng tạo mẫu đơn giản có thể đặt trực tiếp vào tập tin mẫu php. %sBạn có thể xem phần trợ giúp cơ bản của Ninja Forms ở đây.Ninja Forms không thể kích hoạt bằng mạng. Vui lòng truy cập bảng điều khiển của mỗi trang để kích hoạt trình cắm.Ninja Forms đã hoàn tất tất cả các đợt nâng cấp hiện có!Ninja Forms được tạo bởi một nhóm các nhà phát triển trên khắp thế giới nhằm cung cấp trình cắm tạo mẫu số 1 cho cộng đồng WordPress.Ninja Forms cần phải xử lý %s đợt nâng cấp. Quá trình này có thể mất một vài phút để hoàn thành. %sBắt đầu nâng cấp%sNinja Forms cần phải cập nhật cài đặt email của bạn, hãy nhấp vào %sđây%s để bắt đầu quá trình nâng cấp.Ninja Forms cần phải nâng cấp bảng lượt gửi của bạn, hãy nhấp vào %sđây%s để bắt đầu quá trình nâng cấp.Ninja Forms cần phải nâng cấp thông báo mẫu của bạn, hãy nhấp vào %sđây%s để bắt đầu quá trình nâng cấp.Ninja Forms cần phải nâng cấp cài đặt mẫu của bạn, hãy nhấp vào %sđây%s để bắt đầu quá trình nâng cấp.Ninja Forms cung cấp một widget mà bạn có thể đặt vào khu vực bất kỳ trên trang của bạn và chọn chính xác mẫu nào bạn muốn hiển thị trong vùng đó.Mã ngắn Ninja Forms được sử dụng mà không có chỉ định mẫu.NiueKhôngKhông thao tác nào được chỉ định...Không tìm thấy trường yêu thích nàoKhông Tìm Được Trường.Không tìm thấy số lượt gửiKhông tìm thấy lượt gửi nào trong Thùng rácKhông có thuật ngữ dành cho phân loại này. %sThêm thuật ngữ%sKhông có tập tin nào được tải lên.Không tìm thấy mẫu nào.Không có phân loại nào được chọn.Không tìm thấy nhật ký cập nhật hợp lệ.Không mục nàoNorfolk IslandQuần đảo Bắc MarianaNa UyThông báo chưa đăng nhậpVẫn chưa xongKhông tìm thấy trong Thùng rácLưu ýCó thể sửa nội dung lưu ý trong cài đặt nâng cao của trường lưu ý dưới đây.Lưu ý: Cần phải có JavaScript với nội dung này.Thông báo: Mã ngắn Ninja Forms được sử dụng mà không chỉ định mẫu.SốLỗi số tối đaLỗi số tối thiểuTùy chọn sốSố saoSố chữ số thập phân.Số giây để đếm ngượcSố giây để đếm ngượcSố giây để gửi theo giờ hẹn.Số saoOmanMộtMột trường hoặc địa chỉ emailRất tiếc! Tiện ích bổ sung này chưa tương thích với Ninja Forms THREE. %sTìm hiểu thêm%s.Mở trong cửa sổ mớiPhép tính và Trường (Nâng cao)Kiểu bảo thủTùy chọn mộtTùy chọn baTùy chọn haiTùy chọnNgười tổ chứcPhạm vi hỗ trợ của chúng tôiPhép tính đầu ra làNgôn ngữ PHPSố biến thể nhập vào tối đa trong PHPKích cỡ tối đa của một tập tin PHPGiới hạn thời gian PHPPhiên bản PHPXUẤT BẢNPakistanPalauPanamaPapua New GuineaNội dung đoạnParaguayMục chính:Mật khẩuXác nhận mật khẩuNhãn mật khẩu không khớpMật khẩu không khớpTrường thanh toánCổng thanh toánTổng Thanh toánĐã từ chối cấp phépPeruPhilippinesđiện thoạiĐiện thoại - (555) 555-5555PitcairnĐặt %s vào bất kỳ khu vực nào chấp nhận mã ngắn để hiển thị mẫu tại bất kỳ vị trí nào mà bạn muốn. Thậm chí ở giữa nội dung trang hoặc bài đăng.Nơi nhập dữ liệuVăn bản thườngHãy %sliên hệ với bộ phận hỗ trợ%s về thông báo lỗi trên.Hãy trả lời chính xác câu hỏi về phòng chống thư rác.Vui lòng kiểm tra các trường bắt buộc.Vui lòng điền vào trường mã captchaVui lòng điền recaptchaHãy sửa lỗi trước khi gửi mẫu này.Hãy nhớ điền tất cả các trường bắt buộc.Hãy nhập thông báo mà bạn muốn hiển thị khi mẫu này đạt đến giới hạn gửi và sẽ không chấp nhận các lượt gửi mới.Hãy nhập một địa chỉ email hợp lệHãy nhập một địa chỉ email hợp lệ!Vui lòng nhập địa chỉ email hợp lệ.Hãy giúp chúng tôi cải thiện Ninja Forms!Hãy nhập thông tin này khi yêu cầu hỗ trợ:Hãy tăng theo Hãy để trống trường thư rác.Hãy chắc chắn rằng bạn đã nhập đúng Trang & Khóa bảo mật của bạnVui lòng xếp hạng đánh giá %sNinja Forms%s %s trên %sWordPress.org%s để giúp chúng tôi duy trì trình cắm này miễn phí. Lời cảm ơn từ nhóm WP Ninjas!Vui lòng chọn một mẫu để xem số lượt gửiHãy chọn một mẫu.Hãy chọn một tập tin mẫu xuất hợp lệ.Hãy chọn một tập tin trường yêu thích hợp lệ.Chọn các trường yêu thích để xuất.Vui lòng sử dụng các phép toán này. + - * /. Đây là một tính năng nâng cao. Chú ý các phép tính như phép chia cho số 0.Vui lòng đợi %n giâyVui lòng chờ để gửi mẫu.Trình cắmPhần LanĐiền nguyên tắc phân loại vào đâyBồ Đào NhaĐăngID Bài đăng / Trang (Nếu có)Tiêu đề Bài đăng / Trang (Nếu có)URL Bài đăng / Trang (Nếu có)Tạo Bài đăngBài đăng IDChức danhĐến trang của tập tinXem trướcXem trước thay đổiMẫu Xem trướcKhông tồn tại bản xem trước.GiáGiáTrường tính giáĐang xử lýXử lý nhãnĐang xử lý nhãn gửiSản phẩmSản phẩm (bao gồm số lượng)Sản phẩm (số lượng tách riêng)Sản phẩm ASản phẩm BMẫu sản phẩm (Số lượng theo hàng)Mẫu sản phẩm (Nhiều sản phẩm)Mẫu sản phẩm (có kèm trường Số lượng)Loại sản phẩmTên lập trình có thể được dùng để tham chiếu mẫu này.Đăng tảiPuerto RicoMuaQatarSố lượngSố lượng cho Sản phẩm ASố lượng cho Sản phẩm BSố lượng:Chuỗi truy vấnChuỗi truy vấnBiến số chuỗi truy vấnCâu hỏiVị trí câu hỏiYêu cầu báo giá:RadioDanh sách radioNhập lại Mật khẩuNhãn Nhập lại Mật khẩuBạn thực sự muốn hủy kích hoạt tất cả các giấy phép?RecaptchaChuyển hướngXóaXóa tất cả dữ liệu Ninja Forms khi gỡ cài đặt?Xóa giá trịXóa tất cả dữ liệu Ninja FormsXóa trường này? Nó sẽ bị xóa thậm chí cả khi bạn không lưu.Trả lờiYêu cầu người dùng đăng nhập để xem mẫu?Bắt buộcTrường bắt buộcLỗi trường bắt buộcNhãn trường bắt buộcBiểu tượng trường bắt buộcĐặt lại chuyển đổi mẫuĐặt lại chuyển đổi mẫuĐặt lại quy trình chuyển đổi mẫu cho v2.9+Khôi phụcKhôi phục Ninja FormsKhôi phục mục này từ thùng rácCài đặt Hạn chếGiới hạnHạn chế loại thông tin đầu vào mà người dùng của bạn có thể nhập vào trường này.Quay lại Ninja FormsReunionTrình soạn thảo văn bản giàu tính chất (RTE)Bên phải Thành phầnBên phải trườngKhôi phụcKhôi phục về phiên bản 2.9.x mới nhất.Khôi phục về v2.9.xRomaniaLiên bang NgaRwandaSMTPChương trình SOAPĐã cài đặt SUHOSINSaint Kitts và NevisSaint LuciaSaint Vincent Và GrenadinesSamoaSan MarinoSao Tome Và PrincipeẢ Rập SaudiLưuLưu & kích hoạtLưu Cài đặt TrườngLưu biểu mẫuLưu Tùy chọnLưu thiết lậpLưu gửiĐã lưuCác trường đã lưuĐang lưu...Tìm kiếm mụcTìm kiếm lượt gửiLựa chọnChọn tất cảChọn danh sáchChọn một trường hoặc loại để tìm kiếmChọn tập tinChọn một mẫuChọn mẫu hoặc kiểu để tìm kiếmChọn số lượt gửi mà mẫu này chấp nhận. Để trống nếu không có giới hạn.Chọn vị trí của nhãn của bạn so với chính thành phần trường.Đã chọnGiá trị được chọnGửiGửi bản sao của mẫu đến địa chỉ này?SenegalSerbiaĐịa chỉ IP Máy chủThiết lậpĐã lưu cài đặtSeychellesGiao nhậnMã ngắn:Cần được nhập ở dạng phần trăm, ví dụ 8.25%, 4%Hiển thị Văn bản Trợ giúpHiển thị nút Tải lên đa phương tiệnHiển thị nhiều hơnHiển thị Chỉ báo Độ mạnh Mật khẩuHiển thị Trình soạn thảo văn bản giàu tính chấtHiển thịHiển thị giá trị các mục trong danh sáchHiển thị cho người dùng ở dạng nổi.Sierra LeoneSingaporeĐơnHộp Kiểm ĐơnChi phí đơn lẻNội dung từng dòngSản phẩm đơn lẻ (mặc định)URL trangSlovakia (Cộng hòa Slovak)SloveniaThư thườngNhư vậy, nếu bạn muốn tạo mặt nạ cho Số an sinh xã hội của Mỹ, bạn sẽ nhập 999-99-9999 vào ô nàyQuần đảo SolomonSomaliaSắp xếp theo sốSắp xếp theo sốNam PhiQuần đảo Nam Georgia, Nam SandwichNam SudanTây Ban NhaCâu trả lời Chống thư rácCâu hỏi Chống thư rácChỉ định Phép tính Và Trường (Nâng cao)Sri LankaSt. HelenaSt. Pierre Và MiquelonCác trường thông thườngXếp hạng saoKhởi đầu bằng một mẫunhà nướcTrạng tháiBướcBước %d trên khoảng %d đang thực hiệnBước (số gia bằng)Chỉ báo độ mạnhMạnh mẽTrình tự phụTiêu đềNội dung Tiêu đề hoặc tìm kiếm một trườngNội dung Tiêu đề hoặc tìm kiếm một trườngLượt gửiCSV lượt gửiDữ liệu gửiThông tin gửiGiới hạn gửiMetabox lượt gửiThống kê Hồ sơLượt gửiGửiGửi nội dung nút sau khi thời gian kết thúcGửi qua AJAX (không cần tải lại trang)?Đã gửiGửi BởiĐã gửi bởi: Đã gửi ngàyĐã gửi vào: Đăng kýThông báo gửi thành côngSudanSurinameQuần đảo Svalbard Và Jan MayenSwazilandThụy ĐiểnThụy SĩCộng hòa Ả rập SyriaHệ thốngTrạng thái hệ thốngSắp có phiên bản THREE!Đài LoanTajikistanHãy tham khảo tài liệu chi tiết về Ninja Forms của chúng tôi ở bên dưới.Cộng hòa Tanzania Thống nhấtThuếPhần trăm ThuếPhân loạiTrường mẫuChức năng mẫuDanh sách thuật ngữVăn bảnThành phần văn bảnNội dung xuất hiện sau trình đếmNội dung xuất hiện sau trình đếm ký tự/từTextareaHộp văn bảnThái LanCảm ơn bạn đã điền vào mẫu này.Cảm ơn bạn đã cập nhật lên phiên bản mới nhất! Ninja Forms %s được đưa vào để làm cho trải nghiệm quản lý hồ sơ gửi của bạn trở nên thú vị!Cảm ơn bạn đã nâng cấp lên phiên bản 2.7 của Ninja Forms. Hãy cập nhật bất kỳ tiện ích mở rộng nào của Ninja Forms từ Cám ơn bạn đã cập nhật! Ninja Forms %s giúp việc tạo mẫu dễ dàng hơn bao giờ hết!Cảm ơn bạn đã sử dụng Ninja Forms! Chúng tôi hi vọng bạn đã tìm được mọi thứ mà bạn cần, nhưng nếu bạn có bất kỳ thắc mắc nào"Cảm ơn bạn {field:name} đã điền mẫu của tôi!(Thường là) 16 chữ số ở mặt trước của thẻ tín dụng.Giá trị 3 chữ số (mặt sau) hoặc 4 chữ số (mặt trước) trên thẻ của bạn.9s sẽ đại diện cho bất kỳ số nào và -s sẽ tự động được thêm vàoMenu Mẫu là điểm truy cập của bạn đến tất cả mọi nội dung trong Ninja Forms. Chúng tôi đã tạo sẵn %smẫu liên hệ%s đầu tiên cho bạn để bạn có thể tham khảo bản mẫu. Bạn cũng có thể tạo mẫu riêng cho mình bằng cách nhấp vào %sThêm mới%s.Định dạng cần hiển thị như sau:Những cập nhật giao diện trong phiên bản này sẽ đặt cơ sở cho một số cải tiến tuyệt vời trong tương lai. Phiên bản 3.0 sẽ xây dựng dựa trên những thay đổi này để làm cho Ninja Forms trở thành một trình dựng mẫu thậm chí còn ổn định, mạnh mẽ và thân thiện với người dùng hơn.Tháng mà thẻ của bạn hết hạn, thường trên mặt trước của thẻ.Phần cài đặt cơ bản nhất sẽ được hiển thị ngay, trong khi các phần cài đặt phụ khác sẽ được xếp riêng vào các mục có thể mở rộng.Tên được in trên mặt trước của thẻ tín dụng.Mật khẩu cung cấp không trùng khớp.Những người đã xây dựng lên Ninja FormsQuy trình đã bắt đầu, xin bạn hãy kiên nhẫn. Quy trình này có thể mất một vài phút. Bạn sẽ được tự động chuyển hướng khi quy trình kết thúc.Tập tin được tải lên có dung lượng vượt quá hạn mức MAX_FILE_SIZE được chỉ định trong mẫu HTML.Tập tin được tải lên có dung lượng vượt quá hạn mức quy định bởi cài đặt upload_max_filesize trong tập tin php.ini.Tập tin chỉ được tải lên một phần.Năm mà thẻ của bạn hết hạn, thường trên mặt trước của thẻ.Hiện đã có phiên bản mới của %1$s . Xem chi tiết phiên bản %3$s hoặc cập nhật ngay.Hiện đã có phiên bản mới của %1$s . Xem chi tiết phiên bản %3$s.Tập tin vừa tải lên không có định dạng hợp lệ.Đây là tất cả các trường trong phần Định giá.Đây là tất cả các trường trong phần Thông tin người dùng.Dưới đây là những ký tự che dữ liệu được xác định trướcĐây là những trường đặc biệt khác nhau.Những trường này phải khớp!Cột này trong bảng lượt gửi sẽ sắp xếp theo số.Đây là một trường bắt buộcĐây là một trường bắt buộc.Đây là bài kiểm traĐây là một bang của người dùng.Đây là một thao tác email.Đây là một bài kiểm tra khác.Đây là thời gian người dùng phải chờ để gửi mẫuĐây là nhãn được sử dụng khi xem/chỉnh sửa/xuất lượt gửi.Đây là tên lập trình của trường của bạn. Ví dụ: my_calc, price_total, user-total.Đây là trạng thái của người dùngĐây là giá trị sẽ được sử dụng nếu %sĐược đánh dấu%s.Đây là giá trị sẽ được sử dụng nếu %sKhông được đánh dấu%s.Đây là nơi bạn sẽ tạo mẫu bằng cách thêm các trường và kéo chúng theo trật tự mà bạn muốn chúng xuất hiện. Mỗi trường sẽ được phân loại các tùy chọn như nhãn, vị trí nhãn và trình giữ chỗ.Từ khóa này được bảo vệ bởi WordPress. Vui lòng thử từ khác.Thông báo này được hiển thị bên trong nút gửi bất cứ khi nào một người dùng nhấp "gửi" để thông báo cho họ biết quy trình đang được xử lý.Thông báo này sẽ được hiển thị cho người dùng khi các giá trị không khớp xuất hiện trong trường mật khẩu.Số này sẽ được sử dụng trong các phép tính nếu ô này được đánh dấu.Số này sẽ được sử dụng trong các phép tính nếu ô này không được đánh dấu.Cài đặt này sẽ xóa HOÀN TOÀN những gì liên quan đến Ninja Forms khi xóa trình cắm. Phần này bao gồm CÁC LƯỢT GỬI và MẪU. Bạn không thể hoàn tác thao tác này.Thẻ này bao gồm phần cài đặt mẫu chung, chẳng hạn như tiêu đề và phương thức gửi, cũng như cài đặt hiển thị như ẩn mẫu khi nó được gửi thành công.Đây sẽ là tiêu đề của email.Điều này sẽ ngăn không cho người dùng nhập bất kỳ nội dung gì ngoài chữ sốBaGửi hẹn giờThông báo lỗi TimerTimor-Leste (Đông Timor)ĐếnĐể kích hoạt giấy phép mở rộng Ninja Forms, trước tiên bạn phải %scài đặt và kích hoạt%s tiện ích mở rộng đã chọn. Sau đó, phần cài đặt giấy phép sẽ xuất hiện ở bên dưới.Để sử dụng tính năng này, bạn có thể dán CSV của mình vào vùng văn bản ở trên.Ngày hôm nayBật/tắt ngăn kéoTogoTokelauTongaTổng cộngThùng rácĐã thử dựa theo các thông số của %shàm ngày PHP()%s nhưng không phải định dạng nào cũng được hỗ trợ.Trinidad Và TobagoTunisiaThổ Nhĩ KỳTurkmenistanQuần đảo Turks Và CaicosTuvaluHaiGõĐường dẫnSố điện thoại ở MỹUgandaUkraineBỏ chọnGiá trị phép tính không được đánh dấuBên dưới Hành vi mẫu cơ bản trong Phần cài đặt mẫu, bạn có thể dễ dàng chọn một trang mà bạn muốn tự động gắn thêm mẫu vào cuối nội dung trang đó. Một tùy chọn tương tự hiện cũng có sẵn trong mọi màn hình sửa nội dung tại vị trí thanh bên.Hoàn tácHoàn tác tất cảCác tiểu vương quốc Ả RậpVương quốc Liên hiệp Anh và Bắc IrelandMỹCác Tiểu đảo Xa của Hoa KỳLỗi tải lên không xác định.Chưa được đăngCập nhậtCập nhật mụcĐã cập nhật vào: Đang cập nhật cơ sở dữ liệu mẫuNâng cấpNâng cấp lên Ninja Forms THREENâng cấpNâng cấp đã hoàn thànhUrlUruguaySử dụng một Phương trình (Nâng cao)Sử dụng số lượngSử dụng tùy chọn tùy chỉnh đầu tiênSử dụng quy ước tạo kiểu Ninja Forms mặc địnhSử dụng mã ngắn sau đây để chèn phép tính cuối cùng: [ninja_forms_calc]Sử dụng các mẹo dưới đây để bắt đầu sử dụng Ninja Forms. Bạn sẽ được khởi động và vận hành ngay tức khắc!Sử dụng như một trường mật khẩu đăng kýSử dụng như một trường mật khẩu đăng ký. Nếu chọn ô này, cả ô mật khẩu và nhập lại mật khẩu sẽ là đầu ra.Dùng để đánh dấu trường cần xử lý.Người dùngTên hiển thị của Người dùng (Nếu đăng nhập)Email người dùngEmail người dùng (Nếu đăng nhập)Mục nhập người dùngTên của Người dùng (Nếu đăng nhập)ID người dùngID Người dùng (Nếu đăng nhập)Nhóm Trường Thông tin Người dùngThông tin người dùngTrường thông tin người dùngHọ của Người dùng (Nếu đăng nhập)Meta Người dùng (nếu đăng nhập)Giá trị được Gửi bởi Người dùngGiá trị được Gửi bởi Người dùng:Người dùng có nhiều khả năng hơn để hoàn tất các mẫu dài nếu họ có thể lưu và quay trở lại để hoàn tất việc gửi sau đó.

    Tiện ích mở rộng Lưu Tiến trình dành cho Ninja Forms giúp cho việc này nhanh chóng và dễ dàng hơn.

    UzbekistanXác thực như một địa chỉ email? (Trường bắt buộc)Giá trịVanuatuTên biếnVenezuelaPhiên bảnPhiên bản %sRất yếuViệt NamXemXem %sXem thay đổiXem mẫuXem mụcXem lượt gửiXem số lượt gửiXem toàn bộ nhật ký cập nhậtQuần đảo Virgin (thuộc Anh)Quần đảo Virgin (Mỹ)Ghé thăm trang chủChế độ Sửa lỗi WPNgôn ngữ WPKích thước tải lên tối đa trong WPGiới hạn Bộ nhớ WPĐã bật WP MultisiteĐăng từ xa trong WPPhiên bản WPQuần đảo Wallis Và FutunaChúng tôi làm tất cả có thể để cung cấp cho mỗi người dùng Ninja Forms sự hỗ trợ tốt nhất có thể. Nếu bạn gặp phải một vấn đề hoặc có bất kỳ thắc mắc nào, %svui lòng liên hệ với chúng tôi%s.Chúng tôi đã bổ sung tùy chọn xóa tất cả dữ liệu Ninja Forms (lượt gửi, mẫu, trường, tùy chọn) khi bạn xóa trình cắm. Chúng tôi gọi nó là tùy chọn hạt nhân.Chúng tôi nhận thấy rằng không có nút gửi trên mẫu của bạn. Chúng tôi có thể tự động thêm một nút cho bạn.YếuThông tin máy chủ webChào mừng bạn đến với Ninja Forms Chào mừng bạn đến với Ninja Forms %sWestern SaharaChúng tôi có thể giúp gì cho bạn?Những gì cần thử trước khi liên hệ với bộ phận hỗ trợBạn muốn đặt tên mục yêu thích này là gì?Các điểm mớiKhi tạo và sửa mẫu, hãy vào trực tiếp phần quan trọng nhất.Email này cần được gửi đến ai?TừTừTrình bọcY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenCóBạn đủ điều kiện để nâng cấp lên Ninja Forms THREE Release Candidate! %sNâng cấp Ngay%sBạn cũng có thể kết hợp những tùy chọn này với những ứng dụng cụ thểBạn có thể nhập các phương trình tính toán ở đây sử dụng trường_x trong đó x là ID của trường mà bạn muốn sử dụng. Ví dụ, %strường_53 + trường_28 + trường_65%s.Bạn không thể gửi mẫu mà không bật Javascript.Bạn không được phép cài đặt các bản cập nhật trình cắm.Bạn không được cấp phép.Bạn đã không thêm nút gửi vào mẫu của bạn.Bạn phải đăng nhập vào để xem trước mẫu.Bạn phải đặt tên cho mục yêu thích này.Bạn cần JavaScript để gửi mẫu này. Vui lòng kích hoạt và thử lại.Bạn đã mua Bạn sẽ tìm thấy trong email mua hàng của mình.Mẫu của bạn đã được gửi thành công.Máy chủ của bạn không có fsockopen hay cURL được kích hoạt - PayPal IPN và các đoạn mã kết nối với máy chủ khác sẽ không hoạt động. Hãy liên lạc người cung cấp hosting của bạn.Máy chủ của bạn chưa bật %schương trình SOAP%s - một số trình cắm cổng kết nối sử dụng SOAP có thể không hoạt động như mong đợi.Máy chủ của bạn đã bật cURL và tắt fsockopen.Máy chủ của bạn đã bật fsockopen và cURL.Máy chủ của bạn đã bật fsockopen và tắt cURL.Máy chủ của bạn đã bật chương trình SOAP.Phiên bản của tiện ích Tải tập tin lên trong Ninja Forms không tương thích với phiên bản 2.7 của Ninja Forms. Cần phải sử dụng tối thiểu phiên bản 1.3.5. Hãy cập nhật tiện ích mở rộng này tại Phiên bản của tiện ích Lưu tiến trình trong Ninja Forms không tương thích với phiên bản 2.7 của Ninja Forms. Cần phải sử dụng tối thiểu phiên bản 1.1.3. Hãy cập nhật tiện ích mở rộng này tại YugoslaviaZambiaZimbabweVùngMã zipa - Đại diện cho ký tự chữ cái (A-Z,a-z) - Chỉ cho phép nhập chữ cáicâu trả lờibutton-secondary nf-download-allbởiký tự còn lạiđã chọnSao chéptùy chỉnhd-m-Ydashicons dashicons-updatetrùng lặpfoo@wpninjas.comgiờjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ykhôngcủacủa Sản phẩm A và của Sản phẩm B với giá $mộtone_week_supportmật khẩuđang xử lýsản phẩm cho reCAPTCHANgôn ngữ reCAPTCHAKhóa bảo mật reCAPTCHACài đặt reCAPTCHAKhóa trang reCAPTCHAGiao diện reCAPTCHACài đặt reCaptchaLàm mớismtp_portbatiêu đềhaiđã bỏ chọnđã cập nhậtuser@gmail.comphiên bảnwp_remote_post() đã thất bại. IPN PayPal có thể không hoạt động với máy chủ của bạn.wp_remote_post() đã thất bại. IPN PayPal không hoạt động với máy chủ của bạn. Liên hệ với nhà cung cấp dịch vụ lưu trữ của bạn. Lỗi:wp_remote_post() đã thành công - IPN PayPal đang hoạt động.lang/ninja-forms-fi.mo000064400000270130152331132460010644 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8  (GML8ZD.$s    )mJ M6aB?`  " 1>Sgz ,BW  44K  # 6DLT[n}8XCl /G]p#Os  $) 6A `m    #2B3S'/'W  $3< KX`hl u  L#* /.9h"""6 JXm   % " 7 EQgm s~ .  ` mv  , = ITIf_ $<Xs $ ".2H^x!" ! ,%7%]  -@-S"n $=#P t3*BIPdt0Z60 (BJ dq! $!+M\d *: A M Wd~%(B =O TeY| ":B-Hv{  '2F[)t $ "9K.S1!9-3;CGO.5F We 3 9CWkry ")1CKQ`w  #I3~H =8@]!q  3> CMTc jx ~   ,H 1 :DSjs   ejbT  eQ n a& ? / 1 :* e j Wo   %  $/> R]eFy  )9 HV jt #*2.9hq-x  % !0?IRb%-S\cu -*,4< B LZ%a% &2 ;G W a lw(}  Y j u $  # &!Haw    #"!F%h  "*0BHQg  & 1 ?M gqw!1 S t(,z?Fw- w s!s!q"w"?S###)###"#&$KD$ $$$%$ %%&%8%!>% `%j% %M%:%J&b&i&~&&&&"&"&,'C'Y'^'#c'k''' (2(F(V(g(x(( (((((( )) )))/)6)H)Y)b)r){))) ) )))) * **-*6* **K+3R+)+++7+7,T,*,'-+0-)\-1--#-@-3.<..)/>?/0~/~/.0&@0g0{00 0 0+0+0/ 1:1L1T1g1 v1111111 11" 20262T2o2w2 22$2 2I2:3 C3O3T3Z3c3w3 3333333444"34AV4 444G4 5! 5B/5r5Ey5 55 55626M6Bj66666 6S7 Z7{77777#7788#8*8/8C8U8 j8v88 88 888899#969 H9T9h9 w99999#999":t#:;:: ::0:#;+;2; G;Q; g;r; {;.;;;;$;<0<?<I_< < <<<<<='=>=]= f=ut= ==>>.>+=> i>v>~>>2> > >> ??!?1?9?>?D?b?~?????#?? ?? @ @+@<@ M@X@6a@8@ @ @@ @ AAA,A2A:ATA]AdAlA AAAA A6AB"B (B 6BABSB gBuB |B&B5B BBC" C,CpC_9DD0E1LEJ~EREF!,G"NGWqHH'UI#}I4IIomJYJ7KTVKKzKL,L.L7"M,ZM&M#MHMN7NUN&eNNNSNWOVpO O7O; P\PTGQQb?RFRJR4SS.TVU[UaUtU U UU]iVV VVVV W WfW|WWW WWWWWWWWW WW<XUY [YhYY Y&YY Y YZ Z Z AZ%NZ tZZZZ$ZZ-Z*"[TM[s[1\H\:] <]6H]]6]]1]^.6^!e^^^2^.^_"._Q_ &`?1`q`v`~` `` ` ``````` a"a$?adaaaaaaaab &b0bAbbbcdd.dJd hdvd5d,d dGe5He~ee eee e eee[e8fXf?g;Gg%g2gDg*!hdLhhMhi$iiA\j0jAj8kJkk llll lTl)m 1mRmUmimqm xmmmmmmmmmm mn nn.n3nDnMn_n qn{nn'nnnn o oo#o+o 1o Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Kentät Avaa uudessa ikkunassa Kumoa kaikki asennettu. Nykyinen versio on tuotetta hintaan vaatii päivityksen. Sinulla on versio nro.%1$s luonnos päivitetty. Esikatsele: %3$s%1$s palautettiin tarkistukseen tästä kohteesta: %2$s.%1$s ajoitettu: %2$s. Esikatsele: %4$s%1$s lähetetty. Esikatsele: %3$s%n ilmaisee sekuntien lukumäärää%s sitten%s julkaistu.%s tallennettu.%s päivitetty.%s – aktivointi peruutettiin.%sSuostun%s%sTarkistettu %s laskenta-arvo%sEn suostu%s%sEi-tarkistettu%s laskenta-arvo* - Edustaa aakkosnumeerisia merkkejä (A-Z,a-z,0-9) - Sallii sekä numeroiden että kirjainten syöttämisen - Ei mikään– Valitse yksi- Valitse kenttä- Valitse tuote- Valitse muuttuja- Valitse lomake- Näytä kaikki tyypit9 - Edustaa numeerisia merkkejä (0-9) - Sallii vain numeroiden syöttämisen
    • a - Edustaa aakkosellista merkkiä (A-Z,a-z) - Vain kirjainten syöttö sallitaan.
    • 9 - Edustaa numeerista merkkiä (0-9) - Vain numeroiden syöttö sallitaan.
    • * - Edustaa aakkosnumeerista merkkiä (A-Z,a-z,0-9) - Tämä sallii sekä numeroiden että kirjainten syötön.
    Vastaus, jonka kirjainkoko on merkitsevä roskapostiin liittyvien lomaketäyttöjen estämiseksi.Ninja Forms -ohjelmistoon on tulossa mittava päivitys. %sLue lisää uusista ominaisuuksista, yhteensopivuudesta vanhempien versioiden kanssa ja muista usein kysytyistä kysymyksistä.%sYksinkertaisempi ja tehokkaampi tapa lomakkeiden suunnitteluun.Elementin yläpuolellaKentän yläpuolellaToiminnon nimiToiminto päivitettyActionsAktivoiAktiivinenLisääLisää kuvausLisää lomakeLisää uusiLisää uusi kenttäLisää uusi lomakeLisää uusi kohdeLisää uusi lähetysLisää uusia termejäLisää operaatioLisää lähetyspainikeLisää arvoLisää lomaketoimintojaLisää lomakekenttiäLisää lomake tälle sivulleLisää uusi toimintoLisää uusi kenttäLisää tilaajia ja kasvata sähköpostituslistaasi tämän tilauslomakkeen avulla. Voit lisätä ja poistaa kenttiä tarvittaessa.Laajennuksen käyttöoikeudetLaajennuksetOsoiteOsoite 2Lisää ylimääräisen luokan kenttien elementtiin.Lisää ylimääräisen luokan kenttien paketoijaan.Ylläpidon sähköpostiAdmin-seliteYlläpitoEdistynytLisäyhtälöYleiset asetuksetLähetyksen lisäasetuksetAfghanistanKaiken jälkeenLomakkeen jälkeenSelitteen jälkeenHyväksytkö?AlbaniaAlgeriaKaikkiKaikki lomakkeistaKaikki kentätKaikki lomakkeetKaikki kohteetKaikki nykyiset lomakkeet pysyvät ”Kaikki lomakkeet” -taulukossa. Joissakin tapauksissa jotkin lomakkeet saatetaan monistaa tämän prosessin aikana.Anna käyttäjälle mahdollisuus rekisteröityä seuraavaan tapahtumaasi tämän lomakkeen avulla. Voit lisätä ja poistaa kenttiä tarvittaessa.Anna käyttäjille mahdollisuus ottaa sinuun yhteyttä tämän yhteydenottolomakkeen avulla. Voit lisätä ja poistaa kenttiä tarvittaessa.Salli RTF-syötteetSallii käyttäjien valita useamman kuin yhden näistä tuotteista.Melkein valmista”Suunnittele lomakkeesi" -välilehden lisäksi olemme poistaneet ”Ilmoitukset” ja korvanneet sen ”Sähköpostiviestit ja toiminnot” -osiolla. Tämä ilmaisee paljon selkeämmin, mitä tässä välilehdessä voidaan tehdä.Amerikan SamoaOdottamaton virhe tapahtui.AndorraAngolaAnguillaVastausEtelämannerRoskapostin torjuntaRoskapostin torjuntakysymys (Vastaus = vastaus)RoskapostinestoviestiAntigua ja BarbudaMikä tahansa merkki, jonka asetat ”mukautettu peite” -ruutuun ja joka ei ole alla olevassa luettelossa, syötetään automaattisesti käyttäjän puolesta hänen kirjoittaessaan. Kyseinen merkki ei ole poistettavissa.LIsää perään Ninja Form -lomakeLiitä Ninja FormsLiitä sivulleToteutaArgentiinaArmeniaArubaLiitä CSV-tiedostoLiitteetAustraliaItävaltaLaske kentät yhteen automaattisestiLaske lopputulosten arvot automaattisestiSaatavillaKäytettävissä olevat termitAzerbaidžanTakaisin luetteloonTakaisin luetteloonVarmuuskopio / palautusVarmuuskopioi Ninja FormsBahamaBahrainBangladeshBarBarbadosPeruskentätPerusasetuksetKylpyammeBazPiilokopioEnnen mitäänEnnen lomakettaEnnen selitettäEnnen kuin pyydät apua tukitiimiltämme, tarkista:AlkupäivämääräPäivämääräValko-VenäjäBelgiaBelizeElementin alapuolellaKentän alapuolellaBeninBermudaParas yhteydenottotapa?Alan paras asiakastukiParemmin järjestellyt kenttäasetuksetTehokkaampi käyttöoikeuksien hallintaBhutanLaskutus:Tyhjät lomakkeetBoliviaBosnia ja HertsegovinaBotswanaBouvet IslandBrasiliaBrittiläinen Intian valtameren alueBrunei DarussalamSuunnittele oma lomakkeesiBulgariaMassatoiminnotBurkina FasoBurundiPainikeCVCLaskentaLaskenta-arvoLaskentaLaskentatapaLaskenta-asetuksetLaskennan nimiLaskelmatLaskennat palautetaan AJAX-vastauksen kanssa (vastaus -> tiedot -> laskennatKambodzaKamerunKanadaPeruKap VerdeCaptcha-virhe. Anna captcha-kentän oikea arvoKortin turvakoodin kuvausKortin turvakoodin seliteKortin vanhentumiskuukauden kuvausKortin vanhentumiskuukauden seliteKortin vanhentumisvuoden kuvausKortin vanhentumisvuoden seliteKortin nimen kuvausKortin nimen seliteKortin numeroKorttinumeron kuvausKorttinumeron seliteCaymansaaretKopioKeski-Afrikan tasavaltaChadVaihda arvoaMerkitMerkkejä jäljellämerkkiäHuijaatko?tutustu tarjoamaamme dokumentaatioon.ValintaruutuValintaruutuluetteloValintaruudutTarkistettuValittu laskenta-arvoChileKiinaJoulusaariKaupunki/postitoimipaikkaLuokan nimiTyhjennä menestyksellisesti täytetty lomake?KookossaaretKerää maksuKolumbiaYleiskentätKomoritMonimutkaisia yhtälöitä voidaan luoda lisäämällä sulkeet: %s( field_45 * field_2 ) / 2%s.VahvistaVahvista, että et ole robottiKongoKongon demokraattinen tasavaltaYhteydenottolomakeOttakaa minuun yhteyttäOta yhteyttäSäilöJatkaCookinsaaretHintaAvattava hintavalikkoHintavaihtoehdotHintatyyppiCosta RicaNorsunluurannikkoKäyttöoikeuden aktivointi epäonnistui. Vahvista käyttöoikeusavaimesiValtioLuo yksilöllisen avaimen, joka tunnistaa kenttäsi ja kohdistaa siihen mukautettua kehitystä.LuottokorttiLuottokortin turvakoodiLuottokortin CVV-turvakoodiLuottokortin vanhentuminenLuottokortin koko nimiLuottokortin numeroLuottokortin postinumeroLuottokortin postinumeroTunnustuksetKroatia (paikallinen nimi: Hrvatska)KuubaValuuttaValuutan symboliTämä sivuOmaMukautettu CSS-luokkaMukautetut CSS-luokatMukautettu luokkien nimetMukautettu kenttäryhmäMukautettu peiteMukautetun peitteen määritelmäCustom field deleted.Custom field updated.Mukautettu ensimmäinen vaihtoehtoKyprosTsekkiDD-MM-YYYYDD/MM/YYYYVIRHEENKORJAUS: Vaihda versioon 2.9.xVIRHEENKORJAUS: Vaihda versioon 3.0.xTummaTietojen palautus onnistui!PäivämääräLuontipäiväPäiväyksen muotoPäivämääräasetuksetLähetyspäivämääräPäivitettyPäivämäärän valitsinPoista käytöstäPoista käytöstäPoista kaikkien käyttöoikeuksien aktivointiPoista käyttöoikeuden aktivointiVoit poistaa Ninja Forms -käyttöoikeudet käytöstä joko yksittäin tai ryhmänä Asetukset-välilehdestä.OletusOletusmaaSelitteen oletussijaintiOletusaikavyöhykeOletuksena nykyinen päivämääräOletusarvoOletusaikavyöhyke on %sOletus aikavyöhyke on %s – sen pitäisi olla UTCMääritellyt kentätPoistaPoista (^ + D + napsauta)Poista pysyvästiPoista tämä lomakePoista tuote pysyvästiTanskaKuvausKuvauksen sisältöKuvauksen asemaTiesitkö, että voit lisätä konversioiden määrää jakamalla suuremmat lomakkeen pienempiin, helpommin sulatettavissa oleviin osiin?

    Ninja Forms -lomakkeiden Multi-Part Forms -laajennus tekee tästä nopeaa ja helppoa.

    Poista pääkäyttäjän ilmoitukset käytöstäPoista automaattinen täydennys käytöstä selaimessaPoista syöte käytöstäPoista RTF-editori käytöstä mobiililaitteissaPoista syöte käytöstä?Piilota tämä huomautus.NäytäNäytä lomakkeen otsikkoNäytä nimiNäyttämisen asetuksetNäytä tämä laskentamuuttujaNäytä nimikeLomakkeen esittäminenJakajaDjiboutiÄlä näytä näitä termejäOhjeetDokumentaatio tulossa pian.Käytettävissä oleva dokumentaatio kattaa kaikki aiheet %svianmäärityksestä%s aina %sohjelmointirajapintaan%s asti. Uusia asiakirjoja lisätään jatkuvasti.EI koske lomakkeen esikatselua.Koskee lomakkeen esikatselua.DominicaDominikaaninen tasavaltaValmisLataa kaikki lähetetyt lomakkeetPudotusvalikkoMonistaMonista (^ + C + napsauta)Lomakkeen kaksoiskappaleEcuadorMuokkaaMuokkaa toimintoaMuokkaa lomakettaMuokkaa kohdettaMuokkaa valikkokohdettaMuokkaa lähetystäMuokkaa tuotettaMuokkauskenttäMuokkauskenttäEgyptiEl SalvadorElementtiSähköpostiSähköposti ja toiminnotSähköpostiosoiteSähköpostiviestiSähköpostitilauslomakeSähköpostiosoite tai etsi kenttääSähköpostiosoitteet tai etsi kenttääSähköpostiviestin lähetysosoitteena näytetään tämä osoite.Sähköpostiviestin lähettäjänä näytetään tämä nimi.Sähköpostiviestit ja toiminnotPäättymispäiväVarmista, että tämä kenttä on täytetty ennen kuin lomakkeen lähetys sallitaan.Kirjoita teksti, jonka haluat näkyvän kentässä ennen kuin käyttäjä kirjoittaa siihen mitään.Anna lomakekentän selite. Tällä tavoin käyttäjät tunnistavat yksilölliset kentät.Anna sähköpostiosoitteesiYmpäristöYhtälöYhtälö (lisäominaisuus)Päiväntasaajan GuineaEritreaVirheVirheilmoitus pakollisten kenttien puuttuessaViroEtiopiaTapahtumaan rekisteröityminenLaajenna valikkoaVanhentumiskuukausi (KK)Vanhentumisvuosi (VVVV)VieVie suosikkikentätVie kentätVie lomakeLomakkeiden vientiVie lomakeVie tämän kohteenLaajenna Ninja FormsTIEDOSTON LÄHETTÄMINENTiedoston tallennus levylle epäonnistui.FalklandinsaaretFärsaaretSuosikkikentätSuosikkikentät tuotu onnistuneesti.KenttäKentän numeroKentän tunnusKenttäavainKenttää ei löytynytKenttäoperaatiotKentätTähdellä * merkityt kentät ovat pakollisia.Tähdellä %s*%s merkityt kentät ovat pakollisiaFidžiTiedoston latausvirheTiedoston lähettäminen menossa.Tiedoston lataaminen keskeytyi tiedostopäätteen vuoksi.SuomiEtunimiKorjaa.FooFoo BarJos sinulla olisi esimerkiksi tuotekoodi, jonka muoto on A4B51.989.B.43C, voisit käyttää seuraavaa maskia: a9a99.999.a.99a. Tämä pakottaisi kaikkien a-merkkien olevan kirjaimia ja kaikkien 9-merkkien olevan numeroita.LomakeLomakkeen oletusPoistettu lomakeLomakekentätLomake tuotu onnistuneesti.LomakeavainLomaketta ei löytynytLomakkeen esikatseluLomakkeen asetukset tallennettuLomakkeiden lähetysLomakemallin tuontivirheLomakkeen otsikkoLomake laskentojen kanssaMuotoLomakkeetPoistetut lomakkeetLomakkeita per sivuRanskaRanskaRanskan GuayanaRanskan PolynesiaRanskan eteläiset alueetPerjantai, 18. marraskuuta 2019LähetysosoiteLähettäjän nimiTäydellinen muutoslokiKokonäyttöGabonGambiaYleinenYleiset asetuksetGeorgiaSaksaPyydä ohjeitaHae lisää toimintojaHae lisää tyyppejäPyydä apuaPyydä tukeaLataa järjestelmän tila -raporttiHanki sivustoavain verkkotunnuksellesi rekisteröitymällä %stäällä%sAloita lisäämällä ensimmäinen lomakekenttäsi.Aloita lisäämällä ensimmäinen lomakekenttäsi. Napsauta plusmerkkiä ja valitse haluamasi toiminnot. Se on näin helppoa.AluksiAloitusopas – Ninja FormsGhanaGibraltarAnna lomakkeellesi nimi. Näin löydät lomakkeen myöhemmin.ToteutaYrityksesi on epäonnistunutSiirry lomakkeisiinSiirry Ninja Forms -laajennukseenSiirry ensimmäiselle sivulleSiirry viimeiselle sivulleSiirry seuraavalle sivulleSiirry edelliselle sivulleKreikkaGrönlantiGrenadaKattava dokumentaatioGuadeloupeGuamGuatemalaGuineaGuinea-BissaunGuyanaHTML-muotoiluHaitiPuolinäyttöHeard ja McDonaldinsaaretHei, Ninja-lomakkeet!TukiOhjetekstiOhjeteksti tähänPiilotettuPiilotettu kenttäPiilota selitePiilota tämäPiilota menestyksellisesti täytetty lomake?Vihje: Salasanan tulisi olla vähintään 7 merkkiä pitkä. Vinkki: tee siitä vahvempi käyttämällä isoja ja pieniä kirjaimia, numeroita sekä erikoismerkkejä, kuten ! " ? $ % ^ & ).VatikaanivaltioEtusivun verkko-osoiteHondurasHoney PotHoneypot-virheHoneypot-virheilmoitusHongkongLiitä tunnisteIsäntänimiMiten menee?UnkariIP-osoiteIslantiJos "desc text" (kuvausteksti) on käytössä, syötekentän vieressä näytetään kysymysmerkki %s. Kohdistimen pitäminen kysymysmerkin päällä näyttää kuvaustekstin.Jos ”help text" (ohjeteksti) on käytössä, syötekentän vieressä näytetään kysymysmerkki %s. Kohdistimen pitäminen kysymysmerkin päällä näyttää ohjetekstin.Jos tämä ruutu on valittuna, KAIKKI Ninja Forms -tiedot poistetaan tietokannasta asennuksen poiston yhteydessä. %sKaikki lomaketiedot ja lähetetyt tiedot poistetaan siten, että ne eivät ole palautettavissa.%sJos tämä ruutu on valittuna, Ninja Forms tyhjentää lomakkeen arvot sen jälkeen, kun se on lähetetty.Jos tämä ruutu on valittuna, Ninja Forms piilottaa lomakkeen sen jälkeen, kun se on lähetetty.Jos tämä valintaruutu on valittuna, Ninja Forms lähettää kopion tästä lomakkeesta (ja siihen mahdollisesti liitetyt viestit) tähän osoitteeseen.Jos tämä valintaruutu on valittuna, Ninja Forms vahvistaa tämän syötteen sähköpostiosoitteena.Jos tämä valintaruutu on valittuna, sekä salasanaruutu että salasanan uudelleensyöttöruutu näytetään.Jos tämä ruutu on valittuna, tämä lähetystaulukon sarake lajitellaan numeroiden perusteella.Jos olet ihminen ja näet tämän kentän, jätä se tyhjäksi.Jos näet tämän kentän, jätä se tyhjäksi.Jos olet ihminen, ole hyvä ja hidasta vauhtiasi.Jos jätä ruudun tyhjäksi, mitään rajoja ei käytetä.Jos annat suostumuksesi, joitakin Ninja-lomakkeiden asennustasi koskevia tietoja lähetetään NinjaForms.comiin (tämä EI koske mitään antamiasi tietoja).Jos päätät ohittaa tämän, se on tietenkin ok! Ninja-lomakkeet toimivat edelleen niin kuin pitääkin.Jos haluat lähettää tyhjän arvon tai laskennan, sinun tulee käyttää ''-merkkiä.Jos haluat saada sähköposti-ilmoituksen käyttäjän lähettäessä lomakkeesi, voit määrittää sen tämän välilehden kautta. Voit luoda rajoittamattoman määrän sähköpostiviestejä, mukaan lukien viestit lomakkeen täyttäneelle käyttäjälle.Jos lomakkeesi ovat ”kadonneet” päivitettyäsi 2.9-versioon, tämä painikkeen painaminen yrittää muuntaa vanhat lomakkeesi uudelleen ja esittää ne 2.9-versiossa. Kaikki nykyiset lomakkeet pysyvät ”Kaikki lomakkeet” -taulukossa.TuoTuo / vieLähetettyjen tietojen tuonti/ vientiTuo suosikkikentätTuo suosikkikentätTuo kentätTuo lomakeTuo lomakkeitaTuo luettelokohteetTuo lomakeTuo/vieSelkeämpi asetteluSisällytä mukaan automaattiseen yhteismäärään? (Jos käytössä)Virheellinen vastausKasvata konversioitaIntiaIndonesiaSyötteen peiteLisääLisää kaikki kentätLisää kenttäLisää linkkiLisää mediaElementin sisälläAsennettuAsennetut laajennuksetRyhmätVirheellinen lomakkeen lähetys.Virheellinen lomaketunnusIranIrakIrlantiOnko tämä sähköpostiosoite?IsraelSe on näin helppoa. Tai...ItaliaJamaikaJapaniJavaScript poisti virheilmoituksen käytöstäJohn DoeJordanNapsauta tästä ja valitse haluamasi kentätKazakstanKeniaAvainKiribatiKaikenkattavaKorean demokraattinen kansantasavaltaKorean tasavaltaKuwaitKirgisiaTunnusSelite tähänSelitteen nimiSelitteen sijaintiSelite, jota käytetään lähetysten tarkastelun ja viennin yhteydessä.Selite,arvo,laskentaKäyttöliittymäviestitKieli, jota käytetään reCAPTCHA-todennuksessa. Hae oman kielesi koodi napsauttamalla %stätä%sLaosin demokraattinen kansantasavaltaSukunimiLatviaAsetteluelementitAsettelukentätLue lisääLisätietoja Multi-Part Forms -laajennuksestaLisätietoja Save Progress -laajennuksestaLibanonElementin vasemmalla puolellaKentän vasemmalla puolellaLesothoLiberiaLibyaLisenssitLiechtensteinVaaleaRajoita syötteet tähän määräänRaja saavutettu -viestiRajoita lähetyksiäRajoita syötteet tähän määräänListaLuettelokenttien määrityksetLuettelotyyppiListatLiettuaLadataanLadataan...SijaintiKirjautunutPitkä muoto - LuxemburgMM-DD-YYYYMM/DD/YYYYMacaoMakedonia, entinen Jugoslavian tasavaltaMadagascarMalawiMalesiaMalediivitMaliMaltaHallitse hintatarjouspyyntöjä verkkosivustostasi helposti tämän mallin avulla. Voit lisätä ja poistaa kenttiä tarvittaessa.MarshallinsaaretMartiniqueMauritaniaMauritiusMaksimiSyötteiden maks. sisäkkäisyystasoMaksimiarvoEhkä myöhemminMayotteKeskitasoViestiKäyttöliittymän viestitViesti, joka näytetään käyttäjälle siinä tapauksessa, että yllä oleva valintaruutu on valittuna, eikä käyttäjä ole kirjautuneena sisään.MetaboxMeksikoMikronesian liittovaltioSiirtymiset ja valetiedot valmiit. MinimiMinimiarvoSekalaiset kentätEpävastaavuusVäliaikaista hakemistoa ei löytynyt.ValesähköpostitoimintoValetallennustoimintoMenestysviestin valetoimintoMuokattuMoldovan tasavaltaMonacoMongoliaMontenegroMontserratLisää on tulossaMarokkoSiirrä kohde roskakoriinMozambiqueMonivalintaUseita tuotteita – valitse useitaUseita tuotteita – valitse yksiUseita tuotteita – avattava valikkoMonivalintaMonivalintaruudun kokoUseitaEnsimmäinen laskentaniToinen laskentaniMySQL-versioMyanmarNimiKortin haltijan nimiNimi tai kentätNamibiaNauruTarvitsetko apua?NepalHollantiAlankomaiden AntillitEt enää koskaan joudu katselemaan pääkäyttäjän ilmoituksia Ninja Forms -koontinäytössä. Poistamalla valinnan näet ne jälleen.Uusi toimintoUusi Builder-välilehtiUusi-KaledoniaUusi kohdeUusi lähetysUusi-SeelantiUutiskirjeen tilauslomakeNicaraguaNigerNigeriaNinja Forms -asetuksetNinja-lomakkeetNinja Forms – käsitelläänNinja Forms -muutoslokiNinja-lomakkeiden kehitt.Ninja Forms -dokumentaatioNinja Forms – käsitelläänNinja Forms -lomakkeiden lähetysNinja Forms -järjestelmän tilaNinja Forms THREE -dokumentaatioNinja Forms -päivitysNinja Forms -päivitystä käsitelläänNinja Forms -päivityksetNinja Forms -versioNinja Forms -vimpainLisäksi Ninja Forms sisältää yksinkertaisen mallipohjatoiminnon, joka on mahdollista asettaa suoraan php-mallipohjatiedostoon. %sNinja Forms -perusohje näytetään tässä.Ninja Forms -ohjelmaa ei voida aktivoida verkon kautta. Aktivoi laajennus vierailemalla kunkin sivuston koontinäytössä.Ninja Forms on asentanut kaikki saatavilla olevat päivitykset!Ninja Forms -lomakkeiden taustalla on maailmanlaajuinen sovelluskehittäjien tiimi, jonka tavoitteena on tarjota sinulle WordPressin paras lomakkeiden luomistyökalu.Ninja Forms joutuu käsittelemään %s päivitystä. Tämä voi kestää muutamia minuutteja. %sKäynnistä päivitys%sNinja Forms edellyttää, että sähköpostiasetuksesi päivitetään. Käynnistä päivitys napsauttamalla %stätä%s.Ninja Forms edellyttää, että lähetystaulukkosi päivitetään. Käynnistä päivitys napsauttamalla %stätä%s.Ninja Forms edellyttää, että lomakeilmoituksesi päivitetään. Käynnistä päivitys napsauttamalla %stätä%s.Ninja Forms edellyttää, että lomakeasetuksesi päivitetään. Käynnistä päivitys napsauttamalla %stätä%s.Ninja Forms tarjoaa käyttöösi widget-pienoissovelluksen, jonka voit sijoittaa mihin tahansa pienoissovelluksille sopivaan osioon sivustossasi, ja valita sitten, minkä lomakkeen haluat esittää kyseisessä kohdassa.Ninja Forms -pikakoodia käytetty lomaketta määrittämättä.NiueEiMitään toimintoa ei ole määritetty...Suosikkikenttiä ei löydettyKenttiä ei löytynyt.Lähetettyjä tietoja ei löytynytLähetyksiä ei löytynyt roskakoristaEi käytettävissä olevia termejä tälle taksonomialle. %sLisää termi%sYhtään tiedostoa ei siirretty.Lomakkeita ei löytynytTaksonomiaa ei ole valittu.Kelvollista muutoslokia ei löydetty.Ei mikäänNorfolkinsaariPohjois-MariaanitNorjaEi kirjautuneena sisään -viestiEi vieläEi löytynyt roskakoristaKommenttiHuomautuksen tekstiä voidaan muokata huomautuskentän lisäasetuksissa alla.Huomautus: JavaScript vaaditaan tätä sisältöä varten.Huomautus: Ninja Forms -pikakoodia käytetty lomaketta määrittämättä.NumeroNumero maksimi virheNumero minimi virheNumerovaihtoehdotTähtien lukumääräDesimaalien määrä.Sekuntien määrä loppulaskentaanSekuntien määrä loppulaskentaanSekuntien määrä ajastettuun lähetykseen.Tähtien lukumääräOmanYksiYksi sähköpostiosoite tai kenttäHups! Tämä lisäosa ei ole toistaiseksi yhteensopiva Ninja Forms THREE -version kanssa. %sLisätietoja%s.Avaa uudessa ikkunassaOperaatiot ja kentät (lisäominaisuus)Määritetyt tyylitVaihtoehto yksiVaihtoehto kolmeVaihtoehto kaksiValinnatJärjestelytoimintoTuen laajuusTuloksen laskennan muotoPHP-aluePHP Max Input -muuttujatPHP 'post' -suurin kokoPHP max suoritusaikaPHP:n versioJULKAISEPakistanPalauPanamaPapua-Uusi-GuineaKappaleen tekstiParaguayYlätason kohdeSalasanaSalasanan vahvistusSalasanavirhe-seliteSalasanat eivät täsmääMaksukentätMaksutavatMaksu yhteensäLupaa ei myönnettyPeruFilippiinitPuhelinPuhelin - (011) 222 3333PitcairnAseta %s johonkin kohtaan, joka hyväksyy pikakoodeja. Näin voit esittää lomakkeesi missä tahansa haluamassasi paikassa – jopa keskellä sivuasi tai viestien sisältöä.PaikanvarausTavallinen teksti%sOta yhteyttä asiakastukeen%s ja ilmoita yllä näkemästäsi virheestä.Ole hyvä ja vastaa roskapostinestoviestiin oikein.Ole hyvä ja tarkista pakolliset kentät.Suorita captcha-todennusSuorita recaptcha-todennusKorjaa virheet, ennen kuin lähetät tämän lomakkeen.Varmista, että kaikki pakolliset kentät on täytetty.Kirjoita viesti, jonka haluat näytettävän, kun tämän lomakkeen lähetysraja on saavutettu, eikä uusia lähetyksiä enää sallita.Ole hyvä ja anna oikea sähköpostiosoiteAnna voimassa oleva sähköpostiosoite!Ole hyvä ja anna oikea sähköpostiosoite.Auta meitä parantamaan Ninja-lomakkeita!Sisällytä nämä tiedot mukaan tukipyyntöihin:Lisää määrällä Jätä roskapostikenttä tyhjäksi.Varmista, että olet antanut sivuston ja salaisen avaimen oikeinArvioi %sNinja Forms%s -laajennus %s%sWordPress.org%s-sivustossa ja auta meitä pitämään se ilmaisena. Kiitokset WP-ninjatiimiltä!Valitse lomake lähetettyjen tietojen tarkastelemista vartenOle hyvä ja valitse lomake.Valitse kelvollinen viety lomaketiedosto.Ole hyvä ja valitse oikein muotoiltu suosikkikenttätiedosto.Ole hyvä ja valitse vietävät suosikkikentät.Käytä näitä operaattoreita: + - * /. Tämä on lisäominaisuus Pidä silmällä eri tekijöitä, kuten jakaminen nollalla.Odota %n sekuntiaOdota ennen lomakkeen lähettämistä.Plugin-laajennuksetPuolaTäytä tämä taksonomiallaPortugaliArtikkeliViestin/sivun tunnus (jos käytettävissä)Viestin/sivun nimike (jos käytettävissä)Viestin/sivun URL-osoite (jos käytettävissä)Luomisen jälkeenPost IDArtikkelin otsikkoArtikkelin URLEsikatseluEsikatsele muutoksiaEsikatsele lomakeEsikatselua ei ole olemassa.HintaHinta:HinnoittelukentätLähetetäänSelitettä käsitelläänLähetystä käsitellään -seliteTuoteTuote (sisältää määrän)Tuote (erillinen määrä)Tuote ATuote BTuotelomake (sisäinen määrä)Tuotelomake (useita tuotteita)Tuotelomake (määräkentän kanssa)TuotetyyppiOhjelmallinen nimi, jota voidaan käyttää tämän lomakkeen viitteenä.JulkaisePuerto RicoOstaQatarMääräTuotteen A määräTuotteen B määräMäärä:KyselymerkkijonoKyselymerkkijonotKyselymerkkijonon muuttujaKysymysKysymyksen asemaHintatarjouspyyntöRadioValintanappiluetteloAnna salasana uudelleenSalasanan uudelleensyötön seliteHaluatko todella poistaa kaikkien käyttöoikeuksien aktivoinnin?RecaptchaOhjaa uudelleenPoistaPoistetaanko KAIKKI Ninja Forms -tiedot asennuksen poiston yhteydessä?Poista arvoPoista kaikki Ninja Forms -tiedotPoista tämä kenttä? Se poistetaan, vaikka et tallentaisi sitä.VastaaVaadi käyttäjän olevan kirjautuneena lomakkeen tarkastelua varten?PakollinenPakollinen kenttäPakollisen kentän virheilmoitusPakollisen kentän tekstiPakollisen kentän merkkiNollaa lomakkeen konversioNollaa lomakkeiden konversioNollaa lomakkeen konversioprosessi tämän version kohdalla: v2.9+PalautaPalauta Ninja FormsPalaute kohde roskakoristaRajoitusten asetuksetRajoituksetRajoittaa syötetyyppejä, joita käyttäjät voivat kirjoittaa tähän kenttään.Palaa Ninja Forms -laajennukseenRéunionRTF-editori (RTE)Elementin oikealla puolellaKentän oikealla puolellaPalautusPalautus viimeiseen 2.9.x-versioon.Palautus v2.9.x-versioonRomaniaVenäjäRuandaSMTPSOAP-asiakasohjelmaSUHOSIN asennettuSaint Kitts ja NevisSaint LuciaSaint Vincent ja GrenadiinitSamoaSan MarinoSão Tomé ja PríncipeSaudi-ArabiaTallennaTallenna ja aktivoiTallenna kenttäasetuksetTallenna lomakeTallennusasetuksetTallenna asetuksetTallenna lähetysTallennettuTallennetut kentätTallenetaan...Etsi kohdeEtsi lähetyksiäValintaValitse kaikkiValitse luetteloValitse kenttä tai haettava tyyppiValitse tiedostoValitse lomakeValitse lomake tai haettava tyyppiValitse se lähetyksien määrä, jonka tämä lomake hyväksyy. Jätä tyhjäksi, jos et halua määrittää rajaa.Valitse selitteesi asema suhteessa itse kenttäelementtiin.ValittuValittu arvoLähetäLähetä kopio lomakkeesta tähän osoitteeseen?SenegalSerbiaPalvelimen IP-osoiteAsetuksetAsetukset tallennettuSeychellitToimitusLyhytkoodiTulee antaa prosenttilukuna, esim. 8,25 %, 4 %Näytä ohjetekstiNäytä medialatauspainikkeetNäytä enemmänNäytä salasanan vahvuuden ilmaisinNäytä RTF-editoriNäytä tämäNäytä luettelokohteiden arvotNäytetään käyttäjille, kun kohdistinta pidetään tämän päällä.Sierra LeoneSingaporeYksinkertainenYksittäinen valintaruutuYksittäishintaYksittäisen rivin tekstiYksi tuote (oletus)Sivuston verkko-osoiteSlovakia (Slovakian tasavalta)SloveniaPostilähetysJos haluaisit esimerkiksi luoda maskin yhdysvaltalaisille sosiaaliturvatunnuksille, kirjoittaisit ruutuun 999-99-9999SalomonsaaretSomaliaLajittele numeerisestiLajittele numeerisestiEtelä-AfrikkaEtelä-Georgia ja Eteläiset SandwichsaaretEtelä-SudanEspanjaRoskapostivastausRoskapostikysymysMääritä operaatiot ja kentät (lisäominaisuus)Sri LankaSaint HelenaSaint Pierre ja MiquelonVakiokentätTähtiluokitusAloita mallistaLääniTilaVaiheVaihe %d / n. %d meneilläänAskel (lisäysten määrä)Salasanan vahvuusVahvaAlasarjaAiheAiheteksti tai etsi kenttääAiherivin teksti tai etsi kenttääLähetysLähetys-CSVLähetystiedotLähetyksen tiedotLähetysrajaLähetys-MetaboxLähetystilastotLähetetytLähetäLähetä painikkeen teksti ajastimen ajan päätyttyäLähetä AJAX:in kautta (ilman sivun uudelleenlatausta)?LähetettyLähettäjäLähettäjä: LähetettyLähetetty: TilaaOnnistumisen ilmoitusSudanSurinamHuippuvuoret ja Jan MayenSwazimaaRuotsiSveitsiSyyrian arabitasavaltaJärjestelmäJärjestelmän tila.THREE on tulossa!TaiwanTadžikistanTutustu kattavaan Ninja Forms -dokumentaatioomme alla.Tansanian yhdistynyt tasavaltaVerotVeroprosenttiLuokitteluMallipohjakentätMallipohjan funktioTermiluetteloTekstiTekstikenttäLaskurin jälkeen näytettävä tekstiTeksti, joka näkyy merkki- tai sanalaskurin jälkeenTekstialueTekstilaatikkoThaimaaKiitos lomakkeen täyttämisestä!Kiitos päivityksestä viimeisimpään versioon! Ninja Forms %s on suunniteltu tekemään lähetettyjen tietojen hallinnasta niin helppoa kuin mahdollista!Kiitos päivityksestä Ninja Forms 2.7 -versioon. Päivitä kaikki Ninja Forms -laajennukset tästä kohteesta: Kiitos päivityksestä! Ninja Forms %s tekee lomakkeiden suunnittelusta helpompaa kuin koskaan!Kiitos, että käytät Ninja Forms -laajennusta! Toivomme, että olet löytänyt kaiken tarvitsemasi. Jos sinulla on kysymyksiä:Kiitos {field:name} lomakkeeni täyttämisestä!(Yleensä) 16 numeroa luottokorttisi etupuolella.Kortin takapuolella (3 numeroa) tai etupuolella (4 numeroa) esitetty luku.9-merkit edustaisivat mitä tahansa numeroa, ja -s lisättäisiin automaattisesti.Forms-valikon kautta pääset kaikkiin Ninja Forms -laajennukseen liittyvin osioihin. Olemme jo luoneet ensimmäisen %skontaktilomakkeesi%s, jotta sinulla olisi käytettävissäsi esimerkki. Voit myös luoda oman lomakkeen napsauttamalla %sAdd New%s (”Lisää uusi”).Muodon tulisi näyttää tältä:Tämän version sisältämät liittymäpäivitykset luovat pohjaa tietyille tuleville uudistuksille. Versio 3.0 tulee perustumaan näille muutoksille. Se tekee Ninja Forms -laajennuksesta entistäkin vakaamman, tehokkaamman ja käyttäjäystävällisemmän lomakkeiden suunnittelutyökalun.Se kuukausi, jolloin luottokorttisi vanhentuu – yleensä merkitty kortin etupuolelle.Yleisimmät asetukset näytetään välittömästi kun taas muut (ei-olennaiset) asetukset on sijoitettu laajennettavien osioiden sisälle.Luottokortin etupuolelle painettu nimi.Annetut salasanat eivät täsmää.Ninja Forms -suunnittelun taustalla olevat henkilötProsessi on käynnistetty. Odota. Tämä saattaa kestää joitakin minuutteja. Sinut siirretään automaattisesti, kun prosessi on suoritettu loppuun.Palvelimeen siirretyn tiedoston koko ylittää MAX_FILE_SIZE-direktiivin, joka määritettiin HTML-lomakkeessa.Palvelimeen siirretyn tiedoston koko ylittää upload_max_filesize-direktiivin (php.ini).Vain osa tiedostosta latautui.Se vuosi, jolloin luottokorttisi vanhentuu – yleensä merkitty kortin etupuolelle.%1$s – käytettävissä on uusi versio. Näytä version %3$s tiedot tai päivitä nyt.%1$s – käytettävissä on uusi versio. Näytä version %3$s tiedot.Lähetetty tiedosto ei ole oikeassa muodossaNämä ovat kaikki kentät Hinnoittelu-osassa.Nämä ovat kaikki kentät Käyttäjän tiedot -osassa.Nämä ovat ennalta määritetyt peitemerkitNämä ovat erilaisia erikoiskenttiä.Näiden kenttien on täsmättävä!Tämä sarake lähetysten taulukossa lajitellaan numeroiden perusteella.Tämä on pakolinen kenttäTämä on pakollinen kenttä.Tämä on testiTämä on käyttäjän osavaltio/alue.Tämä on sähköpostitoiminto.Tämä on toinen testi.Tämä on se aika, jonka käyttäjän on odotettava ennen lomakkeen lähettämistäTämä on selite, jota käytetään lähetysten tarkastelussa/muokkauksessa/viennissä.Tämä on kenttäsi ohjelmallinen nimi. Esimerkkejä: oma_lask, hinta_yht, käytt-yht.Tämä on käyttäjän osavaltioTämä on arvo, jota käytetään, jos %starkistettu%s.Tämä on arvo, jota käytetään, jos %s ei tarkistettu%s.Tämän toiminnon kautta voit suunnitella oman lomakkeesi lisäämällä siihen kenttiä ja vetämällä ne haluamaasi järjestykseen. Kuhunkin kenttään liittyy joukko eri vaihtoehtoja, kuten selite, selitteen asema ja paikkamerkki.WordPress on varannut tämän avainsanan käytön. Yritä jotakin muuta vaihtoehtoa.Tämä viesti näytetään lähetyspainikkeen sisällä aina käyttäjän napsautettua ”Lähetä”. Näin käyttäjä näkee, että käsittely on meneillään.Tämä viesti näytetään käyttäjälle hänen antaessaan virheelliset arvot salasanakenttään.Tätä lukua käytetään laskennoissa, jos valintaruutu on valittuna.Tätä lukua käytetään laskennoissa, jos valintaruutu ei ole valittuna.Tämä asetus poistaa TÄYSIN kaikki Ninja Forms -laajennukseen liittyvät tiedot sen poistamisen yhteydessä. Tämä sisältää LÄHETETYT TIEDOT sekä LOMAKKEET. Tätä toimintoa ei voida kumota.Tämä välilehti sisältää lomakkeen yleiset asetukset, kuten nimikkeen ja lähetystavan, sekä sen esittämiseen liittyviä asetuksia, kuten lomakkeen piilottaminen sen jälkeen, kun se on täytetty onnistuneesti.Tämä tulee olemaan sähköpostiviestin aihe.Tämä estää käyttäjiä syöttämästä kenttään muita merkkejä kuin numeroita.KolmeAjastettu lähetysAjastimen virheilmoitusItä-TimorVastaanottajaJos haluat aktivoida Ninja Forms -laajennusten käyttöoikeuksia, sinun täytyy ensin %sasentaa ja aktivoida%s kyseinen laajennus. Käyttöoikeusasetukset tulevat tämän jälkeen näkyviin alla.Tämä toiminnon käyttämiseksi voit liittää CSV-tiedostosi yllä olevaan tekstialueeseen.Nykyinen päivämääräToggle DrawerTogoTokelauTongaYhteensäRoskakoriYrittää noudattaa %sPHP päivämäärä() funktio%s -määrityksiä, mutta kaikkia muotoja ei tueta.Trinidad ja TobagoTunisiaTurkkiTurkmenistanTurks- ja CaicossaaretTuvaluKaksiLajiLinkkiPuhelinUgandaUkrainaEi valittuValitsematon laskenta-arvoBasic Form Behavior -osiossa (”lomakkeen perusmääritykset”) Form Settings -asetusten (”lomakkeen asetukset”) alla voit helposti valita sivun, jonka sisällön loppuun haluat liittää lomakkeen automaattisesti. Samankaltainen vaihtoehto on käytettävissä jokaisen sisällönmuokkausnäytön sivupalkissa.KumoaKumoa kaikkiYhdistyneet ArabiemiirikunnatYhdistynyt kuningaskuntaYhdysvallatYhdysvaltain Tyynenmeren erillissaaretTuntematon siirtovirhe.JulkaisematonPäivitäPäivitä kohdePäivitetty: Lomaketietokantaa päivitetäänKorota tasoaPäivitä Ninja Forms THREE -versioonPäivitykset ylempiin versioihinPäivitykset ovat valmiitaURLUruguayKäytä yhtälöä (lisäominaisuus)Käytä määrääKäytä mukautettua ensimmäistä vaihtoehtoaKäytä Ninja Forms -oletustyyliasetuksia.Lisää lopullinen laskentatulos käyttäen seuraavaa pikakoodia: [ninja_forms_calc]Pääset alkuun Ninja Forms -laajennuksen käytössä alla olevien vinkkien avulla. Opit käytön tuossa tuokiossa!Käytä tätä rekisteröinnin salasanakenttänäKäytä tätä rekisteröinnin salasanakenttänä Jos tämä valintaruutu on valittuna, sekä salasanaruutu että salasanan uudelleensyöttöruutu näytetään.Käytetään kenttien merkitsemiseksi käsittelyä varten.KäyttäjäKäyttäjän näyttönimi (jos kirjautuneena sisään)Käyttäjän sähköpostiosoiteKäyttäjän sähköposti (jos kirjautuneena sisään)Käyttäjän merkintäKäyttäjän etunimi (jos kirjautuneena sisään)Käyttäjän tunnus/IDKäyttäjätunnus (jos kirjautuneena sisään)Käyttäjätietojen kenttäryhmäKäyttäjätiedotKäyttäjätietokentätKäyttäjän sukunimi (jos kirjautuneena sisään)Käyttäjän Meta (jos kirjautuneena sisään)Käyttäjän antamat arvotKäyttäjän lähettämät tiedot:Käyttäjät täyttävät pitkät lomakkeet halukkaammin, jos he voivat tallentaa ja palauttaa ne täytettyinä myöhemmin.

    Ninja Forms -lomakkeiden Save Progress -laajennus tekee tästä nopeaa ja helppoa.

    UzbekistanVahvista sähköpostiosoitteena? (Kentän on oltava pakollinen)ArvoVanuatuMuuttujan nimiVenezuelaVersioVersio %sHyvin heikkoVietnamKatso%s - tarkasteluNäytä muutoksetNäytä lomakkeetTarkastele kohdettaTarkastele lähetystäNäytä lähetetyt lomakkeetTarkastele täydellistä muutoslokiaBrittiläiset NeitsytsaaretYhdysvaltain NeitsytsaaretKäy lisäosan kotisivullaWP-testaustilaWP-kieliWP:n maks. palvelimeen latausWP-muistinvarausWP Multisite käytössäWP-etälähetysWP-versioWallis ja FutunaTeemme kaikkemme tarjotaksemme jokaiselle Ninja Forms -käyttäjälle parasta mahdollista tukea. Jos sinulla on kysyttävää tai ongelmia, %sota meihin yhteyttä%s.Olemme lisänneet vaihtoehdon kaikkien Ninja Forms -tietojen (lähetetyt tiedot, kentät, asetukset) poistamista varten, kun poistat itse laajennuksen. Kutsumme tätä ”täystuho”-vaihtoehdoksi.Huomasimme, että lomakkeesi ei sisällä lähetyspainiketta. Voimme lisätä sen automaattisesti.HeikkoWeb-palvelimen tiedotTervetuloa – Ninja Forms Tervetuloa – Ninja Forms %sLänsi-SaharaKuinka voimme olla avuksi?Mitä voit kokeilla ennen kuin otat yhteyttä tukeen?Minkä nimen haluat antaa tälle suosikille?Mitä uuttaKun luot tai muokkaat lomakkeita, siirry suoraan olennaisimpaan osioon.Kenelle tämä sähköpostiviesti tulisi lähettää?SanatSanatPaketoijaY-m-dj.n.YVVVV-KK-PPYYYY/MM/DDYemenKylläOlet oikeutettu päivittämään Ninja Forms THREE -esijulkistusversioon! %sPäivitä nyt%sVoit myös yhdistellä näitä erityiskäyttöä varten.Voit syöttää laskentayhtälöitä tässä käyttäen kaavaa field_x , jossa x on sen kentän tunnus, jota haluat käyttää. Esimerkki: %sfield_53 + field_28 + field_65%s.Et voi lähettää lomaketta, ellei Javascript ole käytössä.Sinulla ei ole oikeutta asentaa laajennusten päivityksiä.Sinulla ei ole tarvittavia oikeuksia.Et ole lisännyt lähetyspainiketta lomakkeeseesi.Sinun on oltava kirjautuneena sisään lomakkeen esikatselua varten.Sinun on annettava tälle suosikille nimi.Tämän lomakkeen lähettäminen edellyttää JavaScriptiä. Ota se käyttöön ja yritä uudelleen.Ostit Löydät tämän ostoksen jälkeen vastaanottamastasi sähköpostiviestistä.Lomakkeesi lähetys onnistui.Palvelimella ei ole käytössä fsockopen, cURL. PayPal IPN ja muut skriptit eivät toimi. – Ota yhteyttä palvelimen ylläpitäjään ja selvitä tilanne.%sSOAP-asiakasohjelma%s ei ole käytössä palvelimessasi. Jotkin SOAP:ia käyttävät yhdyskäytävälaajennukset eivät ehkä toimi odotetulla tavalla.Palvelimessasi on käytössä cURL; fsockopen ei ole käytössä.Palvelimessasi on käytössä fsockopen ja cURL.Palvelimessasi on käytössä fsockopen; cURL ei ole käytössä.Palvelimessasi on käytössä SOAP-asiakasohjelmaluokka.Oma Ninja Forms ”File Upload” -laajennuksesi ei ole yhteensopiva Ninja Forms 2.7 -version kanssa. Version on oltava vähintään 1.3.5. Päivitä tämä laajennus – Oma Ninja Forms ”Save Progress” -laajennuksesi ei ole yhteensopiva Ninja Forms 2.7 -version kanssa. Version on oltava vähintään 1.1.3. Päivitä tämä laajennus – YugoslaviaSambiaZimbabwePostinroPostinumeroa - Edustaa aakkosellisia merkkejä (A-Z,a-z) - Sallii vain kirjainten syöttämisenvastausbutton-secondary nf-download-allbymerkkiä jäljellävalittuKopioimukautettud-m-Ydashicons dashicons-updatekaksoiskappalefoo@wpninjas.comtjs-newsletter-list-update extral, F d Ym-d-Ym/d/Yei toistoa / tuotetta A ja tuotetta B hintaan $yksione_week_supportsalasanakäsitellään...tuotetta hintaan reCAPTCHAreCAPTCHA-kielireCAPTCHA salainen avainRoskapostin esto -asetukset (reCaptcha)Sivuston reCAPTCHA-avainreCAPTCHA-teemareCaptcha-asetuksetPäivitäsmtp_portkolmeotsikkokaksiei valittupäivitettyuser@gmail.comversiowp_remote_post() epäonnistui. PayPal IPN ei ehkä toimi palvelimesi kanssa.wp_remote_post() epäonnistui. PayPal IPN ei toimi palvelimesi kanssa. Ota yhteyttä verkkohotellipalvelun tarjoajaan. Virhe:wp_remote_post() onnistui - PayPal IPN toimii.lang/ninja-forms-el.mo000064400000373160152331132460010655 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 ,L]Cyq@1r\|V!! ,)Lv:&?8 $2&W,~$+q.-p\'*3^m%&&6,]*"2)0E*v=,& .3,bbh+%!+%Io7OfA8U7$PB!4 (L=JH0O($@Qds2ACXv$$ 1JNe!}## %*P p}?<G ?U !%D6'{/!$ 9F %)'!Qs,=N ]!hc#32/f510,/\.x* 5 *5M1h)1 -)Wu4%L m> )# *0*[ 4 :!Np%% %0*V<0&& =8J #)/8N4%8;DW6    F FJ  ?  + ! )A %k ) )   9 6Y  O #d 4 & C #( ?L i ! #)!M/o! + p)L\+D|p,+*:e!N+@H;[JJ CU) )6 B)U)#)4='rA##$5K\b#DVsneHc;#! B S`*:Vq0$$3I'}3,& < QZ   '  % !2! Q!d\!g! )".4"Bc"P"" ##.#2#:# $!$"%'%I?%%#%'%?%/&>M&&(& & &(& ' 1'(>'g'!'$'.''(='(e(}(( (!((((4),9)f)):))[_**+-+ ++,,-,&,$-3&-;Z-7-?- ..0.)?.i. ........3/4/R/a/&/ //!//J0mS0111 11(2=2%S22y2222224E6G7889Z:3;;lk<Y<p2==>d?%?%BC!D2$D2WD%DDDD0 E&;EbE%EtE#F!AF cFnFFF-FF#F#G @GaG/|G'G2G9H7AHyHH$H H'H HH IMIhIqI_II I J J# J5DJ*zJJJJJJK~"K!KKK-LLL!LL#M@'kfkwkeCll;m,Jm.wm'mm.mTn[rn]n,oLoUo<^oo+2p5^ppppppqKq(`q'qqqqqrr )r6r"Er#hrrrr8rEsFLssss-s t"t!7t!Yt{t]t%uv(vvMwNw%x^BxnxyAyDAzBzEzo{{{||P}#~T8~T~E~(G-duڀ:7 LOWPG+@'l)ڂ'1,^ g!q'8σ <2RI;B+n/ G R]&o&-φ/-L[u/8؇Ih[ ĈΈ?މl`!24M444s!%;Ό) 4K&J('s!;G/Aq 'Iݏ'9= wV 4 4U!%'ґ% #9]%u#Вl$q"l&ה\qe #$H2[HҖ2JN!LU"^;O #8.Gv&,:$)5_f.(›CG_NnLL Wi:z(͝/&/B:K* ͞-ڞIW[Ÿ!ן'!(;%dnVpơ 3@:Q7'0 IVpm>ޣ !(J]%y!¤Pr5ȥY.SZ]ϩy-\7Vffd?˱  rFH۴XX gbZʷ;%@aq:6O'@21"T==r{wf~qpZDX4-b+:0+km%# )4 E R_},0]l{'  *;9U , P-p%!Sd-y80CEa^d9vIO=2!pBC;!#].FWAOD~ 3Q fs!'GWg0"A9UB)+/;Ek!-/96epM$?CE Vckqw  qAKg\ xiY<ZGSO}R{}[LGI: Ubw'y 1 '-H[ls !3Oj%) 9 J T _ls w8n Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Πεδία Άνοιγμα σε νέο παράθυρο Αναίρεση όλων εγκατεστημένη. Η τρέχουσα έκδοση είναι η προϊόν(τα) για απαιτεί ενημέρωση. Έχετε την έκδοση #%1$s προσχέδιο ενημερώθηκε. Προεπισκόπηση%3$s%1$s επανήλθε στην αναθεώρηση της %2$s.%1$s προγραμματίστηκε για: %2$s. Προεπισκόπηση%4$s%1$s υποβλήθηκε. Προεπισκόπηση%3$sΤο %n θα χρησιμοποιείται για να δηλώνει τον αριθμό των δευτερολέπτων πριν από %sΤο %s δημοσιεύτηκε.Το %s αποθηκεύθηκε.Το %s ενημερώθηκε.Το %s απενεργοποιήθηκε.%sΝα επιτρέπεται%sΤιμή υπολογισμού %sεπιλεγμένου%s%sΝα μην επιτρέπεται%sΤιμή υπολογισμού %sμη επιλεγμένου%s* - Αναπαριστά έναν αλφαριθμητικό χαρακτήρα (A-Z,a-z,0-9) - Επιτρέπει την εισαγωγή και αριθμών και λατινικών χαρακτήρων- Κανένα- Επιλέξτε ένα- Επιλέξτε ένα πεδίο- Επιλέξτε ένα προϊόν- Επιλέξτε μια μεταβλητή- Επιλέξτε μια φόρμα- Προβολή όλων των τύπων9 - Αναπαριστά έναν αριθμητικό χαρακτήρα (0-9) - Επιτρέπει μόνο την εισαγωγή αριθμών
    • a - Αναπαριστά έναν χαρακτήρα του λατινικού αλφαβήτου (A-Z,a-z) - Επιτρέπει μόνο την εισαγωγή λατινικών χαρακτήρων
    • 9 - Αναπαριστά έναν αριθμητικό χαρακτήρα (0-9) - Επιτρέπει μόνο την εισαγωγή αριθμών.
    • * - Αναπαριστά έναν αλφαριθμητικό χαρακτήρα (A-Z,a-z,0-9) - Επιτρέπει την εισαγωγή και αριθμών και λατινικών χαρακτήρων
    Μια απάντηση με διάκριση κεφαλαίων-πεζών που βοηθά στην πρόληψη ανεπιθύμητων υποβολών της φόρμας σας.Έρχεται σημαντική αναβάθμιση για το Ninja Forms. %sΜάθετε περισσότερα για τις νέες δυνατότητες, την προς τα πίσω συμβατότητα και διαβάστε απαντήσεις σε συχνές ερωτήσεις.%sΜια απλοποιημένη και πιο ισχυρή εμπειρία δημιουργίας φορμών.Επάνω από το στοιχείοΠάνω από το πεδίοΌνομα ενέργειαςΗ ενέργεια ενημερώθηκεΔράσειςΕνεργοποίησηΕνεργά ΦίλτραΠροσθήκηΠροσθήκη περιγραφήςΠροσθήκη φόρμαςΠροσθήκη ΝέουΠροσθήκη νέου πεδίουΠροσθήκη νέας φόρμαςΠροσθήκη νέου στοιχείουΠροσθήκη νέας υποβολήςΠροσθήκη νέων όρωνΠράξη πρόσθεσηςΠροσθήκη κουμπιού υποβολήςΠροσθήκη τιμήςΠροσθήκη ενεργειών φόρμαςΠροσθήκη πεδίων φόρμαςΠροσθήκη φόρμας σε αυτή τη σελίδαΠροσθήκη νέας ενέργειαςΠροσθήκη νέου πεδίουΠροσθέστε συνδρομητές και αναπτύξτε τη λίστα email σας με αυτή τη φόρμα εγγραφής σε ενημερωτικό δελτίο. Μπορείτε να προσθέσετε και να αφαιρέσετε πεδία, κατά περίπτωση.Πρόσθετες άδειες χρήσηςΠρόσθεταΔιεύθυνσηΔιεύθυνση 2Προσθέτει μία επιπλέον κλάση στο στοιχείο πεδίου σας.Προσθέτει μία επιπλέον κλάση στο περιτύλιγμα πεδίου σας.Email διαχειριστήΕτικέτα διαχειριστήΔιαχείρισηΣύνθετηΠροηγμένη εξίσωσηΠροχωρημένες ΡυθμίσειςΕξελιγμένη αποστολήΑφγανιστάνΜετά από τα πάνταΜετά τη φόρμαΜετά την ετικέταΣυμφωνείτε;ΑλβανίαΑλγερίαΌλαΤα πάντα σχετικά με τις φόρμεςΌλα τα πεδίαΌλες οι φόρμεςΌλα τα στοιχείαΌλες οι τρέχουσες φόρμες θα παραμείνουν στον πίνακα "Όλες οι φόρμες". Σε κάποιες περιπτώσεις, ίσως προκύψουν διπλότυπα ορισμένων φορμών κατά τη διάρκεια αυτής της διαδικασίας.Επιτρέψτε στους χρήστες να εγγραφούν για την επόμενη εκδήλωσή σας με αυτή την εύκολη στη συμπλήρωση φόρμα. Μπορείτε να προσθέσετε και να αφαιρέσετε πεδία, κατά περίπτωση.Επιτρέψτε στους χρήστες σας να επικοινωνήσουν μαζί σας με αυτή την απλή φόρμα επικοινωνίας. Μπορείτε να προσθέσετε και να αφαιρέσετε πεδία, κατά περίπτωση.Επιτρέπει την είσοδο εμπλουτισμένου κειμένου.Επιτρέπει στους χρήστες να επιλέγουν περισσότερα του ενός από αυτό το προϊόν. Σχεδόν τελειώσαμε...Μαζί με την καρτέλα "Δημιουργήστε τη φόρμα σας", αντικαταστήσαμε τις "Ειδοποιήσεις" με το "Email & Ενέργειες." Αυτή είναι μια πολύ πιο σαφής ένδειξη του τι μπορεί να γίνει σε αυτήν την κάρτα.Αμερικανική ΣαμόαΕνα απρόσμενο λάθος συνέβει.ΑνδόραΑγκόλαΑνγκουίλαΑπάντησηΑνταρκτικήΚαταπολέμηση ανεπιθύμητης αλληλογραφίαςΕρώτηση πρόληψης spam (Απάντηση = απάντηση)Μήνυμα σφάλματος κατά των ανεπιθύμητωνΑντίγκουα και ΜπαρμπούνταΟποιοσδήποτε χαρακτήρας τοποθετηθεί στο πλαίσιο "προσαρμοσμένη μάσκα" και δεν περιλαμβάνεται στην παρακάτω λίστα θα καταχωρηθεί αυτόματα για τον χρήστη, καθώς αυτός πληκτρολογεί, και δεν θα μπορεί να αφαιρεθείΠροσάρτηση ενός Ninja FormΕπισύναψη Ninja FormsΕπισύναψη σε σελίδαΕφαρμογήΑργεντινήΑρμενίαΑρούμπαΕπισύναψη CSVΣυνημμέναΑυστραλίαΑυστρίαΑυτόματες αθροίσεις πεδίωνΑυτόματη άθροιση τιμών υπολογισμούΔιαθέσιμοςΔιαθέσιμοι όροιΑζερμπαϊτζάνΕπιστροφή στη λίσταΕπιστροφή στη λίσταBackup / ΕπαναφοράBackup του Ninja FormsΜπαχάμεςΜπαχρέινΜπανγκλαντέςBarΜπαρμπάντοςΒασικά πεδίαΒασικές ΡυθμίσειςΝιπτήραςBazΙδ.κοιν.Πριν από τα πάνταΠριν τη φόρμαΠριν την ετικέταΠριν ζητήσετε βοήθεια από την ομάδα υποστήριξής μας, παρακαλούμε ελέγξτε τα εξής:Ημερομηνία έναρξηςΗμερομηνία έναρξηςΛευκορωσίαΒέλγιοΜπελίσεΚάτω από το στοιχείοΚάτω από το πεδίοΜπενίνΒερμούδεςΠροτιμώμενη μέθοδος επικοινωνίας;Η καλύτερη υποστήριξη στον κλάδοΚαλύτερα οργανωμένες ρυθμίσεις πεδίωνΚαλύτερη διαχείριση αδειών χρήσηςΜπουτάνΧρέωσηΚενές φόρμεςΒολιβίαΒοσνία-ΕρζεγοβίνηΜποτσουάναΜπουβέ ΝησίΒραζιλίαΒρετανικό Έδαφος του Ινδικού ΩκεανούΜπρουνέι ΝταρουσαλάμΔημιουργία της φόρμας σαςΒουλγαρίαΜαζικές ενέργειεςΜπουρκίνα ΦάσοΜπουρουντίΚουμπίΚωδικός Επαλήθευσης Κάρτας (3-ψήφιο νούμερο στο πίσω μέρος της κάρτας σας)Υπολ.Τιμή Υπολ.ΥπολογισμόςΜέθοδος υπολογισμούΡυθμίσεις υπολογισμούΌνομα υπολογισμούΥπολογισμοίΟι υπολογισμοί επιστρέφονται μαζί με την απόκριση AJAX (απόκριση -> δεδομένα -> υπολογισμοίΚαμπότζηΚαμερούνΚαναδάςΆκυροΠράσινο ΑκρωτήριοΑσυμφωνία captcha. Εισαγάγετε τη σωστή τιμή στο πεδίο captchaΠεριγραφή CVC κάρταςΕτικέτα CVC κάρταςΠεριγραφή μήνα λήξης κάρταςΕτικέτα μήνα λήξης κάρταςΠεριγραφή έτους λήξης κάρταςΕτικέτα έτους λήξης κάρταςΠεριγραφή ονόματος κάρταςΕτικέτα ονόματος κάρταςΑριθμός ΚάρταςΠεριγραφή αριθμού κάρταςΕτικέτα αριθμού κάρταςΝησιά ΚέιμανΚοιν.Κεντροαφρικανική ΔημοκρατίαΤσαντΑλλαγή τιμήςΧαρακτήρας(ες)Χαρακτήρας(ες) απέμεινε(αν)ΧαρακτήρεςΠροσπαθείς να κλέψεις;Ελέγξτε την τεκμηρίωσή μαςΠλαίσιο ελέγχουΛίστα με πλαίσια ελέγχουΠλαίσια ελέγχουΕπιλεγμένοΕπιλεγμένη τιμή υπολογισμούΧιλήΚίναΝήσος ΧριστουγέννωνΠόληΌνομα κατηγορίαςΚαθάρισμα επιτυχώς συμπληρωμένης φόρμας;Νήσοι ΚόκοςΣυλλογή πληρωμήςΚολομβίαΚοινά πεδίαΚόμοροςΜπορείτε να δημιουργήσετε σύνθετες εξισώσεις προσθέτοντας παρενθέσεις: %s( field_45 * field_2 ) / 2%s.ΕπιβεβαίωσηΕπιβεβαιώστε ότι δεν είστε ρομπότΚονγκόΚονγκό, Δημοκρατία τουΦόρμα επικοινωνίαςΕπικοινωνήστε μαζί μουΕπικοινωνήστε μαζί μαςΠεριέκτηςΣυνέχειαΝήσοι ΚουκΚόστοςΑναπτυσσόμενη λίστα κόστουςΕπιλογές κόστουςΤύπος κόστουςΚόστα ΡίκαΑκτή ΕλεφαντοστούΔεν ήταν δυνατή η ενεργοποίηση της άδειας χρήσης. Επαληθεύστε το κλειδί της άδειας χρήσης σαςΧώραΔημιουργεί ένα μοναδικό κλειδί για τον εντοπισμό και τη στόχευση του πεδίου σας για προσαρμοσμένη ανάπτυξη.Πιστωτική ΚάρταCVC πιστωτικής κάρταςCVV πιστωτικής κάρταςΛήξη πιστωτικής κάρταςΟνοματεπώνυμο πιστωτικής κάρταςΑριθμός πιστωτικής κάρταςT.K. πιστωτικής κάρταςT.K. πιστωτικής κάρταςΠόντοιΚροατία (Τοπική ονομασία: Hrvatska)ΚούβαΝόμισμαΣύμβολο νομίσματοςΤρέχουσα σελίδαΠροσαρμογήΠροσαρμοσμένη κλάση CSSΠροσαρμοσμένες κλάσεις CSSΠροσαρμοσμένα ονόματα κλάσεωνΟμάδα προσαρμοσμένων πεδίωνΠροσαρμοσμένη μάσκαΟρισμός προσαρμοσμένης μάσκαςΠροσαρμοσμένο πεδίο διαγράφηκε.Το προσαρμοσμένο πεδίο ενημερώνεται.Προσαρμοσμένη πρώτη επιλογήςΚύπροςΤσεχίαDD-MM-YYYYDD/MM/YYYYΕΝΤΟΠΙΣΜΟΣ ΣΦΑΛΜΑΤΩΝ: Μετάβαση στο 2.9.xΕΝΤΟΠΙΣΜΟΣ ΣΦΑΛΜΑΤΩΝ: Μετάβαση στο 3.0.xΣκούροΤα δεδομένα επανήλθαν με επιτυχία!ΗμερομηνίαΗμερομηνία δημιουργίαςΜορφή ΗμερομηνίαςΡυθμίσεις ημερομηνίαςΗμερομηνία υποβολήςΗμερομηνία ενημέρωσηςΕπιλογέας ημερομηνίαςΑπενεργοποίησηΑπενεργοποίησηΑπενεργοποίηση όλων των αδειώνΑπενεργοποίηση άδειας χρήσηςΑπενεργοποίηση των αδειών χρήσης επεκτάσεων του Ninja Forms μεμονωμένα ή ως ομάδα από την καρτέλα ρυθμίσεων.ΠροεπιλογήΠροεπιλεγμένη χώραΠροεπιλεγμένη θέση ετικέταςΠροεπιλογή ζώνη ώραςΠροεπιλογή στην τρέχουσα ημερομηνίαΠροεπιλεγμένη τιμήΗ προεπιλεγμένη ζώνη ώρας είναι %s Η προεπιλεγμένη ζώνη ώρας είναι %s - θα μπορούσε να είναι UTCΚαθορισμένα πεδίαΔιαγραφήΔιαγραφή (^ + D + κλικ)Οριστική ΔιαγραφήΔιαγραφή αυτής της φόρμαςΟριστική ΔιαγραφήΔανίαΠεριγραφήΠεριεχόμενο περιγραφήςΘέση περιγραφήςΓνωρίζατε ότι μπορείτε να αυξήσετε τη μετατροπή σπάζοντας μεγάλες φόρμες σε μικρότερα, πιο εύκολα στη συμπλήρωση τμήματα;

    Η επέκταση Multi-Part Forms του Ninja Forms κάνει αυτή τη διαδικασία γρήγορη και εύκολη.

    Απενεργοποίηση ειδοποιήσεων διαχειριστήΑπενεργοποίηση αυτόματης συμπλήρωσης από τον browserΑπενεργοποίηση εισόδουΑπενεργοποίηση του επεξεργαστή εμπλουτισμένου κειμένου στο κινητόΑπενεργοποίηση εισόδου;ΑπόρριψηΠροβολήΕμφάνιση τίτλου φόρμαςΠροβολή ΟνόματοςΠροβολή ΡυθμίσεωνΕμφάνιση αυτής της μεταβλητής υπολογισμούΕμφάνιση τίτλουΕμφάνιση της φόρμας σαςDividerΤζιμπουτίΝα μην εμφανιστούν αυτοί οι όροιΤεκμηρίωσηΗ τεκμηρίωση θα είναι σύντομα διαθέσιμη.Διατίθεται τεκμηρίωση η οποία καλύπτει τα πάντα από την %sΑντιμετώπιση προβλημάτων%s έως το %sAPI του Προγραμματιστή%s. Νέα έγγραφα προστίθενται συνεχώς.ΔΕΝ ισχύει για την προεπισκόπηση φόρμας.Ισχύει για την προεπισκόπηση φόρμας.ΝτομίνικαΔομινικανή ΔημοκρατίαΤέλοςΛήψη όλων των υποβολώνΑναπτυσσόμενο μενού επιλογήςΑντίγραφοΑναπαραγωγή (^ + C + κλικ)Διπλότυπη φόρμαΕκουαδόρΕπεξεργασίαΕπεξεργασία ενέργειαςΕπεξεργασία φόρμαςΕπεξεργασία στοιχείουΕπεξεργασία στοιχείου μενούΕπεξεργασία υποβολήςΕπεξεργασία αυτού του αντικειμένουΠεδίο επεξεργασίαςΠεδίο επεξεργασίαςΑίγυπτοςΕλ ΣαλβαδόρΣτοιχείοEmailEmail και ενέργειεςΔιεύθυνση EmailΜήνυμα emailΦόρμα συνδρομής emailΔιεύθυνση email ή αναζήτηση ενός πεδίουΔιευθύνσεις email ή κάντε αναζήτηση για ένα πεδίοΤα email θα εμφανίζονται να προέρχονται από αυτή τη διεύθυνση email.Τα email θα εμφανίζονται να προέρχονται από αυτό το όνομα.Email & ΕνέργειεςΗμερομηνία λήξηςΒεβαιωθείτε ότι αυτό το πεδίο έχει συμπληρωθεί πριν επιτρέψετε να υποβληθεί η φόρμα.Εισαγάγετε το κείμενο που θέλετε να εμφανίζεται στο πεδίο πριν εισαχθούν δεδομένα από το χρήστη.Εισαγάγετε την ετικέτα του πεδίου φόρμας. Με αυτόν τον τρόπο οι χρήστες θα αναγνωρίζουν τα μεμονωμένα πεδία.Καταχωρήστε τη διεύθυνση email σαςΠεριβάλλονΕξομοίωσηΕξίσωση (Προηγμένο)Ισημερινή ΓουινέαΕρυθραίαΣφάλμαΜήνυμα σφάλματος που εμφανίζεται αν δεν συμπληρωθούν όλα τα απαραίτητα πεδίαΕσθονίαΑιθιοπίαΕγγραφή για εκδηλώσειςΑνάπτυξη μενούΜήνας λήξης (MM)Έτος λήξης (ΕΕΕΕ)ΕξαγωγήΕξαγωγή αγαπημένων πεδίωνΕξαγωγή πεδίωνΕξαγωγή φόρμαςΕξαγωγή φορμώνΕξαγωγή μιας φόρμαςΕξαγωγή αυτού του στοιχείουΕπεκτείνετε το Ninja FormsΑΠΟΣΤΟΛΗ ΑΡΧΕΙΟΥΑπέτυχε η εγγραφή στο δίσκο.Νησιά Φόκλαντ (Μαλβίνας)Νήσοι ΦερόεΑγαπημένα πεδίαΗ εισαγωγή των αγαπημένων έγινε με επιτυχία.ΠεδίοΑρ. πεδίουΑναγνωριστικό πεδίουΚλειδί πεδίουΤο πεδίο δεν βρέθηκεΠράξεις με πεδίαΠεδίαΤα πεδία που είναι επισημασμένα με * είναι υποχρεωτικά.Τα πεδία που είναι επισημασμένα με %s*%s είναι υποχρεωτικάΦίτζιΣφάλμα αποστολής αρχείωνΗ αποστολή αρχείου είναι σε εξέλιξη.Η μεταφόρτωση διακόπηκε από επέκταση της PHP.Φινλανδία'ΟνομαΕπιδιόρθωση.FooFoo BarΓια παράδειγμα, αν έχετε ένα κλειδί προϊόντος με τη μορφή A4B51.989.B.43C, μπορείτε να το αποδώσετε ως μάσκα με τη μορφή: a9a99.999.a.99a, η οποία θα κάνει υποχρεωτική την εισαγωγή λατινικών χαρακτήρων στη θέση των a και αριθμών στη θέση των 9Φόρμα:Προεπιλογή φόρμαςΗ φόρμα διαγράφηκεΠεδία φόρμαςΗ εισαγωγή της φόρμας έγινε με επιτυχία.Κλειδί φόρμαςΗ φόρμα δεν βρέθηκεΠροεπισκόπηση φόρμαςΟι ρυθμίσεις φόρμας αποθηκεύτηκανΥποβολές φορμώνΣφάλμα εισαγωγής προτύπου φόρμας.Τίτλος φόρμαςΦόρμα με υπολογισμούςΜορφήΦόρμεςΟι φόρμες διαγράφηκανΦόρμες ανά σελίδαΓαλλίαΓαλλία, ΜητροπολιτικήΓαλλική ΓουιάναΓαλλική ΠολυνησίαΓαλλικά Νότια ΕδάφηΠαρασκευή, 18 Νοεμβρίου 2019Διεύθυνση απόΌνομα ΑπόΠλήρες αρχείο καταγραφής αλλαγώνΠλήρης οθόνηΓκαμπόνΓκάμπιαΓενικάΓενικές ΡυθμίσειςΓεωργίαΓερμανίαΛήψη βοήθειαςΛήψη περισσότερων ενεργειώνΛήψη περισσότερων τύπωνΛάβετε βοήθειαΛήψη υποστήριξηςΠάρε την Αναφορά του ΣυστήματοςΑποκτήστε ένα κλειδί ιστότοπου για το domain σας, με την εγγραφή σας %sεδώ%sΞεκινήστε προσθέτοντας το πρώτο σας πεδίο φόρμας.Ξεκινήστε προσθέτοντας το πρώτο σας πεδίο φόρμας. Κάντε απλά στο συν και επιλέξτε όποιες ενέργειες θέλετε. Είναι τόσο εύκολο.ΞεκινώνταςΠρώτα βήματα με το Ninja FormsΓκάναΓιβραλτάρΔώστε στη φόρμα σας έναν τίτλο. Με αυτό τον τρόπο θα βρίσκετε τη φόρμα σας στο μέλλον.ΠήγαινεΗ προσπάθειά σας απέτυχεΜετάβαση στις ΦόρμεςΜετάβαση στο Ninja Forms Μεταβείτε στην πρώτη σελιδαΠηγαίνετε στην τελευταία σελίδαΠηγαίνετε στην επόμενη σελίδαΠηγαίνετε στην προηγούμενη σελίδαΕλλάδαΓροιλανδίαΓρενάδαΑυξανόμενη τεκμηρίωσηΓουαδελούπηΓκουάμΓουατεμάλαΓουινέαΓουϊνέα-ΜπισάουΓουιάναHTMLΑϊτήΜισή οθόνηΝησιά Χερντ και ΜακντόναλντΓεια σας, Ninja Forms!ΒοήθειαΚείμενο βοήθειαςΚείμενο βοήθειας εδώΚρυφήΚρυφό πεδίοΑπόκρυψη ετικέταςΝα κρυφτεί αυτόΑπόκρυψη επιτυχώς συμπληρωμένης φόρμας;Συμβουλή: Ο κωδικός πρόσβασης πρέπει να αποτελείται τουλάχιστον από επτά χαρακτήρες. Για να τον κάνετε πιο ισχυρό, χρησιμοποιήστε και πεζά και κεφαλαία γράμματα, αριθμούς και σύμβολα όπως ! " ? $ % ^ & ).ΒατικανόURL ΑρχικήςΟνδούραHoney PotΣφάλμα honeypotΜήνυμα σφάλματος honeypotΧονγκ ΚονγκΑγκίστρωση ετικέταςΌνομα κεντρικού υπολογιστήΠώς πάμε;ΟυγγαρίαΔιεύθυνση IPΙσλανδίαΑν έχει ενεργοποιηθεί το "κείμενο περιγραφής", θα υπάρχει ένα αγγλικό ερωτηματικό %s τοποθετημένο δίπλα από το πεδίο εισόδου. Αν κάνετε κατάδειξη αυτού του αγγλικού ερωτηματικού, θα εμφανιστεί το κείμενο περιγραφής.Αν έχει ενεργοποιηθεί το "κείμενο βοήθειας", θα υπάρχει ένα αγγλικό ερωτηματικό %s τοποθετημένο δίπλα από το πεδίο εισόδου. Αν κάνετε κατάδειξη αυτού του αγγλικού ερωτηματικού, θα εμφανιστεί το κείμενο βοήθειας.Αν επιλεγεί αυτό το πλαίσιο, ΟΛΑ τα δεδομένα του Ninja Forms θα καταργηθούν από τη βάση δεδομένων μετά τη διαγραφή. %sΔεν θα υπάρχει η δυνατότητα ανάκτησης κανενός δεδομένου υποβολής.%sΑν επιλεγεί αυτό το πλαίσιο, το Ninja Forms θα καθαρίζει τις τιμές της φόρμας μετά την επιτυχή υποβολή της.Αν επιλεγεί αυτό το πλαίσιο, το Ninja Forms θα κάνει απόκρυψη της φόρμας μετά την επιτυχή υποβολή της.Αν αυτό το πλαίσιο είναι επιλεγμένο, το Ninja Forms θα στείλει ένα αντίγραφο αυτής της φόρμας (και τυχόν συνημμένα μηνύματα) σε αυτή τη διεύθυνση.Αν αυτό το πλαίσιο είναι επιλεγμένο, το Ninja Forms θα επικυρώσει αυτή την είσοδο ως διεύθυνση email.Αν αυτό το πλαίσιο είναι επιλεγμένο, τα πλαίσια κωδικού πρόσβασης και επιβεβαίωσης κωδικού πρόσβασης θα είναι έξοδος.Αν είναι επιλεγμένο αυτό το πλαίσιο, αυτή η στήλη στον πίνακα υποβολών θα ταξινομείται ως αριθμός.Αν είστε άνθρωπος και βλέπετε αυτό το πεδίο, παρακαλούμε αφήστε το κενό.Αν είστε άνθρωπος και βλέπετε αυτό το πεδίο, αφήστε το κενό.Αν είστε άνθρωπος, παρακαλείστε να επιβραδύνετε.Αν αφήσετε το πλαίσιο κενό, δεν θα χρησιμοποιηθεί κανένα όριοΑν δηλώσετε την επιθυμία σας, ορισμένα δεδομένα για την εγκατάστασή σας του Ninja Forms θα σταλούν στην Ninja Forms (σε αυτά ΔΕΝ θα περιλαμβάνονται οι υποβολές σας).Αν θέλετε να το παρακάμψετε, κανένα πρόβλημα! Το Ninja Forms θα συνεχίσει να λειτουργεί κανονικά.Αν θέλετε να στείλετε μια κενή τιμή ή υπολ., θα πρέπει να χρησιμοποιήσετε '' για αυτές.Αν θέλετε η φόρμα σας να σας ειδοποιεί μέσω email όταν ένας χρήστης κάνει κλικ στο κουμπί Υποβολή, μπορείτε να κάνετε τις σχετικές ρυθμίσεις σε αυτήν την καρτέλα. Μπορείτε να δημιουργήσετε έναν απεριόριστο αριθμό από email, συμπεριλαμβανομένων των email που αποστέλλονται στο χρήστη που συμπλήρωσε τη φόρμα.Αν οι φόρμες σας "εξαφανίστηκαν" μετά την ενημέρωση στην έκδοση 2.9, αυτό το κουμπί θα επιχειρήσει να επαναλάβει τη μετατροπή των παλιών φορμών σας, ώστε να εμφανίζονται στην έκδοση 2.9. Όλες οι τρέχουσες φόρμες θα παραμείνουν στον πίνακα "Όλες οι φόρμες".ΕισαγωγήΕισαγωγή / ΕξαγωγήΕισαγωγή / Εξαγωγή υποβολώνΕισαγωγή αγαπημένων πεδίωνΕισαγωγή αγαπημένωνΕισαγωγή πεδίωνΕισαγωγή φόρμαςΕισαγωγή φορμώνΕισαγωγή στοιχείων λίσταςΕισαγωγή μιας φόρμαςΕισαγωγή/ΕξαγωγήΒελτιωμένη σαφήνειαΝα συμπεριληφθεί στο αυτόματο σύνολο; (Αν είναι ενεργοποιημένο)Εσφαλμένη απάντησηΑύξηση μετατροπώνΙνδίαΙνδονησίαΜάσκα εισόδουΕισαγωγήΕισαγωγή όλων των πεδίωνΕισαγωγή πεδίουΕισαγωγή συνδέσμουΕισαγωγή πολυμέσωνΜέσα στο στοιχείοΕγκατεστημένοΕγκατεστημένες προσθήκεςΟμάδες ενδιαφέροντοςΑποστολή μη έγκυρης φόρμας.Μη έγκυρο αναγνωριστικό φόρμαςΙράν (Ισλαμική Δημοκρατία του)ΙράκΙρλανδίαΕίναι διεύθυνση email;ΙσραήλΕίναι τόσο εύκολο. Ή...ΙταλίαΤζαμάικαΙαπωνίαΜήνυμα σφάλματος απενεργοποιημένης JavaScriptJohn DoeΙορδανίαΚάντε απλά κλικ εδώ και επιλέξτε όποια πεδία θέλετε.ΚαζακστάνΚένυαΚλειδίΚιριμπάτιΝεροχύτης κουζίναςΚορέας (Λαϊκή Δημοκρατία της)Κορέας (Δημοκρατία της)ΚουβέιτΚιργιστάνΕτικέταΕτικέτα εδώΌνομα ετικέταςΘέση ετικέταςΗ ετικέτα που χρησιμοποιείται κατά την προβολή και εξαγωγή υποβολών.Ετικέτα,Τιμή,Υπολ.ΕτικέτεςΗ γλώσσα που χρησιμοποιείται από το reCAPTCHA. Για να βρείτε τον κωδικό για τη γλώσσα σας, κάντε κλικ %sεδώ%sΛαϊκή Δημοκρατία του ΛάοΕπώνυμοΛετονίαΣτοιχεία διάταξηςΠεδία διάταξηςΜάθετε ΠερισσότεραΜάθετε περισσότερα για το Multi-Part FormsΜάθετε περισσότερα για το Save ProgressΛίβανοςΑριστερά από το στοιχείοΑριστερά από το πεδίοΛεσότοΛιβερίαΛιβυκή Αραβική ΤζαμαχιρίαΆδειες χρήσηςΛιχτενστάινΑπαλόΠεριορισμός εισόδου σε αυτόν τον αριθμόΜήνυμα υπέρβασης ορίουΠεριορισμός υποβολώνΠεριορισμός εισόδου σε αυτό τον αριθμόΛίσταΑντιστοίχιση πεδίων λίσταςΤύπος λίσταςΛίστες μελών που θα χρησιμοποιηθούνΛιθουανίαΦόρτωσηΓίνεται φόρτωση...ΤοποθεσίαΣυνδέθηκεΜακροσκελής φόρμα - ΛουξεμβούργοMM-DD-YYYYMM/DD/YYYYΜακάοΜακεδονίας, Πρώην Γιουγκοσλαβική Δημοκρατία τηςΜαδαγασκάρηΜαλάουιΜαλαισίαΜαλδίβεςΜάλιΜάλταΜε αυτό το πρότυπο, διαχειριστείτε αιτήματα προσφορών από τον ιστότοπό σας. Μπορείτε να προσθέσετε και να αφαιρέσετε πεδία, κατά περίπτωση.Νήσοι ΜάρσαλΜαρτινίκαΜαυριτανίαΜαυρίκιοςΜέγιστηΜέγιστο επίπεδο ένθεσης εισόδουΜέγιστη τιμήΊσως αργότεραΜαγιότΜεσαίοΚείμενοΕτικέτες μηνυμάτωνΜήνυμα που εμφανίζεται στους χρήστες αν είναι επιλεγμένο το παραπάνω πλαίσιο ελέγχου "σύνδεσης" και αυτοί δεν είναι συνδεδεμένοι.Μετα-πλαίσιοΜεξικόΜικρονησία, Ομόσπονδες ΠολιτείεςΟι μεταφορές και τα πλασματικά δεδομένα ολοκληρώθηκαν. ΕλάχιστηΕλάχιστη τιμήΔιάφορα πεδίαΑσυμφωνίαΛείπει ένας προσωρινός φάκελος.Πλασματική ενέργεια emailΠλασματική ενέργεια αποθήκευσηςΕνέργεια μηνύματος πλασματικής επιτυχίαςΤροποποιήθηκε στιςΜολδαβίας (Δημοκρατία της)ΜονακόΜογγολίαΜαυροβούνιοΜοντσεράΠερισσότερα προσεχώςΜαρόκοΜετακίνηση στο Καλάθι Αχρήστων ΜοζαμβίκηΠολλαπλή επιλογήΠολλαπλό προϊόν - Επιλογή πολλώνΠολλαπλό προϊόν - Επιλογή ενόςΠολλαπλό προϊόν - Αναπτυσσόμενη λίσταΠολλαπλή επιλογήΜέγεθος πλαισίου πολλαπλών επιλογώνΠολλαπλάΟ πρώτος υπολογισμός μουΟ δεύτερος υπολογισμός μουMySQL VersionΜιανμάρΌνομαΌνομα στην κάρταΌνομα ή πεδίαΝαμίμπιαΝαουρούΧρειάζεστε βοήθεια;ΝεπάλΟλλανδίαΟλλανδικές ΑντίλλεςΡυθμίστε το ώστε να μην ξαναδείτε ποτέ μια ειδοποίηση διαχειριστή από το Ninja Forms. Καταργήστε την επιλογή του για να τις βλέπετε και πάλι.Νέα ενέργειαΚαρτέλα Νέο Πρόγραμμα ΚατασκευήςΝέα ΚαληδονίαΔημιουργία στοιχείουΝέα υποβολήΝέα ΖηλανδίαΦόρμα εγγραφής σε ενημερωτικό δελτίοΝικαράγουαΝίγηραςΝιγηρίαΡυθμίσεις Ninja FormNinja FormsNinja Forms - Γίνεται επεξεργασίαΑρχείο καταγραφής αλλαγών Ninja FormsNinja Forms DevΤεκμηρίωση Ninja FormsΓίνεται επεξεργασία Ninja FormsΥποβολή φορμών NinjaΚατάσταση συστήματος Ninja FormsΤεκμηρίωση Ninja Forms THREEΑναβάθμιση Ninja FormsNinja Forms - Γίνεται αναβάθμισηΑναβαθμίσεις του Ninja FormsΈκδοση Ninja FormsNinja Forms WidgetΤο Ninja Forms διαθέτει επίσης μια απλή λειτουργία προτύπων που μπορεί να τοποθετηθεί απευθείας σε ένα αρχείο προτύπου php. %sΕδώ προστίθεται βασική βοήθεια για το Ninja Forms.Το Ninja Forms δεν μπορεί να ενεργοποιηθεί μέσω δικτύου. Επισκεφθείτε τον πίνακα εργασιών κάθε ιστότοπου για να ενεργοποιήσετε την προσθήκη.Το Ninja Forms ολοκλήρωσε όλες τις διαθέσιμες αναβαθμίσεις!Το Ninja Forms έχει δημιουργηθεί από μια παγκόσμια ομάδα προγραμματιστών που έχει ως στόχο να προσφέρει τη Νο 1 προσθήκη δημιουργίας φορμών της κοινότητας WordPress.Το Ninja Forms πρέπει να επεξεργαστεί %s την(τις) αναβάθμιση(εις). Ίσως χρειαστούν μερικά λεπτά μέχρι να ολοκληρωθεί. %sΈναρξη αναβάθμισης%sΤο Ninja Forms πρέπει να ενημερώσει τις ρυθμίσεις email σας, κάντε κλικ %sεδώ%s για να αρχίσει η αναβάθμιση.Το Ninja Forms πρέπει να αναβαθμίσει τον πίνακα υποβολών, κάντε κλικ %sεδώ%s για να αρχίσει η αναβάθμιση.Το Ninja Forms πρέπει να αναβαθμίσει τις ειδοποιήσεις φορμών σας, κάντε κλικ %sεδώ%s για να αρχίσει η αναβάθμιση.Το Ninja Forms πρέπει να αναβαθμίσει τις ρυθμίσεις φορμών σας, κάντε κλικ %sεδώ%s για να αρχίσει η αναβάθμιση.Το Ninja Forms διαθέτει ένα widget που μπορείτε να τοποθετείτε σε οποιαδήποτε κατάλληλη περιοχή του ιστότοπού σας και να επιλέγετε ακριβώς ποια φόρμα θα θέλατε να εμφανίζεται σε αυτό το χώρο.Χρησιμοποιήθηκε σύντομος κωδικός Ninja Forms χωρίς να καθοριστεί φόρμα.ΝιούεΌχιΔεν έχει καθοριστεί ενέργεια...Δεν βρέθηκαν αγαπημένα πεδίαΔεν βρέθηκαν πεδία.Δεν βρέθηκαν υποβολέςΔεν βρέθηκαν υποβολές στα απορρίμματαΔεν υπάρχουν διαθέσιμοι όροι για αυτή την ταξινομία. %sΠροσθήκη όρου%sΔεν μεταφορτώθηκε αρχείο.Δεν βρέθηκαν φόρμες.Δεν έχει επιλεγεί ταξινομία.Δεν βρέθηκε έγκυρο αρχείο καταγραφής αλλαγών.ΌχιΝήσος ΝόρφολκΒόρειες Μαριάνες ΝήσοιΝορβηγίαΜήνυμα μη σύνδεσηςΌχι ακόμαΔεν βρέθηκε στον Κάδο ΑνακύκλωσηςΣημείωσηΤο κείμενο σημείωσης μπορεί να υποστεί επεξεργασία παρακάτω, στις εξελιγμένες ρυθμίσεις του πεδίου σημείωσης.Ειδοποίηση: Απαιτείται η JavaScript για αυτό το περιεχόμενο.Ειδοποίηση: Χρησιμοποιήθηκε σύντομος κωδικός Ninja Forms χωρίς να καθοριστεί φόρμα.ΑριθμόςΣφάλμα μέγιστου αριθμούΣφάλμα ελάχιστου αριθμούΑριθμητικές επιλογέςΑριθμός αστεριώνΑριθμός δεκαδικών ψηφίωνΑριθμός δευτερολέπτων για αντίστροφη μέτρησηΑριθμός δευτερολέπτων για την αντίστροφη μέτρησηΑριθμός δευτερολέπτων για χρονομετρημένη υποβολή.Αριθμός αστεριώνΟμάνΈναςΜία διεύθυνση ή πεδίο διεύθυνσηςΩχ! Αυτό το πρόσθετο δεν είναι ακόμα συμβατό με το Ninja Forms THREE. %sΜάθετε περισσότερα%s.Άνοιγμα σε νέο παράθυροΠράξεις και πεδία (Προηγμένο)Επίμονα στυλΕπιλογή έναΕπιλογή τρίαΕπιλογή δύοΡυθμίσειςΟργάνωσηΘέματα για τα οποία παρέχουμε υποστήριξηΈξοδος υπολογισμού ωςΡύθμιση τοποθεσίας PHPPHP Μέγιστες Input VarsPHP Post Max SizePHP Time LimitΈκδοση PHPΔΗΜΟΣΙΕΥΣΗΠακιστάνΠαλάουΠαναμάςΠαπούα Νέα ΓουινέαΚείμενο παραγράφουΠαραγουάηΓονικό στοιχείο:ΚωδικόςΕπιβεβαίωση κωδικού πρόσβασηςΕτικέτα ασυμφωνίας κωδικού πρόσβασηςΟι κωδικοί πρόσβασης δεν αντιστοιχούνΠεδία πληρωμήςΠύλες ΠληρωμήςΣύνολο πληρωμώνΗ άδεια δεν παραχωρήθηκεΠερούΦιλιππίνεςΑριθμός τηλεφώνουΤηλέφωνο - (555) 555-5555ΠίτκαιρνΤοποθετήστε το %s σε οποιαδήποτε περιοχή δέχεται σύντομους κωδικούς για να εμφανίζετε τη φόρμα σας όπου εσείς θέλετε. Ακόμη και στο κέντρο της σελίδας σας ή του περιεχομένου των δημοσιεύσεων.Ενδεικτικό στοιχείοΑπλό κείμενοΠαρακαλούμε %sεπικοινωνήστε με την υποστήριξη%s με το σφάλμα που εμφανίζεται παραπάνω.Παρακαλείστε να απαντήσετε σωστά στην ερώτηση για την καταπολέμηση της ανεπιθύμητης αλληλογραφίας.Παρακαλούμε ελέγξτε τα υποχρεωτικά πεδία.Παρακαλείστε να συμπληρώσετε το πεδίο captchaΣυμπληρώστε το recaptchaΔιορθώστε τα σφάλματα πριν υποβάλετε αυτή τη φόρμα.Βεβαιωθείτε ότι όλα τα υποχρεωτικά πεδία έχουν συμπληρωθεί.Καταχωρήστε ένα μήνυμα που θέλετε να εμφανίζεται όταν αυτή η φόρμα έχει φτάσει το όριο υποβολών της και δεν δέχεται νέες υποβολές.Εισαγάγετε μια έγκυρη διεύθυνση emailΚαταχωρήστε μια έγκυρη διεύθυνση email!Εισαγάγετε μια έγκυρη διεύθυνση email.Βοηθήστε μας να βελτιώσουμε τα Ninja Forms!Συμπεριλάβετε αυτές της πληροφορίες όταν ζητάτε υποστήριξη:Αυξήστε κατά Παρακαλείστε να αφήστε κενό το πεδίο για την ανεπιθύμητη αλληλογραφία.Βεβαιωθείτε ότι έχετε εισαγάγει σωστά το κλειδί για τον ιστότοπο και το μυστικό κλειδίΠαρακαλούμε βαθμολογήστε το %sNinja Forms%s %s στο %sWordPress.org%s για να μας βοηθήσετε να προσφέρουμε αυτή την προσθήκη δωρεάν. Η ομάδα WP Ninjas σας ευχαριστεί!Επιλέξτε μια φόρμα για προβολή των υποβολώνΕπιλέξτε μια φόρμα.Επιλέξτε ένα έγκυρο αρχείο εξαχθείσας φόρμας.Επιλέξτε ένα έγκυρο αρχείο αγαπημένων πεδίων.Επιλέξτε αγαπημένα πεδία για εξαγωγή.Χρησιμοποιήστε τους εξής τελεστές: + - * /. Αυτό είναι ένα προηγμένο χαρακτηριστικό. Έχετε το νου σας για περιπτώσεις όπως η διαίρεση με το μηδέν.Παρακαλούμε περιμένετε %n δευτερόλεπταΠαρακαλείστε να περιμένετε μέχρι να υποβληθεί η φόρμα.ΠροσθήκεςΠολωνίαΝα συμπληρωθεί με την ταξινομίαΠορτογαλίαΆρθροΔημοσίευση / Αναγν. σελίδας (Αν διατίθενται)Δημοσίευση / Τίτλος σελίδας (Αν διατίθενται)Δημοσίευση / URL σελίδας (Αν διατίθενται)Δημιουργία δημοσίευσηςΑναγνωριστικό άρθρουΤίτλος άρθρουURL άρθρουΠροεπισκόπησηΠροεπισκόπηση αλλαγώνΠροεπισκόπηση φόρμαςΔεν υπάρχει προεπισκόπηση.ΤιμήΤιμή:Πεδία τιμολόγησηςΣε εξέλιξηΕπεξεργασία ετικέταςΕτικέτα επεξεργασίας υποβολήςΠροϊόνΠροϊόν (περιλαμβάνεται ποσότητα)Προϊόν (ξεχωριστή ποσότητα)Προϊόν ΑΠροϊόν ΒΦόρμα προϊόντος (ενσωματωμένη ποσότητα)Φόρμα προϊόντος (πολλά προϊόντα)Φόρμα προϊόντος (με πεδίο ποσότητας)Τύπο προϊόντοςΠρογραμματιστικό όνομα με το οποίο μπορεί να γίνεται αναφορά σε αυτή τη φόρμα.ΔημοσίευσηΠουέρτο ΡίκοΑγοράΚατάρποσότητα Ποσότητα προϊόντος ΑΠοσότητα προϊόντος ΒΠοσότητα:Συμβολοσειρά ερωτήματοςΣυμβολοσειρές ερωτημάτωνΜεταβλητή QuerystringΕρώτησηΘέση ερώτησηςΑίτημα προσφοράςΡαδιόφωνοΛίστα με κουμπιά επιλογήςΕπιβεβαίωση κωδικού πρόσβασηςΕτικέτα επιβεβαίωσης κωδικού πρόσβασηςΕίστε βέβαιοι ότι θέλετε απενεργοποίηση όλων των αδειών;RecaptchaAνακατεύθυνσηΑφαίρεσηΝα καταργηθούν ΟΛΑ τα δεδομένα του Ninja Forms μετά την κατάργηση εγκατάστασης;Αφαίρεση τιμήςΑφαίρεση όλων των δεδομένων Ninja FormsΚατάργηση αυτού του πεδίου; Θα καταργηθεί ακόμα και αν δεν κάνετε αποθήκευση.Απάντηση σεΑπαίτηση σύνδεσης του χρήστη για προβολή της φόρμας;ΑπαιτείταιΑπαιτούμενο πεδίοΣφάλμα απαιτούμενου πεδίουΕτικέτα απαιτούμενου πεδίουΣύμβολο απαιτούμενου πεδίουΕπαναφορά μετατροπής φόρμαςΕπαναφορά μετατροπής φόρμαςΕπαναφορά της διαδικασίας μετατροπής φόρμας για την έκδοση v2.9+ΕπαναφοράΕπαναφορά του Ninja FormsΜεταφορά από το Καλάθι Αχρήστων Ρυθμίσεις περιορισμούΠεριορισμοίΠεριορίζει το είδος των δεδομένων που οι χρήστες σας μπορούν να εισάγουν σε αυτό το πεδίο.Επιστροφή στο Ninja Forms ΡεουνιόνΕπεξεργασία εμπλουτισμένου κειμένου (RTE)Δεξιά από το στοιχείοΔεξιά από το πεδίοΕπαναφορά σε προηγούμενη έκδοσηΕπαναφορά στην πιο πρόσφατη έκδοση 2.9.x.Επαναφορά στην έκδοση v2.9.xΡουμανίαΡωσίαΡουάνταSMTPΠελάτης SOAPSUHOSIN αντικαταστήθηκε Άγιος Χριστόφορος (Σαιντ Κιτς) και ΝέβιςΑγία ΛουκίαΆγιος Βικέντιος και ΓρεναδίνεςΣαμόαΣαν ΜαρίνοΆγ. Θωμάς και Πρίγκιπας (Σάο Τομέ και Πρίντσιπε)Σαουδική ΑραβίαΑποθήκευσηΑποθήκευση και ενεργοποίησηΑποθήκευση ρυθμίσεων πεδίουΑποθήκευση φόρμαςΑποθήκευση επιλογώνΑποθήκευση ρυθμίσεωνΑποθήκευση υποβολήςΑποθηκεύτηκεΑποθηκευμένα πεδίαΑποθήκευση...Αναζήτηση στοιχείουΑναζήτηση υποβολώνΕπιλέξτεΕπιλογή όλωνΛίστα επιλογήςΕπιλέξτε ένα πεδίο ή πληκτρολογήστε για να γίνει αναζήτησηΕπιλέξτε ένα αρχείοΕπιλέξτε μια φόρμαΕπιλέξτε μια φόρμα ή πληκτρολογήστε για να γίνει αναζήτησηΕπιλέξτε τον αριθμό υποβολών που θα δέχεται αυτή η φόρμα. Να παραμείνει κενό αν δεν υπάρχει όριο.Επιλέξτε τη θέση της ετικέτας σας σε σχέση με το ίδιο το στοιχείο πεδίου.ΕπιλεγμέναΕπιλεγμένη τιμήΑποστολήΝα αποσταλεί αντίγραφο της φόρμας σε αυτή τη διεύθυνση;ΣενεγάληΣερβίαΔιεύθυνση IP του serverΡυθμίσειςΟι ρυθμίσεις αποθηκεύτηκανΣεϋχέλλεςΑποστολήΣύντομος κωδικόςΠρέπει να εισαχθεί ως ποσοστό. Π.χ. 8,25%, 4%Εμφάνιση κειμένου βοήθειαςΕμφάνιση του κουμπιού Φόρτωση πολυμέσωνΔείξε ΠερισσότεραΕμφάνιση δείκτη ισχύος κωδικού πρόσβασηςΕμφάνιση επεξεργαστή εμπλουτισμένου κειμένουΝα εμφανιστεί αυτόΕμφάνιση τιμών στοιχείων λίσταςΕμφανίζεται στους χρήστες ως καταδεικτικό.Σιέρα ΛεόνεΣιγκαπούρηΕνιαίοςΜοναδικό πλαίσιο ελέγχουΜονό κόστοςΚείμενο μίας γραμμήςΜονό προϊόν (προεπιλογή)Site URLΣλοβακία (Σλοβακική Δημοκρατία)ΣλοβενίαΣυμβατικό ταχυδρομείοΈτσι, αν π.χ. θέλετε να δημιουργήσετε μια μάσκα για έναν αμερικάνικο αριθμό μητρώου κοινωνικής ασφάλισης, θα πληκτρολογήσετε 999-99-9999 στο πλαίσιοΝησιά ΣολομώνταΣομαλίαΤαξινόμηση ως αριθμητικόΤαξινόμηση ως αριθμούΝότια ΑφρικήΝότια Γεωργία, Νότια Νησιά ΣάντουιτςΝότιο ΣουδάνΙσπανίαΑπάντηση για την ανεπιθύμητη αλληλογραφίαΕρώτηση για την ανεπιθύμητη αλληλογραφίαΚαθορισμός πράξεων και πεδίων (Προηγμένο)Σρι ΛάνκαΑγ. ΕλένηΆγ. Πέτρος (Σεν Πιέρ) και ΜικελόνΤυπικά πεδίαΒαθμολογία με αστέριαΞεκινήστε από ένα πρότυποΧώραΚατάστασηΒήμαΒήμα %d από περίπου %d σε εκτέλεσηΒήμα (ποσότητα αύξησης)Δείκτης ισχύοςΔυνατόΔευτερεύουσα αλληλουχίαΘέμαΚείμενο θέματος ή αναζήτηση ενός πεδίουΚείμενο θέματος ή κάντε αναζήτηση για ένα πεδίοΥποβολήCSV υποβολήςΔεδομένα υποβολήςΠληροφορίες υποβολήςΌριο υποβολώνΜετα-πλαίσιο υποβολήςΣτατιστικά υποβολώνΥποβολέςΥποβολήΥποβολή του κειμένου του κουμπιού αφού λήξει η χρονομέτρησηΥποβολή μέσω AJAX (χωρίς εκ νέου φόρτωση σελίδας);Έχει υποβληθείΥποβλήθηκε απόΥποβλήθηκε από: Υποβλήθηκε στιςΥποβλήθηκε στις: ΕγγραφήΜήνυμα επιτυχίαςΣουδάνΣουρινάμΝησιά Σβάλμπαρντ και Γιαν ΜάγενΣουαζιλάνδηΣουηδίαΕλβετίαΑραβική Δημοκρατία της ΣυρίαςΣύστημαΚατάσταση ΣυστήματοςΈρχεται η THREE!ΤαϊβάνΤατζικιστάνΡίξτε μια ματιά στη λεπτομερή τεκμηρίωση του Ninja Forms παρακάτω.Τανζανίας, Ηνωμένη Δημοκρατία τηςΦόροςΠοσοστιαίος φόροςΤαξινομίαΠεδία προτύπωνΛειτουργία προτύπουΛίστα όρωνΚείμενοΣτοιχείο κειμένουΚείμενο που θα εμφανίζεται μετά τον μετρητήΚείμενο που θα εμφανίζεται μετά τον μετρητή χαρακτήρων/λέξεωνΠεριοχή κειμένουΠλαίσιο κειμένουΤαϊλάνδηΣας ευχαριστούμε που συμπληρώσατε αυτή τη φόρμα.Σας ευχαριστούμε που πραγματοποιήσατε την ενημέρωση με την τελευταία έκδοση! Το Ninja Forms %s είναι έτοιμο να κάνει την εμπειρία σας στη διαχείριση υποβολών απολαυστική!Σας ευχαριστούμε που ενημερώσατε το Ninja Forms στην έκδοση 2.7. Παρακαλούμε να ενημερώσετε τυχόν επεκτάσεις του Ninja Forms από Σας ευχαριστούμε για την ενημέρωση! Το Ninja Forms %s κάνει τη δημιουργία φορμών πανεύκολη δουλειά!Σας ευχαριστούμε που χρησιμοποιείτε το Ninja Forms! Ελπίζουμε να βρήκατε όλα όσα χρειάζεστε, αν όμως έχετε απορίες:Σας ευχαριστούμε {field:name} που συμπληρώσατε τη φόρμα!Τα (συνήθως) 16 ψηφία στην πρόσθια πλευρά της πιστωτικής κάρτας σας.Η 3ψήφια (πίσω) ή 4ψήφια (εμπρός) τιμή στην κάρτα σας.Τα 9άρια αντιπροσωπεύουν αριθμούς και οι παύλες (-) θα προστεθούν αυτόματαΤο μενού Φόρμες είναι το σημείο πρόσβασής σας για να κάνετε οτιδήποτε στο Ninja Forms. Έχουμε ήδη δημιουργήσει την πρώτη σας %sφόρμα επικοινωνίας%s ώστε να έχετε ένα παράδειγμα. Μπορείτε επίσης να δημιουργήσετε τη δική σας κάνοντας κλικ στο %sΠροσθήκη νέας%s.Η μορφή πρέπει να είναι η εξής:Οι ενημερώσεις διασύνδεσης σε αυτή την έκδοση θέτουν τις βάσεις για μερικές μεγάλες βελτιώσεις στο μέλλον. Η έκδοση 3.0 θα βασιστεί σε αυτές τις αλλαγές για να κάνει το Ninja Forms ένα ακόμη πιο σταθερό, ισχυρό και φιλικό προς το χρήστη πρόγραμμα κατασκευής φορμών.Ο μήνας λήξης της πιστωτικής κάρτας σας, συνήθως στην πρόσθια πλευρά της κάρτας.Οι πιο κοινές ρυθμίσεις εμφανίζονται αμέσως, ενώ άλλες, μη ουσιώδεις, ρυθμίσεις είναι κρυμμένες μέσα σε επεκτάσιμες ενότητες.Το όνομα που αναγράφεται στην πρόσθια πλευρά της πιστωτικής κάρτας σας.Οι κωδικοί πρόσβασης που έχουν εισαχθεί δεν ταιριάζουν.Οι άνθρωποι που δημιουργούν Ninja FormsΗ διαδικασία έχει ξεκινήσει, κάντε λίγο υπομονή. Ίσως χρειαστούν μερικά λεπτά. Θα ανακατευθυνθείτε αυτόματα όταν ολοκληρωθεί η διαδικασία.Το αρχείο υπερβαίνει το όριο MAX_FILE_SIZE που έχει οριστεί στη φόρμα HTML.Το αρχείο υπερβαίνει το όριο upload_max_filesize του php.ini.Το αρχείο μεταφορτώθηκε μόνο εν μέρει.Το έτος λήξης της πιστωτικής κάρτας σας, συνήθως στην πρόσθια πλευρά της κάρτας.Υπάρχει διαθέσιμη μια νέα έκδοση του %1$s. Κάντε προβολή των λεπτομερειών της έκδοσης %3$s ή κάντε άμεση ενημέρωση.Υπάρχει διαθέσιμη μια νέα έκδοση του %1$s. Προβολή λεπτομερειών της έκδοσης %3$s.Το αρχείο που αποστάλθηκε δεν έχει έγκυρη μορφή.Αυτά είναι όλα τα πεδία στην ενότητα Τιμολόγηση.Αυτά είναι όλα τα πεδία στην ενότητα Πληροφορίες χρήστη.Ακολουθούν οι προκαθορισμένοι χαρακτήρες μάρκαςΑυτά είναι διάφορα ειδικά πεδία.Αυτά τα παιδιά πρέπει να συμφωνούν!Αυτή η στήλη στον πίνακα υποβολών θα ταξινομείται αριθμητικά.Αυτό το πεδίο είναι υποχρεωτικόΑυτό είναι απαιτούμενο πεδίο.Αυτή είναι μια δοκιμήΑυτή είναι η κατάσταση ενός χρήστη.Αυτή δεν είναι ενέργεια email.Αυτή είναι άλλη μια δοκιμή.Είναι το χρονικό διάστημα που πρέπει να περιμένει ένας χρήστης για να υποβάλει τη φόρμαΑυτή είναι η ετικέτα που χρησιμοποιείται όταν γίνεται προβολή/επεξεργασία/εξαγωγή υποβολών.Αυτό είναι το προγραμματιστικό όνομα του πεδίου σας. Παραδείγματα: my_calc, price_total, user-total.Αυτή είναι η κατάσταση του χρήστηΑυτή είναι η τιμή που θα χρησιμοποιηθεί αν είναι %sεπιλεγμένο%s.Αυτή είναι η τιμή που θα χρησιμοποιηθεί αν είναι %sμη επιλεγμένο%s.Εδώ θα κατασκευάσετε τη φόρμα σας προσθέτοντας πεδία και σύροντάς τα με τη σειρά που θέλετε να εμφανίζονται. Κάθε πεδίο θα έχει μια ποικιλία από επιλογές, όπως η ετικέτα, η θέση ετικέτας, και το σύμβολο κράτησης θέσης.Αυτή η λέξη-κλειδί έχει δεσμευτεί από το WordPress. Δοκιμάστε κάποια άλλη.Αυτό το μήνυμα εμφανίζεται μέσα στο κουμπί υποβολής όταν ένας χρήσης κάνει κλικ στην "Υποβολή", για να τον ενημερώσει ότι γίνεται η υποβολή.Αυτό το μήνυμα εμφανίζεται σε έναν χρήστη όταν τοποθετούνται στο πεδίο κωδικού πρόσβασης τιμές που δεν ταιριάζουν μεταξύ τους.Αυτός ο αριθμός θα χρησιμοποιηθεί σε υπολογισμούς αν το πλαίσιο είναι επιλεγμένο.Αυτός ο αριθμός θα χρησιμοποιηθεί σε υπολογισμούς αν το πλαίσιο δεν είναι επιλεγμένο.Αυτή η ρύθμιση θα καταργήσει ΕΝΤΕΛΩΣ όλα όσα σχετίζονται με το Ninja Forms μόλις διαγραφεί η προσθήκη. Σε αυτά περιλαμβάνονται οι ΥΠΟΒΟΛΕΣ και οι ΦΟΡΜΕΣ. Αυτό δεν μπορεί να αναιρεθεί.Αυτή η καρτέλα περιέχει γενικές ρυθμίσεις για τη φόρμα, όπως ο τίτλος και η μέθοδος υποβολής, καθώς και ρυθμίσεις προβολής, όπως η απόκρυψη μιας φόρμας όταν θα έχει ολοκληρωθεί με επιτυχία.Αυτό θα είναι το θέμα του email.Έτσι δεν θα επιτρέπεται στον χρήστη να προσθέσει οτιδήποτε άλλο εκτός από αριθμούςΤρίαΧρονομετρημένη υποβολήΜήνυμα σφάλματος χρονοδιακόπτηTimor-Leste (Ανατολικό Τιμόρ)ΠροςΓια να ενεργοποιήσετε άδειες για επεκτάσεις του Ninja Forms, θα πρέπει πρώτα να κάνετε %sεγκατάσταση και ενεργοποίηση%s της επιλεγμένης επέκτασης. Στη συνέχεια, θα εμφανιστούν παρακάτω οι ρυθμίσεις αδειών.Για να χρησιμοποιήσετε αυτό το χαρακτηριστικό, μπορείτε να επικολλήσετε το CSV σας στην περιοχή κειμένου παραπάνω.Σημερινή ημερομηνίαΕναλλαγή συρταριούΤόγκοΤοκελάουΤόνγκαΣύνολοΚαλάθι ΑχρήστωνΠροσπαθεί να τηρήσει τις προδιαγραφές της %sσυνάρτησης PHP date()%s, αλλά δεν υποστηρίζεται κάθε μορφή.Τρινιντάντ και ΤομπάγκοΤυνησίαΤουρκίαΤουρκμενιστάνΝησιά Ταρκ και ΚάικοςΤουβαλούΔύοΤύποςΔιεύθυνση URLΤηλέφωνο στις ΗΠΑΟυγκάνταΟυκρανίαΜη επιλεγμένοΜη επιλεγμένη τιμή υπολογισμούΣτη Βασική Συμπεριφορά Φόρμας στις Ρυθμίσεις Φόρμας μπορείτε εύκολα να επιλέξετε μια σελίδα στην οποία θα θέλατε η φόρμα να επισυνάπτεται αυτόματα στο τέλος του περιεχομένου της σελίδας. Μια παρόμοια επιλογή είναι διαθέσιμη στην πλευρική γραμμή κάθε οθόνης επεξεργασίας περιεχομένου.ΑναίρεσηΑναίρεση όλωνΗνωμένα Αραβικά ΕμιράταΗνωμένο ΒασίλειοΗ.Π.Α.Μικρά απομονωμένα νησιά Ηνωμένων ΠολιτειώνΆγνωστο σφάλμα φόρτωσης.ΑδημοσίευτοΕνημέρωσηΕνημέρωση στοιχείουΕνημερώθηκε στις: Γίνεται ενημέρωση της βάσης δεδομένων φορμώνΑναβάθμισηΑναβάθμιση στο Ninja Forms THREEΑναβαθμίσειςΟι αναβαθμίσεις ολοκληρώθηκανUrlΟυρουγουάηΧρήση εξίσωσης (Προηγμένο)Χρήση ποσότηταςΧρήση προσαρμοσμένης πρώτης επιλογήςΧρήση των προεπιλεγμένων συμβάσεων στυλ του Ninja Forms.Χρησιμοποιήστε τον παρακάτω σύντομο κωδικό για να εισαγάγετε τον τελικό υπολογισμό: [ninja_forms_calc]Χρησιμοποιήστε τις παρακάτω συμβουλές για να αρχίσετε να χρησιμοποιείτε το Ninja Forms. Θα χρησιμοποιείτε το πρόγραμμα σε ελάχιστο χρόνο.Χρησιμοποιήστε το ως πεδίο κωδικού πρόσβασης εγγραφήςΧρησιμοποιήστε το ως πεδίο κωδικού πρόσβασης εγγραφής. Αν αυτό το πλαίσιο είναι επιλεγμένο, τα πλαίσια κωδικού πρόσβασης και επανάληψης κωδικού πρόσβασης θα είναι έξοδοςΧρησιμοποιείται για την επισήμανση ενός πεδίου για επεξεργασία.ΧρήστηςΌνομα οθόνης χρήστη (Αν είναι συνδεδεμένος)Email χρήστηEmail χρήστη (Αν είναι συνδεδεμένος)Καταχώρηση χρήστηΌνομα χρήστη (Αν είναι συνδεδεμένος)User IDΑναγν. χρήστη (Αν είναι συνδεδεμένος)Ομάδα πεδίων πληροφοριών χρήστηΠληροφορίες χρήστηΠεδία πληροφοριών χρήστηΕπώνυμο χρήστη (Αν είναι συνδεδεμένος)Μετα-πληροφορίες χρήστη (Αν είναι συνδεδεμένος)Τιμές που υποβλήθηκα από τον χρήστηΤιμές που υποβάλλονται από το χρήστη:Οι χρήστες είναι πιο πιθανό συμπληρώσουν μια μακροσκελή φόρμα όταν έχουν τη δυνατότητα να την αποθηκεύσουν και να ολοκληρώσουν την υποβολή τους αργότερα.

    Η επέκταση Save Progress του Ninja Forms κάνει αυτή τη διαδικασία γρήγορη και εύκολη.

    ΟυζμπεκιστάνΝα επικυρωθεί ως διεύθυνση email; (Το πεδίο πρέπει να είναι υποχρεωτικό)ΤιμήΒανουάτουΌνομα μεταβλητήΒενεζουέλαΈκδοσηΈκδοση %sΠολύ ασθενέςΒιετνάμΠροβολήΠροβολή %sΠροβολή αλλαγώνΠροβολή φορμώνΠροβολή στοιχείουΠροβολή υποβολήςΠροβολή υποβολώνΠροβολή του πλήρους αρχείου καταγραφής αλλαγώνΠαρθένοι Νήσοι (Βρετανίας)Παρθένα νησιά (ΗΠΑ)Επισκέψου την αρχική σελίδα των pluginΚατάσταση Αποσφαλμάτωσης WordPressΓλώσσα WPΜέγιστο μέγεθος αρχείων αποστολής WPWP Memory LimitWP Multisite ενεργοποιημένοWP Remote PostΈκδοση WPΝησιά Ουόλις και ΦουτούναΚάνουμε ό,τι μπορούμε για να προσφέρουμε σε κάθε χρήστη του Ninja Forms την καλύτερη δυνατή υποστήριξη. Αν αντιμετωπίσετε κάποιο πρόβλημα ή έχετε ερωτήσεις, %sεπικοινωνήστε μαζί μας%s.Προσθέσαμε την επιλογή αφαίρεσης όλων των δεδομένων Ninja Forms (υποβολές, φόρμες, πεδία, επιλογές), όταν διαγράφετε την προσθήκη. Το ονομάζουμε πυρηνική επιλογή.Παρατηρήσαμε ότι δεν έχετε κουμπί υποβολής στη φόρμα σας. Μπορούμε να προσθέσουμε εμείς ένα αυτόματα.ΑδύναμοςΠληροφορίες web serverΚαλώς ορίσατε στο Ninja Forms Καλώς ορίσατε στο Ninja Forms %sΔυτική ΣαχάραΠώς μπορούμε να σας βοηθήσουμε;Τι να δοκιμάσετε πριν επικοινωνήσετε με την υποστήριξηΠώς θέλετε να ονομάσετε αυτό το αγαπημένο;Τι νέο υπάρχειΚατά τη δημιουργία και επεξεργασία φορμών, πηγαίνετε απευθείας στην ενότητα που έχει μεγαλύτερη σημασία.Σε ποιον πρέπει να σταλεί αυτό το email;Λέξη(εις)ΛέξειςWrapperY-m-dY/m/dΕΕΕΕ-ΜΜ-ΗΗYYYY/MM/DDΥεμένηΝαιΈχετε το δικαίωμα να κάνετε αναβάθμιση στο Ninja Forms THREE Release Candidate! %sΑναβάθμιση τώρα%s Μπορείτε επίσης να τα συνδυάσετε για συγκεκριμένες εφαρμογέςΜπορείτε να εισαγάγετε εξισώσεις υπολογισμού εδώ χρησιμοποιώντας το field_x όπου x είναι το αναγνωριστικό του πεδίου που θέλετε να χρησιμοποιήσετε. Για παράδειγμα, %sfield_53 + field_28 + field_65%s.Δεν μπορείτε να υποβάλετε τη φόρμα όταν η Javascript δεν είναι ενεργοποιημένη.Δεν έχετε άδεια να εγκαταστήσετε ενημερώσεις προσθηκών.Δεν έχετε άδεια.Δεν έχετε προσθέσει κουμπί υποβολής στη φόρμα σας.Πρέπει να έχετε συνδεθεί για να κάνετε προεπισκόπηση μιας φόρμας.Πρέπει να δώσετε ένα όνομα για αυτό το αγαπημένο.Χρειάζεστε το JavaScript για να υποβάλετε αυτή τη φόρμα. Ενεργοποιήστε την και προσπαθήστε πάλι.Αγοράσατε Θα το βρείτε να περιλαμβάνεται στο email αγοράς σας.Η υποβολή της φόρμας σας ήταν επιτυχής.Ο server σας δεν έχει το fscockopen ή to cURL ενεργοποιημένο. Το PayPal IPN και άλλα scripts που επικοινωνούν με άλλους servers δεν θα λειτουργήσουν. Παρακαλώ επικοινωνήστε με τον διαχειριστή του συστήματός.Ο server σας δεν έχει ενεργοποιημένη την κλάση %sπελάτη SOAP%s - ορισμένες προσθήκες πύλης που χρησιμοποιούν SOAP ίσως να μην λειτουργούν κατά τα αναμενόμενα.Ο server σας έχει ενεργοποιημένο το cURL, το fsockopen είναι απενεργοποιημένο.Ο server σας έχει ενεργοποιημένα τα fsockopen και cURL.Ο server σας έχει ενεργοποιημένο το fsockopen, το cURL είναι απενεργοποιημένο.Ο server σας έχει ενεργοποιημένη την κλάση πελάτη SOAP.Η έκδοσή σας της επέκτασης File Upload του Ninja Forms δεν είναι συμβατή με την έκδοση 2.7 του Ninja Forms. Πρέπει να είναι τουλάχιστον έκδοσης 1.3.5. Παρακαλούμε να ενημερώσετε αυτή την επέκταση στο Η έκδοσή σας της επέκτασης Save Progress του Ninja Forms δεν είναι συμβατή με την έκδοση 2.7 του Ninja Forms. Πρέπει να είναι τουλάχιστον έκδοσης 1.1.3. Παρακαλούμε να ενημερώσετε αυτή την επέκταση στο ΓιουγκοσλαβίαΖάμπιαΖιμπάμπουεΤαχ. Κώδ.Ταχυδρομικός κώδικαςa - Αναπαριστά έναν χαρακτήρα του λατινικού αλφαβήτου (A-Z,a-z) - Επιτρέπει μόνο την εισαγωγή λατινικών χαρακτήρωναπάντησηbutton-secondary nf-download-allαπόχαρακτήρας(ες) απέμεινε(αν)επιλεγμένοΑντιγραφήπροσαρμοσμένοd-m-Ydashicons dashicons-updateδιπλότυποfoo@wpninjas.comώραjs-newsletter-list-update extral, F d Ym-d-Ym/d/Yτίποτααπόπροϊόντος Α και προϊόντος Β για $έναone_week_supportκωδικός πρόσβασηςσε επεξεργασίαπροϊόν(τα) για Επανάληψη CAPTCHAΓλώσσα reCAPTCHAΜυστικό κλειδί reCAPTCHAΡυθμίσεις reCAPTCHAΚλειδί ιστότοπου reCAPTCHAΘέμα reCAPTCHAΡυθμίσεις reCaptchaανανέωσηsmtp_portτρειςτίτλοςδύομη επιλεγμένοενημερώθηκεuser@gmail.comέκδοσηΤο wp_remote_post() απέτυχε. Το PayPal IPN ίσως να μην λειτουργεί στον server σας.Το wp_remote_post() απέτυχε. Το PayPal IPN δεν λειτουργεί στον server σας. Επικοινωνήστε με τον πάροχο φιλοξενίας σας. Σφάλμα:Το wp_remote_post() ήταν επιτυχημένο - το PayPal IPN λειτουργεί κανονικά.lang/ninja-forms-id_ID.mo000064400000261406152331132460011224 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8" +JGL$`?/Z   #X6 ECU6?1@ O]qv ,> Ub{!kz56  #0?S fq   ? (!Jdx.CYn w   );Pfm u  9 %3DLSZjz!$! +3J S`g  % 4E> A!4!Rt  *3DM] v   *5F O[ac ! " / < F P]c s ~ ?` KXiz  '8IPar    !,D\b| ^*# (@W]r #+)=gz    =Ic'!2;MUir{  , 2>EK \ iu5-2C3T]cJ `kq M $;T[ q (7QX a kx*-$-D r | _hy !@Oipw   3?ELQaip C6-d Mhn   %0 5? FT[` ft  0B  ( 1;Ng p | dnet~UWIU991,kHShO      1  F  T a p     0       % 3 < R b r           * 1 F M U (\   7        + 2= C Q \=iT #*< N3[- 4N]|       $ 6AHQZ_e   "=L_gn tv!"D HV gt"   !#E!L n y " :FNSct|g $ 5 C M Zf  '>Xr"j"op@Dt`EYdde;%)'A9i!) &0?XasyO6J(sz  !. H W \ a Y    ! ! !!+!4! <E<<$==D>)?4?&?! @|.@R@B@EAADAAjaB&B(B5C'RCzCC8C"C#D5DDD`D {DRDMDU*EE8E9EF;F/GcG> HD_HH^IJ6.JeJjJJ JJJUaKK KKKKK KRKNLbLjL pL}LLLLL LLLLLLMMNN)N'9N,aNNN NNN NN O O4O8O@OYOhO2OPOnP1wPP/LQ|Q)QQ!QQ&QRR^^ _____J_` `*`/` @`J`P`W`]`x``````` ````aa a "a,a Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Bidang Buka di jendela baru Urungkan Semua terinstal. Versi saat ini adalah produk sebesar memerlukan pembaruan. Anda memiliki versi #%1$s draf diperbarui. Pratinjau %3$s%1$s dipulihkan ke revisi dari %2$s.%1$s dijadwalkan untuk: %2$s. Pratinjau %4$s%1$s dikirim. Pratinjau %3$s%n akan digunakan untuk menentukan jumlah detik%s yang lalu%s diterbitkan.%s disimpan.%s diperbarui.%s dinonaktifkan.%sIzinkan%sNilai Kalkulasi %sDicentang%s%sJangan izinkan%sNilai Kalkulasi %sTidak Dicentang%s* - Mewakili karakter alfanumerik (A-Z, a-z,0-9) - Baik angka dan huruf boleh dimasukkan- Tidak Ada- Pilih Satu- Pilih Bidang- Pilih Produk - Pilih Variabel- Pilih formulir- Lihat Semua Jenis9 - Mewakili karakter angka (0-9) - Hanya angka yang boleh dimasukkan
    • a - Mewakili karakter alfa (A-Z, a-z) - Hanya huruf yang boleh dimasukkan.
    • 9 - Mewakili karakter numerik (0-9) - Hanya angka yang boleh dimasukkan.
    • * - Mewakili karakter alfanumerik (A-Z, a-z,0-9) - Baik angka dan huruf boleh dimasukkan.
    Jawaban peka huruf besar-kecil untuk membantu mencegah pengiriman spam formulir Anda.Pembaruan besar-besaran akan segera hadir untuk Ninja Forms. %sPelajari selengkapnya mengenai fitur baru, kesesuaian dengan versi lama, dan lebih banyak Pertanyaan yang Sering Diajukan%sPengalaman membuat formulir yang sederhana namun lebih efektif.Di Atas ElemenDi Atas BidangNama TindakanTindakan DiperbaruiAksiAktifkanAktifTambahkanTambahkan DeskripsiTambahkan FormulirTambahkan BaruTambah Bidang BaruTambah Formulir BaruTambah Item BaruTambahkan Kiriman BaruTambahkan Istilah BaruTambahkan OperasiTambahkan Tombol KirimTambah NilaiTambah tindakan formulirTambah bidang formulirTambahkan formulir ke halaman iniTambah tindakan BaruTambah bidang baruTambah pelanggan dan perbanyak daftar email Anda dengan formulir pendaftaran buletin ini. Anda bisa menambah dan menghapus bidang, jika perlu.Lisensi Add-OnAdd-OnAlamatAlamat 2Menambahkan kelas ekstra ke dalam elemen bidang Anda.Menambahkan kelas ekstra ke dalam wrapper bidang Anda.Email AdminLabel AdminAdministrasiLebih LanjutRumus LanjutanPengaturan LanjutanPengiriman CanggihAfganistanSetelah SemuanyaSesudah FormulirSetelah LabelSetuju?AlbaniaAljazairSemuaTentang FormulirSemua BidangSemua FormulirSemua ItemSemua formulir saat ini akan tetap dalam tabel “Semua Formulir”. Di beberapa kasus, formulir mungkin akan digandakan saat proses ini.Izinkan pengguna mendaftar untuk acara Anda berikutnya dengan mudah dengan melengkapi formulir. Anda bisa menambah dan menghapus bidang, jika perlu.Izinkan pengguna Anda menghubungi Anda dengan formulir kontak sederhana ini. Anda bisa menambah dan menghapus bidang, jika perlu.Memungkinkan input teks kaya.Memungkinkan pengguna untuk memilih produk ini lebih dari satu.Sebentar lagi...Bersamaan dengan tab “Buat Formulir Anda”, kami telah mengganti “Pemberitahuan” dengan “Email & Tindakan.” Indikasi tentang apa yang dapat dilakukan pada tab ini lebih jelas.American SamoaTerjadi galat tak terduga.AndorraAngolaAnguillaJawabanAntartikaAnti-SpamPertanyaan Anti-Spam (Jawaban = jawaban)Pesan kesalahan anti-spamAntigua dan BarbudaSemua karakter yang Anda isikan pada kotak “mask kustom” yang tidak ada dalam daftar berikut akan otomatis dimasukkan begitu pengguna mengetikkannya dan tidak akan dapat dihapusLampirkan Ninja FormLampirkan Ninja FormsTambahkan ke HalamanTerapkanArgentinaArmeniaArubaLampirkan CSVLampiranAustraliaAustriaBidang Total-OtomatisNilai Kalkulasi Total OtomatisTersediaIstilah yang TersediaAzerbaijanKembali ke DaftarKembali ke daftarCadangkan / PulihkanCadangkan Ninja FormsBahamaBahrainBangladesBarBarbadosBidang DasarPengaturan DasarWastafelBazBccSebelum SemuanyaSebelum FormulirSebelum LabelSebelum meminta bantuan dari tim dukungan kami, pelajari:Tanggal MulaiTanggal Saat IniBelarusBelgiaBelizeDi Bawah ElemenDi Bawah BidangBeninBermudaMetode Komunikasi Terbaik?Dukungan Terbaik dalam Bisnis iniPengaturan Bidang yang Lebih TertataManajemen lisensi yang lebih baikBhutanTagihanFormulir KosongBoliviaBosnia dan HerzegovinaBotswanaPulau BouvetBrasilWilayah Samudra Hindia BritaniaBrunei DarussalamBuat Formulir AndaBulgariaTindakan LimbakBurkina FasoBurundiTombolCVCKalkNilai KalkKalkulasiMetode KalkulasiPengaturan KalkulasiNama kalkulasiKalkulasiPenghitungan dilaporkan dengan respons AJAX ( respons -> data -> kalkKambojaKamerunKanadaBatalCape VerdeCaptcha tidak sesuai. Masukkan nilai yang benar di bidang captchaDeskripsi CVC KartuLabel CVC KartuDeskripsi Bulan Kedaluwarsa KartuLabel Bulan Kedaluwarsa KartuDeskripsi Tahun Kedaluwarsa KartuLabel Tahun Kedaluwarsa KartuDeskripsi Nama KartuLabel Nama KartuNomor KartuDeskripsi Nomor KartuLabel Nomor KartuKepulauan CaymanCcCentral African RepublicChadGanti NilaiKarakterKarakter tersisaKarakterMau curang hah?Periksa dokumentasi kamiKotak centangDaftar Kotak CentangKotak centangDicentangNilai Kalkulasi DicentangChiliCinaPulau NatalKotaNama KelasHapus formulir yang berhasil diselesaikan?Cocos (Keeling) IslandsTagih PembayaranKolumbiaBidang UmumComorosRumus yang kompleks dapat dibuat dengan menambahkan tanda kurung: %s( field_45 * field_2 ) / 2%s.KonfirmasiKonfirmasi bahwa Anda bukan robotKongoRepublik Demokratik KongoFormulir KontakHubungi SayaHubungi KamiKontainerLanjutkanCook IslandsHargaPenurunan BiayaOpsi BiayaJenis BiayaKosta RikaPantai GadingTidak dapat mengaktifkan lisensi. Verifikasi kunci lisensi AndaNegaraMembuat kunci unik untuk mengidentifikasi dan menargetkan bidang Anda untuk pengembangan kustom.Kartu KreditCVC Kartu KreditCVV Kartu KreditMasa Berlaku Kartu KreditNama Lengkap Kartu KreditNomor Kartu KreditKode Pos Kartu KreditKode Pos Kartu KreditPenghargaanKroasia (Nama Lokal: Hrvatska)KubaMata UangSimbol Mata UangHalaman saat iniKustomKelas CSS KustomKelas CSS KustomNama Kelas KustomKelompok Bidang KustomMask KustomDefinisi Mask KustomBidang kustom dihapus.Bidang kustom diperbarui.Opsi pertama kustomCyprusRepublik CekoDD-MM-YYYYDD/MM/YYYYDEBUG: Beralih ke 2.9.xDEBUG: Beralih ke 3.0.xGelapData berhasil dipulihkan!TanggalTanggal DibuatFormat TanggalPengaturan TanggalTanggal DikirimTanggal DiperbaruiPemilih tanggalNonaktifkanMatikanNonaktifkan Semua LisensiNonaktifkan LisensiNonaktifkan lisensi ekstensi Ninja Forms secara terpisah atau terkelompok dari tab pengaturan.DefaultNegara DefaultPosisi Label DefaultZona waktu defaultJadikan Default ke Tanggal Saat IniNilai DefaultZona waktu default adalah %sZona waktu default adalah %s - harus UTCBidang yang DitentukanHapusHapus (^ + D + klik)Hapus SelamanyaHapus formulir iniHapus item ini selamanyaDenmarkDeskripsiKonten DeskripsiPosisi DeskripsiTahukah Anda bahwa Anda dapat meningkatkan konversi formulir dengan memecah formulir yang besar menjadi beberapa bagian yang lebih kecil dan yang lebih mudah dipahami?

    Ekstensi Formulir Multi-Bagian pada Ninja Forms membuat tindakan ini cepat dan mudah.

    Nonaktifkan Pemberitahuan AdminNonaktikan LengkapiOtomatis BrowserNonaktifkan InputNonaktifkan Editor Teks Kaya pada SelulerNonaktifkan input?TutupTampilan:Tampilkan Judul FormulirNama TampilanPengaturan TampilanTampilkan Variabel Kalkulasi IniJudul TampilanMenampilkan Formulir AndaPembagiDjiboutiJangan tampilkan istilah iniDokumentasiDokumentasi segera hadir.Dokumentasi ini mencakup segala hal dari %sPemecahan masalah%s sampai %sAPI Pengembang%s kami. Dokumen Baru akan selalu ditambahkan.TIDAK berlaku untuk pratinjau formulir.Berlaku untuk pratinjau formulir.DominikaRepublik DominikaSelesaiUnduh Semua KirimanDropdownDuplikatGandakan (^ + C + klik)Gandakan FormulirEkuadorSuntingEdit TindakanEdit FormulirEdit ItemEdit Item MenuEdit KirimanSunting item iniBidang PengeditanBidang pengeditanMesirEl SalvadorElemenEmailEmail & TindakanAlamat EmailPesan EmailFormulir Berlangganan EmailAlamat email atau cari bidangAlamat email atau cari bidang.Email akan ditampilkan berasal dari alamat email ini.Email akan ditampilkan berasal dari nama ini.Email & TindakanTanggal berakhirPastikan bidang ini diisi sebelum formulir dikirim.Masukkan teks yang ingin Anda tampilkan pada bidang sebelum pengguna memasukkan data apa pun.Masukkan label di bidang formulir. Inilah cara pengguna akan mengidentifikasi masing-masing bidang.Masukkan alamat emailLingkunganRumusRumus (Lanjutan)Equatorial GuineaEritreaKesalahanPesan kesalahan diberikan jika semua bidang yang wajib diisi belum dilengkapiEstoniaEthiopiaPendaftaran AcaraPerluas MenuBulan kedaluwarsa (MM)Tahun kedaluwarsa (THTH)EksporEkspor Bidang FavoritEkspor BidangEkspor FormulirEkspor FormulirEkspor formulirEkspor item iniPerpanjang Ninja FormsPENGUNGGAHAN FILEGagal menulis file.Kepulauan Falkland (Malvinas)Faroe IslandsBidang FavoritFavorit berhasil diimpor.Bidang# BidangID BidangKunci BidangBidang Tidak DitemukanOperasi BidangBidangBidang yang ditandai dengan * wajib diisi.Bidang yang ditandai dengan %s*%s wajib diisiFijiKesalahan Pengunggahan FilePengunggahan File Sedang BerlangsungPengunggahan berkas dihentikan oleh ekstensi.FinlandiaNama AwalPerbaiki.FooFoo BarMisalnya, jika Anda memiliki kunci produk dalam format A4B51.989.B.43C, Anda dapat membuat mask-nya dengan: a9a99.999.a.99a, yang kemudian akan mengubah semua a menjadi huruf dan 9 menjadi angkaFormulirDefault FormulirFormulir DihapusBidang FormulirFormulir Berhasil Diimpor.Kunci FormulirFormulir Tidak DitemukanPratinjau FormulirPengaturan Formulir DisimpanKiriman FormulirKesalahan Impor Templat Formulir.Judul FormulirFormulir dengan KalkulasiFormatBentukFormulir DihapusFormulir Per HalamanPerancisPrancis MetropolitanGuyana PerancisPolinesia PerancisPerancis SelatanJumat, 18 November 2019Alamat DariDari NamaLog Perubahan LengkapLayar penuhGabonGambiaUmumPengaturan UmumGeorgiaJermanDapatkan BantuanDapatkan Tindakan LainnyaDapatkan Jenis LainnyaCari BantuanDapatkan DukunganDapatkan Laporan SistemDapatkan kunci situs untuk domain Anda dengan mendaftar %sdi sini%sMulai dengan menambahkan bidang formulir pertama Anda.Mulai dengan menambahkan bidang formulir pertama Anda. Cukup klik tanda tambah dan pilih tindakan yang Anda inginkan. Semudah itu.MemulaiMemulai dengan Ninja FormsGhanaGibraltarBeri judul formulir Anda. Inilah cara untuk menemukan formulir Anda nantinya.MulaiUpaya Anda gagalKe FormulirKe Ninja FormsKe halaman pertamaKe halaman terakhirKe halaman berikutnyaKe halaman sebelumnyaYunaniGreenlandGrenadaDokumentasi yang Lebih LengkapGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiSeparuh layarKepulauan Heard dan McDonaldHalo, Ninja Forms!BantuanTeks BantuanTeks Bantuan di SiniDisembunyikanBidang TersembunyiSembunyikan LabelSembunyikan IniSembunyikan formulir yang berhasil diselesaikan?Petunjuk: Panjang kata sandi sedikitnya harus tujuh karakter. Agar kata sandi lebih kuat, gunakan perpaduan huruf besar dan huruf kecil, angka dan simbol seperti ! “ ? $ % ^ & ).Tahta Suci (Negara Kota Vatikan)URL BerandaHondurasHoney PotKesalahan HoneypotPesan kesalahan HoneypotHongkongKaitkan TagNama HostBagaimana Perkembangannya?HungariaIP AddressIslandiaJika “teks deskripsi” diaktifkan, akan muncul tanda tanya %s di sebelah bidang input. Menempatkan kursor di atas tanda tanya ini akan menampilkan teks deskripsi.Jika “teks bantuan” diaktifkan, akan muncul tanda tanya %s di sebelah bidang input. Menempatkan kursor di atas tanda tanya ini akan menampilkan teks bantuan.Jika kotak ini dicentang, SEMUA data Ninja Forms akan dihapus dari basis data setelah dihapus. %sSemua data formulir dan kiriman tidak dapat dipulihkan kembali.%sJika kotak ini dicentang, Ninja Forms akan menghapus semua nilai (isian) formulir setelah berhasil dikirimkan.Jika kotak ini dicentang, Ninja Forms akan menyembunyikan semua formulir setelah berhasil dikirimkan.Jika kotak ini dicentang, Ninja Forms akan mengirimkan salinan formulir (dan pesan terlampir lainnya) ke alamat ini.Jika kota ini dicentang, Ninja Forms akan memvalidasi input ini sebagai alamat email.Jika kotak ini dicentang, kotak teks kata sandi dan pengulangan kata sandi akan dibuat.Jika kotak ini dicentang, kolom dalam tabel kiriman akan diurutkan berdasarkan angka.Jika Anda manusia dan melihat bidang ini, biarkan kosong.Jika Anda manusia dan melihat bidang ini, biarkan kosong.Jika Anda manusia, harap jangan cepat-cepat.Jika Anda membiarkan kotak kosong, tidak ada batasan yang akan digunakanJika Anda berlangganan, beberapa data tentang instalasi Ninja Forms Anda akan dikirim ke NinjaForms.com (TIDAK termasuk kiriman Anda).Jika Anda melewatinya, tidak masalah! Ninja Forms tetap akan berfungsi dengan baik.Jika Anda ingin mengirimkan nilai atau kalk kosong, Anda harus menggunakan “.Jika Anda ingin formulir Anda mengirimkan pemberitahuan lewat email saat pengguna mengklik kirim, Anda juga dapat mengaturnya pada tab ini. Anda dapat membuat jumlah email yang tak terbatas, termasuk email untuk dikirim ke pengguna yang telah mengisi formulir tersebut.Jika formulir Anda “hilang” setelah pembaruan ke versi 2.9, tombol ini akan mencoba untuk mengonversi kembali formulir lama Anda untuk ditampilkan di versi 2.9. Semua formulir saat ini akan tetap dalam tabel “Semua Formulir”.ImporImpor / EksporImpor / Ekspor KirimanImpor Bidang FavoritImpor FavoritBidang ImporImpor FormulirImpor FormulirImpor Item DaftarImpor formulirImpor/EksporKejelasan lebih baikMasukkan dalam total-otomatis? (Jika diaktifkan)Jawaban SalahTingkatkan KonversiIndiaIndonesiaMasukkan MaskMasukkanSisipkan Semua BidangSisipkan BidangSisipkan TautanSisipkan MediaDi Dalam ElemenTerinstalPlugin DiinstalGrup MinatUnggahan Formulir Tidak Valid.Id formulir tidak valid(Republik Islam) IranIrakIrlandiaApakah ini alamat email?IsraelSemudah itu. Atau...ItaliaJamaikaJepangJavaScript menonaktifkan pesan kesalahanJohn DoeJordaniaCukup klik di sini dan pilih bidang yang Anda inginkan.KazakhstanKenyaKunciKiribatiKitchen SinkRepublik Demokratik Rakyat KoreaKorea SelatanKuwaitKyrgyzstanLabelLabel di SiniNama LabelPosisi LabelLabel yang digunakan saat menampilkan dan mengekspor kiriman.Label,Nilai,KalkLabelBahasa yang digunakan reCAPTCHA. Untuk mendapatkan kode bahasa Anda klik %sdi sini%sLaosNama AkhirLatviaElemen Tata LetakBidang Tata LetakSelengkapnyaPelajari Selengkapnya Tentang Formulir Multi-BagianPelajari Selengkapnya Tentang Simpan KemajuanLebanonDi Kiri ElemenDi Kiri BidangLesothoLiberiaLibiaLisensiLiechtensteinCerahBatasi Input hingga Jumlah IniPesan Batas Telah DicapaiBatasi KirimanBatasi input hingga jumlah iniDaftarPemetaan Bidang DaftarJenis DaftarDaftarLithuaniaMemuatMemuat...LokasiMasukFormulir Panjang - LuxembourgMM-DD-YYYYMM/DD/YYYYMakauMakedonia, Republik Bekas YugoslaviaMadagascarMalawiMalaysiaMaldivesMaliMaltaKelola permintaan harga dari situs web Anda dengan mudah menggunakan remplat ini. Anda bisa menambah dan menghapus bidang, jika perlu.Marshall IslandsMartiniqueMauritaniaMauritiusMaksTingkat Nesting Input MaksNilai MaksimalMungkin Nanti SajaMayotteSedangPesanLabel PesanPesan akan muncul bagi pengguna jika kotak centang “telah masuk” di atas dicentang sedangkan pengguna belum masuk.MetaboxMeksikoNegara Federasi MikronesiaMigrasi dan Contoh Data lengkap. MinNilai MinimalBidang Lain-lainTidak sesuaiFolder sementara tidak ada.Contoh Tindakan EmailContoh Tindakan SimpanContoh Tindakan Pesan KeberhasilanDiubah padaRepublik MoldovaMonacoMongoliaMontenegroMontserratMasih banyak lagi yang akan hadirMarokoPindahkan item ini ke Tong SampahMozambiqueMultipilihanMulti-Produk - Pilih BeberapaMulti-Produk - Pilih SatuMulti-Produk - Tarik turunPilihan GandaUkuran Kotak Pilihan GandaGandaPenghitungan Pertama SayaPenghitungan Kedua SayaVersi MySQLMyanmarNamaNama pada kartuNama atau bidangNamibiaNauruPerlu Bantuan?NepalBelandaAntila BelandaTidak pernah melihat pemberitahuan admin di dasbor Ninja Forms. Hapus centang untuk melihatnya kembali.Tindakan BaruTab Pembuat BaruNew CaledoniaItem BaruKiriman BaruNew ZealandFormulir Pendaftaran BuletinNikaraguaNigeriaNigeriaPengaturan Ninja FormsNinja FormsNinja Forms - Sedang DiprosesLog perubahan Ninja FormsPengembang Ninja FormsDokumentasi Ninja FormsPemrosesan Ninja FormsPengiriman Formulir NinjaStatus Sistem Ninja FormsDokumen Ninja Forms THREEPeningkatan Ninja FormsPemrosesan Peningkatan Ninja FormsPeningkatan Ninja FormsVersi Ninja FormsWidget Ninja FormsNinja Forms juga memiliki fungsi templat sederhana yang dapat ditempatkan langsung ke file templat php. %sBantuan dasar Ninja Forms di sini.Ninja Forms tidak dapat diaktifkan oleh jaringan. Kunjungi masing-masing dasbor situs untuk mengaktifkan plugin.Ninja Forms telah menyelesaikan semua peningkatan yang tersedia!Ninja Forms dibuat oleh tim pengembang seluruh dunia yang berkeinginan untuk menghadirkan plugin pembuatan formulir komunitas WordPress #1.Ninja Forms perlu memproses %s peningkatan. Perlu waktu beberapa menit untuk menyelesaikannya. %sMulai Peningkatan%sNinja Forms perlu memperbarui pengaturan email Anda, klik %sdi sini%s untuk memulai peningkatan.Ninja Forms perlu meningkatkan tabel kiriman, klik %sdi sini%s untuk memulai peningkatan.Ninja Forms perlu meningkatkan notifikasi formulir Anda, klik %sdi sini%s untuk memulai peningkatan.Ninja Forms perlu meningkatkan pengaturan formulir Anda, klik %sdi sini%s untuk memulai peningkatan.Ninja Forms menyediakan widget yang dapat Anda tempatkan di area khusus widget pada situs Anda dan Anda dapat memilih dengan tepat formulir yang ingin Anda tampilkan pada ruang tersebut.Kode pendek Ninja Form digunakan tanpa menentukan formulir.NiueTidakTidak Ada Tindakan yang Ditentukan...Tidak Ditemukan Bidang FavoritTidak Ditemukan Bidang.Tidak Ditemukan KirimanTidak Ditemukan Kiriman di Kotak SampahTidak ada istilah untuk taksonomi ini. %sTambah istilah%sTidak ada file yang terkirimTidak ditemukan formulir.Tidak ada taksonomi yang dipilih.Tidak ditemukan log perubahan yang valid.Tidak AdaNorfolk IslandNorthern Mariana IslandsNorwegiaPesan Belum MasukBelumTidak ditemukan di Kotak SampahCatatanTeks catatan bisa diedit dalam pengaturan lanjutan bidang catatan di bawah ini.Pemberitahuan: JavaScript diperlukan untuk konten ini.Pemberitahuan: Kode pendek Ninja Form digunakan tanpa menentukan formulir.JumlahJumlah Kesalahan MaksJumlah Kesalahan MinOpsi JumlahJumlah BintangJumlah angka desimal.Jumlah detik untuk hitung mundurJumlah detik untuk hitung mundur.Jumlah detik untuk pengiriman berjangka waktu.Jumlah BintangOmanSatuSatu alamat email atau bidangUps! Add-on tersebut belum kompatibel dengan Ninja Forms TIGA. %sPelajari Lebih Lanjut%s.Buka di jendela baruOperasi dan Bidang (Lanjutan)Gaya TetapOpsi SatuOpsi TigaOpsi DuaOptionsPenyelenggaraLingkup Dukungan KamiKalkulasi output sebagaiPHP LokalVar Input Maks PHPUkuran Maks Postingan PHPBatas Waktu PHPVersi PHPTERBITKANPakistanPalauPanamaPapua NuginiTeks ParagrafParaguayItem Induk:Kata sandiKonfirmasi Kata SandiLabel Tidak Sesuai Kata SandiKata sandi tidak cocokBidang PembayaranGateway PembayaranTotal pembayaranIzin DitolakPeruFilipinaTeleponTelepon - (555) 555-5555PitcairnTempatkan %s di area mana pun yang menerima kode pendek untuk menampilkan formulir Anda di mana pun Anda inginkan. Bahkan di bagian tengah halaman atau konten postingan Anda.Tempat produkTeks Kosong%shubungi dukungan%s untuk kesalahan yang tampak seperti di atas.Jawablah pertanyaan anti-spam dengan benar.Periksa bidang yang wajib diisi.Lengkapi bidang captchaSilakan lengkapi recaptchaPerbaiki kesalahan sebelum mengirimkan formulir ini.Pastikan semua bidang yang wajib telah diisi.Masukkan pesan yang ingin Anda tampilkan saat formulir ini telah mencapai batas kirimannya dan tidak akan menerima kiriman baru.Masukkan alamat email yang validMasukkan alamat email yang valid!Silakan masukkan sebuah alamat email yang sah.Bantu kami memperbaiki Ninja Forms!Sertakan informasi ini saat meminta dukungan:Tambah bertahap sebesar Biarkan bidang spam ini kosong.Pastikan Anda telah memasukkan kunci Situs & Rahasia Anda dengan benarBeri peringkat %sNinja Forms%s %s di %sWordPress.org%s untuk membantu kami menjadikan plugin ini tetap gratis. Terima kasih dari tim WP Ninjas!Pilih formulir untuk menampilkan kirimanPilih formulir.Pilih file formulir ekspor yang valid.Pilih file bidang favorit yang valid.Pilih bidang favorit untuk diekspor.Gunakan operasi ini: + - * /. Ini adalah fitur lanjutan. Perhatikan hal-hal seperti pembagian dengan angka 0.Tunggu %n detikSilakan tunggu untuk mengirimkan formulir.PluginPolandiaIsi ini dengan taksonomiPortugaldipostinganID Postingan / Halaman (Jika tersedia)Judul Postingan / Halaman (Jika tersedia)URL Postingan / Halaman (Jika tersedia)Pembuatan PostinganPost IDJudul posURL LampiranPratinjauPratinjau PerubahanPratinjau FormulirPratinjau tidak ada.HargaHarga:Bidang Penetapan HargaSedang diprosesLabel PemrosesanLabel Memproses KirimanProdukProduk (jumlah disertakan)Produk (pisahkan jumlahnya)Produk AProduk BFormulir Produk (Jumlah Sebaris)Formulir Produk (Multiproduk)Formulir Produk (dengan Bidang Jumlah)Jenis produkNama programatis yang bisa digunakan untuk merujuk formulir ini.TerbitkanPuerto RicoBeliQatarKuantitas Jumlah untuk Produk AJumlah untuk Produk BKuantitas:String PertanyaanString PertanyaanVariabel QuerystringPertanyaanPosisi PertanyaanPermintaan HargaRadioDaftar RadioMasukkan Kembali Kata SandiLabel Masukkan Kembali Kata SandiYakin untuk menonaktifkan semua lisensi?RecaptchaAlihkanHapusHapus SEMUA data Ninja Forms setelah dihapus instalasinya?Hapus NilaiHapus semua data Ninja FormsHapus bidang ini? Bidang ini akan dihapus meskipun Anda tidak meyimpannya.Balas KeMinta pengguna masuk untuk menampilkan formulir?Wajib diisiBidang Wajib DiisiKesalahan Bidang yang Wajib DiisiLabel Bidang Wajib DiisiSimbol bidang wajib diisiAtur Ulang Konversi FormulirAtur Ulang Konversi FormulirAtur ulang proses konversi formulir untuk v2.9+PulihkanPulihkan Ninja FormsKembalikan item ini dari Tong SampahPengaturan PembatasanBatasanMembatasi jenis input yang dapat pengguna Anda masukkan ke dalam bidang ini.Kembali ke Ninja FormsReunionEditor Teks Kaya (RTE)Di Kanan ElemenDi Kanan BidangKembalikanKembalikan ke rilis 2.9.x terbaruKembalikan ke v2.9.xRomaniaFederasi RusiaRwandaSMTPSOAP ClientSUHOSIN DiinstalSaint Kitts dan NevisSaint LuciaSaint Vincent dan GrenadaSamoaSan MarinoSao Tome dan PrincipeSaudi ArabiaSimpanSimpan & AktifkanSimpan Pengaturan BidangSimpan FormulirSimpan OpsiSimpan SetelanSimpan PengirimanDisimpanBidang DisimpanMenyimpan...Cari ItemCari KirimanPilih:Pilih SemuaPilih DaftarPilih bidang atau ketik untuk mencariPilih filePilih formulirPilih formulir atau ketik untuk mencariPilih jumlah kiriman yang akan diterima formulir ini. Kosongi untuk kiriman tanpa batas.Pilih posisi label Anda yang relatif terhadap elemen bidang itu sendiri.TerpilihNilai TerpilihKirimKirimkan salinan formulir ke alamat ini?SenegalSerbiaAlamat IP ServerPengaturanPengaturan DisimpanSeychellesPengirimanShortcodeHarus diisi dengan persentase. misalnya 8,25%, 4%Tampilkan Teks BantuanTampilkan Tombol Unggah MediaTampilkan lebih banyakTampilkan Indikator Kekuatan Kata SandiTampilkan Editor Teks KayaTampilkan IniTampilkan nilai item daftarDitampilkan ke pengguna sebagai hover.Sierra LeoneSingaporeTunggalKotak Centang TunggalBiaya TunggalTeks Baris TunggalProduk Tunggal (default)URL SitusSlovakia (Republik Slovakia)SloveniaKantor PosJadi, jika ingin membuat mask untuk Nomor Jaminan Sosial Amerika, Anda perlu mengetikkan 999-99-9999 ke dalam kotakSolomon IslandsSomaliaUrutkan sebagai AngkaUrutkan sebagai angkaAfrika SelatanGeorgia Selatan dan Kepulauan Sandwich SelatanSudan SelatanSpanyolJawaban SpamPertanyaan SpamTentukan Operasi dan Bidang (Lanjutan)Sri LankaSt. HelenaSt. Pierre dan MiquelonBidang StandarPeringkat BintangMulai dari templatKabupatenStatusLangkahLangkah %d dari sekitar %d berjalanLangkah (jumlah naik bertahap sebesar)Indikator kekuatanKuatSub-urutanJudulTeks Subjek atau cari bidangTeks Subjek atau cari bidangKirimanCSV KirimanData KirimanInfo KirimanBatas KirimanMetabox KirimanStatistik KirimanKirimanKirimTeks tombol Kirim setelah waktu habisKirim melalui AJAX (tanpa memuat ulang halaman)?DikirimDikirim OlehDikirimkan oleh: Dikirim padaDikirimkan pada: BerlanggananPesan SuksesSudanSurinameSvalbard dan Jan MayenSwazilandSwediaSwitzerlandRepublik Arab SuriahSistemStatus SistemTHREE akan segera hadir!TaiwanTajikistanLihat dokumentasi Ninja Forms kami secara mendalam di bawah ini.Republik Persatuan TanzaniaPajakPersentase PajakTaksonomiBidang TemplatFungsi TemplatDaftar IstilahTeksElemen TeksTeks yang Muncul Setelah PenghitungTeks yang muncul setelah penghitung karakter/kataAreateksKotak teksThailandTerima kasih telah mengisi formulir ini.Terima kasih telah melakukan pembaruan ke versi terkini! Ninja Forms %s disiapkan untuk menghadirkan pengalaman yang menyenangkan dalam mengelola kiriman!Terima kasih telah meningkatkan Ninja Forms ke versi 2.7. Perbarui ekstensi Ninja Forms Anda dari Terima kasih telah melakukan pembaruan! Ninja Forms %s menjadikan pembuatan formulir lebih mudah!Terima kasih telah menggunakan Ninja Forms! Kami harap Anda mendapatkan semua yang Anda butuhkan, tapi jika Anda memiliki pertanyaan:Terima kasih {field:name} telah mengisi formulir saya!(Umumnya) 16 digit di bagian depan kartu kredit.Nilai 3 digit (di bagian belakang) atau 4 digit (di bagian depan) kartu Anda.Angka 9 mewakili semua angka, dan -s akan secara otomatis ditambahkanMenu Formulir adalah titik akses Anda untuk semua hal yang berkaitan dengan Ninja Forms. Kami telah membuatkan %sformulir kontak%s pertama Anda agar Anda memiliki contoh. Anda juga dapat membuat formulir kontak sendiri dengan mengklik %sTambah Baru%s.Format harus tampak seperti berikut:Pembaruan antarmuka di versi ini menjadi dasar bagi peningkatan luar biasa selanjutnya. Versi 3.0 nantinya akan dibangun dengan perubahan ini untuk membuat Ninja Forms lebih stabil, efektif, dan menjadi pembuat formulir yang ramah pengguna.Bulan kartu kredit Anda kedaluwarsa, biasanya di bagian depan kartu.Pengaturan paling umum langsung ditampilkan, sementara pengaturan yang tidak penting diselipkan di dalam bagian yang dapat diperbesar.Nama yang dicetak di bagian depan kartu kredit Anda.Kata sandi yang diberikan tidak cocok.Karyawan yang membuat Ninja FormsProses dimulai, mohon tunggu. Proses ini perlu waktu beberapa menit. Anda akan otomatis dialihkan saat proses telah selesai.File yang diunggah melebihi aturan MAX_FILE_SIZE yang ditentukan di formulir HTML.File yang diunggah melebihi aturan upload_max_filesize di php.ini.File tidak terunggah sempurna, hanya sebagian yang berhasil terkirim.Tahun kartu kredit Anda kedaluwarsa, biasanya di bagian depan kartu.Tersedia %1$s versi baru. Tampilkan detail versi %3$s atau perbarui sekarang.Tersedia %1$s versi baru. Tampilkan detail versi %3$s.Format file yang diunggah tidak valid.Semua ini adalah bidang di bagian Harga.Semua ini adalah bidang di bagian Informasi Pengguna.Berikut adalah karakter masking standarAda berbagai bidang khusus.Bidang-bidang ini harus cocok!Kolom dalam tabel kiriman akan diurutkan berdasar angka.Ini adalah bidang yang wajib diisiIni adalah bidang yang wajib diisi.Ini adalah tesIni adalah status pengguna.Ini adalah tindakan email.Ini tes lain.Jumlah detik ini adalah lamanya pengguna harus menunggu untuk mengirimkan formulirIni adalah label yang digunakan saat menampilkan/mengubah/mengekspor kiriman.Ini adalah nama programatis bidang Anda. Contohnya: my_calc, price_total, user-total.Ini adalah status penggunaIni adalah nilai yang akan digunakan jika %sDicentang%s.Ini adalah nilai yang digunakan jika %sTidak Dicentang%s.Ini adalah tempat di mana Anda akan membuat formulir dengan menambahkan bidang dan menyeretnya ke dalam susunan seperti yang Anda inginkan. Masing-masing bidang memiliki beragam opsi seperti label, posisi label, dan placeholder.Kata kunci ini dicadangkan oleh WordPress. Coba lagi nanti.Pesan ini ditampilkan di dalam tombol kirim setiap kali pengguna mengklik “kirim” untuk memberi tahu mereka bahwa pesan sedang diproses.Pesan ini ditampilkan kepada pengguna saat nilai yang tidak sesuai diisikan pada bidang kata sandi.Nomor ini akan digunakan dalam kalkulasi jika kotak dicentang.Nomor ini akan digunakan dalam kalkulasi jika kotak tidak dicentang.Pengaturan ini akan BENAR-BENAR menghapus segalanya yang berkaitan dengan Ninja Forms setelah penghapusan plugin. Termasuk pula KIRIMAN dan FORMULIR. Tindakan ini tidak bisa diurungkan.Tab ini memiliki pengaturan formulir umum, seperti judul dan metode pengiriman, begitu juga dengan pengaturan tampilan seperti menyembunyikan formulir saat telah diisi lengkap.Ini akan menjadi subjek email.Hal ini akan mencegah pengguna memasukkan selain angkaTigaPengiriman Berjangka WaktuPesan kesalahan pengatur waktuTimor-LesteKeUntuk mengaktifkan lisensi ekstensi Ninja Forms Anda terlebih dahulu harus%smenginstal dan mengaktifkan%s ekstensi yang dipilih. Pengaturan lisensi akan muncul di bawah ini.Untuk menggunakan fitur ini, Anda dapat menempel CSV Anda ke dalam area teks di atas.Tanggal Hari IniToggle DrawerTogoTokelauTongaTotalTong SampahCoba ikuti spesifikasi %sfungsi tanggal() PHP%s, tapi tidak semua format didukung.Trinidad dan TobagoTunisiaTurkiTurkmenistanKepulauan Turks dan CaicosTuvaluDuaTipeURLTelepon ASUgandaUkrainaTidak DicentangNilai Kalkulasi Tidak DicentangDi bagian Cara Kerja Formulir Dasar di Pengaturan Formulir Anda dapat dengan mudah memilih halaman di mana formulir akan otomotis ditambahkan ke bagian akhir konten halaman tersebut. Opsi serupa tersedia di setiap layar edit konten di bilah samping.UrungkanUrungkan SemuaUni Emirat ArabKerajaan InggrisAmerika SerikatKepulauan Terluar Kecil Amerika SerikatKesalahan pengunggahan file tidak diketahui.Belum diterbitkanPerbaruiPerbarui ItemDiperbarui pada: Memperbarui Basis Data FormulirTingkatkanTingkatkan ke Ninja Forms THREEPeningkatanPeningkatan SelesaiUrlUruguaiGunakan Rumus (Lanjutan)Gunakan JumlahGunakan opsi pertama kustomGunakan konvensi penataan gaya Ninja Form default.Gunakan kode pendek berikut untuk memasukkan kalkulasi akhir: [ninja_forms_calc]Gunakan tips di bawah ini untuk mulai menggunakan Ninja Forms. Formulir Anda akan segera aktif dan beroperasi!Gunakan ini sebagai bidang kata sandi pendaftaranGunakan ini sebagai bidang kata sandi pendaftaran. Jika kotak ini dicentang, kotak teks kata sandi dan pengulangan kata sandi akan dibuat.Digunakan untuk menandai bidang untuk diproses.PemakaiNama Tampilan Pengguna (Jika telah masuk)Email PenggunaEmail Pengguna (Jika telah masuk)Entri PenggunaNama Depan Pengguna (Jika telah masuk)User IDID Pengguna (Jika telah masuk)Kelompok Bidang Info PenggunaInformasi PenggunaBidang Informasi PenggunaNama Belakang Pengguna (Jika telah masuk)Meta Pengguna (jika telah masuk)Nilai yang Dikirim PenggunaNilai yang Dikirim Pengguna:Pengguna lebih cenderung melengkapi formulir yang panjang jika mereka dapat menyimpan dan kembali lagi untuk melengkapi kiriman mereka.

    Ekstensi Simpan Kemajuan pada Ninja Forms membuat tindakan ini cepat dan mudah.

    UzbekistanValidasi sebagai alamat email? (Bidang wajib diisi)NilaiVanuatuNama VariabelVenezuelaversiVersi %sSangat lemahVietnamLihatLihat %sLihat PerubahanLihat FormulirLihat ItemTampilkan KirimanLihat KirimanLihat Log Perubahan LengkapKepulauan Virgin (Inggris)Kepulauan Virgin (A.S.)Kunjungi halaman pluginMode Debug WPBahasa WPUkuran Unggah Maks WPBatas Memori WPWP Multi-Situs DiaktifkanPostingan Jarak Jauh WPVersi WPKepulauan Wallis dan FutunaKami melakukan semua yang dapat kami lakukan untuk menghadirkan dukungan terbaik kepada setiap pengguna Ninja Forms. Jika Anda menghadapi masalah atau memiliki pertanyaan, %ssilakan hubungi kami%s.Kami telah menambahkan opsi untuk menghapus semua data Ninja Forms (kiriman, formulir, bidang, opsi) jika Anda menghapus plugin. Kami menyebutnya opsi nuklir.Kami sudah mengetahui bahwa formulir Anda tidak memiliki tombol kirim. Kami bisa menambahkan tombol tersebut secara otomatis.LemahInfo Server WebSelamat datang di Ninja FormsSelamat datang di Ninja Forms %sSahara BaratApa yang Bisa Kami Bantu?Yang perlu dicoba sebelum menghubungi dukunganBagaimana Anda ingin menamai favorit ini?Yang BaruSaat membuat dan mengedit formulir, langsung ke bagian yang paling penting.Kepada siapa email ini harus dikirimkan?KataKataWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYamanYaAnda memenuhi syarat untuk meningkatkan ke Bakal Rilis Ninja Forms THREE! %sTingkatkan Sekarang%sAnda juga bisa memadukannya untuk aplikasi khususAnda dapat memasukkan rumus kalkulasi di sini menggunakan field_x jika x adalah ID bidang yang ingin Anda gunakan. Contohnya, %sfield_53 + field_28 + field_65%s.Anda tidak dapat mengirimkan formulir tanpa mengaktifkan Javascript.Anda tidak memiliki izin untuk menginstal pembaruan pluginAnda tidak memiliki izin.Anda belum menambahkan tombol kirim ke formulir Anda.Anda harus masuk untuk melihat pratinjau formulir.Anda harus memberi nama favorit ini.Anda memerlukan JavaScript untuk mengirimkan formulir ini. Aktifkan JavaScript dan coba lagi.Anda membeli Anda akan menemukannya dalam email pembelian Anda.Formulir Anda berhasil dikirimkan.fsockopen atau cURL tidak aktif di server Anda - IPN PAYPAL dan skrip lainnya yang berhubungan dengan server lain tidak akan berfungsi. Hubungi penyedia hosting Anda.Kelas %sSOAP Client%s di server Anda tidak aktif - plugin gateway yang menggunakan SOAP mungkin tidak berfungsi sesuai harapan.cURL aktif, fsockopen tidak aktif di server Anda.fsockopen dan cURL di server Anda aktif.fsockopen aktif, cURL tidak aktif di server Anda.Kelas SOAP Client di server Anda telah aktif.Versi ekstensi Unggah File Ninja Forms yang Anda miliki tidak kompatibel dengan Ninja Forms versi 2.7. Diperlukan setidaknya versi 1.3.5. Perbarui ekstensi ini di Ekstensi Simpan Kemajuan Ninja Forms versi yang Anda miliki tidak kompatibel dengan Ninja Forms versi 2.7. Diperlukan setidaknya versi 1.1.3. Perbarui ekstensi ini di YugoslaviaZambiaZimbabweKodeposKode Posa - Mewakili karakter huruf (A-Z, a-z) - Hanya huruf yang boleh dimasukkanjawabanbutton-secondary nf-download-allolehkarakter tersisadicentangSalinkustomd-m-Ydashicons dashicons-updategandakanfoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ytak satupundaridari Produk A dan Produk B sebesar $satuone_week_supportkata sandimemprosesproduk sebesar reCAPTCHABahasa reCAPTCHAKunci Rahasia reCAPTCHAPengaturan reCAPTCHAKunci Situs reCAPTCHATema reCAPTCHAPengaturan reCaptchaMuat Ulangsmtp_porttigajudulduatidak dicentangdiperbaruiuser@gmail.comversiwp_remote_post() gagal. IPN PayPal mungkin tidak akan berfungsi di server Anda.wp_remote_post() gagal. IPN PayPal tidak akan berfungsi di server Anda. Hubungi penyedia hosting Anda. Kesalahan:wp_remote_post() berhasil - IPN PayPal berfungsi.lang/ninja-forms-es_ES.mo000064400000314607152331132460011254 0ustar000)Snnn n#o+o& Q^!o Ŋ ݊ʋӋ 1@H M Y cm|  Ɍь׌ #%?0e'ύM؍O&Uv̎  (<.ks| ȏϏ , ?Ki  ĐȐѐאߐ $(?hm! ‘͑Ցّ ʒ  0 LWnu { œ֓  $. =IOV^ow ”7Ԕ, q9 ܕ ?,/ MYk ǖіٖ   %* 0<Xl q{ !՗w  ט  Kh`JnQOlQD<S%1EqHޟǠޠ  ( 6D'U} š ס  (8M]x}¢ʢ΢֢!ܢ/ P[ae n&{ ǣ ͣ أ2%6L=  ̤ ڤ!&. >LT\s |ӥ   (3 < F S ^ it&z ŦʦkЦ<@F W b mw{  ȧ_ק7?F#f ֨٨ $9=DK T _ jw Ω %.C Ygot  WԪ ,7 GU^ my  ȫԫ-D[uȬݬo!tc1|,fUXfZUp5 AFI`y!4 2PUd}D0=0nr{óݳ##!EUYafjNԴ   & 3> FPe { Ƶε׵ݵ #4Lcr  Ѷڶ a m5x/޷!2<0o"$#G#k#8"C$yh( )!+K(wj "BJQqz  ݼ  ,DSY` oz̽  "< _:l ľʾӾ  &;D Vd ju ɿҿ+ٿ >.m*v+&RZ n ?&7F*Oz   )?C LY^n     2 @NVnG %(*S[ _ip  1  = S]s   r* %   &(4 ] gr ##* -:!B"d  & &0 W an }     %3D K<V   +(T]eh$qdSn/D;t9J5*%GL2$ %FZG1.yFx*0-9^+!99Rl{4B\:35:q#Z?A0r&G !.B[^D : GUZbhn^t +26;?HO Wa}kpy $  )1NWimu ,O[4)(Ir w  ,Daz c6n    0AYr   $'bW %8*^ N! ! ' 2=CWG46l40(%)NHx5*1{4S+4. zO /7<CI dn  ':Obu  Bf&8"0%N'*v`A7D |  r O$ta(FN (6J ^l !5K_ 5 B M3Z. &> N[l  FB =H-KT\ d n z)  &* 1<D3]   "-1:J[bf jxX   #-4HY_h#" 4 =J*Q|   #  7 NA      M  - /H +x 1 , %  ) J &` #          ' E !M o x       /    ( 1 @ eH  '  %  #9 R ] gry  LY#}22%)G(f(  %=Ww%.5 G R]v   &1P}d ' 5)Nx!0 #%= c my+(!34h *! ,MU^{+8(d #2DTn !-(<1[37620cuZVp9, Ii q{ *AYm+~ #    & @ P i  * (    )! ?! I! W!e!i!q! ;"F"`"u" """" "#1+#]#s## #######$$5$9$ A$$b$"$$$$$$$%% %'%=% P%]%n%B%4%& &&& &P&%'('8'I'Z'r'''' ''' '' ((($(,(1(9(N(f((((((( (.() ) )) ))* )*3*F*V*f*o* **G+,,l>--m-.`.].LZ/K/4/8(0~a0J0H+1Ht1233334"424F4[4x44424445 5#575@5Z5l5|55 55555" 6.6360;6l6s666666,6 666667>7 F7R7X7^7 g7)t777 77777)898 M8UX8#88888 9>93\9999999 99 :$: 8:Y: o::: :: :: : : :: ; ; ;+;*1; \;g;n;w;;;;!<%<+< :< E< Q<[<)`<<<<<<<<z<[=c= l=&==== ==> >#>"=> `>n>>>>> > >> > > >?!?8?&W?~?*? ?????@ @ @0@8@>@P@W@o@@ AA5AEAKA [A2iA A AAAA AA B&B6BTB"qB!B&BB.B)*CTClCC)D.D=DD~EFrFyGw~GG;HHHH I)IHI&eIJII&I%J!BJdJ lJzJJJJJJgJ2JKB}KK KKKKLL2L*OL-zL/LLLLLM<MRBMMMM M M N N N)#NMN fNpNNN NN NNNNOOO ,O8O)UOOOO OOO O OO P"PPP[PXKQ*QQQ4R<6RsRBS8GSCS"S<S$T<7TJtTT;EU$UAU=U9&V|`VV-V)W2W :W[WdW,kW1W1WW XX/X 3X?X[XuX XXXX XX!XY Y*Y GY RY,]Y*Y/YYOYFZ OZ[ZcZiZrZZ ZZZZZ[[5[;[M[.m[+[ [ [[@[&\'5\C]\ \=\ \\]"]@]%^]&]>] ]]% ^0^P^L_^^^+^^_$_>:_!y_____ ____ _ `+` 1`<`U`Y```p`x```````a a "a.a @aLa]a+uaaa,ahaMgb bbb4bcc c(c/cJcRc dcpc wc?cc!c c0 d#g"Tgwggg)g$gggg hh"h!9h [hehthhhhh h h@h:2i mixi i i i iiiiiii jjjj6j>jQjcj ljUyjjjj kk2kHk[kak*sk9k kkk k&l,lul[Amum5nOInGnMn/o)p0pG(qpqBr,Zr'rr^9sFs0sZtktu/u2uFu,=v%jvv=vvw#w6w+UwwHwiw`Ixx2x4x1yCzczqz:a{={{|-l}B}}}}}}~:~?~O~CSejsyl    &4KRV_cy @   "/1?q , '?CKj*z4Vڃr12ׄ-84 A'T |"*؆!)#=#a  S   #/7; BN^ bp! ډ$C\sn?ӌ ׌+BH,Pʍ/ KV _io u e@=;ڏI`:yC/]( F)ؑAK/26' ȕ ϕٕa Y c ֖ߖ#).1CX\ m y ϗ + 6@EM Q \hzKxϘ>H?1\eoEMyugl8 V ON%;T{~!*4P}J{9 "']?+7lPi|0UgMJR?a.a&l'AQ,yFGu*T"g=)$BFWi S'"A|j -`Zx MsMCQ^~= S%!%_pw <jS)ibZd4+'/H6x2p\ {pyz85[B<kY?5ON# VYIEzrl#{p%6 Ey;G@B  S\CvsNQ`5(|@+fjT3,Lf^ _b)dXV)#hx8]LPr .5ZAQ B*qa eXE%|F_Y7s-mx]v, 49w}A{0Ck@!\z#;$6th.? pxLt an1NVg1&.vC !ZR~Kc8/lomno>-Dr)I[]H&rcDz4j(D1gDY`h v -H/nN:iII>^j-;zbk8,+vfk*WZw2 }\]HW|:&UC6d>yP<MeJu SK( $R /d(,0Uc0VFKLRuIX9Xcdt Y#-H# _P qq>,:<hef Au6!O=w~;}n/O1@$2.*(Km:$EO>Q"*'2@+W!L%mTG'K93~^2Wh<3oqG[90F&UU`+et&bw5(nt XBq3o"m0fG34 i[)}b_a=`77k  J/"D :=7TJrs$^[s.cR Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyAprAprilArgentinaArmeniaArubaAttach CSVAttachmentsAugAugustAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DecDecemberDefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FebFebruaryFieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFrFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriFridayFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJanJanuaryJapanJavaScript disabled error messageJohn DoeJordanJulJulyJunJuneJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.MarMarchMarshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMayMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.MoMock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonMonacoMondayMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNext MonthNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NovNovemberNumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOctOctoberOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.Previous MonthPricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSatSaturdaySaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSepSeptemberSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSuSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSunSundaySurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeThuThursdayTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTuTueTuesdayTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWeWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWedWednesdayWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2018-01-08 20:14-0500 Last-Translator: Jesus Garcia Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.5.5 X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-SourceCharset: UTF-8 X-Poedit-SearchPath-0: . Campos Abrir en una nueva ventana Deshacer todo instalada. La versión actual es producto(s) para requiere una actualización Tienes la versión #%1$s borrador actualizado. Vista previa%3$s%1$s restaurado para revisión desde %2$s.%1$s programado para: %2$s. Vista previa%4$s%1$s enviado. Vista previa%3$s%n se utilizará para significar el número de segundos%s atrás%s publicado.%s guardado.%s actualizada.Se desactivó %s.%sPermitir%s%sChecked%s Valor de Cálculo%sNo permitir%s%sUnchecked%s Valor de Cálculo* - Representa un tipo alfanumérico (AZ , az, 0-9 ) - Esto permite que ambos números y letras que se introduzcan- Ninguno- Seleccione Uno- Seleccione un Campo- Selecciona un producto- Selecciona una variable- Selecciona un formularioVer Todos los Tipos9 - Representa un tipo numérico ( 0-9 ) - Sólo permite números para ingresar
    • a - Representa un carácter alfa (A-Z,a-z) - Solo permite ingresar letras.
    • 9 - Representa un carácter numérico (0-9) - Solo permite ingresar números.
    • * - Representa un carácter alfanumérico (A-Z,a-z,0-9) - Esto permite ingresar tanto números como letras.
    Una respuesta que distingue mayúsculas y minúsculas para prevenir los envíos de tu formulario.Se está por hacer una actualización importante a Ninja Forms. %sObtén más información acerca de las nuevas funciones, la compatibilidad con versiones anteriores y las preguntas frecuentes.%sUna experiencia simplificada y más poderosa de construir formularios.Arriba del ElementoArriba del campoNombre de AcciónAcción ActualizadaAccionesActivarActivoAñadirAñadir DescripciónAgregar formularioAñadir NuevoAñadir campo nuevoAñadir nueva formaAñadir nuevoAñadir Sumisión NuevaAgregar nuevas condicionesAñadir Operación Agregar botón EnviarAñadir ValorAñadir acciones al formularioAñadir campos al formularioAñadir formulario a esta páginaAñadir acción nuevaAñadir campo nuevoAñade suscriptores e incrementa tu lista de correos electrónicos mediante este formulario de inscripción al boletín informativo. Puedes agregar o eliminar campos según sea necesario.Licencias de complementosComplementosDirecciónDirección 2Agrega una clase adicional a tu elemento del campo.Agrega una clase adicional a tu capa de campo.E-mail de AdministraciónEtiqueta de AdministraciónAdministraciónAvanzadasEcuación AvanzadaConfiguración AvanzadaEnvío avanzadoAfganistán Después de TodoFormulario PosteriorEtiqueta Posterior¿De acuerdo?Albania Argelia TodosTodo Sobre FormulariosTodos los CamposTodos los FormulariosTodos los ÍtemsTodos los formularios actuales permanecerán en la tabla "Todos los formularios" En algunos casos, algunos formularios pueden duplicarse durante este proceso.Permite al usuario registrarse para tu próximo evento utilizando este formulario fácil de completar. Puedes agregar o eliminar campos según sea necesario.Permite que tus usuarios se comuniquen contigo utilizando este sencillo formulario de contacto. Puedes agregar o eliminar campos según sea necesario.Permite la entrada de texto.Permite a los usuarios elegir más de una unidad de este producto.Ya casi...Junto con la ficha "Construir su formulario", hemos eliminado "Notificaciones" en favor de "Los correos electrónicos y acciones." Esta es una indicación mucho más clara de lo que puede hacerse en esta ficha. Samoa Americana Ocurrió un error inesperado.Andorra Angola AnguilaRespuestaAntártida Anti-SpamPregunta antispam (Respuesta = respuesta)Mensaje de Anti-SpamAntigua y Barbuda Cualquier tipo que usted deposita en la caja "máscara personalizada" que no está en la lista de abajo se introducirá automáticamente para el usuario mientrás se escribe y no será desmontableAnexar Un Ninja FormAnexar un Ninja FormsAnexar a la PáginaAplicar AbrAbrilArgentina Armenia ArubaAdjuntar CSVArchivos AdjuntosAgoAgostoAustralia AustriaCampos total automáticoAutomáticamente Da el Total de Valores de cálculoDisponibleTérminos disponiblesAzerbaiyán Regresar a la ListaRegresar a la listaReservar / RestaurarReservar Ninja FormsBahamasBahrein BangladeshBarBarbadosCampos básicosAjustes BásicosLavaboBazBccAntes de TodoFormulario AnteriorEtiqueta AnteriorAntes de solicitar ayuda de nuestro equipo de Asistencia técnica consulta lo siguiente:Fecha de ComenzarFecha de inicioBelarús Bélgica BeliceDebajo del ElementoDebajo del campoBeninBermudas¿Mejor método de contacto?El Mejor Soporte en el NegocioAjustes de Campo Mejor-Organizados Mejor Administración de LicenciasBután FacturaciónFormularios en blancoBoliviaBosnia y Herzegovina BotswanaIsla Bouvet BrasilTerritorio Británico del Océano Índico Brunei DarussalamConstruya Su FormularioBulgariaAcciones en BloqueBurkina FasoBurundiBotónCVCCalcValor calcCálculoMétodo de CálculoAjustes de CálculoNombre del CálculoCálculosLos cálculos se devuelven con la respuesta AJAX ( respuesta -> datos -> calcsCamboya Camerún Canadá CancelarCabo VerdeEl código Captcha no coincide. Ingresa el valor correcto en el campo captchaDescripción CVC de la TarjetaEtiqueta CVC de la TarjetaDescripción del Mes de Caducidad de la TarjetaEtiqueta del Mes de Caducidad de la TarjetaDescripción del Año de Caducidad de la TarjetaEtiqueta del Año de Caducidad de la TarjetaDescripción del Nombre de la TarjetaEtiqueta de Nombre de la TarjetaNúmero de la TarjetaDescripción del Número de la TarjetaEtiqueta del Número de la Tarjeta Islas Caimán CcRepública Centroafricana ChadCambiar el ValorCarácter(es)Caracteres restantesTiposTrampeando, eh?Revisa nuestra documentaciónCasillaLista del cuadro de verificaciónCasillasMarcadoValor de cálculo marcadoChileChinaLa Isla de NavidadCiudadNombre de la clase¿Eliminar el formulario completado con éxito?Islas Cocos ( Keeling) Recibir pagoColombiaCampos comunesComorasEcuaciones complejas pueden ser creados añadiendo entre paréntesis: %s( field_45 * field_2 ) / 2%s.ConfirmarSirve para confirmar que no eres un botCongoLa República Democrática del Congo Formulario de contactoComuníquense conmigoComunícate con nosotrosContenedorContinuarIslas CookCoste Menú desplegable de costoOpciones de costoTipo de costoCosta RicaCosta de Marfil No se pudo activar la licencia . Verifique por favor su número de licencia PaísCrea una clave única para identificar y orientar tu campo para desarrollo personalizado.Tarjeta De CréditoCódigo de verificación de la tarjeta de créditoCódigo de verificación de la tarjeta de créditoVencimiento de la tarjeta de créditoNombre completo de la tarjeta de créditoNúmero de tarjeta de créditoCódigo postal de la tarjeta de créditoCódigo postal de la tarjeta de créditoCréditosCroacia (Nombre Local: Hrvatska)CubaMonedaSímbolo de MonedaPágina corrientePersonalizaciónClase CSS PersonalizadaClases CSS PersonalizadasNombres de clase personalizadosGrupo de Campos PersonalizadosMáscara personalizadaDefinición de Máscara PersonalizadaCampo personalizado borrada.Campo personalizado actualiza.Primera Opción Personalizada CyprusRepública Checa DD-MM-AAAADD/MM/YYYYDEPURAR: Cambiar a 2.9.xDEPURAR: Cambiar a 3.0.xOcuroiDatos restaurados con exito!FechaCreado elFormato de FechaAjustes de FechaFecha PresentadoFecha ActualizadoRecogedor de FechaDesactivarDesactivarDesactivar Todas las LicenciasDesactivar LicenciaDesactivar las licencias de extensión de Ninja Forms de forma individual o en grupo a partir de la ficha de configuración .DicDiciembreDefectoPaís PredeterminadoPosición predeterminada de la etiquetaZona Horaria por DefectoValor predeterminado para la fecha actualValor de DefectoPor defecto la zona horaria es %sPor defecto la zona horaria es %s - debe ser UTCCampos DefinidosBorrarEliminar (^ + D + clic)Borrar permanentementeEliminar este formulario Borrar este artículo permanentementeDinamarcaDecripciónContenido de Descripción Posición de Descripción ¿Sabías que puedes aumentar la conversión de formularios al dividir formularios más grandes en otros más pequeños, es decir, partes que se pueden asimilar más fácilmente?

    La extensión de los formularios multipartes para Ninja Forms hace que esto sea rápido y sencillo.

    Desactivar notificaciones del administradorDesactivar Autocompletador del NavegadorDesactivar EntradaDesactivar Editor de Texto Enriquecido para Móvil ¿Desactivar la entrada?DescartarVisualizaciónTítulo del Formulario de Visualización Nombre mostradoOpciones de visualizaciónMuestra esta variable de cálculoTítulo de VisualizaciónVisualización de su Formulario DivisorDjiboutiNo mostrar estes artículos.DocumentaciónDocumentación próximamente .La documentación está disponible abarca desde %sTroubleshooting%s a nuestro %sDeveloper API%s. Nuevos documentos se puede añadir cada día.NO aplica a la vista previa del formulario.Aplica a la vista previa del formulario.DominicaRepública DominicanaHechoDescargar Todas las SumisiónesDesplegableDuplicarDuplicar (^ + C + clic)Duplicar Formulario EcuadorEditarEditar AcciónEditar FormularioEditar elementoEditar Artículo del MenuEditar SumisiónEditar este artículoEdición del campoEdición del campoEgipciaEl SalvadorElementoDirección de correo electrónicoDirección de Correo Electrónico y AcciónesDirección de emailMensaje de Correo ElectrónicoFormulario de suscripción de correo electrónicoDirección de correo electrónico o buscar un campoDirecciónes de correos electrónicos o buscar un campoCorreo electrónico aparecerá ser de esta dirección.Correo electrónico aparecerá ser de este nombre.Emails y AccionesFecha de TerminarAsegúrate de que este campo esté completo antes de permitir que se envíe el formulario.Ingresa el texto que deseas mostrar en el campo antes de que un usuario ingrese datos.Ingresa la etiqueta del campo del formulario. Así es cómo los usuarios identificarán los campos individuales.Ingresa tu dirección de correo electrónicoAmbienteecuaciónEcuación (avanzado)Guinea EcuatorialEritreaErrorMensaje de error dado si todos los campos obligatorios no son completadosEstoniaEtiopía Registro de eventosAmpliar menúMes de Caducidad (MM)Año de Caducidad (YYYY)ExportarExportar Campos FavoritosExportar CamposExportar FormularioFormas de exportaciónExportar un formularioExportar este artículoAmpliar Ninja FormsCARGA DE ARCHIVONo se pudo escribir el archivo en el disco.Islas Malvinas ( Falkland) Islas Feroe Los Campos FavoritosFavoritos importados correctamente.FebFebreroCampoCampo #Identificación del CampoClave del CampoNo se encontró el campoOperaciones de Campo CamposCampos marcados con un * son obligatorios.Campos marcados con %s*%s son requeridosFijiError al cargar el archivoCarga de archivo en curso.Carga de archivo detenida por extensión.FinlandiaPrimer NombreArreglar estoFooFoo BarPor ejemplo, si has tenido una clave de producto que se encontraba en forma de A4B51.989.B.43C, puede enmascarar con: a9a99.999.a.99a, lo que obligaría a todos a's a ser letras y las 9s a ser númerosFormularioFormulario predeterminadoFormulario EliminadoCampos del formularioFormulario Importado con éxito.Clave FormularioNo se encontró el formularioPrevista de Formulario Ajustes del Formulario GuardadosEnvíos de formulariosError de importación de plantilla de formulariosTítulo de FormularioFormulario con cálculosFormatoFormulariosFormluarios EliminadosFormularios Por PáginaViFranciaFrancia, Metropolitana Guayana FrancésPolinesia FrancésTerritorios Franceses del Sur VieViernesViernes, 18 de noviembre de 2019Dirección de que proviene el correoNombre de quién procede el correoHistorial de Cambios CompletoPantalla completaGabón GambiaGeneralConfiguración GeneralGeorgiaAlemaniaObtener AyudaObtener más accionesObtener más tiposObtén ayudaObtener soporte Obtener Informe del SistemaObtén una clave de sitio para tu dominio registrándote %saquí%sComienza agregando el primer campo de tu formulario.Comienza agregando el primer campo de tu formulario. Simplemente haz clic en el signo positivo y selecciona las acciones que desees. Es así de fácil.Empezando Primeros pasos con Ninja FormsGhanaGibraltarDale a su formulario de un título. Así es como econtrará el formulario luego.IrIntento fallidoIr a FormulariosIr a Ninja FormsIr a la primera páginaIr a la última página Ir a la página siguiente Ir a la página anterior GreciaGroenlandia GranadaDocumentación CrecienteGuadalupeGuamGuatemalaGuineaGuinea-Bissau GuayanaHTMLHaití Mitad de la pantallaIslas Heard y Mc Donald¡Hola, Formularios Ninja!AyudaTexto de AyudaTexto de ayuda aquíOcultaCampo OcultadoOcultar etiquetaOcultar Este¿Ocultar el formulario completado con éxito?Sugerencia: La contraseña debe tener al menos siete tipos. Para hacerlo más fuerte, use letras mayúsculas y minúsculas, números y símbolos como ! ? " $% ^ & Amp; ) .Santa Sede (Ciudad del Vaticano)URL de InicioHondurasHoney PotError de HoneypotMensaje de error Honeypot Hong KongEtiqueta de ganchoNombre del host¿Cómo va eso?HungríaDirección de IPIslandia Si " texto desc" está activado, habrá un signo de interrogación %s colocado al lado del campo de entrada. Al pasar por encima de este signo de interrogación se mostrará el texto desc.Si "el texto de ayuda" está activado, habrá un signo de interrogación %s colocado al lado del campo de entrada. Al pasar por encima de este signo de interrogación se mostrará el texto de ayuda.Si se marca esta casilla, todos los datos de Ninja Forms serán eliminados de la base de datos debido a la supresión. %sAll form and submission data will be unrecoverable.%sSi se selecciona esta casilla, Ninja Forms despejará los valores del formulario después de que ha sido enviado correctamente. Si se selecciona esta casilla, Ninja Forms ocultará la forma después de haber sido enviado correctamente .Si se selecciona esta casilla, Ninja Forms enviará una copia de este formulario (y cualquier mensaje adjunta) a esta dirección.Si se selecciona esta casilla, Ninja Forms validará esta entrada como una dirección de correo electrónico.Si se marca esta casilla, ambos los cuadros de texto contraseña y re-contraseña se emitirán.Si esta casilla está activada, esta columna en la tabla de sumisiones ordenará por número.Si usted es un humano y está viendo este ámbito, por favor deje en blanco.Si eres un ser humano y estás viendo este campo, por favor déjalo vacío.Si usted es un ser humano, por favor, más despacio.Si deja la casilla vacía, se utilizará ningún límiteSi te suscribes, algunos datos sobre la instalación de Ninja Forms se enviarán a NinjaForms.com (esto NO incluye tu envío).Si omites esto, ¡no hay problema! Ninja Forms aún así funcionará bien.Si desea enviar un valor vacío o calc, debe utilizar ' ' para aquellos.Si usted quisiera que su formulario le notifique a través de correo electrónico cuando un usuario hace clic en Enviar, usted puede configurar esto en esta ficha. Usted puede crear un número ilimitado de mensajes de correo electrónico, incluyendo mensajes de correo electrónico enviados al usuario que llenó el formulario .Si tienes formularios "faltantes" después de actualizar a la versión 2.9, este botón intentará recuperar tus antiguos formularios para que se muestren en esa versión. Todos los formularios actuales permanecerán en la tabla "Todos los formularios"ImportarImportar/ExportarImportar / Exportar SumisionesImportar Campos FavoritosImportar FavoritosImportar camposImportar FormularioImportar formulariosImportar Lista de ArtículosImportar un formularioImportar/ExportarClaridad Mejorada¿Incluir en la auto- totales? (Si está activado)Respuesta incorrectaAumentar conversacionesIndiaIndonesiaMáscara de EntradaInsertarInsertar Todos los CamposInsertar un CampoInsertar enlaceInsertar mediosDentro del ElementoInstaladoPlugins InstaladosGrupos de interésCarga de formulario inválido.Id. de formulario inválidoIrán ( República Islámica del) IrakIrlanda¿Es esta una dirección de correo electrónico?IsraelEs así de fácil. O bien...ItaliaJamaicaEneEneroJapón Mensaje de error de JavaScript discapacitadoJuan PérezJordaniaJulJulioJunJunioSimplemente haz clic aquí y selecciona los campos que desees.Kazajstán KeniaClaveKiribatiKitchen SinkRepública Popular Democrática de Corea República de Corea Kuwait Kirguistán EtiquetaEtiqueta aquíNombre de la etiquetaPosición de la EtiquetaEtiqueta usada al ver y exportar envíos.Etiqueta,Valor,CalcEtiquetas Idioma usado por reCAPTCHA Para obtener el código para tu idioma, haz clic %saquí%sRepública Democrática Popular LaoApellidoLetonia Elementos de DisposiciónCampos de diseñoAprende MásObtén más información acerca de los formularios multipartesObtén más información acerca de Guardar progresoLíbano A la Izquierda del ElementoIzquierda del campoLesotoLiberiaJamahiriya Árabe Libia LicenciasLiechtenstein SencilloLímite de entrada para este númeroMensaje de que el Límite llegóLimite las SumisionesLimite de entrada a este númeroListaMapeo del campo listaTipo de ListaListasLituania CargandoCargando...UbicaciónConectadoFormulario largo - Luxemburgo MM-DD-AAAADD/MM/AAAAMacauAntigua República Yugoslava de Macedonia MadagascarMalawiMalaysiaMaldivasMalí MaltaAdministra las solicitudes de cotización desde tu sitio web fácilmente con esta plantilla. Puedes agregar o eliminar campos según sea necesario.MarMarzoIslas MarshallMartinica Mauritania Mauricio MáxNivel Máximo de Entrada de la AnidaciónValor máximo MayoQuizás más tardeMayotte MedioMensajeEtiquetas de MensajeMensaje mostrado a los usuarios si la casilla "registrado" de arribe se comprueba y que no está en el sistema de entrada.MetaboxMéxico Estados Federados de Micronesia Migraciones y datos falsos completos. MínValor mínimo Campos de miceláneasDiscrepancia Falta una carpeta temporal.LuAcción de correo falsoAcción de guardado falsoAcción de mensaje de falso éxitoModificado elRepública de Moldova LunMónaco LunesMongoliaMontenegroMontserrat Más por venir Marruecos Mover este artículo a la BasuraMozambique Selección múltipleProducto múltiple - elige muchosProducto múltiple - elige unoProducto múltiple - menú desplegableMulti-SeleccionarTamaño de la Casilla de Multi-SeleccionarMúltipleMi primer cálculoMi segundo cálculoVersión MySQLMyanmar NombreNombre en la TarjetaNombre o camposNamibiaNauru¿Necesita ayuda?Nepal Países Bajos (Holanda)Antillas Holandesas No veas ninguna notificación del administrador en el panel de control de Ninja Forms. Desmarca esta opción para verlas nuevamente.Nueva AcciónEtiqueta de Constructor NuevoNueva CaledoniaNuevoSumisión NuevaNueva ZelandaFormulario de inscripción al boletín informativoSiguiente MesNicaraguaNíger NigeriaAjustes de Ninja FormsNinja FormsNinja Forms- Está ProcesandoNinja Forms Historial de CambiosNinja Forms DevDocumentación de Ninja FormsNinja Forms Está ProcesandoPresentación de formularios ninjaEstado del Sistema de Ninja FormsLa documentación de Ninja Forms THREEActualización de Ninja FormsProcesamiento de actualización de Ninja FormsActualizaciones (Upgrades) de Ninja FormsVersión de Ninja FormsNinja Forms WidgetNinja Forms también viene con una plantilla simple de función que se puede colocar directamente en un archivo de plantilla php. %sLa ayuda básica de Ninja Forms va aquí.Ninja Forms no puede ser activado por un red. Favor de visitar el tablero (dashboard) de cada sitio para activar el plugin. ¡Ninja Forms realizó todas las actualizaciones disponibles!Ninja Forms es creado por un equipo mundial de desarrolladores que tienen como objetivo proporcionar al # 1 WordPress comunidad de creación de formularios plugin.Ninja Forms necesita procesar %s actualización(es). Esto puede demorar unos minutos en completarse. %sComenzar a actualizar%sNinja Forms tiene que actualizar la configuración de correo electrónico, haga clic en %shere%s para iniciar la actualización .Ninja Forms necesita actualizar la tabla de presentaciones, haga clic en %shere%s para iniciar la actualización .Ninja Forms tiene que actualizar sus notificaciones de formulario, haga clic en %shere%s para iniciar la actualización .Ninja Forms tiene que actualizar la configuración de formulario, haga clic en %shere%s para iniciar la actualización.Ninja Forms proporciona un widget que se puede colocar en cualquier área Widgetized de su sitio y seleccionar exactamente qué formulario usted desea que se muestren en ese espacio.Código de Ninja Forms usado sin especificar un formulario.NiueNoNo Acción EspecificadoNo Campos Favoritos EncontradosNo se encontró ningún campo.Ninguna Sumisión EncontradaNo Sumisiones Encontradas en la BasuraNo hay términos disponibles para esta taxonomía. %sAgregar un término%sNo se cargó ningún archivo.No se ha encontrado ningun formulario.No se seleccionó ninguna taxonomía.No se encontró cambios válidos.NingunoIsla Norfolk Islas Marianas del NorteNoruegaMensaje de No Estar Registrado Aún noNo es troba a la papereraNotaEl texto de la nota se puede modificar en las configuraciones avanzadas del campo Nota a continuación.Aviso: Se requiere JavaScript para este contenido.Aviso: Código de Ninja Forms usado sin especificar un formulario.NovNoviembreNúmeroError de número máximoError de número mínimoOpciones numéricasCantidad de estrellasNúmero de cifras decimales.Número de segundos para la cuenta atrás Cantidad de segundos para la cuenta regresivaCantidad de segundos para el envío programado.Número de estrellas OctOctubreOmán UnoSolamente una dirección de correo electrónico o uno campo ¡Uy! El complemento no es compatible con Ninja Forms THREE %sMás información%s.Abrir en una nueva ventanaOperaciones y campos (avanzado)Estilos para obstinadosOpción unoOpción tresOpción dosOpciónesOrganizadorEl alcance de nuestra Asistencia técnicaCálculo de salida como Sitio PHPPHP Entrada Máxima VarsTamaño Máximo de Puesto PHPPHP Límite de TiempoVersión PHPPUBLICARPakistán PalauPanamaPapúa Nueva Guinea Texto del párrafoParaguayElemento Padre:ContraseñaConfirmación de contraseñaEtiqueta de Discrepancia de Contraseña Contraseñas no son igualesLos Campos de PagoPasarela de PagoPago totalAutorización denegadaPerú Filipinas TeléfonoTeléfono - (555) 555-5555Pitcairn Coloque %s en cualquier área que acepte códigos cortos para mostrar su forma en cualquier lugar que desee. Incluso en medio de su página o mensajes de contenido.Marcador de PosiciónTexto sin formato%sPonte en contacto con asistencia técnica%s e indica el error que se muestra más arriba.Favor de contestar la pregunta de anti-spam (contra el correo no deseado) correctamente.Por favor, marque los campos obligatorios.Llena el campo captchaLlena el código recaptchaCorrige los errores antes de enviar este formulario.Favor de estar seguro que todos los campos estén completos.Por favor, introduzca un mensaje que desea mostrar cuando este formulario ha llegado a su límite de sumisión y no aceptará nuevas sumisiones.Por favor, introduce una dirección de correo electrónico válidaIntroduce una dirección de correo electrónico válida.Favor de registrar una dirección de correo electrónico verdadera.¡Ayúdanos a mejorar Ninja Forms!Por favor, incluya esta información cuando soliciten apoyo:Increméntalo por Favor de dejar vacante el campo de spam (correo no deseado).Asegúrate de ingresar las claves tus clases Sitio y Secreto correctamenteFavor de calificar %sNinja Forms%s %s on %sWordPress.org%s para ayudarnos guardar este plugin gratis. iGracias del equipo WP Ninjas!Favor de seleccionar un formulario para ver las sumisiones.Por favor, seleccione un formulario.Por favor, seleccione un archivo de formulario exportado válida.Por favor, seleccione un archivo de campos favoritos válida.Por favor, seleccione los campos favoritos para exportar.Por favor, use estos operadores: + - * / . Esta es una característica avanzada. Cuidado con cosas como la división por 0 .Por favor, espere %n segundosFavor de esperar para submitir el formulario.Plugins PoloniaRellenar esto con la taxonomía PortugalpuestoPuesto / ID de página (si está disponible)Puesto / Título de página (si está disponible)Puesto / URL de la página (si está disponible) Creación de PuestoMensaje IDTítulo de PublicarURLPreestrenarVista previa de los cambiosPreestrenar el FormularioEsta vista previa no existe.Previo MesCostaPrecio:Campos de preciosProcesandoEtiqueta de procesamientoProcesando Etiqueta de SumisionesProductoProducto (cantidad incluida)Producto (cantidad separada)Producto AProducto BFormulario del producto (cantidad en línea)Formulario de productos (varios productos)Formulario de productos (con campo de cantidad)Tipo de productoNombre programático que se puede usar para hacer referencia a este formulario.PublicarPuerto RicoComprarQatarCantidadCantidad para el Producto ACantidad para el Producto BCantidad:Cadena de consultaCadena de consultasVariable de cadena de consultaPreguntaPosición de la preguntaSolicitud de cotizaciónRadioLista de opcionesEscriba la Contraseña otra vezVolver a Introducir la Etiqueta de Contraseña¿Realmente desactivar todas las licencias?RecaptchaRedirigirEliminar¿Eliminar TODOS los datos de Ninja Forms sobre desinstalación?Eliminar ValorEliminar Todos los Datos de Ninja Forms¿Eliminar este campo? Será eliminado aún si usted no lo guarda.Responder a¿El usuario deberá estar registrado para ver el formulario?NecesarioCampo obligatorioError de Campo ObligatorioEtiqueta Obligatoria de CampoSímbolo Obligatorio de CampoRestablecer conversión de formularioRestablecer conversión de formulariosRestablecer el proceso de conversión de formulario para v2.9+RestaurarRestaurar Ninja FormsRestaurar este artículo de la BasuraConfiguración de RestriccionesRestricciones Restringe el tipo de entrada que tus usuarios pueden ingresar en este campo.Regresar a Ninja FormsReuniónPanel del Editor de texto enriquecido (RTE)A la Derecha del ElementoDerecha del campoReducción de preciosReducción de precios para las versiones 2.9.x más recientes.Reducción de precios para v2.9.xRumaniaFederación de RusiaRuandaSMTPCliente SOAPSUHOSIN InstaladoSaSan Cristóbal y Nieves Santa Lucía San Vicente y las Granadinas SamoaSan MarinoSanto Tomé y Príncipe SabSabadoArabia Saudita GuardarGuardar y ActivarGuardar Configuración de CampoGuardar formularioGuardar OpcionesGuardar configuraciónGuardar presentaciónGuardadoCampos guardadosGuardando...Buscar ItemBuscar SumisionesSeleccionarSeleccionar TodoSeleccionar de la listaSeleccionar un campo o escribir para buscarSeleccione un archivoSeleccionar un formularioSelecciona un formulario o tipo de búsquedaSeleccione el número de sumisiones que este formulario aceptará. Dejar en blanco para ningún límite.Selecciona la posición de tu etiqueta relativa al elemento del campo en sí.SeleccionadoValor SeleccionadoEnviar¿Enviar una copia del formulario a esta dirección?SenegalSepSeptiembreSerbiaDirección IP del servidorAjustesAjustes GuardadosSeychelles EnvíoCódigo CortoDebe introducirse como un porcentaje. por ejemplo 8,25 % , 4 % Mostrar Texto de AyudaMostrar Botón de Carga de MediosMostrar másMostrar Indicador de la Fuerza de la ContraseñaMostrar Editor de Texto EnriquecidoPresentar EsteMostrar Valores de los Artículos de la ListaSe muestra a los usuarios como un posicionamientoSierra Leona Singapur una solaCuadro de verificación únicoCosto únicoTexto de una sola líneaProducto único (predeterminado)URL de SitioEslovaquia (República Eslovaca)Eslovenia Correo postalAsí que, si querías hacer una máscara para un Número de Seguro Social de América, que pondría 999-99-9999 en la cajaIslas SalomónSomaliaOrdenar como numéricoClasificar como numérico Sudáfrica Georgias del Sur, Islas Sandwich del SurSudán del SurEspaña Respuesta de SpamPregunta de SpamEspecifique Operaciones Y Campos (Avanzado ) Sri LankaSt. Helena San Pedro y MiquelónCampos EstándaresGrado de la Estrella Comienza a partir de una plantillaEstado / RegiónEstatusPasoPaso %d de aproximadamente %d funcionandoPaso (cantidad para incrementar por)Indicador de FuerzaFuerteDoSubsecuenciaSujetoTexto del asunto o buscar un campoTexto de Sujeto o buscar un campoSumisiónSubmisión CSVDatos del envíoInformación del envíoLímite de envíoEnvío de MetaboxEstadísticas de SumisiónSumisionesPresentarPresentar el texto del botón después de que expire el minutero¿Presentar a través de AJAX (sin recarga de la página)?PresentadoPresentado PorEnviado por: Presentado elEnviado el: SuscribirseMensaje de ExitoSudán DomDomingoSurinameIslas Svalbard y Jan MayenSwazilandiaSueciaSuizaRepública Árabe SiriaSistemaEstado del Sistema¡Ya llega THREE!Taiwán Tayikistán Echa un vistazo a nuestra documentación de Ninja Forms en profundidad más adelante.República Unida de TanzaniaImpuestoPorcentaje de ImpuestoTaxonomíaLos Campos de la PlantillaFunción de PlantillaLista de términosTextoElemento de TextoTexto que se muestra después del contadorTexto que aparece después del contador de tipos/palabrasArea de TextoCuadro de texto JuTailandia Gracias por completar este formulario.iGracias por actualizar a la versión más reciente! iNinja Forms %s está preparado para hacer de su experiencia en la gestión de sumisiones una agradable!Gracias por actualizar a la versión 2.7 de Ninja Forms. Por favor, actualice cualquier extensiones de Ninja Forms deiGracias por actualizar! iNinja Forms %s hace construir formularios más fácil que nunca !¡Gracias por usar Ninja Forms! Esperamos que hayas encontrado todo lo que necesitas, pero si tienes alguna pregunta:¡Gracias, {field:name}, por completar mi formulario!Los (típicamente) 16 dígitos en la parte delantera de su tarjeta de crédito.Los 3 dígitos (tras) o los 4 dígitos (frente) de valor en su tarjeta.Los 9s representarían cualquier número, y la -s se añade automáticamente El menú de los formularios es su punto de acceso para todas las cosas de Ninja Forms. Ya hemos creado tu primera %s contact form%s quedando con un ejemplo. También puede crear su propio haciendo clic %sAdd New%s.El formato debe ser similar al siguiente:Las actualizaciones de la interfaz de esta versión sientan las bases para algunas grandes mejoras en el futuro. La versión 3.0 se apoyará en estos cambios para hacer Ninja Forms un constructor de la forma más estable, potente y fácil de usar.El mes que vence su tarjeta, por lo general en el frente de la tarjeta.Los ajustes más comunes se muestran inmediatamente, mientras que otros ajustes, no esenciales, se encuentran escondidos en el interior de las secciones expandibles.El nombre impreso en la parte delantera de su tarjeta de crédito.Las contraseñas previstas no son iguales. Las personas que construyen Ninja FormsEl proceso ha comenzado; favor de tener paciencia. Esto puede tomar varios minutos. Usted será redirigida cuando finalice el proceso. El archivo cargado supera la directiva MAX_FILE_SIZE que se especificó en el formulario HTML.El archivo cargado supera la directiva upload_max_filesize en php.ini.El archivo solo se pudo cargar de forma parcial.El año que su tarjeta de crédito expira, típicamente en la parte frontal de la tarjeta.Hay una nueva versión de %1$s disponible. Ver detalles de la versión %3$s o actualizar ahora.Hay una nueva versión de %1$s disponible. Ver detalles de la versión %3$s.El archivo cargado no tiene un formato válido.Estos son todos los campos de la sección Precios.Estos son todos los campos de la sección de Información del usuario.Estos son los tipos de máscara predefinidosEstos son diversos campos especiales.Estos campos deben coincidir.Esta columna en la tabla de envíos se ordenará por número.Este campo es requerido.Esto es un campo obligatorio.Esta es una pruebaEste es el estado del usuario.Esta es una acción de correo electrónico.Esta es otra prueba.Este es el tiempo que un usuario debe esperar para enviar el formulario Esta es la etiqueta que se utiliza durante la visualización/ la edición/ la exportación de sumisiones.Este es el nombre de programación de su campo . Ejemplos son: my_calc, price_total, user-total.Este es el estado del usuario.Este es el valor que se utilizará si %sChecked%s.Este es el valor que se utilizará si %sUnchecked%s.Aquí es donde se va a construir tu formulario añadiendo campos y arrastrándolos a la orden que desea que aparezcan. Cada campo tendrá una variedad de opciones, tales como etiquetas, posición de la etiqueta , y marcador de posición.Esta es una palabra clave reservada de WordPress. Intenta con otra.Este mensaje se muestra dentro del botón de enviar cada vez que un usuario hace clic en "enviar" para hacerles saber que está procesando.Este mensaje se muestra a un usuario cuando los valores no coincidentes se colocan en el campo de la contraseña.Este número se usará en cálculos si el cuadro se marca.Este número se usará en cálculos si el cuadro se desmarca.Esta configuración eliminará COMPLETAMENTE cualquier cosa relacionada con Ninja Forms después de eliminar el complemento. Esto incluye los ENVÍOS y FORMULARIOS. Esta acción no se puede deshacer.Esta ficha mantenga la configuración general de formulario, como el título y el método de envío, así como los ajustes de pantalla, como ocultar un formulario cuando se haya completado con éxito .Esto será el sujeto del correo electrónico.Esto impediría al usuario de la puesta en otra cosa que números TresJueJuevesEnviar ProgramadoMensaje de Error del MinuteroTimor-Leste (Timor Oriental)ParaPara activar licencias para las extensiones de Ninja Forms primero debes %sinstalar y activar%s la extensión que desees. La configuración de la licencia se mostrará más abajo.Para utilizar esta función, puede pegar su CSV en el área de texto de arriba.La Fecha de HoyConmuta la gavetaTogoTokelau TongaTotalBasuraTrata de seguir las especificaciones de %sPHP date() function%s, pero no todos los formatos son compatibles.Trinidad y Tobago MaMarMartesTúnez Turquía TurkmenistánIslas Turcas y Caicos TuvaluDosEscribirURLTeléfono de EE. UU.UgandaUcrania No marcadoValor de cálculo desmarcadoEn Comportamiento Básico de Formularios en la Configuración del Formulario, usted puede seleccionar fácilmente una página que le gustaría que el formulario anexa automáticamente al final del contenido de esa página. Una opción similar es disponible en cada pantalla de edición de contenidos en su barra lateral.DeshacerDeshacer todoEmiratos Árabes Unidos Reino Unido Estados Unidos Las Islas menores alejadas de los Estados Unidos Error de carga desconocido.InéditoActualizaciónActualizarActualizado el: Actualizando el Base de datos de FormulariosActualizarActualiza a Ninja Forms THREEActualizacionesActualización completaUrlUruguayUse Una Ecuación ( Avanzado) Cantidad de usoUtilice una primera opción personalizada Usa las conversiones predeterminadas de Ninja Forms.Utiliza el siguiente código corto para insertar el cálculo final: [ninja_forms_calc]Utilice los siguientes consejos para empezar a usar Ninja Forms. iVa a estar en funcionamiento en muy poco tiempo!Use esto como un campo de contraseña de registro Usa esto como un campo de contraseña de registro. Si el cuadro está marcado, los cuadros de texto contraseña y reingresar la contraseña serán salidaUsado para hacer un campo para procesamiento.usuario:Nombre de Visualización de Usuario (si está conectado)E-mail del UsuarioCorreo electrónico del Usuario (si está conectado)Entrada de usuarioNombre de usuario (si está conectado) ID de UsuarioID de usuario (si está conectado)Campo de Grupo de Información del UsuarioInformación del UsuarioCampos de información de usuarioApellido del Usuario (si está conectado)Usuario Meta (si iniciaste sesión)Valores Presentados por el Usuario Valores Presentados por UsuariosEs más probable que los usuarios llenen formularios más largos si pueden guardarlos y regresar más adelante para completarlos.

    La extensión Guardar progreso para Ninja Forms hace que esto sea rápido y sencillo.

    Uzbekistán ¿Validar como una dirección de correo electrónico? (El campo debe ser necesario)ValorVanuatu Nombre variableVenezuelaVersiónVersión %sMuy débil VietnamVerVer %sVer cambiosVer formulariosVerVer SumisiónVer SumisionesVer la lista completa de cambios Islas Vírgenes (británicas)Islas Vírgenes ( EE.UU. )Visitar la Página Web de pluginModo de Depuración de WPLenguaje de WPTamaño Máximo de Carga de WPLímite de Memoria de WPWP Multisitio ActivadoPuesto Remoto de WPVersión de WPIslas Wallis y Futuna MiNosotros haremos todo lo posible para proporcionar a cada usuario de Ninja Forms con el mejor apoyo posible. Si encuentra un problema o tiene alguna pregunta, póngase en contacto con nosotros, %splease contact us%s.Hemos añadido la opción para eliminar todos los datos de Ninja Forms (presentaciones, formularios, campos , opciones ) cuando se elimina el plugin. Lo llamamos la opción nuclear.Hemos advertido que tu formulario no tiene ningún botón Enviar. Podemos agregar uno por ti automáticamente.DébilInformación del Servidor WebMieMiércolesBienvenido a Ninja FormsBienvenido a Ninja Forms %sSáhara Occidental ¿En qué te podemos ayudar?Lo que debes intentar antes de comunicarte con Asistencia técnica¿Qué te gustaría llamar a este favorito? Qué Hay de NuevoAl crear y editar formularios, vaya directamente a la sección que más importa.¿Quién debe recibir este correo electrónico?Palabra(s)PalabrasEnvolturaY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemen Sí¡Cumples los requisitos para actualizar a Ninja Forms THREE versión Candidate! %sActualizar ahora%sTambién se pueden combinar estos para aplicaciones específicasPuede introducir ecuaciones de cálculo aquí usando campo_x donde x es el ID del campo que desea utilizar. Por ejemplo, %sfield_53 + field_28 + field_65%s.No se puede submitir el formulario sin permitir Javascript.No tienes autorización para instalar las actualizaciones de complementosNo tienes autorización.Usted no ha añadido un botón de envío a su formulario. Para tener una vista previa de un formulario debes iniciar sesión.Debe proporcionar un nombre para este favorito.Necesitas JavaScript para presentar este formulario. Por favor, activa y vuelve a intentarlo.Compraste Usted encontrará éste incluido con su correo electrónico de compra.Tu formulario se ha enviado correctamenteSu servidor no tiene fsockopen o cURL habilitado - PayPal IPN y otras secuencias de comandos que se comunican con otros servidores no funcionarán. Comuníquese con su proveedor de hosting.Su servidor no tiene la clase %sSOAP Client%s habilitado - algunos plugins de entrada que utilizan SOAP no van a funcionar como se espera.Su servidor tiene permitido cURL , fsockopen está deshabilitado.Su servidor tiene fsockopen y cURL habilitados.Su servidor tiene fsockopen y cURL discapacitados.El servidor tiene habilitado la clase de Cliente SOAP.Su versión de la extensión de carga de archivos de Ninja Forms no es compatible con la versión 2.7 de Ninja Forms. Tiene que ser al menos la versión 1.3.5. Por favor, actualice esta extensión enSu versión de la extensión de Ninja Forms de Guardar el Progreso no es compatible con la versión 2.7 de Ninja Forms. Tiene que ser por lo menos la versión 1.1.3. Por favor, actualice esta extensión enYugoslaviaZambiaZimbabue Código postalCódigo postala - Representa un tipo alfabético (AZ , az ) - Sólo permite que las letras que se introduciránrespuestabutton-secondary nf-download-allportipos restantesmarcadoCopiarpersonalizadod-m-Ydashicons dashicons-updateDuplicarfoo@wpninjas.comhr js-newsletter-list-update extral, F d Ym-d-Ym/d/Ynadadedel Producto A y del Producto B por $unoone_week_supportcontraseñaprocesandoproducto(s) para reCAPTCHAIdioma de reCAPTCHAClave secreta de reCAPTCHAConfiguración de reCAPTCHAClave de sitio de reCAPTCHATema de reCAPTCHAAjustes reCAPTCHAActualizarsmtp_porttrestítulodosdesmarcadoactualizadousuario@gmail.comversiónwp_remote_post() ha fallado. PayPal IPN no puede funcionar con su servidor.wp_remote_post() ha fallado. PayPal IPN no funcionará con el servidor. Comuníquese con su proveedor de hosting. Error:wp_remote_post() fue un éxito - PayPal IPN está funcionando.lang/ninja-forms-mr.mo000064400000271050152331132460010666 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 #&>CT$Z?0X  k! LGFI8  &2 ANk ~   '1BRh ws  0*B*m"  !> O Zfm  woVg.5F5|%Y@$ +$5Z8rMav ! -I&[   >B ^+k  ;  *@Y i w+ >Jcz%Q4$Yi"  0 ALNA Mbq%'?QkGn  7 @ NYa { ( "7+; TbWx %85X8   # 0:Z:z N *:Q;g %$J`q  +# O Ze| 5  ( 5 @%Lr[6G _m) ";K_t:P m"{%"!" DRgo!e7  !+ETm  ! , 4AQ n|#%0'7%HMnOU Lb 4 &<9v  . < H Uct % $*2 ;EUf$m( !(BJNV  & 3?[d s  0%E1k;   % ?Le{   7,Vq"  9F?e %=Mf %&+ ;Gc w    !   1 A T g }   h? ` n Qx O Q Dl < % 1FEH^< 5L ] k w  '  =HO a n z" (>Xn  !/8KRk&!   2O`Lg  )!Fh $9Lg}   #8 H R_ ~  & )6kI(/3 K Yex_(#Hl | $7$S!x  5 N[q  &EU1qW (?HWt  & 6 P >g     !(!k77*77"7!868K8a8w8+8(88 89 -9?:9z999999*9:':%@:f:y: ~::<:%:W:W;g;6;";;;; < <-<&L<s< < < <<<< = = 1= ?=M=Vm=G= >>.>(>>g>z>>>>>>>1 ?;?J?c? ?? ????@ (@2@ B@N@_@x@@$@ @r@(GApAAA(A%A"AB (B 4B(BBkB BBB BBBBB#C%CCCVC fC sC!C"C CCCCCD#D 4D@D&WD&~DD DD DD D"E'E7ERMEEE$EE F(F9FJF!ZF<|FFFFFFG G"G 2G?G+\GGGG$GGdWHSHnI/I;I9IJ%JpJ*5K`KG?LL2M$;M `MMZNGlN.NFN*OxO*=P0hP9P+P!P!Q9:QtQ4QQQQR4RBMR\RR3S5:SpS:>TqyTZT?FUAUUYV&VGW dW nW{WWWWDOX X X XXX XX^X8TYYY'YEY*Z =ZGZZZ^ZgZ}Z ZZZ[[;[. \.;\$j\\ \\ \ \\\]'8]`]r]v]] ]],]O][K^)^^(`__ _ __ __``3`I`Z`r`````!a6aaa bb0b Fb Qb[b dbnb vb b bbbb:b c"c 8c FcRcecucc cEccdbe}eeee%ee%f*8f cfNnf!ffffff g gg 'gW1g4gg6Vh4hh0h(i)8iHbii5i\iMj{j4ok+k4k.l4ll*mmm mnOndn knnnn nnnn oo&o)oIoRoXo^o~oooooo/op $p.pApVpip|ppp p pp p p%p q/qBEqfq8q Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #/ हॅशटॅग%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction Updatedकृतीसक्रिय करासक्रियजोडाAdd DescriptionAdd Formनवीन जोडाAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On Licensesअॅड-ऑन्सपत्तापत्ता 2Adds an extra class to your field element.Adds an extra class to your field wrapper.प्रबंधक ईमेलAdmin LabelAdministrationप्रगतAdvanced EquationAdvanced SettingsAdvanced Shippingअफगाणीस्तानAfter EverythingAfter FormAfter LabelAgree?अल्बानिआअल्जेरियासर्वAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.जवळजवळ पोहोचलो आहे...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.अमेरिकन सामोआएक अनपेक्षित त्रुटी आली.अँडोराअँगोलाअँग्विलाAnswerअंटार्क्टिकाAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageअँटिग्वा आणि बर्बुडाAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to Pageलागू कराअर्जेंटिनाअर्मेनियाअरुबाAttach CSVसंलग्नकेऑस्ट्रेलियाऑस्ट्रियाAuto-Total FieldsAutomatically Total Calculation Valuesउपलब्धAvailable TermsअझेरबाइजनBack To ListBack to listBackup / RestoreBackup Ninja Formsबहमसबाहरेनबांग्लादेशBarबार्बाडोसBasic Fieldsमूलभूत सेटिंग्जBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing Dateबेलारूसबेल्जियमबेलिझBelow ElementBelow Fieldबेनिनबर्म्युडाBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementभूटानबिलिंगBlank FormsबोलिवियाBosnia And Herzegowinaबोटस्वानाबोऊवेट आयलॅंडब्राझीलब्रिटीश भारतीय महासागर प्रांतब्रुनेई डॅरूस्सलामBuild Your Formबल्जेरियाबल्क क्रियाबर्किना फॅसोबुरुंडीबटणCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsकंबोडियाकामेरूनकॅनडारद्द कराकॅप वर्देCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name Labelकार्ड क्रमांकCard Number DescriptionCard Number Labelकीमन बेटेCcकेंद्रिय आफ्रिकन रिपब्लिकचॅडChange ValueCharacter(s)वर्ण शिल्लकवर्णCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation Valueचिलीचीनख्रिसमस आयलॅंडशहरClass NameClear successfully completed form?कोकोस (कीलिंग) आयलॅंडCollect PaymentकोलंबियाCommon FieldsकोमोरॉसComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.पुष्टी कराConfirm that you are not a botCongoCongo, The Democratic Republic Of Theसंपर्क अर्जमाझ्याशी संपर्क कराआमच्याशी संपर्क साधाContainerसुरु ठेवाकुक आयलँडकिंमतCost DropdownCost OptionsCost Typeकोस्टा रिकाकोट दीव्होरCould not activate license. Please verify your license keyदेशCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full Nameक्रेडीट कार्ड क्रमांकCredit Card ZipCredit Card Zip Codeश्रेयCroatia (Local Name: Hrvatska)क्युबाचलनCurrency Symbolवर्तमान पृष्ठसानुकूलCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionसायप्रसचेक प्रजासत्ताकDD-MM-YYYYdd/mm/yyyyDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xगडदData restored successfully!तारीखतयार केल्याची तारीखDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateनिष्क्रीय कराDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.डिफॉल्टDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsहटवाDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyडेनमार्कवर्णनDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?Dismissप्रदर्शित कराDisplay Form Titleप्रदर्शन नावDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerडिजिबोटीDo not show these termsदस्तऐवजीकरणDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.डोमिनिकाडोमिनिक प्रजासत्ताकझालेDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate Formइक्वेडोरसंपादित कराEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldइजिप्तEl सॅल्वाडोअरElementईमेलEmail & Actionsईमेल पत्ताEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & Actionsसमाप्ती तारीखEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.आपला ईमेल पत्ता प्रविष्ट कराEnvironmentEquationEquation (Advanced)इक्वेटोरिअल गुइएनाएरिट्रीआत्रुटीError message given if all required fields are not completedइस्टोनियाइथिओपियाEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)निर्यात कराExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)फॅरोए आयलँड्सFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredफिजिFile Upload ErrorFile Upload in Progress.File upload stopped by extension.फिनलँडप्रथम नावFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatफॉर्म्सForms DeletedForms Per Pageफ्रांसFrance, Metropolitanफ्रेंच गिनियाफ्रेंच पॉलिनेशियाफ्रेंच दक्षिणी प्रांतFriday, November 18, 2019From AddressFrom NameFull Changelogपूर्ण स्क्रिनगॅबनगॅम्बियासामान्यGeneral Settingsजॉर्जियाजर्मनीमदत मिळवाGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.सुरुवात करणेGetting started with Ninja Formsघानाजिब्राल्टरGive your form a title. This is how you'll find the form later.जाGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageग्रीसग्रीनलँडग्रेनाडाGrowing Documentationग्वादेलोपघुआमग्वाटामालागिनियागिनिया-बिसायुगयानाHTMLहायटीHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!मदतHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLहोंडूरसHoney PotHoneypot ErrorHoneypot error messageहाँग काँगHook Tagहोस्ट नावHow's It Going?हंगेरीIP पत्ताआइसलॅंडIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.आयात कराImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsभारतइंडोनिशियाInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside Elementस्थापित केलेInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)इराकआयर्लंडIs this an email address?इस्राइलIt's that easy. Or...इटलीजमाइकाजपानJavaScript disabled error messageJohn Doeजॉर्डनJust click here and select the fields you want.कझखस्तानकेनियाकीकिरिबातीकिचन सिंकKorea, Democratic People's Republic OfKorea, Republic Ofकुवैतकिरगिझस्तानLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic Republicआडनावलात्वियाLayout ElementsLayout Fieldsअधिक जाणून घ्याLearn More About Multi-Part FormsLearn More About Save ProgressलेबेनॉनLeft of ElementLeft of FieldलेसोथोलायबेरियाLibyan Arab Jamahiriyaपरवानेलिंचेनस्टाइनप्रकाशLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberसूचीList Field MappingList TypeListsलिथुआनिआलोड करीत आहेलोड करीत आहे...स्थानLogged InLong Form - लक्संबॉर्गMM-DD-YYYYYYYY/MM/DDमकाऊMacedonia, Former Yugoslav Republic Ofमाडागास्करमालावीमलेशियामालदिव्जमालीमाल्टाManage quote requests from your website easily with this remplate. You can add and remove fields as needed.मार्शल आयलँड्समार्टिनिकमौरिटानिआमॉरिशिअसMaxMax Input Nesting LevelMaximum ValueMaybe Laterमायोटीमध्यमसंदेशMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.Metaboxमॅक्सिकोMicronesia, Federated States OfMigrations and Mock Data complete. मिनिटMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic Ofमोनॅकोमॉन्गोलिआमॉन्टेनेग्रोमोंटसेर्रॅटMore to comeमोरोक्कोMove this item to the TrashमोझंबिकMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeबहुविधMy First CalculationMy Second CalculationMySQL Versionम्यानमारनावName on the cardName or fieldsनामिबिआनाउरुमदत हवी आहे?नेपाळनेदरलँड्सनेदरलँड्स अँटिल्सNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder Tabनवीन कॅलेडोनिआNew ItemNew Submissionन्यू झीलँडNewsletter Sign Up Formनिकाराग्वानायगरनायजेरियाNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms Processingनिंन्जा फॉर्म्स सबमिशनNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.निउएनाहीNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.काहीही नाहीनॉरफोक द्वीपसमूहउत्तर मॅरियाना आयलॅंडनॉर्वेNot Logged-In Messageअद्याप नाहीNot found in TrashटीपNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsओमानएकOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption Twoपर्यायOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP आवृत्तीप्रकाशित करापाकिस्तानपलाउपनामापपुआ नवीन गिनिआParagraph Textपाराग्वेParent Item:पासवर्डPassword ConfirmPassword Mismatch Labelसंकेतशब्द जुळत नाहीPayment FieldsPayment GatewaysPayment TotalPermission Deniedपेरुफिलिपाइन्सफोनPhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.Placeholderसाधा मजकूरPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.कृपया वैध ईमेल पत्ता प्रविष्ट कराPlease enter a valid email address!कृपया वैध ईमेल पत्ता प्रविष्ट करा.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsपोलंडPopulate this with the taxonomyपोर्तुगालपोस्टPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLपूर्वावलोकन कराPreview ChangesPreview FormPreview does not exist.किंमतकिंमत:Pricing Fieldsप्रक्रिया करत आहेProcessing LabelProcessing Submission Labelउत्पादनProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.प्रकाशित कराप्युर्टो रिकोखरेदी कराकतारप्रमाणQuantity for Product AQuantity for Product Bप्रमाणःQuery StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestरेडिओRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?Recaptchaपुननिर्देशित कराकाढाRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?आवश्‍यक आहेआवश्यक फिल्डRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+पूर्वस्थित कराRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsरियुनियनRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xरोमानियारशियन फेडरेशनरवांडाSMTPSOAP ClientSUHOSIN Installedसेंट किट्स आणि नेव्हिससेंट ल्युसियासेंट व्हिन्सेंट आणि ग्रेनेडीन्ससामोआसान मारिनोसाओ टोम आणि प्रिंसिपसौदी अरेबियाSaveSave & ActivateSave Field SettingsSave FormSave Optionsसेटिंग्ज जतन करा.सबमिशन जतन कराबचत केलीSaved Fieldsबचत करत आहे...Search ItemSearch Submissionsनिवडासर्व निवडाSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.निवडलेSelected ValueपाठवाSend a copy of the form to this address?सेनेगलसेरिबाServer IP Addressसेटिंग्जSettings Savedसीचेलेसशिपिंगशॉर्टकोडShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload Buttonअजून दाखवाShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.सिएरा लिऑनसिंगापूरएकलSingle CheckboxSingle CostSingle Line TextSingle Product (default)साईट URLSlovakia (Slovak Republic)स्लोव्हेनियाSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxसोलोमोन आयलॅंडसोमालिआSort as NumericSort as numericदक्षिण आफ्रिकाSouth Georgia, South Sandwich Islandsदक्षिण सुदानस्पेनSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)श्रीलंकाSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateराज्यस्थितीStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorदमदारSub SequenceविषयSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsसादर कराSubmit button text after timer expiresSubmit via AJAX (without page reload)?सबमिट केलेSubmitted BySubmitted by: Submitted onSubmitted on: Subscribeयशस्वी संदेशसुदानसुरिनावस्वालबार्ड आणि जान मायेन आयलँडस्वाझिलँडस्वीडनस्वित्झर्लंडSyrian Arab RepublicSystemसिस्टिम स्थितीTHREE is coming!तैवानताजिकिस्तानTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfकरTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListमजकूरText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxथायलंडThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldही आवश्यक फील्ड आहे.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersतीनTimed SubmitTimer error messageTimor-Leste (East Timor)प्रतिTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerटोगोटोकेलाऊटोंगाएकूणTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.त्रिनिदाद आणि टोबॅगोट्युनिशियाटर्कीतुर्कमेनस्तानटर्क्स आणि काइकॉस आयलँड्सतूवालूदोनप्रकारURLUS Phoneयुगांडायुक्रेनUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.पूर्ववत कराUndo Allयूनायटेड अरब एमिरेट्सयुनायटेड किंग्डमयूनायटेड स्टेट्सUnited States Minor Outlying IslandsUnknown upload error.Unpublishedअपडेट कराUpdate ItemUpdated on: Updating Form Databaseअपग्रेड कराUpgrade to Ninja Forms THREEश्रेणीसुधारणाUpgrades CompleteURLउरुग्वेUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.वापरकर्ताUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    उझबेकिस्तानValidate as an email address? (Field must be required)ValueवानुआटुVariable Nameवेनेझूएलाआवृत्तीVersion %sVery weakViet NamपहाView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full Changelogवर्जिन आयलँड (ब्रिटीश)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP Versionवॉलिस आणि फ्‍यूचूना आयलँडWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.कमकुवतWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sपश्चिमी सहाराWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDयेमेनहोयYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.आपला अर्ज यशस्वीरित्या सबमिट केला.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at युगोस्लाव्हियाझाम्बियाझिंबाब्वेझिपपिन कोडa - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allद्वारेवर्ण शिल्लकcheckedकॉपीसानुकूलd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Yकाहीही नाहीयापैकीof Product A and of Product B for $एकone_week_supportपासवर्डप्रक्रिया करत आहेproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsरीफ्रेश कराsmtp_portतीनशीर्षकदोनuncheckedअद्यतनित केलेuser@gmail.comआवृत्तीwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.lang/ninja-forms-el.po000064400000743116152331132460010662 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Ειδοποίηση: Απαιτείται η JavaScript για αυτό το περιεχόμενο." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Προσπαθείς να κλέψεις;" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Τα πεδία που είναι επισημασμένα με %s*%s είναι υποχρεωτικά" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Βεβαιωθείτε ότι όλα τα υποχρεωτικά πεδία έχουν συμπληρωθεί." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Αυτό το πεδίο είναι υποχρεωτικό" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Παρακαλείστε να απαντήσετε σωστά στην ερώτηση για την καταπολέμηση της ανεπιθύμητης αλληλογραφίας." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Παρακαλείστε να αφήστε κενό το πεδίο για την ανεπιθύμητη αλληλογραφία." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Παρακαλείστε να περιμένετε μέχρι να υποβληθεί η φόρμα." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Δεν μπορείτε να υποβάλετε τη φόρμα όταν η Javascript δεν είναι ενεργοποιημένη." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Εισαγάγετε μια έγκυρη διεύθυνση email." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Σε εξέλιξη" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Οι κωδικοί πρόσβασης που έχουν εισαχθεί δεν ταιριάζουν." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Προσθήκη φόρμας" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Επιλέξτε μια φόρμα ή πληκτρολογήστε για να γίνει αναζήτηση" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Άκυρο" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Εισαγωγή" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Μη έγκυρο αναγνωριστικό φόρμας" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Αύξηση μετατροπών" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Γνωρίζατε ότι μπορείτε να αυξήσετε τη μετατροπή σπάζοντας μεγάλες φόρμες σε " "μικρότερα, πιο εύκολα στη συμπλήρωση τμήματα;

    Η επέκταση Multi-Part Forms " "του Ninja Forms κάνει αυτή τη διαδικασία γρήγορη και εύκολη.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Μάθετε περισσότερα για το Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Ίσως αργότερα" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Απόρριψη" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Οι χρήστες είναι πιο πιθανό συμπληρώσουν μια μακροσκελή φόρμα όταν έχουν τη " "δυνατότητα να την αποθηκεύσουν και να ολοκληρώσουν την υποβολή τους " "αργότερα.

    Η επέκταση Save Progress του Ninja Forms κάνει αυτή τη διαδικασία " "γρήγορη και εύκολη.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Μάθετε περισσότερα για το Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Email" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Όνομα Από" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Όνομα ή πεδία" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Τα email θα εμφανίζονται να προέρχονται από αυτό το όνομα." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Διεύθυνση από" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Μία διεύθυνση ή πεδίο διεύθυνσης" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Τα email θα εμφανίζονται να προέρχονται από αυτή τη διεύθυνση email." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Προς" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Διευθύνσεις email ή κάντε αναζήτηση για ένα πεδίο" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Σε ποιον πρέπει να σταλεί αυτό το email;" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Θέμα" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Κείμενο θέματος ή κάντε αναζήτηση για ένα πεδίο" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Αυτό θα είναι το θέμα του email." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Μήνυμα email" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Συνημμένα" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV υποβολής" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Προχωρημένες Ρυθμίσεις" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Μορφή" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Απλό κείμενο" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Απάντηση σε" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Κοιν." #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Ιδ.κοιν." #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Aνακατεύθυνση" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Μήνυμα επιτυχίας" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Πριν τη φόρμα" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Μετά τη φόρμα" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Τοποθεσία" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Κείμενο" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "διπλότυπο" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Απενεργοποίηση" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Ενεργοποίηση" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Επεξεργασία" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Διαγραφή" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Αντίγραφο" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Όνομα" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Τύπος" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Ημερομηνία ενημέρωσης" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Προβολή όλων των τύπων" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Λήψη περισσότερων τύπων" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email και ενέργειες" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Προσθήκη Νέου" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Νέα ενέργεια" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Επεξεργασία ενέργειας" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Επιστροφή στη λίστα" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Όνομα ενέργειας" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Λήψη περισσότερων ενεργειών" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Η ενέργεια ενημερώθηκε" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Επιλέξτε ένα πεδίο ή πληκτρολογήστε για να γίνει αναζήτηση" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Εισαγωγή πεδίου" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Εισαγωγή όλων των πεδίων" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Επιλέξτε μια φόρμα για προβολή των υποβολών" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Δεν βρέθηκαν υποβολές" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Υποβολές" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Υποβολή" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Προσθήκη νέας υποβολής" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Επεξεργασία υποβολής" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Νέα υποβολή" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Προβολή υποβολής" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Αναζήτηση υποβολών" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Δεν βρέθηκαν υποβολές στα απορρίμματα" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Ημερομηνία" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Επεξεργασία αυτού του αντικειμένου" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Εξαγωγή αυτού του στοιχείου" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Εξαγωγή" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Μετακίνηση στο Καλάθι Αχρήστων " #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Καλάθι Αχρήστων" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Μεταφορά από το Καλάθι Αχρήστων " #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Επαναφορά" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Οριστική Διαγραφή" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Οριστική Διαγραφή" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Αδημοσίευτο" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr " πριν από %s" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Έχει υποβληθεί" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Επιλέξτε μια φόρμα" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Ημερομηνία έναρξης" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Ημερομηνία λήξης" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "Το %s ενημερώθηκε." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Το προσαρμοσμένο πεδίο ενημερώνεται." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Προσαρμοσμένο πεδίο διαγράφηκε." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s επανήλθε στην αναθεώρηση της %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "Το %s δημοσιεύτηκε." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "Το %s αποθηκεύθηκε." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s υποβλήθηκε. Προεπισκόπηση%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s προγραμματίστηκε για: %2$s. Προεπισκόπηση%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s προσχέδιο ενημερώθηκε. Προεπισκόπηση%3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Λήψη όλων των υποβολών" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Επιστροφή στη λίστα" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Τιμές που υποβλήθηκα από τον χρήστη" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Στατιστικά υποβολών" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Πεδίο" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Τιμή" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Κατάσταση" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Φόρμα:" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Υποβλήθηκε στις" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Τροποποιήθηκε στις" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Υποβλήθηκε από" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Ενημέρωση" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Ημερομηνία υποβολής" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Το Ninja Forms δεν μπορεί να ενεργοποιηθεί μέσω δικτύου. Επισκεφθείτε τον " "πίνακα εργασιών κάθε ιστότοπου για να ενεργοποιήσετε την προσθήκη." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Θα το βρείτε να περιλαμβάνεται στο email αγοράς σας." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Κλειδί" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Δεν ήταν δυνατή η ενεργοποίηση της άδειας χρήσης. Επαληθεύστε το κλειδί της άδειας χρήσης σας" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Απενεργοποίηση άδειας χρήσης" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Τιμές που υποβάλλονται από το χρήστη:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Σας ευχαριστούμε που συμπληρώσατε αυτή τη φόρμα." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Υπάρχει διαθέσιμη μια νέα έκδοση του %1$s. Προβολή λεπτομερειών της έκδοσης %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Υπάρχει διαθέσιμη μια νέα έκδοση του %1$s. Κάντε προβολή των λεπτομερειών της έκδοσης " "%3$s ή κάντε άμεση ενημέρωση." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Δεν έχετε άδεια να εγκαταστήσετε ενημερώσεις προσθηκών." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Σφάλμα" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Τυπικά πεδία" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Στοιχεία διάταξης" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Δημιουργία δημοσίευσης" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Παρακαλούμε βαθμολογήστε το %sNinja Forms%s %s στο %sWordPress.org%s για να " "μας βοηθήσετε να προσφέρουμε αυτή την προσθήκη δωρεάν. Η ομάδα WP Ninjas σας ευχαριστεί!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Εμφάνιση τίτλου" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Όχι" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Φόρμες" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Όλες οι φόρμες" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Αναβαθμίσεις του Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Αναβαθμίσεις" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Εισαγωγή/Εξαγωγή" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Εισαγωγή / Εξαγωγή" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ρυθμίσεις Ninja Form" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Ρυθμίσεις" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Κατάσταση Συστήματος" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Πρόσθετα" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Προεπισκόπηση" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Αποθήκευση" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "χαρακτήρας(ες) απέμεινε(αν)" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Να μην εμφανιστούν αυτοί οι όροι" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Αποθήκευση επιλογών" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Προεπισκόπηση φόρμας" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Αναβάθμιση στο Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Έχετε το δικαίωμα να κάνετε αναβάθμιση στο Ninja Forms THREE Release " "Candidate! %sΑναβάθμιση τώρα%s " #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "Έρχεται η THREE!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Έρχεται σημαντική αναβάθμιση για το Ninja Forms. %sΜάθετε περισσότερα για τις " "νέες δυνατότητες, την προς τα πίσω συμβατότητα και διαβάστε απαντήσεις σε " "συχνές ερωτήσεις.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Πώς πάμε;" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Σας ευχαριστούμε που χρησιμοποιείτε το Ninja Forms! Ελπίζουμε να βρήκατε όλα " "όσα χρειάζεστε, αν όμως έχετε απορίες:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Ελέγξτε την τεκμηρίωσή μας" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Λάβετε βοήθεια" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Επεξεργασία στοιχείου μενού" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Επιλογή όλων" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Προσάρτηση ενός Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Πώς θέλετε να ονομάσετε αυτό το αγαπημένο;" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Πρέπει να δώσετε ένα όνομα για αυτό το αγαπημένο." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Είστε βέβαιοι ότι θέλετε απενεργοποίηση όλων των αδειών;" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Επαναφορά της διαδικασίας μετατροπής φόρμας για την έκδοση v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Να καταργηθούν ΟΛΑ τα δεδομένα του Ninja Forms μετά την κατάργηση εγκατάστασης;" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Επεξεργασία φόρμας" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Αποθηκεύτηκε" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Αποθήκευση..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Κατάργηση αυτού του πεδίου; Θα καταργηθεί ακόμα και αν δεν κάνετε αποθήκευση." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Προβολή υποβολών" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Γίνεται επεξεργασία Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Γίνεται επεξεργασία" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Γίνεται φόρτωση..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Δεν έχει καθοριστεί ενέργεια..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Η διαδικασία έχει ξεκινήσει, κάντε λίγο υπομονή. Ίσως χρειαστούν μερικά " "λεπτά. Θα ανακατευθυνθείτε αυτόματα όταν ολοκληρωθεί η διαδικασία." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Καλώς ορίσατε στο Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Σας ευχαριστούμε για την ενημέρωση! Το Ninja Forms %s κάνει τη δημιουργία " "φορμών πανεύκολη δουλειά!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Καλώς ορίσατε στο Ninja Forms " #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Αρχείο καταγραφής αλλαγών Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Πρώτα βήματα με το Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Οι άνθρωποι που δημιουργούν Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Τι νέο υπάρχει" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Ξεκινώντας" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Πόντοι" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Έκδοση %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Μια απλοποιημένη και πιο ισχυρή εμπειρία δημιουργίας φορμών." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Καρτέλα Νέο Πρόγραμμα Κατασκευής" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Κατά τη δημιουργία και επεξεργασία φορμών, πηγαίνετε απευθείας στην ενότητα " "που έχει μεγαλύτερη σημασία." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Καλύτερα οργανωμένες ρυθμίσεις πεδίων" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Οι πιο κοινές ρυθμίσεις εμφανίζονται αμέσως, ενώ άλλες, μη ουσιώδεις, " "ρυθμίσεις είναι κρυμμένες μέσα σε επεκτάσιμες ενότητες." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Βελτιωμένη σαφήνεια" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Μαζί με την καρτέλα \"Δημιουργήστε τη φόρμα σας\", αντικαταστήσαμε τις " "\"Ειδοποιήσεις\" με το \"Email & Ενέργειες.\" Αυτή είναι μια πολύ πιο σαφής " "ένδειξη του τι μπορεί να γίνει σε αυτήν την κάρτα." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Αφαίρεση όλων των δεδομένων Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Προσθέσαμε την επιλογή αφαίρεσης όλων των δεδομένων Ninja Forms (υποβολές, " "φόρμες, πεδία, επιλογές), όταν διαγράφετε την προσθήκη. Το ονομάζουμε " "πυρηνική επιλογή." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Καλύτερη διαχείριση αδειών χρήσης" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Απενεργοποίηση των αδειών χρήσης επεκτάσεων του Ninja Forms μεμονωμένα ή ως " "ομάδα από την καρτέλα ρυθμίσεων." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Περισσότερα προσεχώς" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Οι ενημερώσεις διασύνδεσης σε αυτή την έκδοση θέτουν τις βάσεις για μερικές " "μεγάλες βελτιώσεις στο μέλλον. Η έκδοση 3.0 θα βασιστεί σε αυτές τις αλλαγές " "για να κάνει το Ninja Forms ένα ακόμη πιο σταθερό, ισχυρό και φιλικό προς το " "χρήστη πρόγραμμα κατασκευής φορμών." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Τεκμηρίωση" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Ρίξτε μια ματιά στη λεπτομερή τεκμηρίωση του Ninja Forms παρακάτω." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Τεκμηρίωση Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Λήψη υποστήριξης" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Επιστροφή στο Ninja Forms " #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Προβολή του πλήρους αρχείου καταγραφής αλλαγών" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Πλήρες αρχείο καταγραφής αλλαγών" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Μετάβαση στο Ninja Forms " #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Χρησιμοποιήστε τις παρακάτω συμβουλές για να αρχίσετε να χρησιμοποιείτε το " "Ninja Forms. Θα χρησιμοποιείτε το πρόγραμμα σε ελάχιστο χρόνο." #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Τα πάντα σχετικά με τις φόρμες" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Το μενού Φόρμες είναι το σημείο πρόσβασής σας για να κάνετε οτιδήποτε στο " "Ninja Forms. Έχουμε ήδη δημιουργήσει την πρώτη σας %sφόρμα επικοινωνίας%s " "ώστε να έχετε ένα παράδειγμα. Μπορείτε επίσης να δημιουργήσετε τη δική σας " "κάνοντας κλικ στο %sΠροσθήκη νέας%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Δημιουργία της φόρμας σας" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Εδώ θα κατασκευάσετε τη φόρμα σας προσθέτοντας πεδία και σύροντάς τα με τη " "σειρά που θέλετε να εμφανίζονται. Κάθε πεδίο θα έχει μια ποικιλία από " "επιλογές, όπως η ετικέτα, η θέση ετικέτας, και το σύμβολο κράτησης θέσης." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Email & Ενέργειες" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Αν θέλετε η φόρμα σας να σας ειδοποιεί μέσω email όταν ένας χρήστης κάνει " "κλικ στο κουμπί Υποβολή, μπορείτε να κάνετε τις σχετικές ρυθμίσεις σε αυτήν " "την καρτέλα. Μπορείτε να δημιουργήσετε έναν απεριόριστο αριθμό από email, " "συμπεριλαμβανομένων των email που αποστέλλονται στο χρήστη που συμπλήρωσε τη φόρμα." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Αυτή η καρτέλα περιέχει γενικές ρυθμίσεις για τη φόρμα, όπως ο τίτλος και η " "μέθοδος υποβολής, καθώς και ρυθμίσεις προβολής, όπως η απόκρυψη μιας φόρμας " "όταν θα έχει ολοκληρωθεί με επιτυχία." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Εμφάνιση της φόρμας σας" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Επισύναψη σε σελίδα" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Στη Βασική Συμπεριφορά Φόρμας στις Ρυθμίσεις Φόρμας μπορείτε εύκολα να " "επιλέξετε μια σελίδα στην οποία θα θέλατε η φόρμα να επισυνάπτεται αυτόματα " "στο τέλος του περιεχομένου της σελίδας. Μια παρόμοια επιλογή είναι διαθέσιμη " "στην πλευρική γραμμή κάθε οθόνης επεξεργασίας περιεχομένου." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Σύντομος κωδικός" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Τοποθετήστε το %s σε οποιαδήποτε περιοχή δέχεται σύντομους κωδικούς για να " "εμφανίζετε τη φόρμα σας όπου εσείς θέλετε. Ακόμη και στο κέντρο της σελίδας " "σας ή του περιεχομένου των δημοσιεύσεων." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Το Ninja Forms διαθέτει ένα widget που μπορείτε να τοποθετείτε σε οποιαδήποτε " "κατάλληλη περιοχή του ιστότοπού σας και να επιλέγετε ακριβώς ποια φόρμα θα " "θέλατε να εμφανίζεται σε αυτό το χώρο." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Λειτουργία προτύπου" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Το Ninja Forms διαθέτει επίσης μια απλή λειτουργία προτύπων που μπορεί να " "τοποθετηθεί απευθείας σε ένα αρχείο προτύπου php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Χρειάζεστε βοήθεια;" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Αυξανόμενη τεκμηρίωση" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Διατίθεται τεκμηρίωση η οποία καλύπτει τα πάντα από την %sΑντιμετώπιση " "προβλημάτων%s έως το %sAPI του Προγραμματιστή%s. Νέα έγγραφα προστίθενται συνεχώς." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Η καλύτερη υποστήριξη στον κλάδο" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Κάνουμε ό,τι μπορούμε για να προσφέρουμε σε κάθε χρήστη του Ninja Forms την " "καλύτερη δυνατή υποστήριξη. Αν αντιμετωπίσετε κάποιο πρόβλημα ή έχετε " "ερωτήσεις, %sεπικοινωνήστε μαζί μας%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Σας ευχαριστούμε που πραγματοποιήσατε την ενημέρωση με την τελευταία έκδοση! " "Το Ninja Forms %s είναι έτοιμο να κάνει την εμπειρία σας στη διαχείριση " "υποβολών απολαυστική!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Το Ninja Forms έχει δημιουργηθεί από μια παγκόσμια ομάδα προγραμματιστών που " "έχει ως στόχο να προσφέρει τη Νο 1 προσθήκη δημιουργίας φορμών της κοινότητας WordPress." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Δεν βρέθηκε έγκυρο αρχείο καταγραφής αλλαγών." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Προβολή %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Απενεργοποίηση αυτόματης συμπλήρωσης από τον browser" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "Τιμή υπολογισμού %sεπιλεγμένου%s" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Αυτή είναι η τιμή που θα χρησιμοποιηθεί αν είναι %sεπιλεγμένο%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "Τιμή υπολογισμού %sμη επιλεγμένου%s" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Αυτή είναι η τιμή που θα χρησιμοποιηθεί αν είναι %sμη επιλεγμένο%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Να συμπεριληφθεί στο αυτόματο σύνολο; (Αν είναι ενεργοποιημένο)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Προσαρμοσμένες κλάσεις CSS" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Πριν από τα πάντα" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Πριν την ετικέτα" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Μετά την ετικέτα" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Μετά από τα πάντα" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Αν έχει ενεργοποιηθεί το \"κείμενο περιγραφής\", θα υπάρχει ένα αγγλικό " "ερωτηματικό %s τοποθετημένο δίπλα από το πεδίο εισόδου. Αν κάνετε κατάδειξη " "αυτού του αγγλικού ερωτηματικού, θα εμφανιστεί το κείμενο περιγραφής." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Προσθήκη περιγραφής" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Θέση περιγραφής" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Περιεχόμενο περιγραφής" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Αν έχει ενεργοποιηθεί το \"κείμενο βοήθειας\", θα υπάρχει ένα αγγλικό " "ερωτηματικό %s τοποθετημένο δίπλα από το πεδίο εισόδου. Αν κάνετε κατάδειξη " "αυτού του αγγλικού ερωτηματικού, θα εμφανιστεί το κείμενο βοήθειας." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Εμφάνιση κειμένου βοήθειας" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Κείμενο βοήθειας" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Αν αφήσετε το πλαίσιο κενό, δεν θα χρησιμοποιηθεί κανένα όριο" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Περιορισμός εισόδου σε αυτό τον αριθμό" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "από" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Χαρακτήρες" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Λέξεις" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Κείμενο που θα εμφανίζεται μετά τον μετρητή χαρακτήρων/λέξεων" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Αριστερά από το στοιχείο" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Επάνω από το στοιχείο" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Κάτω από το στοιχείο" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Δεξιά από το στοιχείο" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Μέσα στο στοιχείο" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Θέση ετικέτας" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Αναγνωριστικό πεδίου" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Ρυθμίσεις περιορισμού" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Ρυθμίσεις υπολογισμού" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Αφαίρεση" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Να συμπληρωθεί με την ταξινομία" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Κανένα" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Ενδεικτικό στοιχείο" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Απαιτείται" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Αποθήκευση ρυθμίσεων πεδίου" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Ταξινόμηση ως αριθμού" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Αν είναι επιλεγμένο αυτό το πλαίσιο, αυτή η στήλη στον πίνακα υποβολών θα " "ταξινομείται ως αριθμός." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Ετικέτα διαχειριστή" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Αυτή είναι η ετικέτα που χρησιμοποιείται όταν γίνεται προβολή/επεξεργασία/εξαγωγή υποβολών." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Χρέωση" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Αποστολή" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Προσαρμογή" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Ομάδα πεδίων πληροφοριών χρήστη" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Ομάδα προσαρμοσμένων πεδίων" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Συμπεριλάβετε αυτές της πληροφορίες όταν ζητάτε υποστήριξη:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Πάρε την Αναφορά του Συστήματος" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Περιβάλλον" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL Αρχικής" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Site URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Έκδοση Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Έκδοση WP" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite ενεργοποιημένο" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Ναι" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Όχι" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Πληροφορίες web server" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Έκδοση PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "Ρύθμιση τοποθεσίας PHP" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Κατάσταση Αποσφαλμάτωσης WordPress" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Γλώσσα WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Προεπιλογή" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Μέγιστο μέγεθος αρχείων αποστολής WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Μέγιστο επίπεδο ένθεσης εισόδου" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Μέγιστες Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN αντικαταστήθηκε " #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Προεπιλογή ζώνη ώρας" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Η προεπιλεγμένη ζώνη ώρας είναι %s - θα μπορούσε να είναι UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Η προεπιλεγμένη ζώνη ώρας είναι %s " #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Ο server σας έχει ενεργοποιημένα τα fsockopen και cURL." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Ο server σας έχει ενεργοποιημένο το fsockopen, το cURL είναι απενεργοποιημένο." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Ο server σας έχει ενεργοποιημένο το cURL, το fsockopen είναι απενεργοποιημένο." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Ο server σας δεν έχει το fscockopen ή to cURL ενεργοποιημένο. Το PayPal IPN " "και άλλα scripts που επικοινωνούν με άλλους servers δεν θα λειτουργήσουν. " "Παρακαλώ επικοινωνήστε με τον διαχειριστή του συστήματός." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Πελάτης SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Ο server σας έχει ενεργοποιημένη την κλάση πελάτη SOAP." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Ο server σας δεν έχει ενεργοποιημένη την κλάση %sπελάτη SOAP%s - ορισμένες " "προσθήκες πύλης που χρησιμοποιούν SOAP ίσως να μην λειτουργούν κατά τα αναμενόμενα." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "Το wp_remote_post() ήταν επιτυχημένο - το PayPal IPN λειτουργεί κανονικά." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "Το wp_remote_post() απέτυχε. Το PayPal IPN δεν λειτουργεί στον server σας. " "Επικοινωνήστε με τον πάροχο φιλοξενίας σας. Σφάλμα:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "Το wp_remote_post() απέτυχε. Το PayPal IPN ίσως να μην λειτουργεί στον server σας." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Προσθήκες" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Εγκατεστημένες προσθήκες" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Επισκέψου την αρχική σελίδα των plugin" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "από" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "έκδοση" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Δώστε στη φόρμα σας έναν τίτλο. Με αυτό τον τρόπο θα βρίσκετε τη φόρμα σας στο μέλλον." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Δεν έχετε προσθέσει κουμπί υποβολής στη φόρμα σας." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Μάσκα εισόδου" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Οποιοσδήποτε χαρακτήρας τοποθετηθεί στο πλαίσιο \"προσαρμοσμένη μάσκα\" και " "δεν περιλαμβάνεται στην παρακάτω λίστα θα καταχωρηθεί αυτόματα για τον " "χρήστη, καθώς αυτός πληκτρολογεί, και δεν θα μπορεί να αφαιρεθεί" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Ακολουθούν οι προκαθορισμένοι χαρακτήρες μάρκας" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Αναπαριστά έναν χαρακτήρα του λατινικού αλφαβήτου (A-Z,a-z) - Επιτρέπει " "μόνο την εισαγωγή λατινικών χαρακτήρων" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Αναπαριστά έναν αριθμητικό χαρακτήρα (0-9) - Επιτρέπει μόνο την εισαγωγή αριθμών" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Αναπαριστά έναν αλφαριθμητικό χαρακτήρα (A-Z,a-z,0-9) - Επιτρέπει την " "εισαγωγή και αριθμών και λατινικών χαρακτήρων" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Έτσι, αν π.χ. θέλετε να δημιουργήσετε μια μάσκα για έναν αμερικάνικο αριθμό " "μητρώου κοινωνικής ασφάλισης, θα πληκτρολογήσετε 999-99-9999 στο πλαίσιο" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "Τα 9άρια αντιπροσωπεύουν αριθμούς και οι παύλες (-) θα προστεθούν αυτόματα" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Έτσι δεν θα επιτρέπεται στον χρήστη να προσθέσει οτιδήποτε άλλο εκτός από αριθμούς" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Μπορείτε επίσης να τα συνδυάσετε για συγκεκριμένες εφαρμογές" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Για παράδειγμα, αν έχετε ένα κλειδί προϊόντος με τη μορφή A4B51.989.B.43C, " "μπορείτε να το αποδώσετε ως μάσκα με τη μορφή: a9a99.999.a.99a, η οποία θα " "κάνει υποχρεωτική την εισαγωγή λατινικών χαρακτήρων στη θέση των a και " "αριθμών στη θέση των 9" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Καθορισμένα πεδία" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Αγαπημένα πεδία" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Πεδία πληρωμής" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Πεδία προτύπων" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Πληροφορίες χρήστη" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Όλα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Μαζικές ενέργειες" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Εφαρμογή" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Φόρμες ανά σελίδα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Πήγαινε" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Μεταβείτε στην πρώτη σελιδα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Πηγαίνετε στην προηγούμενη σελίδα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Τρέχουσα σελίδα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Πηγαίνετε στην επόμενη σελίδα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Πηγαίνετε στην τελευταία σελίδα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Τίτλος φόρμας" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Διαγραφή αυτής της φόρμας" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Διπλότυπη φόρμα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Οι φόρμες διαγράφηκαν" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Η φόρμα διαγράφηκε" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Προεπισκόπηση φόρμας" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Προβολή" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Εμφάνιση τίτλου φόρμας" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Προσθήκη φόρμας σε αυτή τη σελίδα" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Υποβολή μέσω AJAX (χωρίς εκ νέου φόρτωση σελίδας);" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Καθάρισμα επιτυχώς συμπληρωμένης φόρμας;" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Αν επιλεγεί αυτό το πλαίσιο, το Ninja Forms θα καθαρίζει τις τιμές της φόρμας " "μετά την επιτυχή υποβολή της." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Απόκρυψη επιτυχώς συμπληρωμένης φόρμας;" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Αν επιλεγεί αυτό το πλαίσιο, το Ninja Forms θα κάνει απόκρυψη της φόρμας μετά " "την επιτυχή υποβολή της." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Περιορισμοί" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Απαίτηση σύνδεσης του χρήστη για προβολή της φόρμας;" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Μήνυμα μη σύνδεσης" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Μήνυμα που εμφανίζεται στους χρήστες αν είναι επιλεγμένο το παραπάνω πλαίσιο " "ελέγχου \"σύνδεσης\" και αυτοί δεν είναι συνδεδεμένοι." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Περιορισμός υποβολών" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Επιλέξτε τον αριθμό υποβολών που θα δέχεται αυτή η φόρμα. Να παραμείνει κενό " "αν δεν υπάρχει όριο." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Μήνυμα υπέρβασης ορίου" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Καταχωρήστε ένα μήνυμα που θέλετε να εμφανίζεται όταν αυτή η φόρμα έχει " "φτάσει το όριο υποβολών της και δεν δέχεται νέες υποβολές." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Οι ρυθμίσεις φόρμας αποθηκεύτηκαν" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Βασικές Ρυθμίσεις" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Εδώ προστίθεται βασική βοήθεια για το Ninja Forms." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Επεκτείνετε το Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Η τεκμηρίωση θα είναι σύντομα διαθέσιμη." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Ενεργά Φίλτρα" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Εγκατεστημένο" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Μάθετε Περισσότερα" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup / Επαναφορά" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup του Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Επαναφορά του Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Τα δεδομένα επανήλθαν με επιτυχία!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Εισαγωγή αγαπημένων πεδίων" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Επιλέξτε ένα αρχείο" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Εισαγωγή αγαπημένων" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Δεν βρέθηκαν αγαπημένα πεδία" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Εξαγωγή αγαπημένων πεδίων" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Εξαγωγή πεδίων" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Επιλέξτε αγαπημένα πεδία για εξαγωγή." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Η εισαγωγή των αγαπημένων έγινε με επιτυχία." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Επιλέξτε ένα έγκυρο αρχείο αγαπημένων πεδίων." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Εισαγωγή μιας φόρμας" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Εισαγωγή φόρμας" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Εξαγωγή μιας φόρμας" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Εξαγωγή φόρμας" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Επιλέξτε μια φόρμα." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Η εισαγωγή της φόρμας έγινε με επιτυχία." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Επιλέξτε ένα έγκυρο αρχείο εξαχθείσας φόρμας." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Εισαγωγή / Εξαγωγή υποβολών" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Ρυθμίσεις ημερομηνίας" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Γενικά" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Γενικές Ρυθμίσεις" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Έκδοση" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Μορφή Ημερομηνίας" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Προσπαθεί να τηρήσει τις προδιαγραφές της %sσυνάρτησης PHP date()%s, αλλά δεν " "υποστηρίζεται κάθε μορφή." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Σύμβολο νομίσματος" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Ρυθμίσεις reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Κλειδί ιστότοπου reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Αποκτήστε ένα κλειδί ιστότοπου για το domain σας, με την εγγραφή σας %sεδώ%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Μυστικό κλειδί reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Γλώσσα reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Η γλώσσα που χρησιμοποιείται από το reCAPTCHA. Για να βρείτε τον κωδικό για " "τη γλώσσα σας, κάντε κλικ %sεδώ%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Αν επιλεγεί αυτό το πλαίσιο, ΟΛΑ τα δεδομένα του Ninja Forms θα καταργηθούν " "από τη βάση δεδομένων μετά τη διαγραφή. %sΔεν θα υπάρχει η δυνατότητα " "ανάκτησης κανενός δεδομένου υποβολής.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Απενεργοποίηση ειδοποιήσεων διαχειριστή" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Ρυθμίστε το ώστε να μην ξαναδείτε ποτέ μια ειδοποίηση διαχειριστή από το " "Ninja Forms. Καταργήστε την επιλογή του για να τις βλέπετε και πάλι." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Αυτή η ρύθμιση θα καταργήσει ΕΝΤΕΛΩΣ όλα όσα σχετίζονται με το Ninja Forms " "μόλις διαγραφεί η προσθήκη. Σε αυτά περιλαμβάνονται οι ΥΠΟΒΟΛΕΣ και οι " "ΦΟΡΜΕΣ. Αυτό δεν μπορεί να αναιρεθεί." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Συνέχεια" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Οι ρυθμίσεις αποθηκεύτηκαν" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Ετικέτες" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Ετικέτες μηνυμάτων" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Ετικέτα απαιτούμενου πεδίου" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Σύμβολο απαιτούμενου πεδίου" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Μήνυμα σφάλματος που εμφανίζεται αν δεν συμπληρωθούν όλα τα απαραίτητα πεδία" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Σφάλμα απαιτούμενου πεδίου" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Μήνυμα σφάλματος κατά των ανεπιθύμητων" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Μήνυμα σφάλματος honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Μήνυμα σφάλματος χρονοδιακόπτη" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Μήνυμα σφάλματος απενεργοποιημένης JavaScript" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Εισαγάγετε μια έγκυρη διεύθυνση email" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Ετικέτα επεξεργασίας υποβολής" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Αυτό το μήνυμα εμφανίζεται μέσα στο κουμπί υποβολής όταν ένας χρήσης κάνει " "κλικ στην \"Υποβολή\", για να τον ενημερώσει ότι γίνεται η υποβολή." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Ετικέτα ασυμφωνίας κωδικού πρόσβασης" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Αυτό το μήνυμα εμφανίζεται σε έναν χρήστη όταν τοποθετούνται στο πεδίο " "κωδικού πρόσβασης τιμές που δεν ταιριάζουν μεταξύ τους." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Άδειες χρήσης" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Αποθήκευση και ενεργοποίηση" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Απενεργοποίηση όλων των αδειών" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Για να ενεργοποιήσετε άδειες για επεκτάσεις του Ninja Forms, θα πρέπει πρώτα " "να κάνετε %sεγκατάσταση και ενεργοποίηση%s της επιλεγμένης επέκτασης. Στη " "συνέχεια, θα εμφανιστούν παρακάτω οι ρυθμίσεις αδειών." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Επαναφορά μετατροπής φόρμας" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Επαναφορά μετατροπής φόρμας" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Αν οι φόρμες σας \"εξαφανίστηκαν\" μετά την ενημέρωση στην έκδοση 2.9, αυτό " "το κουμπί θα επιχειρήσει να επαναλάβει τη μετατροπή των παλιών φορμών σας, " "ώστε να εμφανίζονται στην έκδοση 2.9. Όλες οι τρέχουσες φόρμες θα " "παραμείνουν στον πίνακα \"Όλες οι φόρμες\"." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Όλες οι τρέχουσες φόρμες θα παραμείνουν στον πίνακα \"Όλες οι φόρμες\". Σε " "κάποιες περιπτώσεις, ίσως προκύψουν διπλότυπα ορισμένων φορμών κατά τη " "διάρκεια αυτής της διαδικασίας." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Email διαχειριστή" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Email χρήστη" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Το Ninja Forms πρέπει να αναβαθμίσει τις ειδοποιήσεις φορμών σας, κάντε κλικ " "%sεδώ%s για να αρχίσει η αναβάθμιση." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Το Ninja Forms πρέπει να ενημερώσει τις ρυθμίσεις email σας, κάντε κλικ " "%sεδώ%s για να αρχίσει η αναβάθμιση." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Το Ninja Forms πρέπει να αναβαθμίσει τον πίνακα υποβολών, κάντε κλικ %sεδώ%s " "για να αρχίσει η αναβάθμιση." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Σας ευχαριστούμε που ενημερώσατε το Ninja Forms στην έκδοση 2.7. Παρακαλούμε " "να ενημερώσετε τυχόν επεκτάσεις του Ninja Forms από " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Η έκδοσή σας της επέκτασης File Upload του Ninja Forms δεν είναι συμβατή με " "την έκδοση 2.7 του Ninja Forms. Πρέπει να είναι τουλάχιστον έκδοσης 1.3.5. " "Παρακαλούμε να ενημερώσετε αυτή την επέκταση στο " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Η έκδοσή σας της επέκτασης Save Progress του Ninja Forms δεν είναι συμβατή με " "την έκδοση 2.7 του Ninja Forms. Πρέπει να είναι τουλάχιστον έκδοσης 1.1.3. " "Παρακαλούμε να ενημερώσετε αυτή την επέκταση στο " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Γίνεται ενημέρωση της βάσης δεδομένων φορμών" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Το Ninja Forms πρέπει να αναβαθμίσει τις ρυθμίσεις φορμών σας, κάντε κλικ " "%sεδώ%s για να αρχίσει η αναβάθμιση." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms - Γίνεται αναβάθμιση" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Παρακαλούμε %sεπικοινωνήστε με την υποστήριξη%s με το σφάλμα που εμφανίζεται παραπάνω." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Το Ninja Forms ολοκλήρωσε όλες τις διαθέσιμες αναβαθμίσεις!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Μετάβαση στις Φόρμες" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Αναβάθμιση Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Αναβάθμιση" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Οι αναβαθμίσεις ολοκληρώθηκαν" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Το Ninja Forms πρέπει να επεξεργαστεί %s την(τις) αναβάθμιση(εις). Ίσως " "χρειαστούν μερικά λεπτά μέχρι να ολοκληρωθεί. %sΈναρξη αναβάθμισης%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Βήμα %d από περίπου %d σε εκτέλεση" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Κατάσταση συστήματος Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Δείκτης ισχύος" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Πολύ ασθενές" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Αδύναμος" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Μεσαίο" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Δυνατό" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Ασυμφωνία" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Επιλέξτε ένα" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Αν είστε άνθρωπος και βλέπετε αυτό το πεδίο, παρακαλούμε αφήστε το κενό." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Τα πεδία που είναι επισημασμένα με * είναι υποχρεωτικά." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Αυτό είναι απαιτούμενο πεδίο." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Παρακαλούμε ελέγξτε τα υποχρεωτικά πεδία." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Υπολογισμός" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Αριθμός δεκαδικών ψηφίων" #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Πλαίσιο κειμένου" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Έξοδος υπολογισμού ως" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Ετικέτα" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Απενεργοποίηση εισόδου;" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Χρησιμοποιήστε τον παρακάτω σύντομο κωδικό για να εισαγάγετε τον τελικό " "υπολογισμό: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Μπορείτε να εισαγάγετε εξισώσεις υπολογισμού εδώ χρησιμοποιώντας το field_x " "όπου x είναι το αναγνωριστικό του πεδίου που θέλετε να χρησιμοποιήσετε. Για " "παράδειγμα, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Μπορείτε να δημιουργήσετε σύνθετες εξισώσεις προσθέτοντας παρενθέσεις: %s( " "field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Χρησιμοποιήστε τους εξής τελεστές: + - * /. Αυτό είναι ένα προηγμένο " "χαρακτηριστικό. Έχετε το νου σας για περιπτώσεις όπως η διαίρεση με το μηδέν." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Αυτόματη άθροιση τιμών υπολογισμού" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Καθορισμός πράξεων και πεδίων (Προηγμένο)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Χρήση εξίσωσης (Προηγμένο)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Μέθοδος υπολογισμού" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Πράξεις με πεδία" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Πράξη πρόσθεσης" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Προηγμένη εξίσωση" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Όνομα υπολογισμού" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Αυτό είναι το προγραμματιστικό όνομα του πεδίου σας. Παραδείγματα: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Προεπιλεγμένη τιμή" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Προσαρμοσμένη κλάση CSS" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Επιλέξτε ένα πεδίο" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Πλαίσιο ελέγχου" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Μη επιλεγμένο" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Επιλεγμένο" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Να εμφανιστεί αυτό" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Να κρυφτεί αυτό" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Αλλαγή τιμής" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Αφγανιστάν" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Αλβανία" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Αλγερία" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Αμερικανική Σαμόα" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Ανδόρα" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Αγκόλα" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Ανγκουίλα" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Ανταρκτική" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Αντίγκουα και Μπαρμπούντα" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Αργεντινή" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Αρμενία" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Αρούμπα" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Αυστραλία" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Αυστρία" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Αζερμπαϊτζάν" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Μπαχάμες" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Μπαχρέιν" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Μπανγκλαντές" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Μπαρμπάντος" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Λευκορωσία" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Βέλγιο" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Μπελίσε" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Μπενίν" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Βερμούδες" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Μπουτάν" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Βολιβία" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Βοσνία-Ερζεγοβίνη" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Μποτσουάνα" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Μπουβέ Νησί" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Βραζιλία" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Βρετανικό Έδαφος του Ινδικού Ωκεανού" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Μπρουνέι Νταρουσαλάμ" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Βουλγαρία" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Μπουρκίνα Φάσο" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Μπουρουντί" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Καμπότζη" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Καμερούν" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Καναδάς" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Πράσινο Ακρωτήριο" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Νησιά Κέιμαν" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Κεντροαφρικανική Δημοκρατία" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Τσαντ" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Χιλή" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Κίνα" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Νήσος Χριστουγέννων" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Νήσοι Κόκος" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Κολομβία" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Κόμορος" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Κονγκό" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Κονγκό, Δημοκρατία του" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Νήσοι Κουκ" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Κόστα Ρίκα" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Ακτή Ελεφαντοστού" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Κροατία (Τοπική ονομασία: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Κούβα" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Κύπρος" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Τσεχία" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Δανία" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Τζιμπουτί" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Ντομίνικα" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Δομινικανή Δημοκρατία" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Ανατολικό Τιμόρ)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Εκουαδόρ" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Αίγυπτος" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "Ελ Σαλβαδόρ" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Ισημερινή Γουινέα" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Ερυθραία" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Εσθονία" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Αιθιοπία" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Νησιά Φόκλαντ (Μαλβίνας)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Νήσοι Φερόε" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Φίτζι" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Φινλανδία" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Γαλλία" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Γαλλία, Μητροπολιτική" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Γαλλική Γουιάνα" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Γαλλική Πολυνησία" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Γαλλικά Νότια Εδάφη" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Γκαμπόν" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Γκάμπια" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Γεωργία" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Γερμανία" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Γκάνα" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Γιβραλτάρ" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Ελλάδα" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Γροιλανδία" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Γρενάδα" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Γουαδελούπη" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Γκουάμ" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Γουατεμάλα" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Γουινέα" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Γουϊνέα-Μπισάου" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Γουιάνα" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Αϊτή" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Νησιά Χερντ και Μακντόναλντ" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Βατικανό" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Ονδούρα" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Χονγκ Κονγκ" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Ουγγαρία" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Ισλανδία" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Ινδία" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Ινδονησία" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Ιράν (Ισλαμική Δημοκρατία του)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Ιράκ" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Ιρλανδία" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Ισραήλ" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Ιταλία" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Τζαμάικα" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Ιαπωνία" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Ιορδανία" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Καζακστάν" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Κένυα" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Κιριμπάτι" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Κορέας (Λαϊκή Δημοκρατία της)" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Κορέας (Δημοκρατία της)" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Κουβέιτ" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Κιργιστάν" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Λαϊκή Δημοκρατία του Λάο" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Λετονία" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Λίβανος" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Λεσότο" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Λιβερία" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Λιβυκή Αραβική Τζαμαχιρία" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Λιχτενστάιν" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Λιθουανία" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Λουξεμβούργο" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Μακάο" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Μακεδονίας, Πρώην Γιουγκοσλαβική Δημοκρατία της" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Μαδαγασκάρη" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Μαλάουι" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Μαλαισία" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Μαλδίβες" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Μάλι" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Μάλτα" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Νήσοι Μάρσαλ" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Μαρτινίκα" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Μαυριτανία" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Μαυρίκιος" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Μαγιότ" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Μεξικό" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Μικρονησία, Ομόσπονδες Πολιτείες" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Μολδαβίας (Δημοκρατία της)" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Μονακό" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Μογγολία" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Μαυροβούνιο" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Μοντσερά" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Μαρόκο" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Μοζαμβίκη" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Μιανμάρ" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Ναμίμπια" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Ναουρού" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Νεπάλ" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Ολλανδία" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Ολλανδικές Αντίλλες" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Νέα Καληδονία" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Νέα Ζηλανδία" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Νικαράγουα" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Νίγηρας" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Νιγηρία" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Νιούε" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Νήσος Νόρφολκ" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Βόρειες Μαριάνες Νήσοι" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Νορβηγία" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Ομάν" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Πακιστάν" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Παλάου" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Παναμάς" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Παπούα Νέα Γουινέα" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Παραγουάη" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Περού" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Φιλιππίνες" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Πίτκαιρν" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Πολωνία" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Πορτογαλία" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Πουέρτο Ρίκο" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Κατάρ" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Ρεουνιόν" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Ρουμανία" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Ρωσία" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ρουάντα" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Άγιος Χριστόφορος (Σαιντ Κιτς) και Νέβις" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Αγία Λουκία" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Άγιος Βικέντιος και Γρεναδίνες" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Σαμόα" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "Σαν Μαρίνο" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Άγ. Θωμάς και Πρίγκιπας (Σάο Τομέ και Πρίντσιπε)" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Σαουδική Αραβία" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Σενεγάλη" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Σερβία" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Σεϋχέλλες" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Σιέρα Λεόνε" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Σιγκαπούρη" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Σλοβακία (Σλοβακική Δημοκρατία)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Σλοβενία" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Νησιά Σολομώντα" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Σομαλία" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Νότια Αφρική" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Νότια Γεωργία, Νότια Νησιά Σάντουιτς" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Ισπανία" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Σρι Λάνκα" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Αγ. Ελένη" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Άγ. Πέτρος (Σεν Πιέρ) και Μικελόν" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Σουδάν" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Σουρινάμ" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Νησιά Σβάλμπαρντ και Γιαν Μάγεν" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Σουαζιλάνδη" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Σουηδία" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Ελβετία" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Αραβική Δημοκρατία της Συρίας" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Ταϊβάν" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Τατζικιστάν" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Τανζανίας, Ηνωμένη Δημοκρατία της" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Ταϊλάνδη" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Τόγκο" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Τοκελάου" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Τόνγκα" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Τρινιντάντ και Τομπάγκο" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Τυνησία" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Τουρκία" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Τουρκμενιστάν" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Νησιά Ταρκ και Κάικος" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Τουβαλού" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Ουγκάντα" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ουκρανία" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Ηνωμένα Αραβικά Εμιράτα" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Ηνωμένο Βασίλειο" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Η.Π.Α." #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Μικρά απομονωμένα νησιά Ηνωμένων Πολιτειών" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Ουρουγουάη" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Ουζμπεκιστάν" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Βανουάτου" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Βενεζουέλα" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Βιετνάμ" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Παρθένοι Νήσοι (Βρετανίας)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Παρθένα νησιά (ΗΠΑ)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Νησιά Ουόλις και Φουτούνα" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Δυτική Σαχάρα" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Υεμένη" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Γιουγκοσλαβία" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Ζάμπια" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Ζιμπάμπουε" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Χώρα" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Προεπιλεγμένη χώρα" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Χρήση προσαρμοσμένης πρώτης επιλογής" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Προσαρμοσμένη πρώτη επιλογής" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Νότιο Σουδάν" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Πιστωτική Κάρτα" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Ετικέτα αριθμού κάρτας" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Αριθμός Κάρτας" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Περιγραφή αριθμού κάρτας" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "Τα (συνήθως) 16 ψηφία στην πρόσθια πλευρά της πιστωτικής κάρτας σας." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Ετικέτα CVC κάρτας" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "Κωδικός Επαλήθευσης Κάρτας (3-ψήφιο νούμερο στο πίσω μέρος της κάρτας σας)" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Περιγραφή CVC κάρτας" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Η 3ψήφια (πίσω) ή 4ψήφια (εμπρός) τιμή στην κάρτα σας." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Ετικέτα ονόματος κάρτας" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Όνομα στην κάρτα" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Περιγραφή ονόματος κάρτας" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Το όνομα που αναγράφεται στην πρόσθια πλευρά της πιστωτικής κάρτας σας." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Ετικέτα μήνα λήξης κάρτας" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Μήνας λήξης (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Περιγραφή μήνα λήξης κάρτας" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Ο μήνας λήξης της πιστωτικής κάρτας σας, συνήθως στην πρόσθια πλευρά της κάρτας." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Ετικέτα έτους λήξης κάρτας" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Έτος λήξης (ΕΕΕΕ)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Περιγραφή έτους λήξης κάρτας" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Το έτος λήξης της πιστωτικής κάρτας σας, συνήθως στην πρόσθια πλευρά της κάρτας." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Κείμενο" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Στοιχείο κειμένου" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Κρυφό πεδίο" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Αναγν. χρήστη (Αν είναι συνδεδεμένος)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Όνομα χρήστη (Αν είναι συνδεδεμένος)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Επώνυμο χρήστη (Αν είναι συνδεδεμένος)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Όνομα οθόνης χρήστη (Αν είναι συνδεδεμένος)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Email χρήστη (Αν είναι συνδεδεμένος)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Δημοσίευση / Αναγν. σελίδας (Αν διατίθενται)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Δημοσίευση / Τίτλος σελίδας (Αν διατίθενται)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Δημοσίευση / URL σελίδας (Αν διατίθενται)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Σημερινή ημερομηνία" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Μεταβλητή Querystring" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Αυτή η λέξη-κλειδί έχει δεσμευτεί από το WordPress. Δοκιμάστε κάποια άλλη." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Είναι διεύθυνση email;" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Αν αυτό το πλαίσιο είναι επιλεγμένο, το Ninja Forms θα επικυρώσει αυτή την " "είσοδο ως διεύθυνση email." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Να αποσταλεί αντίγραφο της φόρμας σε αυτή τη διεύθυνση;" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Αν αυτό το πλαίσιο είναι επιλεγμένο, το Ninja Forms θα στείλει ένα αντίγραφο " "αυτής της φόρμας (και τυχόν συνημμένα μηνύματα) σε αυτή τη διεύθυνση." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "ώρα" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Λίστα" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Αυτή είναι η κατάσταση του χρήστη" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Επιλεγμένη τιμή" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Προσθήκη τιμής" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Αφαίρεση τιμής" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Υπολ." #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Αναπτυσσόμενο μενού επιλογής" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Ραδιόφωνο" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Πλαίσια ελέγχου" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Πολλαπλή επιλογή" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Τύπος λίστας" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Μέγεθος πλαισίου πολλαπλών επιλογών" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Εισαγωγή στοιχείων λίστας" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Εμφάνιση τιμών στοιχείων λίστας" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Εισαγωγή" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Για να χρησιμοποιήσετε αυτό το χαρακτηριστικό, μπορείτε να επικολλήσετε το CSV σας στην περιοχή κειμένου παραπάνω." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Η μορφή πρέπει να είναι η εξής:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Ετικέτα,Τιμή,Υπολ." #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Αν θέλετε να στείλετε μια κενή τιμή ή υπολ., θα πρέπει να χρησιμοποιήσετε '' " "για αυτές." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Επιλεγμένα" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Αριθμός" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Ελάχιστη τιμή" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Μέγιστη τιμή" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Βήμα (ποσότητα αύξησης)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Οργάνωση" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Κωδικός" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Χρησιμοποιήστε το ως πεδίο κωδικού πρόσβασης εγγραφής" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Αν αυτό το πλαίσιο είναι επιλεγμένο, τα πλαίσια κωδικού πρόσβασης και " "επιβεβαίωσης κωδικού πρόσβασης θα είναι έξοδος." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Ετικέτα επιβεβαίωσης κωδικού πρόσβασης" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Επιβεβαίωση κωδικού πρόσβασης" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Εμφάνιση δείκτη ισχύος κωδικού πρόσβασης" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Συμβουλή: Ο κωδικός πρόσβασης πρέπει να αποτελείται τουλάχιστον από επτά " "χαρακτήρες. Για να τον κάνετε πιο ισχυρό, χρησιμοποιήστε και πεζά και " "κεφαλαία γράμματα, αριθμούς και σύμβολα όπως ! \" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Οι κωδικοί πρόσβασης δεν αντιστοιχούν" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Βαθμολογία με αστέρια" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Αριθμός αστεριών" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "Επανάληψη CAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Επιβεβαιώστε ότι δεν είστε ρομπότ" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Παρακαλείστε να συμπληρώσετε το πεδίο captcha" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Βεβαιωθείτε ότι έχετε εισαγάγει σωστά το κλειδί για τον ιστότοπο και το μυστικό κλειδί" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Ασυμφωνία captcha. Εισαγάγετε τη σωστή τιμή στο πεδίο captcha" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Καταπολέμηση ανεπιθύμητης αλληλογραφίας" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Ερώτηση για την ανεπιθύμητη αλληλογραφία" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Απάντηση για την ανεπιθύμητη αλληλογραφία" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Υποβολή" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Φόρος" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Ποσοστιαίος φόρος" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Πρέπει να εισαχθεί ως ποσοστό. Π.χ. 8,25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Περιοχή κειμένου" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Εμφάνιση επεξεργαστή εμπλουτισμένου κειμένου" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Εμφάνιση του κουμπιού Φόρτωση πολυμέσων" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Απενεργοποίηση του επεξεργαστή εμπλουτισμένου κειμένου στο κινητό" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Να επικυρωθεί ως διεύθυνση email; (Το πεδίο πρέπει να είναι υποχρεωτικό)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Απενεργοποίηση εισόδου" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Επιλογέας ημερομηνίας" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Τηλέφωνο - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Νόμισμα" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Ορισμός προσαρμοσμένης μάσκας" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Βοήθεια" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Χρονομετρημένη υποβολή" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Υποβολή του κειμένου του κουμπιού αφού λήξει η χρονομέτρηση" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Παρακαλούμε περιμένετε %n δευτερόλεπτα" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "Το %n θα χρησιμοποιείται για να δηλώνει τον αριθμό των δευτερολέπτων" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Αριθμός δευτερολέπτων για αντίστροφη μέτρηση" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Είναι το χρονικό διάστημα που πρέπει να περιμένει ένας χρήστης για να υποβάλει τη φόρμα" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Αν είστε άνθρωπος, παρακαλείστε να επιβραδύνετε." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Χρειάζεστε το JavaScript για να υποβάλετε αυτή τη φόρμα. Ενεργοποιήστε την " "και προσπαθήστε πάλι." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Αντιστοίχιση πεδίων λίστας" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Ομάδες ενδιαφέροντος" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Ενιαίος" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Πολλαπλά" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Λίστες μελών που θα χρησιμοποιηθούν" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "ανανέωση" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Μετα-πλαίσιο" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Μετα-πλαίσιο υποβολής" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Μετα-πληροφορίες χρήστη (Αν είναι συνδεδεμένος)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Συλλογή πληρωμής" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Δεν βρέθηκαν φόρμες." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Ημερομηνία δημιουργίας" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "τίτλος" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "ενημερώθηκε" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Η προσπάθειά σας απέτυχε" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Γονικό στοιχείο:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Όλα τα στοιχεία" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Προσθήκη νέου στοιχείου" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Δημιουργία στοιχείου" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Επεξεργασία στοιχείου" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Ενημέρωση στοιχείου" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Προβολή στοιχείου" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Αναζήτηση στοιχείου" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Δεν βρέθηκε στον Κάδο Ανακύκλωσης" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Υποβολές φορμών" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Πληροφορίες υποβολής" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Προσθήκη νέας φόρμας" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Σφάλμα εισαγωγής προτύπου φόρμας." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Πεδία" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Το αρχείο που αποστάλθηκε δεν έχει έγκυρη μορφή." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Αποστολή μη έγκυρης φόρμας." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Εισαγωγή φορμών" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Εξαγωγή φορμών" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Εξίσωση (Προηγμένο)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Πράξεις και πεδία (Προηγμένο)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Αυτόματες αθροίσεις πεδίων" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Το αρχείο υπερβαίνει το όριο upload_max_filesize του php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Το αρχείο υπερβαίνει το όριο MAX_FILE_SIZE που έχει οριστεί στη " "φόρμα HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Το αρχείο μεταφορτώθηκε μόνο εν μέρει." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Δεν μεταφορτώθηκε αρχείο." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Λείπει ένας προσωρινός φάκελος." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Απέτυχε η εγγραφή στο δίσκο." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Η μεταφόρτωση διακόπηκε από επέκταση της PHP." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Άγνωστο σφάλμα φόρτωσης." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Σφάλμα αποστολής αρχείων" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Πρόσθετες άδειες χρήσης" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Οι μεταφορές και τα πλασματικά δεδομένα ολοκληρώθηκαν. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Προβολή φορμών" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Αποθήκευση ρυθμίσεων" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Διεύθυνση IP του server" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Όνομα κεντρικού υπολογιστή" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Επισύναψη Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Η φόρμα δεν βρέθηκε" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Το πεδίο δεν βρέθηκε" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Ενα απρόσμενο λάθος συνέβει." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Δεν υπάρχει προεπισκόπηση." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Πύλες Πληρωμής" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Σύνολο πληρωμών" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Αγκίστρωση ετικέτας" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Διεύθυνση email ή αναζήτηση ενός πεδίου" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Κείμενο θέματος ή αναζήτηση ενός πεδίου" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Επισύναψη CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Διεύθυνση URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Ετικέτα εδώ" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Κείμενο βοήθειας εδώ" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Εισαγάγετε την ετικέτα του πεδίου φόρμας. Με αυτόν τον τρόπο οι χρήστες θα " "αναγνωρίζουν τα μεμονωμένα πεδία." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Προεπιλογή φόρμας" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Κρυφή" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Επιλέξτε τη θέση της ετικέτας σας σε σχέση με το ίδιο το στοιχείο πεδίου." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Απαιτούμενο πεδίο" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Βεβαιωθείτε ότι αυτό το πεδίο έχει συμπληρωθεί πριν επιτρέψετε να υποβληθεί η φόρμα." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Αριθμητικές επιλογές" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Ελάχιστη" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Μέγιστη" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Βήμα" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Ρυθμίσεις" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Ένας" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "ένα" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Δύο" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "δύο" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Τρία" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "τρεις" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Τιμή Υπολ." #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Περιορίζει το είδος των δεδομένων που οι χρήστες σας μπορούν να εισάγουν σε αυτό το πεδίο." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "τίποτα" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Τηλέφωνο στις ΗΠΑ" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "προσαρμοσμένο" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Προσαρμοσμένη μάσκα" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Αναπαριστά έναν χαρακτήρα του " "λατινικού αλφαβήτου (A-Z,a-z) - Επιτρέπει μόνο την εισαγωγή λατινικών " "χαρακτήρων
    • \n
    • 9 - Αναπαριστά έναν " "αριθμητικό χαρακτήρα (0-9) - Επιτρέπει μόνο την εισαγωγή " "αριθμών.
    • \n
    • * - Αναπαριστά έναν " "αλφαριθμητικό χαρακτήρα (A-Z,a-z,0-9) - Επιτρέπει την εισαγωγή και αριθμών " "και\n λατινικών " "χαρακτήρων
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Περιορισμός εισόδου σε αυτόν τον αριθμό" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Χαρακτήρας(ες)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Λέξη(εις)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Κείμενο που θα εμφανίζεται μετά τον μετρητή" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Χαρακτήρας(ες) απέμεινε(αν)" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Εισαγάγετε το κείμενο που θέλετε να εμφανίζεται στο πεδίο πριν εισαχθούν " "δεδομένα από το χρήστη." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Προσαρμοσμένα ονόματα κλάσεων" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Περιέκτης" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Προσθέτει μία επιπλέον κλάση στο περιτύλιγμα πεδίου σας." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Στοιχείο" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Προσθέτει μία επιπλέον κλάση στο στοιχείο πεδίου σας." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "ΕΕΕΕ-ΜΜ-ΗΗ" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Παρασκευή, 18 Νοεμβρίου 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Προεπιλογή στην τρέχουσα ημερομηνία" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Αριθμός δευτερολέπτων για χρονομετρημένη υποβολή." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Κλειδί πεδίου" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Δημιουργεί ένα μοναδικό κλειδί για τον εντοπισμό και τη στόχευση του πεδίου " "σας για προσαρμοσμένη ανάπτυξη." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Η ετικέτα που χρησιμοποιείται κατά την προβολή και εξαγωγή υποβολών." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Εμφανίζεται στους χρήστες ως καταδεικτικό." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Περιγραφή" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Ταξινόμηση ως αριθμητικό" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Αυτή η στήλη στον πίνακα υποβολών θα ταξινομείται αριθμητικά." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Αριθμός δευτερολέπτων για την αντίστροφη μέτρηση" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Χρησιμοποιήστε το ως πεδίο κωδικού πρόσβασης εγγραφής. Αν αυτό το πλαίσιο " "είναι επιλεγμένο, τα πλαίσια κωδικού πρόσβασης και επανάληψης κωδικού " "πρόσβασης θα είναι έξοδος" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Επιβεβαίωση" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Επιτρέπει την είσοδο εμπλουτισμένου κειμένου." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Επεξεργασία ετικέτας" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Επιλεγμένη τιμή υπολογισμού" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Αυτός ο αριθμός θα χρησιμοποιηθεί σε υπολογισμούς αν το πλαίσιο είναι επιλεγμένο." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Μη επιλεγμένη τιμή υπολογισμού" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Αυτός ο αριθμός θα χρησιμοποιηθεί σε υπολογισμούς αν το πλαίσιο δεν είναι επιλεγμένο." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Εμφάνιση αυτής της μεταβλητής υπολογισμού" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Επιλέξτε μια μεταβλητή" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Τιμή" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Χρήση ποσότητας" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Επιτρέπει στους χρήστες να επιλέγουν περισσότερα του ενός από αυτό το προϊόν. " #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Τύπο προϊόντος" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Μονό προϊόν (προεπιλογή)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Πολλαπλό προϊόν - Αναπτυσσόμενη λίστα" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Πολλαπλό προϊόν - Επιλογή πολλών" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Πολλαπλό προϊόν - Επιλογή ενός" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Καταχώρηση χρήστη" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Κόστος" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Επιλογές κόστους" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Μονό κόστος" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Αναπτυσσόμενη λίστα κόστους" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Τύπος κόστους" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Προϊόν" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Επιλέξτε ένα προϊόν" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Απάντηση" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Μια απάντηση με διάκριση κεφαλαίων-πεζών που βοηθά στην πρόληψη ανεπιθύμητων υποβολών της φόρμας σας." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Ταξινομία" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Προσθήκη νέων όρων" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Αυτή είναι η κατάσταση ενός χρήστη." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Χρησιμοποιείται για την επισήμανση ενός πεδίου για επεξεργασία." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Αποθηκευμένα πεδία" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Κοινά πεδία" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Πεδία πληροφοριών χρήστη" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Πεδία τιμολόγησης" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Πεδία διάταξης" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Διάφορα πεδία" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Η υποβολή της φόρμας σας ήταν επιτυχής." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Υποβολή φορμών Ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Αποθήκευση υποβολής" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Όνομα μεταβλητή" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Εξομοίωση" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Προεπιλεγμένη θέση ετικέτας" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Κλειδί φόρμας" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Προγραμματιστικό όνομα με το οποίο μπορεί να γίνεται αναφορά σε αυτή τη φόρμα." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Προσθήκη κουμπιού υποβολής" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Παρατηρήσαμε ότι δεν έχετε κουμπί υποβολής στη φόρμα σας. Μπορούμε να " "προσθέσουμε εμείς ένα αυτόματα." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Συνδέθηκε" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Ισχύει για την προεπισκόπηση φόρμας." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Όριο υποβολών" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "ΔΕΝ ισχύει για την προεπισκόπηση φόρμας." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Προβολή Ρυθμίσεων" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Υπολογισμοί" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Τιμή:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Ποσότητα:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Προσθήκη" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Άνοιγμα σε νέο παράθυρο" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Αν είστε άνθρωπος και βλέπετε αυτό το πεδίο, αφήστε το κενό." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Διαθέσιμος" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Καταχωρήστε μια έγκυρη διεύθυνση email!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Αυτά τα παιδιά πρέπει να συμφωνούν!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Σφάλμα ελάχιστου αριθμού" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Σφάλμα μέγιστου αριθμού" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Αυξήστε κατά " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Εισαγωγή συνδέσμου" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Εισαγωγή πολυμέσων" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Διορθώστε τα σφάλματα πριν υποβάλετε αυτή τη φόρμα." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Σφάλμα honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Η αποστολή αρχείου είναι σε εξέλιξη." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "ΑΠΟΣΤΟΛΗ ΑΡΧΕΙΟΥ" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Όλα τα πεδία" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Δευτερεύουσα αλληλουχία" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Αναγνωριστικό άρθρου" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Τίτλος άρθρου" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL άρθρου" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "Διεύθυνση IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "User ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "'Ονομα" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Επώνυμο" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Προβολή Ονόματος" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Επίμονα στυλ" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Απαλό" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Σκούρο" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Χρήση των προεπιλεγμένων συμβάσεων στυλ του Ninja Forms." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Επαναφορά σε προηγούμενη έκδοση" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Επαναφορά στην έκδοση v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Επαναφορά στην πιο πρόσφατη έκδοση 2.9.x." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Ρυθμίσεις reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Θέμα reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Επεξεργασία εμπλουτισμένου κειμένου (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Σύνθετη" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Διαχείριση" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Κενές φόρμες" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Επικοινωνήστε μαζί μου" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Ενέργεια μηνύματος πλασματικής επιτυχίας" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Σας ευχαριστούμε {field:name} που συμπληρώσατε τη φόρμα!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Πλασματική ενέργεια email" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Αυτή δεν είναι ενέργεια email." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Γεια σας, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Πλασματική ενέργεια αποθήκευσης" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Αυτή είναι μια δοκιμή" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Αυτή είναι άλλη μια δοκιμή." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Λήψη βοήθειας" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Πώς μπορούμε να σας βοηθήσουμε;" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Συμφωνείτε;" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Προτιμώμενη μέθοδος επικοινωνίας;" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Αριθμός τηλεφώνου" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Συμβατικό ταχυδρομείο" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Αποστολή" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Νεροχύτης κουζίνας" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Λίστα επιλογής" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Επιλογή ένα" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Επιλογή δύο" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Επιλογή τρία" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Λίστα με κουμπιά επιλογής" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Νιπτήρας" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Λίστα με πλαίσια ελέγχου" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Αυτά είναι όλα τα πεδία στην ενότητα Πληροφορίες χρήστη." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Διεύθυνση" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Πόλη" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Ταχυδρομικός κώδικας" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Αυτά είναι όλα τα πεδία στην ενότητα Τιμολόγηση." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Προϊόν (περιλαμβάνεται ποσότητα)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Προϊόν (ξεχωριστή ποσότητα)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "ποσότητα " #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Σύνολο" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Ονοματεπώνυμο πιστωτικής κάρτας" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Αριθμός πιστωτικής κάρτας" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "CVV πιστωτικής κάρτας" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Λήξη πιστωτικής κάρτας" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "T.K. πιστωτικής κάρτας" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Αυτά είναι διάφορα ειδικά πεδία." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Ερώτηση πρόληψης spam (Απάντηση = απάντηση)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "απάντηση" #: includes/Database/MockData.php:805 msgid "processing" msgstr "σε επεξεργασία" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Μακροσκελής φόρμα - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Πεδία" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Αρ. πεδίου" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Φόρμα συνδρομής email" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Διεύθυνση Email" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Καταχωρήστε τη διεύθυνση email σας" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Εγγραφή" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Φόρμα προϊόντος (με πεδίο ποσότητας)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Αγορά" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Αγοράσατε " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "προϊόν(τα) για " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Φόρμα προϊόντος (ενσωματωμένη ποσότητα)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " προϊόν(τα) για " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Φόρμα προϊόντος (πολλά προϊόντα)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Προϊόν Α" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Ποσότητα προϊόντος Α" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Προϊόν Β" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Ποσότητα προϊόντος Β" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "προϊόντος Α και " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "προϊόντος Β για $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Φόρμα με υπολογισμούς" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Ο πρώτος υπολογισμός μου" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Ο δεύτερος υπολογισμός μου" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Οι υπολογισμοί επιστρέφονται μαζί με την απόκριση AJAX (απόκριση -> δεδομένα " "-> υπολογισμοί" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Αντιγραφή" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Αποθήκευση φόρμας" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "T.K. πιστωτικής κάρτας" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Πρέπει να έχετε συνδεθεί για να κάνετε προεπισκόπηση μιας φόρμας." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Δεν βρέθηκαν πεδία." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Ειδοποίηση: Χρησιμοποιήθηκε σύντομος κωδικός Ninja Forms χωρίς να καθοριστεί φόρμα." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Χρησιμοποιήθηκε σύντομος κωδικός Ninja Forms χωρίς να καθοριστεί φόρμα." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Διεύθυνση 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Κουμπί" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Μοναδικό πλαίσιο ελέγχου" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "επιλεγμένο" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "μη επιλεγμένο" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "CVC πιστωτικής κάρτας" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Επιλέξτε" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Χώρα" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Το κείμενο σημείωσης μπορεί να υποστεί επεξεργασία παρακάτω, στις εξελιγμένες ρυθμίσεις του πεδίου σημείωσης." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Σημείωση" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Επιβεβαίωση κωδικού πρόσβασης" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "κωδικός πρόσβασης" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Συμπληρώστε το recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Εξελιγμένη αποστολή" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Ερώτηση" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Θέση ερώτησης" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Εσφαλμένη απάντηση" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Αριθμός αστεριών" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Λίστα όρων" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Δεν υπάρχουν διαθέσιμοι όροι για αυτή την ταξινομία. %sΠροσθήκη όρου%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Δεν έχει επιλεγεί ταξινομία." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Διαθέσιμοι όροι" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Κείμενο παραγράφου" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Κείμενο μίας γραμμής" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Ταχ. Κώδ." #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Άρθρο" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Συμβολοσειρές ερωτημάτων" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Συμβολοσειρά ερωτήματος" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Σύστημα" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Χρήστης" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " απαιτεί ενημέρωση. Έχετε την έκδοση " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " εγκατεστημένη. Η τρέχουσα έκδοση είναι η " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Πεδίο επεξεργασίας" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Όνομα ετικέτας" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Πάνω από το πεδίο" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Κάτω από το πεδίο" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Αριστερά από το πεδίο" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Δεξιά από το πεδίο" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Απόκρυψη ετικέτας" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Όνομα κατηγορίας" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Βασικά πεδία" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Πολλαπλή επιλογή" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Προσθήκη νέου πεδίου" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Προσθήκη νέας ενέργειας" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Ανάπτυξη μενού" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Δημοσίευση" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "ΔΗΜΟΣΙΕΥΣΗ" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Φόρτωση" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Προβολή αλλαγών" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Προσθήκη πεδίων φόρμας" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Ξεκινήστε προσθέτοντας το πρώτο σας πεδίο φόρμας." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Προσθήκη νέου πεδίου" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Κάντε απλά κλικ εδώ και επιλέξτε όποια πεδία θέλετε." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Είναι τόσο εύκολο. Ή..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Ξεκινήστε από ένα πρότυπο" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Επικοινωνήστε μαζί μας" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Επιτρέψτε στους χρήστες σας να επικοινωνήσουν μαζί σας με αυτή την απλή φόρμα " "επικοινωνίας. Μπορείτε να προσθέσετε και να αφαιρέσετε πεδία, κατά περίπτωση." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Αίτημα προσφοράς" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Με αυτό το πρότυπο, διαχειριστείτε αιτήματα προσφορών από τον ιστότοπό σας. " "Μπορείτε να προσθέσετε και να αφαιρέσετε πεδία, κατά περίπτωση." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Εγγραφή για εκδηλώσεις" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Επιτρέψτε στους χρήστες να εγγραφούν για την επόμενη εκδήλωσή σας με αυτή την " "εύκολη στη συμπλήρωση φόρμα. Μπορείτε να προσθέσετε και να αφαιρέσετε πεδία, " "κατά περίπτωση." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Φόρμα εγγραφής σε ενημερωτικό δελτίο" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Προσθέστε συνδρομητές και αναπτύξτε τη λίστα email σας με αυτή τη φόρμα " "εγγραφής σε ενημερωτικό δελτίο. Μπορείτε να προσθέσετε και να αφαιρέσετε " "πεδία, κατά περίπτωση." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Προσθήκη ενεργειών φόρμας" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Ξεκινήστε προσθέτοντας το πρώτο σας πεδίο φόρμας. Κάντε απλά στο συν και " "επιλέξτε όποιες ενέργειες θέλετε. Είναι τόσο εύκολο." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Αναπαραγωγή (^ + C + κλικ)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Διαγραφή (^ + D + κλικ)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Δράσεις" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Εναλλαγή συρταριού" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Πλήρης οθόνη" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Μισή οθόνη" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Αναίρεση" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Τέλος" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Αναίρεση όλων" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Αναίρεση όλων" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Σχεδόν τελειώσαμε..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Όχι ακόμα" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Άνοιγμα σε νέο παράθυρο" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Απενεργοποίηση" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Επιδιόρθωση." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Επιλέξτε μια φόρμα" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Ημερομηνία έναρξης" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Πριν ζητήσετε βοήθεια από την ομάδα υποστήριξής μας, παρακαλούμε ελέγξτε τα εξής:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Τεκμηρίωση Ninja Forms THREE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Τι να δοκιμάσετε πριν επικοινωνήσετε με την υποστήριξη" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Θέματα για τα οποία παρέχουμε υποστήριξη" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Εισαγωγή πεδίων" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Ενημερώθηκε στις: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Υποβλήθηκε στις: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Υποβλήθηκε από: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Δεδομένα υποβολής" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Προβολή" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Δείξε Περισσότερα" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Πεδίο επεξεργασίας" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Πεδία φόρμας" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Προεπισκόπηση αλλαγών" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Φόρμα επικοινωνίας" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Ωχ! Αυτό το πρόσθετο δεν είναι ακόμα συμβατό με το Ninja Forms THREE. " "%sΜάθετε περισσότερα%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "Το %s απενεργοποιήθηκε." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Βοηθήστε μας να βελτιώσουμε τα Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Αν δηλώσετε την επιθυμία σας, ορισμένα δεδομένα για την εγκατάστασή σας του " "Ninja Forms θα σταλούν στην Ninja Forms (σε αυτά ΔΕΝ θα περιλαμβάνονται οι " "υποβολές σας)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Αν θέλετε να το παρακάμψετε, κανένα πρόβλημα! Το Ninja Forms θα συνεχίσει να λειτουργεί κανονικά." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sΝα επιτρέπεται%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sΝα μην επιτρέπεται%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Δεν έχετε άδεια." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Η άδεια δεν παραχωρήθηκε" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "ΕΝΤΟΠΙΣΜΟΣ ΣΦΑΛΜΑΤΩΝ: Μετάβαση στο 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "ΕΝΤΟΠΙΣΜΟΣ ΣΦΑΛΜΑΤΩΝ: Μετάβαση στο 3.0.x" lang/ninja-forms-id_ID.po000064400000631172152331132460011230 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Pemberitahuan: JavaScript diperlukan untuk konten ini." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Mau curang hah?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Bidang yang ditandai dengan %s*%s wajib diisi" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Pastikan semua bidang yang wajib telah diisi." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Ini adalah bidang yang wajib diisi" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Jawablah pertanyaan anti-spam dengan benar." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Biarkan bidang spam ini kosong." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Silakan tunggu untuk mengirimkan formulir." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Anda tidak dapat mengirimkan formulir tanpa mengaktifkan Javascript." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Silakan masukkan sebuah alamat email yang sah." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Sedang diproses" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Kata sandi yang diberikan tidak cocok." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Tambahkan Formulir" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Pilih formulir atau ketik untuk mencari" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Batal" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Masukkan" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Id formulir tidak valid" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Tingkatkan Konversi" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Tahukah Anda bahwa Anda dapat meningkatkan konversi formulir dengan memecah " "formulir yang besar menjadi beberapa bagian yang lebih kecil dan yang lebih " "mudah dipahami?

    Ekstensi Formulir Multi-Bagian pada Ninja Forms membuat " "tindakan ini cepat dan mudah.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Pelajari Selengkapnya Tentang Formulir Multi-Bagian" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Mungkin Nanti Saja" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Tutup" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Pengguna lebih cenderung melengkapi formulir yang panjang jika mereka dapat " "menyimpan dan kembali lagi untuk melengkapi kiriman mereka.

    Ekstensi " "Simpan Kemajuan pada Ninja Forms membuat tindakan ini cepat dan mudah.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Pelajari Selengkapnya Tentang Simpan Kemajuan" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Email" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Dari Nama" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Nama atau bidang" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Email akan ditampilkan berasal dari nama ini." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Alamat Dari" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Satu alamat email atau bidang" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Email akan ditampilkan berasal dari alamat email ini." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Ke" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Alamat email atau cari bidang." #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Kepada siapa email ini harus dikirimkan?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Judul" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Teks Subjek atau cari bidang" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Ini akan menjadi subjek email." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Pesan Email" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Lampiran" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV Kiriman" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Pengaturan Lanjutan" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Teks Kosong" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Balas Ke" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Alihkan" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Pesan Sukses" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Sebelum Formulir" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Sesudah Formulir" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Lokasi" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Pesan" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "gandakan" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Matikan" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Aktifkan" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Sunting" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Hapus" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplikat" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nama" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Tipe" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Tanggal Diperbarui" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Lihat Semua Jenis" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Dapatkan Jenis Lainnya" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email & Tindakan" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Tambahkan Baru" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Tindakan Baru" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Edit Tindakan" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Kembali ke Daftar" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Nama Tindakan" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Dapatkan Tindakan Lainnya" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Tindakan Diperbarui" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Pilih bidang atau ketik untuk mencari" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Sisipkan Bidang" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Sisipkan Semua Bidang" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Pilih formulir untuk menampilkan kiriman" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Tidak Ditemukan Kiriman" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Kiriman" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Kiriman" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Tambahkan Kiriman Baru" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Edit Kiriman" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Kiriman Baru" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Tampilkan Kiriman" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Cari Kiriman" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Tidak Ditemukan Kiriman di Kotak Sampah" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Tanggal" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Sunting item ini" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Ekspor item ini" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Ekspor" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Pindahkan item ini ke Tong Sampah" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Tong Sampah" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Kembalikan item ini dari Tong Sampah" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Pulihkan" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Hapus item ini selamanya" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Hapus Selamanya" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Belum diterbitkan" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s yang lalu" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Dikirim" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Pilih formulir" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Tanggal Mulai" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Tanggal berakhir" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s diperbarui." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Bidang kustom diperbarui." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Bidang kustom dihapus." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s dipulihkan ke revisi dari %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s diterbitkan." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s disimpan." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s dikirim. Pratinjau %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s dijadwalkan untuk: %2$s. Pratinjau %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s draf diperbarui. Pratinjau %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Unduh Semua Kiriman" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Kembali ke daftar" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Nilai yang Dikirim Pengguna" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Statistik Kiriman" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Bidang" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Nilai" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formulir" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Dikirim pada" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Diubah pada" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Dikirim Oleh" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Perbarui" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Tanggal Dikirim" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms tidak dapat diaktifkan oleh jaringan. Kunjungi masing-masing " "dasbor situs untuk mengaktifkan plugin." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Anda akan menemukannya dalam email pembelian Anda." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Kunci" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Tidak dapat mengaktifkan lisensi. Verifikasi kunci lisensi Anda" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Nonaktifkan Lisensi" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Nilai yang Dikirim Pengguna:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Terima kasih telah mengisi formulir ini." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Tersedia %1$s versi baru. Tampilkan detail versi %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Tersedia %1$s versi baru. Tampilkan detail versi %3$s atau perbarui sekarang." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Anda tidak memiliki izin untuk menginstal pembaruan plugin" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Kesalahan" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Bidang Standar" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Elemen Tata Letak" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Pembuatan Postingan" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Beri peringkat %sNinja Forms%s %s di %sWordPress.org%s untuk membantu kami " "menjadikan plugin ini tetap gratis. Terima kasih dari tim WP Ninjas!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Widget Ninja Forms" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Judul Tampilan" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Tidak Ada" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Bentuk" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Semua Formulir" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Peningkatan Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Peningkatan" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Impor/Ekspor" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Impor / Ekspor" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Pengaturan Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Pengaturan" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Status Sistem" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Add-On" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Pratinjau" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Simpan" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "karakter tersisa" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Jangan tampilkan istilah ini" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Simpan Opsi" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Pratinjau Formulir" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Tingkatkan ke Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Anda memenuhi syarat untuk meningkatkan ke Bakal Rilis Ninja Forms THREE! " "%sTingkatkan Sekarang%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE akan segera hadir!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Pembaruan besar-besaran akan segera hadir untuk Ninja Forms. %sPelajari " "selengkapnya mengenai fitur baru, kesesuaian dengan versi lama, dan lebih " "banyak Pertanyaan yang Sering Diajukan%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Bagaimana Perkembangannya?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Terima kasih telah menggunakan Ninja Forms! Kami harap Anda mendapatkan semua " "yang Anda butuhkan, tapi jika Anda memiliki pertanyaan:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Periksa dokumentasi kami" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Cari Bantuan" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Edit Item Menu" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Pilih Semua" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Lampirkan Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Bagaimana Anda ingin menamai favorit ini?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Anda harus memberi nama favorit ini." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Yakin untuk menonaktifkan semua lisensi?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Atur ulang proses konversi formulir untuk v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Hapus SEMUA data Ninja Forms setelah dihapus instalasinya?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Edit Formulir" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Disimpan" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Menyimpan..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Hapus bidang ini? Bidang ini akan dihapus meskipun Anda tidak meyimpannya." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Lihat Kiriman" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Pemrosesan Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Sedang Diproses" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Memuat..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Tidak Ada Tindakan yang Ditentukan..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Proses dimulai, mohon tunggu. Proses ini perlu waktu beberapa menit. Anda " "akan otomatis dialihkan saat proses telah selesai." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Selamat datang di Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Terima kasih telah melakukan pembaruan! Ninja Forms %s menjadikan pembuatan " "formulir lebih mudah!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Selamat datang di Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Log perubahan Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Memulai dengan Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Karyawan yang membuat Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Yang Baru" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Memulai" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Penghargaan" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versi %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Pengalaman membuat formulir yang sederhana namun lebih efektif." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Tab Pembuat Baru" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Saat membuat dan mengedit formulir, langsung ke bagian yang paling penting." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Pengaturan Bidang yang Lebih Tertata" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Pengaturan paling umum langsung ditampilkan, sementara pengaturan yang tidak " "penting diselipkan di dalam bagian yang dapat diperbesar." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Kejelasan lebih baik" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Bersamaan dengan tab “Buat Formulir Anda”, kami telah mengganti " "“Pemberitahuan” dengan “Email & Tindakan.” Indikasi tentang apa yang dapat " "dilakukan pada tab ini lebih jelas." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Hapus semua data Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Kami telah menambahkan opsi untuk menghapus semua data Ninja Forms (kiriman, " "formulir, bidang, opsi) jika Anda menghapus plugin. Kami menyebutnya opsi nuklir." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Manajemen lisensi yang lebih baik" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Nonaktifkan lisensi ekstensi Ninja Forms secara terpisah atau terkelompok " "dari tab pengaturan." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Masih banyak lagi yang akan hadir" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Pembaruan antarmuka di versi ini menjadi dasar bagi peningkatan luar biasa " "selanjutnya. Versi 3.0 nantinya akan dibangun dengan perubahan ini untuk " "membuat Ninja Forms lebih stabil, efektif, dan menjadi pembuat formulir yang " "ramah pengguna." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Dokumentasi" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Lihat dokumentasi Ninja Forms kami secara mendalam di bawah ini." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Dokumentasi Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Dapatkan Dukungan" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Kembali ke Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Lihat Log Perubahan Lengkap" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Log Perubahan Lengkap" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Ke Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Gunakan tips di bawah ini untuk mulai menggunakan Ninja Forms. Formulir Anda " "akan segera aktif dan beroperasi!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Tentang Formulir" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Menu Formulir adalah titik akses Anda untuk semua hal yang berkaitan dengan " "Ninja Forms. Kami telah membuatkan %sformulir kontak%s pertama Anda agar Anda " "memiliki contoh. Anda juga dapat membuat formulir kontak sendiri dengan " "mengklik %sTambah Baru%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Buat Formulir Anda" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Ini adalah tempat di mana Anda akan membuat formulir dengan menambahkan " "bidang dan menyeretnya ke dalam susunan seperti yang Anda inginkan. " "Masing-masing bidang memiliki beragam opsi seperti label, posisi label, dan placeholder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Email & Tindakan" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Jika Anda ingin formulir Anda mengirimkan pemberitahuan lewat email saat " "pengguna mengklik kirim, Anda juga dapat mengaturnya pada tab ini. Anda dapat " "membuat jumlah email yang tak terbatas, termasuk email untuk dikirim ke " "pengguna yang telah mengisi formulir tersebut." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Tab ini memiliki pengaturan formulir umum, seperti judul dan metode " "pengiriman, begitu juga dengan pengaturan tampilan seperti menyembunyikan " "formulir saat telah diisi lengkap." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Menampilkan Formulir Anda" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Tambahkan ke Halaman" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Di bagian Cara Kerja Formulir Dasar di Pengaturan Formulir Anda dapat dengan " "mudah memilih halaman di mana formulir akan otomotis ditambahkan ke bagian " "akhir konten halaman tersebut. Opsi serupa tersedia di setiap layar edit " "konten di bilah samping." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Shortcode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Tempatkan %s di area mana pun yang menerima kode pendek untuk menampilkan " "formulir Anda di mana pun Anda inginkan. Bahkan di bagian tengah halaman atau " "konten postingan Anda." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms menyediakan widget yang dapat Anda tempatkan di area khusus " "widget pada situs Anda dan Anda dapat memilih dengan tepat formulir yang " "ingin Anda tampilkan pada ruang tersebut." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Fungsi Templat" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms juga memiliki fungsi templat sederhana yang dapat ditempatkan " "langsung ke file templat php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Perlu Bantuan?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Dokumentasi yang Lebih Lengkap" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Dokumentasi ini mencakup segala hal dari %sPemecahan masalah%s sampai %sAPI " "Pengembang%s kami. Dokumen Baru akan selalu ditambahkan." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Dukungan Terbaik dalam Bisnis ini" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Kami melakukan semua yang dapat kami lakukan untuk menghadirkan dukungan " "terbaik kepada setiap pengguna Ninja Forms. Jika Anda menghadapi masalah atau " "memiliki pertanyaan, %ssilakan hubungi kami%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Terima kasih telah melakukan pembaruan ke versi terkini! Ninja Forms %s " "disiapkan untuk menghadirkan pengalaman yang menyenangkan dalam mengelola kiriman!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms dibuat oleh tim pengembang seluruh dunia yang berkeinginan untuk " "menghadirkan plugin pembuatan formulir komunitas WordPress #1." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Tidak ditemukan log perubahan yang valid." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Lihat %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Nonaktikan LengkapiOtomatis Browser" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "Nilai Kalkulasi %sDicentang%s" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Ini adalah nilai yang akan digunakan jika %sDicentang%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "Nilai Kalkulasi %sTidak Dicentang%s" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Ini adalah nilai yang digunakan jika %sTidak Dicentang%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Masukkan dalam total-otomatis? (Jika diaktifkan)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Kelas CSS Kustom" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Sebelum Semuanya" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Sebelum Label" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Setelah Label" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Setelah Semuanya" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Jika “teks deskripsi” diaktifkan, akan muncul tanda tanya %s di sebelah " "bidang input. Menempatkan kursor di atas tanda tanya ini akan menampilkan " "teks deskripsi." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Tambahkan Deskripsi" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Posisi Deskripsi" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Konten Deskripsi" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Jika “teks bantuan” diaktifkan, akan muncul tanda tanya %s di sebelah bidang " "input. Menempatkan kursor di atas tanda tanya ini akan menampilkan teks bantuan." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Tampilkan Teks Bantuan" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Teks Bantuan" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Jika Anda membiarkan kotak kosong, tidak ada batasan yang akan digunakan" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Batasi input hingga jumlah ini" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "dari" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Karakter" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Kata" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Teks yang muncul setelah penghitung karakter/kata" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Di Kiri Elemen" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Di Atas Elemen" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Di Bawah Elemen" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Di Kanan Elemen" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Di Dalam Elemen" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Posisi Label" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "ID Bidang" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Pengaturan Pembatasan" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Pengaturan Kalkulasi" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Hapus" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Isi ini dengan taksonomi" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Tidak Ada" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Tempat produk" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Wajib diisi" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Simpan Pengaturan Bidang" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Urutkan sebagai angka" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Jika kotak ini dicentang, kolom dalam tabel kiriman akan diurutkan " "berdasarkan angka." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Label Admin" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Ini adalah label yang digunakan saat menampilkan/mengubah/mengekspor kiriman." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Tagihan" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Pengiriman" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Kustom" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Kelompok Bidang Info Pengguna" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Kelompok Bidang Kustom" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Sertakan informasi ini saat meminta dukungan:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Dapatkan Laporan Sistem" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Lingkungan" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL Beranda" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL Situs" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Versi Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Versi WP" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multi-Situs Diaktifkan" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Ya" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Tidak" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Info Server Web" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Versi PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Versi MySQL" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Lokal" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Batas Memori WP" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Mode Debug WP" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Bahasa WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Default" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Ukuran Unggah Maks WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "Ukuran Maks Postingan PHP" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Tingkat Nesting Input Maks" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "Batas Waktu PHP" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "Var Input Maks PHP" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Diinstal" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Zona waktu default" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Zona waktu default adalah %s - harus UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Zona waktu default adalah %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "fsockopen dan cURL di server Anda aktif." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "fsockopen aktif, cURL tidak aktif di server Anda." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "cURL aktif, fsockopen tidak aktif di server Anda." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "fsockopen atau cURL tidak aktif di server Anda - IPN PAYPAL dan skrip lainnya " "yang berhubungan dengan server lain tidak akan berfungsi. Hubungi penyedia " "hosting Anda." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Kelas SOAP Client di server Anda telah aktif." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Kelas %sSOAP Client%s di server Anda tidak aktif - plugin gateway yang " "menggunakan SOAP mungkin tidak berfungsi sesuai harapan." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "Postingan Jarak Jauh WP" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() berhasil - IPN PayPal berfungsi." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() gagal. IPN PayPal tidak akan berfungsi di server Anda. " "Hubungi penyedia hosting Anda. Kesalahan:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() gagal. IPN PayPal mungkin tidak akan berfungsi di server Anda." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugin" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Plugin Diinstal" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Kunjungi halaman plugin" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "oleh" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "versi" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Beri judul formulir Anda. Inilah cara untuk menemukan formulir Anda nantinya." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Anda belum menambahkan tombol kirim ke formulir Anda." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Masukkan Mask" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Semua karakter yang Anda isikan pada kotak “mask kustom” yang tidak ada dalam " "daftar berikut akan otomatis dimasukkan begitu pengguna mengetikkannya dan " "tidak akan dapat dihapus" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Berikut adalah karakter masking standar" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Mewakili karakter huruf (A-Z, a-z) - Hanya huruf yang boleh dimasukkan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "9 - Mewakili karakter angka (0-9) - Hanya angka yang boleh dimasukkan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Mewakili karakter alfanumerik (A-Z, a-z,0-9) - Baik angka dan huruf boleh dimasukkan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Jadi, jika ingin membuat mask untuk Nomor Jaminan Sosial Amerika, Anda perlu " "mengetikkan 999-99-9999 ke dalam kotak" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "Angka 9 mewakili semua angka, dan -s akan secara otomatis ditambahkan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Hal ini akan mencegah pengguna memasukkan selain angka" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Anda juga bisa memadukannya untuk aplikasi khusus" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Misalnya, jika Anda memiliki kunci produk dalam format A4B51.989.B.43C, Anda " "dapat membuat mask-nya dengan: a9a99.999.a.99a, yang kemudian akan mengubah " "semua a menjadi huruf dan 9 menjadi angka" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Bidang yang Ditentukan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Bidang Favorit" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Bidang Pembayaran" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Bidang Templat" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Informasi Pengguna" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Semua" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Tindakan Limbak" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Terapkan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formulir Per Halaman" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Mulai" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Ke halaman pertama" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Ke halaman sebelumnya" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Halaman saat ini" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Ke halaman berikutnya" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Ke halaman terakhir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Judul Formulir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Hapus formulir ini" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Gandakan Formulir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formulir Dihapus" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formulir Dihapus" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Pratinjau Formulir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Tampilan:" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Tampilkan Judul Formulir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Tambahkan formulir ke halaman ini" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Kirim melalui AJAX (tanpa memuat ulang halaman)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Hapus formulir yang berhasil diselesaikan?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Jika kotak ini dicentang, Ninja Forms akan menghapus semua nilai (isian) " "formulir setelah berhasil dikirimkan." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Sembunyikan formulir yang berhasil diselesaikan?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Jika kotak ini dicentang, Ninja Forms akan menyembunyikan semua formulir " "setelah berhasil dikirimkan." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Batasan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Minta pengguna masuk untuk menampilkan formulir?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Pesan Belum Masuk" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Pesan akan muncul bagi pengguna jika kotak centang “telah masuk” di atas " "dicentang sedangkan pengguna belum masuk." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Batasi Kiriman" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Pilih jumlah kiriman yang akan diterima formulir ini. Kosongi untuk kiriman " "tanpa batas." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Pesan Batas Telah Dicapai" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Masukkan pesan yang ingin Anda tampilkan saat formulir ini telah mencapai " "batas kirimannya dan tidak akan menerima kiriman baru." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Pengaturan Formulir Disimpan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Pengaturan Dasar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Bantuan dasar Ninja Forms di sini." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Perpanjang Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Dokumentasi segera hadir." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktif" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Terinstal" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Selengkapnya" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Cadangkan / Pulihkan" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Cadangkan Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Pulihkan Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Data berhasil dipulihkan!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Impor Bidang Favorit" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Pilih file" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Impor Favorit" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Tidak Ditemukan Bidang Favorit" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Ekspor Bidang Favorit" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Ekspor Bidang" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Pilih bidang favorit untuk diekspor." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favorit berhasil diimpor." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Pilih file bidang favorit yang valid." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Impor formulir" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Impor Formulir" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Ekspor formulir" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Ekspor Formulir" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Pilih formulir." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formulir Berhasil Diimpor." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Pilih file formulir ekspor yang valid." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Impor / Ekspor Kiriman" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Pengaturan Tanggal" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Umum" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Pengaturan Umum" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "versi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Format Tanggal" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Coba ikuti spesifikasi %sfungsi tanggal() PHP%s, tapi tidak semua format didukung." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Simbol Mata Uang" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Pengaturan reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Kunci Situs reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Dapatkan kunci situs untuk domain Anda dengan mendaftar %sdi sini%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Kunci Rahasia reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Bahasa reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Bahasa yang digunakan reCAPTCHA. Untuk mendapatkan kode bahasa Anda klik %sdi sini%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Jika kotak ini dicentang, SEMUA data Ninja Forms akan dihapus dari basis data " "setelah dihapus. %sSemua data formulir dan kiriman tidak dapat dipulihkan kembali.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Nonaktifkan Pemberitahuan Admin" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Tidak pernah melihat pemberitahuan admin di dasbor Ninja Forms. Hapus centang " "untuk melihatnya kembali." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Pengaturan ini akan BENAR-BENAR menghapus segalanya yang berkaitan dengan " "Ninja Forms setelah penghapusan plugin. Termasuk pula KIRIMAN dan FORMULIR. " "Tindakan ini tidak bisa diurungkan." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Lanjutkan" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Pengaturan Disimpan" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Label Pesan" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Label Bidang Wajib Diisi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Simbol bidang wajib diisi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Pesan kesalahan diberikan jika semua bidang yang wajib diisi belum dilengkapi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Kesalahan Bidang yang Wajib Diisi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Pesan kesalahan anti-spam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Pesan kesalahan Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Pesan kesalahan pengatur waktu" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript menonaktifkan pesan kesalahan" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Masukkan alamat email yang valid" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Label Memproses Kiriman" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Pesan ini ditampilkan di dalam tombol kirim setiap kali pengguna mengklik " "“kirim” untuk memberi tahu mereka bahwa pesan sedang diproses." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Label Tidak Sesuai Kata Sandi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Pesan ini ditampilkan kepada pengguna saat nilai yang tidak sesuai diisikan " "pada bidang kata sandi." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Lisensi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Simpan & Aktifkan" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Nonaktifkan Semua Lisensi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Untuk mengaktifkan lisensi ekstensi Ninja Forms Anda terlebih dahulu " "harus%smenginstal dan mengaktifkan%s ekstensi yang dipilih. Pengaturan " "lisensi akan muncul di bawah ini." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Atur Ulang Konversi Formulir" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Atur Ulang Konversi Formulir" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Jika formulir Anda “hilang” setelah pembaruan ke versi 2.9, tombol ini akan " "mencoba untuk mengonversi kembali formulir lama Anda untuk ditampilkan di " "versi 2.9. Semua formulir saat ini akan tetap dalam tabel “Semua Formulir”." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Semua formulir saat ini akan tetap dalam tabel “Semua Formulir”. Di beberapa " "kasus, formulir mungkin akan digandakan saat proses ini." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Email Admin" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Email Pengguna" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms perlu meningkatkan notifikasi formulir Anda, klik %sdi sini%s " "untuk memulai peningkatan." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms perlu memperbarui pengaturan email Anda, klik %sdi sini%s untuk " "memulai peningkatan." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms perlu meningkatkan tabel kiriman, klik %sdi sini%s untuk memulai peningkatan." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Terima kasih telah meningkatkan Ninja Forms ke versi 2.7. Perbarui ekstensi " "Ninja Forms Anda dari " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Versi ekstensi Unggah File Ninja Forms yang Anda miliki tidak kompatibel " "dengan Ninja Forms versi 2.7. Diperlukan setidaknya versi 1.3.5. Perbarui " "ekstensi ini di " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Ekstensi Simpan Kemajuan Ninja Forms versi yang Anda miliki tidak kompatibel " "dengan Ninja Forms versi 2.7. Diperlukan setidaknya versi 1.1.3. Perbarui " "ekstensi ini di " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Memperbarui Basis Data Formulir" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms perlu meningkatkan pengaturan formulir Anda, klik %sdi sini%s " "untuk memulai peningkatan." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Pemrosesan Peningkatan Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%shubungi dukungan%s untuk kesalahan yang tampak seperti di atas." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms telah menyelesaikan semua peningkatan yang tersedia!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Ke Formulir" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Peningkatan Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Tingkatkan" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Peningkatan Selesai" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms perlu memproses %s peningkatan. Perlu waktu beberapa menit untuk " "menyelesaikannya. %sMulai Peningkatan%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Langkah %d dari sekitar %d berjalan" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Status Sistem Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Indikator kekuatan" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Sangat lemah" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Lemah" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Sedang" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Kuat" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Tidak sesuai" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Pilih Satu" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Jika Anda manusia dan melihat bidang ini, biarkan kosong." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Bidang yang ditandai dengan * wajib diisi." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Ini adalah bidang yang wajib diisi." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Periksa bidang yang wajib diisi." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Kalkulasi" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Jumlah angka desimal." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Kotak teks" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Kalkulasi output sebagai" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Label" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Nonaktifkan input?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Gunakan kode pendek berikut untuk memasukkan kalkulasi akhir: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Anda dapat memasukkan rumus kalkulasi di sini menggunakan field_x jika x " "adalah ID bidang yang ingin Anda gunakan. Contohnya, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Rumus yang kompleks dapat dibuat dengan menambahkan tanda kurung: %s( " "field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Gunakan operasi ini: + - * /. Ini adalah fitur lanjutan. Perhatikan hal-hal " "seperti pembagian dengan angka 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Nilai Kalkulasi Total Otomatis" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Tentukan Operasi dan Bidang (Lanjutan)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Gunakan Rumus (Lanjutan)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Metode Kalkulasi" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Operasi Bidang" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Tambahkan Operasi" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Rumus Lanjutan" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Nama kalkulasi" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Ini adalah nama programatis bidang Anda. Contohnya: my_calc, price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Nilai Default" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Kelas CSS Kustom" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Pilih Bidang" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Kotak centang" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Tidak Dicentang" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Dicentang" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Tampilkan Ini" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Sembunyikan Ini" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Ganti Nilai" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afganistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Aljazair" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "American Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antartika" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua dan Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahama" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Banglades" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Belarus" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgia" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia dan Herzegovina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Pulau Bouvet" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Wilayah Samudra Hindia Britania" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Kamboja" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Kamerun" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Kanada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cape Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Kepulauan Cayman" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Central African Republic" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chili" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Cina" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Pulau Natal" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Islands" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Kolumbia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Kongo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Republik Demokratik Kongo" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cook Islands" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Kosta Rika" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Pantai Gading" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Kroasia (Nama Lokal: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Kuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Republik Ceko" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Denmark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominika" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Republik Dominika" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ekuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Mesir" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Ethiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Kepulauan Falkland (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Faroe Islands" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlandia" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Perancis" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Prancis Metropolitan" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Guyana Perancis" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polinesia Perancis" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Perancis Selatan" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Jerman" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Yunani" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Greenland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Kepulauan Heard dan McDonald" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Tahta Suci (Negara Kota Vatikan)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hongkong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungaria" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islandia" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "(Republik Islam) Iran" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlandia" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italia" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaika" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Jepang" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordania" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakhstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Republik Demokratik Rakyat Korea" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea Selatan" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Lebanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libia" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lithuania" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxembourg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Makau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Makedonia, Republik Bekas Yugoslavia" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldives" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshall Islands" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Meksiko" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Negara Federasi Mikronesia" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Republik Moldova" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Maroko" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Belanda" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antila Belanda" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "New Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "New Zealand" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nikaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Nigeria" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Island" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norwegia" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua Nugini" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filipina" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polandia" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Federasi Rusia" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts dan Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent dan Grenada" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tome dan Principe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakia (Republik Slovakia)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Solomon Islands" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Afrika Selatan" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Georgia Selatan dan Kepulauan Sandwich Selatan" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spanyol" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "St. Pierre dan Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard dan Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Swedia" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Switzerland" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Republik Arab Suriah" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Republik Persatuan Tanzania" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad dan Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turki" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Kepulauan Turks dan Caicos" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraina" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Uni Emirat Arab" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Kerajaan Inggris" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Amerika Serikat" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Kepulauan Terluar Kecil Amerika Serikat" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguai" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Kepulauan Virgin (Inggris)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Kepulauan Virgin (A.S.)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Kepulauan Wallis dan Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Sahara Barat" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yaman" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Negara" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Negara Default" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Gunakan opsi pertama kustom" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Opsi pertama kustom" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sudan Selatan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Kartu Kredit" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Label Nomor Kartu" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Nomor Kartu" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Deskripsi Nomor Kartu" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "(Umumnya) 16 digit di bagian depan kartu kredit." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Label CVC Kartu" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Deskripsi CVC Kartu" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Nilai 3 digit (di bagian belakang) atau 4 digit (di bagian depan) kartu Anda." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Label Nama Kartu" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Nama pada kartu" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Deskripsi Nama Kartu" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Nama yang dicetak di bagian depan kartu kredit Anda." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Label Bulan Kedaluwarsa Kartu" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Bulan kedaluwarsa (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Deskripsi Bulan Kedaluwarsa Kartu" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Bulan kartu kredit Anda kedaluwarsa, biasanya di bagian depan kartu." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Label Tahun Kedaluwarsa Kartu" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Tahun kedaluwarsa (THTH)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Deskripsi Tahun Kedaluwarsa Kartu" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Tahun kartu kredit Anda kedaluwarsa, biasanya di bagian depan kartu." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Teks" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Elemen Teks" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Bidang Tersembunyi" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID Pengguna (Jika telah masuk)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Nama Depan Pengguna (Jika telah masuk)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Nama Belakang Pengguna (Jika telah masuk)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Nama Tampilan Pengguna (Jika telah masuk)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Email Pengguna (Jika telah masuk)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "ID Postingan / Halaman (Jika tersedia)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Judul Postingan / Halaman (Jika tersedia)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL Postingan / Halaman (Jika tersedia)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Tanggal Hari Ini" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variabel Querystring" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Kata kunci ini dicadangkan oleh WordPress. Coba lagi nanti." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Apakah ini alamat email?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Jika kota ini dicentang, Ninja Forms akan memvalidasi input ini sebagai " "alamat email." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Kirimkan salinan formulir ke alamat ini?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Jika kotak ini dicentang, Ninja Forms akan mengirimkan salinan formulir (dan " "pesan terlampir lainnya) ke alamat ini." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Daftar" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Ini adalah status pengguna" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Nilai Terpilih" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Tambah Nilai" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Hapus Nilai" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Kalk" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Kotak centang" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Pilihan Ganda" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Jenis Daftar" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Ukuran Kotak Pilihan Ganda" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Impor Item Daftar" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Tampilkan nilai item daftar" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Impor" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Untuk menggunakan fitur ini, Anda dapat menempel CSV Anda ke dalam area teks di atas." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Format harus tampak seperti berikut:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Label,Nilai,Kalk" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Jika Anda ingin mengirimkan nilai atau kalk kosong, Anda harus menggunakan “." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Terpilih" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Jumlah" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Nilai Minimal" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Nilai Maksimal" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Langkah (jumlah naik bertahap sebesar)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Penyelenggara" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Kata sandi" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Gunakan ini sebagai bidang kata sandi pendaftaran" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Jika kotak ini dicentang, kotak teks kata sandi dan pengulangan kata sandi " "akan dibuat." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Label Masukkan Kembali Kata Sandi" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Masukkan Kembali Kata Sandi" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Tampilkan Indikator Kekuatan Kata Sandi" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Petunjuk: Panjang kata sandi sedikitnya harus tujuh karakter. Agar kata sandi " "lebih kuat, gunakan perpaduan huruf besar dan huruf kecil, angka dan simbol " "seperti ! “ ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Kata sandi tidak cocok" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Peringkat Bintang" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Jumlah Bintang" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Konfirmasi bahwa Anda bukan robot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Lengkapi bidang captcha" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Pastikan Anda telah memasukkan kunci Situs & Rahasia Anda dengan benar" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha tidak sesuai. Masukkan nilai yang benar di bidang captcha" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Pertanyaan Spam" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Jawaban Spam" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Kirim" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Pajak" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Persentase Pajak" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Harus diisi dengan persentase. misalnya 8,25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Areateks" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Tampilkan Editor Teks Kaya" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Tampilkan Tombol Unggah Media" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Nonaktifkan Editor Teks Kaya pada Seluler" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Validasi sebagai alamat email? (Bidang wajib diisi)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Nonaktifkan Input" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Pemilih tanggal" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telepon - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Mata Uang" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Definisi Mask Kustom" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Bantuan" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Pengiriman Berjangka Waktu" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Teks tombol Kirim setelah waktu habis" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Tunggu %n detik" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n akan digunakan untuk menentukan jumlah detik" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Jumlah detik untuk hitung mundur" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Jumlah detik ini adalah lamanya pengguna harus menunggu untuk mengirimkan formulir" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Jika Anda manusia, harap jangan cepat-cepat." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Anda memerlukan JavaScript untuk mengirimkan formulir ini. Aktifkan " "JavaScript dan coba lagi." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Pemetaan Bidang Daftar" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Grup Minat" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Tunggal" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Ganda" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Daftar" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Muat Ulang" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Metabox Kiriman" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Meta Pengguna (jika telah masuk)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Tagih Pembayaran" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Tidak ditemukan formulir." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Tanggal Dibuat" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "judul" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "diperbarui" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Upaya Anda gagal" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Item Induk:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Semua Item" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Tambah Item Baru" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Item Baru" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Edit Item" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Perbarui Item" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Lihat Item" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Cari Item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Tidak ditemukan di Kotak Sampah" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Kiriman Formulir" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Info Kiriman" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Tambah Formulir Baru" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Kesalahan Impor Templat Formulir." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Bidang" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Format file yang diunggah tidak valid." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Unggahan Formulir Tidak Valid." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Impor Formulir" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Ekspor Formulir" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Rumus (Lanjutan)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operasi dan Bidang (Lanjutan)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Bidang Total-Otomatis" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "File yang diunggah melebihi aturan upload_max_filesize di php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "File yang diunggah melebihi aturan MAX_FILE_SIZE yang ditentukan di formulir HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "File tidak terunggah sempurna, hanya sebagian yang berhasil terkirim." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Tidak ada file yang terkirim" #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Folder sementara tidak ada." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Gagal menulis file." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Pengunggahan berkas dihentikan oleh ekstensi." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Kesalahan pengunggahan file tidak diketahui." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Kesalahan Pengunggahan File" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Lisensi Add-On" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrasi dan Contoh Data lengkap. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Lihat Formulir" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Simpan Setelan" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Alamat IP Server" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Nama Host" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Lampirkan Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Formulir Tidak Ditemukan" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Bidang Tidak Ditemukan" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Terjadi galat tak terduga." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Pratinjau tidak ada." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Gateway Pembayaran" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Total pembayaran" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Kaitkan Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Alamat email atau cari bidang" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Teks Subjek atau cari bidang" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Lampirkan CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Label di Sini" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Teks Bantuan di Sini" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Masukkan label di bidang formulir. Inilah cara pengguna akan mengidentifikasi " "masing-masing bidang." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Default Formulir" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Disembunyikan" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Pilih posisi label Anda yang relatif terhadap elemen bidang itu sendiri." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Bidang Wajib Diisi" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "Pastikan bidang ini diisi sebelum formulir dikirim." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Opsi Jumlah" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Maks" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Langkah" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Options" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Satu" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "satu" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Dua" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "dua" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Tiga" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "tiga" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Nilai Kalk" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Membatasi jenis input yang dapat pengguna Anda masukkan ke dalam bidang ini." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "tak satupun" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Telepon AS" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "kustom" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Mask Kustom" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Mewakili karakter alfa (A-Z, a-z) - " "Hanya huruf yang boleh dimasukkan.
    • \n
    • 9 - " "Mewakili karakter numerik (0-9) - Hanya angka yang boleh " "dimasukkan.
    • \n
    • * - Mewakili karakter " "alfanumerik (A-Z, a-z,0-9) - Baik angka dan\n " "huruf boleh dimasukkan.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Batasi Input hingga Jumlah Ini" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Karakter" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Kata" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Teks yang Muncul Setelah Penghitung" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Karakter tersisa" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Masukkan teks yang ingin Anda tampilkan pada bidang sebelum pengguna " "memasukkan data apa pun." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Nama Kelas Kustom" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Kontainer" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Menambahkan kelas ekstra ke dalam wrapper bidang Anda." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Elemen" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Menambahkan kelas ekstra ke dalam elemen bidang Anda." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Jumat, 18 November 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Jadikan Default ke Tanggal Saat Ini" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Jumlah detik untuk pengiriman berjangka waktu." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Kunci Bidang" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Membuat kunci unik untuk mengidentifikasi dan menargetkan bidang Anda untuk " "pengembangan kustom." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Label yang digunakan saat menampilkan dan mengekspor kiriman." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Ditampilkan ke pengguna sebagai hover." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Deskripsi" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Urutkan sebagai Angka" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Kolom dalam tabel kiriman akan diurutkan berdasar angka." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Jumlah detik untuk hitung mundur." #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Gunakan ini sebagai bidang kata sandi pendaftaran. Jika kotak ini " "dicentang,\n kotak teks kata sandi dan pengulangan " "kata sandi akan dibuat." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Konfirmasi" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Memungkinkan input teks kaya." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Label Pemrosesan" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Nilai Kalkulasi Dicentang" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Nomor ini akan digunakan dalam kalkulasi jika kotak dicentang." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Nilai Kalkulasi Tidak Dicentang" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Nomor ini akan digunakan dalam kalkulasi jika kotak tidak dicentang." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Tampilkan Variabel Kalkulasi Ini" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr " - Pilih Variabel" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Harga" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Gunakan Jumlah" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Memungkinkan pengguna untuk memilih produk ini lebih dari satu." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Jenis produk" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Produk Tunggal (default)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multi-Produk - Tarik turun" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multi-Produk - Pilih Beberapa" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multi-Produk - Pilih Satu" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Entri Pengguna" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Harga" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Opsi Biaya" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Biaya Tunggal" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Penurunan Biaya" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Jenis Biaya" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produk" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Pilih Produk" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Jawaban" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Jawaban peka huruf besar-kecil untuk membantu mencegah pengiriman spam formulir Anda." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taksonomi" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Tambahkan Istilah Baru" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Ini adalah status pengguna." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Digunakan untuk menandai bidang untuk diproses." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Bidang Disimpan" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Bidang Umum" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Bidang Informasi Pengguna" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Bidang Penetapan Harga" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Bidang Tata Letak" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Bidang Lain-lain" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Formulir Anda berhasil dikirimkan." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Pengiriman Formulir Ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Simpan Pengiriman" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Nama Variabel" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Rumus" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Posisi Label Default" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Kunci Formulir" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Nama programatis yang bisa digunakan untuk merujuk formulir ini." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Tambahkan Tombol Kirim" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Kami sudah mengetahui bahwa formulir Anda tidak memiliki tombol kirim. Kami " "bisa menambahkan tombol tersebut secara otomatis." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Masuk" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Berlaku untuk pratinjau formulir." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Batas Kiriman" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "TIDAK berlaku untuk pratinjau formulir." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Pengaturan Tampilan" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Kalkulasi" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Harga:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Kuantitas:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Tambahkan" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Buka di jendela baru" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Jika Anda manusia dan melihat bidang ini, biarkan kosong." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Tersedia" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Masukkan alamat email yang valid!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Bidang-bidang ini harus cocok!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Jumlah Kesalahan Min" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Jumlah Kesalahan Maks" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Tambah bertahap sebesar " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Sisipkan Tautan" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Sisipkan Media" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Perbaiki kesalahan sebelum mengirimkan formulir ini." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Kesalahan Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Pengunggahan File Sedang Berlangsung" #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "PENGUNGGAHAN FILE" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Semua Bidang" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Sub-urutan" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Post ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Judul pos" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL Lampiran" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP Address" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "User ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Nama Awal" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Nama Akhir" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Nama Tampilan" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Gaya Tetap" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Cerah" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Gelap" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Gunakan konvensi penataan gaya Ninja Form default." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Kembalikan" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Kembalikan ke v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Kembalikan ke rilis 2.9.x terbaru" #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Pengaturan reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Tema reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Editor Teks Kaya (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Lebih Lanjut" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administrasi" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Formulir Kosong" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Hubungi Saya" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Contoh Tindakan Pesan Keberhasilan" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Terima kasih {field:name} telah mengisi formulir saya!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Contoh Tindakan Email" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Ini adalah tindakan email." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Halo, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Contoh Tindakan Simpan" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Ini adalah tes" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Ini tes lain." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Dapatkan Bantuan" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Apa yang Bisa Kami Bantu?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Setuju?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Metode Komunikasi Terbaik?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telepon" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Kantor Pos" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Kirim" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Pilih Daftar" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Opsi Satu" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Opsi Dua" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Opsi Tiga" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Daftar Radio" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Wastafel" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Daftar Kotak Centang" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Semua ini adalah bidang di bagian Informasi Pengguna." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Alamat" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Kota" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Kode Pos" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Semua ini adalah bidang di bagian Harga." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produk (jumlah disertakan)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produk (pisahkan jumlahnya)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Kuantitas " #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Total" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Nama Lengkap Kartu Kredit" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Nomor Kartu Kredit" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "CVV Kartu Kredit" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Masa Berlaku Kartu Kredit" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Kode Pos Kartu Kredit" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Ada berbagai bidang khusus." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Pertanyaan Anti-Spam (Jawaban = jawaban)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "jawaban" #: includes/Database/MockData.php:805 msgid "processing" msgstr "memproses" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Formulir Panjang - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Bidang" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "# Bidang" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Formulir Berlangganan Email" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Alamat Email" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Masukkan alamat email" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Berlangganan" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Formulir Produk (dengan Bidang Jumlah)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Beli" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Anda membeli " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "produk sebesar " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Formulir Produk (Jumlah Sebaris)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " produk sebesar " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Formulir Produk (Multiproduk)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produk A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Jumlah untuk Produk A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produk B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Jumlah untuk Produk B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "dari Produk A dan " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "Produk B sebesar $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formulir dengan Kalkulasi" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Penghitungan Pertama Saya" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Penghitungan Kedua Saya" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "Penghitungan dilaporkan dengan respons AJAX ( respons -> data -> kalk" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Salin" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Simpan Formulir" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Kode Pos Kartu Kredit" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Anda harus masuk untuk melihat pratinjau formulir." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Tidak Ditemukan Bidang." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Pemberitahuan: Kode pendek Ninja Form digunakan tanpa menentukan formulir." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Kode pendek Ninja Form digunakan tanpa menentukan formulir." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Alamat 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Tombol" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Kotak Centang Tunggal" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "dicentang" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "tidak dicentang" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "CVC Kartu Kredit" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Pembagi" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Pilih:" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Kabupaten" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Teks catatan bisa diedit dalam pengaturan lanjutan bidang catatan di bawah ini." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Catatan" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Konfirmasi Kata Sandi" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "kata sandi" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Silakan lengkapi recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Pengiriman Canggih" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Pertanyaan" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Posisi Pertanyaan" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Jawaban Salah" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Jumlah Bintang" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Daftar Istilah" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Tidak ada istilah untuk taksonomi ini. %sTambah istilah%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Tidak ada taksonomi yang dipilih." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Istilah yang Tersedia" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Teks Paragraf" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Teks Baris Tunggal" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Kodepos" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "dipostingan" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "String Pertanyaan" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "String Pertanyaan" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Sistem" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Pemakai" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " memerlukan pembaruan. Anda memiliki versi " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " terinstal. Versi saat ini adalah " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Bidang Pengeditan" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Nama Label" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Di Atas Bidang" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Di Bawah Bidang" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Di Kiri Bidang" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Di Kanan Bidang" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Sembunyikan Label" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Nama Kelas" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Bidang Dasar" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Multipilihan" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Tambah bidang baru" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Tambah tindakan Baru" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Perluas Menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Terbitkan" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "TERBITKAN" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Memuat" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Lihat Perubahan" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Tambah bidang formulir" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Mulai dengan menambahkan bidang formulir pertama Anda." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Tambah Bidang Baru" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Cukup klik di sini dan pilih bidang yang Anda inginkan." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Semudah itu. Atau..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Mulai dari templat" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Hubungi Kami" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Izinkan pengguna Anda menghubungi Anda dengan formulir kontak sederhana ini. " "Anda bisa menambah dan menghapus bidang, jika perlu." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Permintaan Harga" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Kelola permintaan harga dari situs web Anda dengan mudah menggunakan remplat " "ini. Anda bisa menambah dan menghapus bidang, jika perlu." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Pendaftaran Acara" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Izinkan pengguna mendaftar untuk acara Anda berikutnya dengan mudah dengan " "melengkapi formulir. Anda bisa menambah dan menghapus bidang, jika perlu." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Formulir Pendaftaran Buletin" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Tambah pelanggan dan perbanyak daftar email Anda dengan formulir pendaftaran " "buletin ini. Anda bisa menambah dan menghapus bidang, jika perlu." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Tambah tindakan formulir" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Mulai dengan menambahkan bidang formulir pertama Anda. Cukup klik tanda " "tambah dan pilih tindakan yang Anda inginkan. Semudah itu." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Gandakan (^ + C + klik)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Hapus (^ + D + klik)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Aksi" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Toggle Drawer" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Layar penuh" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Separuh layar" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Urungkan" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Selesai" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Urungkan Semua" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Urungkan Semua" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Sebentar lagi..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Belum" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Buka di jendela baru" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Nonaktifkan" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Perbaiki." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Pilih formulir" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Tanggal Saat Ini" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Sebelum meminta bantuan dari tim dukungan kami, pelajari:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Dokumen Ninja Forms THREE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Yang perlu dicoba sebelum menghubungi dukungan" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Lingkup Dukungan Kami" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Bidang Impor" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Diperbarui pada: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Dikirimkan pada: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Dikirimkan oleh: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Data Kiriman" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Lihat" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Tampilkan lebih banyak" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Bidang pengeditan" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Bidang Formulir" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Pratinjau Perubahan" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Formulir Kontak" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Ups! Add-on tersebut belum kompatibel dengan Ninja Forms TIGA. %sPelajari " "Lebih Lanjut%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s dinonaktifkan." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Bantu kami memperbaiki Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Jika Anda berlangganan, beberapa data tentang instalasi Ninja Forms Anda akan " "dikirim ke NinjaForms.com (TIDAK termasuk kiriman Anda)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Jika Anda melewatinya, tidak masalah! Ninja Forms tetap akan berfungsi dengan baik." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sIzinkan%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sJangan izinkan%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Anda tidak memiliki izin." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Izin Ditolak" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Pengembang Ninja Forms" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEBUG: Beralih ke 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEBUG: Beralih ke 3.0.x" lang/ninja-forms-mr.po000064400000640606152331132460010700 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Notice: JavaScript is required for this content." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Cheatin’ huh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Fields marked with an %s*%s are required" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Please ensure all required fields are completed." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "This is a required field" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Please answer the anti-spam question correctly." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Please leave the spam field blank." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Please wait to submit the form." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "You cannot submit the form without Javascript enabled." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "कृपया वैध ईमेल पत्ता प्रविष्ट करा." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "प्रक्रिया करत आहे" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "The passwords provided do not match." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Add Form" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Select a form or type to search" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "रद्द करा" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Insert" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Invalid form id" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Increase Conversions" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Learn More About Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Maybe Later" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Dismiss" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Users are more likely to complete long forms when they can save and return to " "complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Learn More About Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "ईमेल" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "From Name" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Name or fields" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Email will appear to be from this name." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "From Address" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "One email address or field" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Email will appear to be from this email address." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "प्रति" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Email addresses or search for a field" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Who should this email be sent to?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "विषय" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Subject Text or search for a field" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "This will be the subject of the email." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Email Message" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "संलग्नके" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Submission CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Advanced Settings" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "साधा मजकूर" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Reply To" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "पुननिर्देशित करा" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "यशस्वी संदेश" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Before Form" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "After Form" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "स्थान" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "संदेश" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplicate" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "निष्क्रीय करा" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "सक्रिय करा" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "संपादित करा" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "हटवा" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplicate" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "नाव" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "प्रकार" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Date Updated" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- View All Types" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Get More Types" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email & Actions" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "नवीन जोडा" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "New Action" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Edit Action" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Back To List" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Action Name" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Get More Actions" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Action Updated" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Select a field or type to search" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Insert Field" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Insert All Fields" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Please select a form to view submissions" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "No Submissions Found" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Submissions" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Submission" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Add New Submission" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Edit Submission" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "New Submission" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "View Submission" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Search Submissions" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "No Submissions Found In The Trash" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#/ हॅशटॅग" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "तारीख" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Edit this item" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Export this item" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "निर्यात करा" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Move this item to the Trash" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Trash" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Restore this item from the Trash" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "पूर्वस्थित करा" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Delete this item permanently" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Delete Permanently" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Unpublished" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s ago" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "सबमिट केले" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Select a form" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Begin Date" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "समाप्ती तारीख" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s updated." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Custom field updated." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Custom field deleted." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restored to revision from %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s published." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s saved." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s submitted. Preview %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s scheduled for: %2$s. Preview %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s draft updated. Preview %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Download All Submissions" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Back to list" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "User Submitted Values" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Submission Stats" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Field" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Value" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "स्थिती" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Form" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Submitted on" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modified on" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Submitted By" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "अपडेट करा" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Date Submitted" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "You will find this included with your purchase email." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "की" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Could not activate license. Please verify your license key" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Deactivate License" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "User Submitted Values:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Thank you for filling out this form." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "There is a new version of %1$s available. View version %3$s details." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "There is a new version of %1$s available. View version %3$s details or update now." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "You do not have permission to install plugin updates" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "त्रुटी" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standard Fields" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Layout Elements" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Post Creation" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Display Title" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "काहीही नाही" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "फॉर्म्स" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "All Forms" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms Upgrades" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "श्रेणीसुधारणा" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Import/Export" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Import / Export" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form Settings" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "सेटिंग्ज" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "सिस्टिम स्थिती" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "अॅड-ऑन्स" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "पूर्वावलोकन करा" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Save" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "वर्ण शिल्लक" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Do not show these terms" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Save Options" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Preview Form" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Upgrade to Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE is coming!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "How's It Going?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Check out our documentation" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Get Some Help" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Edit Menu Item" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "सर्व निवडा" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Append A Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "What would you like to name this favorite?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "You must supply a name for this favorite." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Really deactivate all licenses?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Reset the form conversion process for v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Remove ALL Ninja Forms data upon uninstall?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Edit Form" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "बचत केली" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "बचत करत आहे..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Remove this field? It will be removed even if you do not save." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "View Submissions" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms Processing" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Processing" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "लोड करीत आहे..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "No Action Specified..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Welcome to Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Thank you for updating! Ninja Forms %s makes form building easier than ever before!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Welcome to Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Changelog" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Getting started with Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "The people who build Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "What's New" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "सुरुवात करणे" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "श्रेय" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Version %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "A simplified and more powerful form building experience." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "New Builder Tab" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "When creating and editing forms, go directly to the section that matters most." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Better Organized Field Settings" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Improved clarity" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Remove all Ninja Forms data" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Better license management" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Deactivate Ninja Forms extension licenses individually or as a group from the " "settings tab." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "More to come" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "दस्तऐवजीकरण" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Take a look at our in-depth Ninja Forms documentation below." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms Documentation" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Get Support" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Return to Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "View the Full Changelog" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Full Changelog" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Go to Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "All About Forms" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "The Forms menu is your access point for all things Ninja Forms. We've already " "created your first %scontact form%s so that you have an example. You can also " "create your own by clicking %sAdd New%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Build Your Form" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Emails & Actions" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully completed." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Displaying Your Form" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Append to Page" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that page's " "content. A similiar option is avaiable in every content edit screen in its sidebar." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "शॉर्टकोड" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that space." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Template Function" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "मदत हवी आहे?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Growing Documentation" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Best Support in the Business" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "No valid changelog was found." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "View %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Disable Browser Autocomplete" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sChecked%s Calculation Value" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "This is the value that will be used if %sChecked%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sUnchecked%s Calculation Value" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "This is the value that will be used if %sUnchecked%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Include in the auto-total? (If enabled)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Custom CSS Classes" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Before Everything" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Before Label" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "After Label" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "After Everything" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Add Description" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Description Position" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Description Content" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Show Help Text" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Help Text" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "If you leave the box empty, no limit will be used" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limit input to this number" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "यापैकी" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "वर्ण" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Words" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Text to appear after character/word counter" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Left of Element" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Above Element" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Below Element" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Right of Element" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Inside Element" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Label Position" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Field ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Restriction Settings" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Calculation Settings" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "काढा" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Populate this with the taxonomy" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- None" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Placeholder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "आवश्‍यक आहे" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Save Field Settings" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sort as numeric" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "If this box is checked, this column in the submissions table will sort by number." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Admin Label" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "This is the label used when viewing/editing/exporting submissions." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "बिलिंग" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "शिपिंग" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "सानुकूल" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "User Info Field Group" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Custom Field Group" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Please include this information when requesting support:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Get System Report" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Environment" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Home URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "साईट URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms Version" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite Enabled" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "होय" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "नाही" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web Server Info" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP आवृत्ती" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Locale" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Debug Mode" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP Language" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "डिफॉल्ट" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Max Upload Size" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Max Input Nesting Level" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Installed" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Default Timezone" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Default timezone is %s - it should be UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Default timezone is %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Your server has fsockopen and cURL enabled." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Your server has fsockopen enabled, cURL is disabled." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Your server has cURL enabled, fsockopen is disabled." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Your server has the SOAP Client class enabled." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() was successful - PayPal IPN is working." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your " "hosting provider. Error:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() failed. PayPal IPN may not work with your server." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Installed Plugins" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visit plugin homepage" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "द्वारे" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "आवृत्ती" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Give your form a title. This is how you'll find the form later." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "You have not added a submit button to your form." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Input Mask" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not be removeable" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "These are the predefined masking characters" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "The 9s would represent any number, and the -s would be automatically added" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "This would prevent the user from putting in anything other than numbers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "You can also combine these for specific applications" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "For instance, if you had a product key that was in the form of " "A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force " "all the a's to be letters and the 9s to be numbers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Defined Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Payment Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Template Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "User Information" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "सर्व" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "बल्क क्रिया" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "लागू करा" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Forms Per Page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "जा" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Go to the first page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Go to the previous page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "वर्तमान पृष्ठ" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Go to the next page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Go to the last page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Form Title" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Delete this form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicate Form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Forms Deleted" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Form Deleted" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Form Preview" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "प्रदर्शित करा" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Display Form Title" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Add form to this page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Submit via AJAX (without page reload)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Clear successfully completed form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Hide successfully completed form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Restrictions" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Require user to be logged in to view form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Not Logged-In Message" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limit Submissions" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Limit Reached Message" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Please enter a message that you want displayed when this form has reached its " "submission limit and will not accept new submissions." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Form Settings Saved" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "मूलभूत सेटिंग्ज" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms basic help goes here." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Extend Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentation coming soon." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "सक्रिय" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "स्थापित केले" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "अधिक जाणून घ्या" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup / Restore" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Restore Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Data restored successfully!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Import Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Select a file" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Import Favorites" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "No Favorite Fields Found" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Export Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Export Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Please select favorite fields to export." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favorites imported successfully." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Please select a valid favorite fields file." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Import a form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Import Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Export a form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Export Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Please select a form." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Form Imported Successfully." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Please select a valid exported form file." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Import / Export Submissions" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Date Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "सामान्य" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "General Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "आवृत्ती" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Date Format" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Currency Symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA Site Key" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Get a site key for your domain by registering %shere%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA Secret Key" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA Language" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Disable Admin Notices" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "सुरु ठेवा" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Settings Saved" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Message Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Required Field Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Required field symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Error message given if all required fields are not completed" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Required Field Error" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Anti-spam error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Timer error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript disabled error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "कृपया वैध ईमेल पत्ता प्रविष्ट करा" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Processing Submission Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Password Mismatch Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "This message is shown to a user when non-matching values are placed in the " "password field." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "परवाने" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Save & Activate" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Deactivate All Licenses" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Reset Forms Conversion" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Reset Form Conversion" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "If your forms are \"missing\" after updating to 2.9, this button will attempt " "to reconvert your old forms to show them in 2.9. All current forms will " "remain in the \"All Forms\" table." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "प्रबंधक ईमेल" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "User Email" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to start " "the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms needs to update your email settings, click %shere%s to start the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja " "Forms extensions from " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Your version of the Ninja Forms Save Progress extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please " "update this extension at " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Updating Form Database" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms Upgrade Processing" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Please %scontact support%s with the error seen above." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms has completed all available upgrades!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Go to Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms Upgrade" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "अपग्रेड करा" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Upgrades Complete" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Step %d of approximately %d running" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms System Status" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Strength indicator" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Very weak" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "कमकुवत" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "मध्यम" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "दमदार" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Mismatch" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Select One" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "If you are a human and are seeing this field, please leave it blank." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Fields marked with a * are required." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "ही आवश्यक फील्ड आहे." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Please check required fields." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Calculation" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Number of decimal places." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Textbox" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Output calculation as" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Label" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Disable input?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Use the following shortcode to insert the final calculation: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automatically Total Calculation Values" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Specify Operations And Fields (Advanced)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Use An Equation (Advanced)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Calculation Method" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Field Operations" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Add Operation" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Advanced Equation" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Calculation name" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Default Value" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Custom CSS Class" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Select a Field" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Checkbox" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Unchecked" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Checked" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Show This" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Hide This" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Change Value" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "अफगाणीस्तान" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "अल्बानिआ" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "अल्जेरिया" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "अमेरिकन सामोआ" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "अँडोरा" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "अँगोला" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "अँग्विला" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "अंटार्क्टिका" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "अँटिग्वा आणि बर्बुडा" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "अर्जेंटिना" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "अर्मेनिया" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "अरुबा" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "ऑस्ट्रेलिया" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "ऑस्ट्रिया" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "अझेरबाइजन" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "बहमस" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "बाहरेन" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "बांग्लादेश" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "बार्बाडोस" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "बेलारूस" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "बेल्जियम" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "बेलिझ" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "बेनिन" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "बर्म्युडा" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "भूटान" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "बोलिविया" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia And Herzegowina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "बोटस्वाना" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "बोऊवेट आयलॅंड" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "ब्राझील" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "ब्रिटीश भारतीय महासागर प्रांत" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "ब्रुनेई डॅरूस्सलाम" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "बल्जेरिया" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "बर्किना फॅसो" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "बुरुंडी" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "कंबोडिया" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "कामेरून" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "कॅनडा" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "कॅप वर्दे" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "कीमन बेटे" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "केंद्रिय आफ्रिकन रिपब्लिक" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "चॅड" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "चिली" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "चीन" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "ख्रिसमस आयलॅंड" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "कोकोस (कीलिंग) आयलॅंड" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "कोलंबिया" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "कोमोरॉस" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Congo, The Democratic Republic Of The" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "कुक आयलँड" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "कोस्टा रिका" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "कोट दीव्होर" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croatia (Local Name: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "क्युबा" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "सायप्रस" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "चेक प्रजासत्ताक" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "डेनमार्क" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "डिजिबोटी" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "डोमिनिका" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "डोमिनिक प्रजासत्ताक" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (East Timor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "इक्वेडोर" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "इजिप्त" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El सॅल्वाडोअर" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "इक्वेटोरिअल गुइएना" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "एरिट्रीआ" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "इस्टोनिया" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "इथिओपिया" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falkland Islands (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "फॅरोए आयलँड्स" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "फिजि" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "फिनलँड" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "फ्रांस" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "France, Metropolitan" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "फ्रेंच गिनिया" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "फ्रेंच पॉलिनेशिया" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "फ्रेंच दक्षिणी प्रांत" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "गॅबन" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "गॅम्बिया" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "जॉर्जिया" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "जर्मनी" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "घाना" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "जिब्राल्टर" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "ग्रीस" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "ग्रीनलँड" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "ग्रेनाडा" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "ग्वादेलोप" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "घुआम" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "ग्वाटामाला" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "गिनिया" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "गिनिया-बिसायु" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "गयाना" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "हायटी" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard And Mc Donald Islands" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Holy See (Vatican City State)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "होंडूरस" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "हाँग काँग" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "हंगेरी" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "आइसलॅंड" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "भारत" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "इंडोनिशिया" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Islamic Republic Of)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "इराक" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "आयर्लंड" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "इस्राइल" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "इटली" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "जमाइका" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "जपान" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "जॉर्डन" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "कझखस्तान" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "केनिया" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "किरिबाती" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korea, Democratic People's Republic Of" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea, Republic Of" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "कुवैत" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "किरगिझस्तान" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Lao People's Democratic Republic" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "लात्विया" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "लेबेनॉन" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "लेसोथो" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "लायबेरिया" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libyan Arab Jamahiriya" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "लिंचेनस्टाइन" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "लिथुआनिआ" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "लक्संबॉर्ग" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "मकाऊ" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Macedonia, Former Yugoslav Republic Of" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "माडागास्कर" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "मालावी" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "मलेशिया" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "मालदिव्ज" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "माली" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "माल्टा" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "मार्शल आयलँड्स" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "मार्टिनिक" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "मौरिटानिआ" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "मॉरिशिअस" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "मायोटी" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "मॅक्सिको" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Micronesia, Federated States Of" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldova, Republic Of" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "मोनॅको" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "मॉन्गोलिआ" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "मॉन्टेनेग्रो" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "मोंटसेर्रॅट" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "मोरोक्को" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "मोझंबिक" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "म्यानमार" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "नामिबिआ" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "नाउरु" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "नेपाळ" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "नेदरलँड्स" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "नेदरलँड्स अँटिल्स" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "नवीन कॅलेडोनिआ" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "न्यू झीलँड" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "निकाराग्वा" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "नायगर" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "नायजेरिया" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "निउए" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "नॉरफोक द्वीपसमूह" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "उत्तर मॅरियाना आयलॅंड" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "नॉर्वे" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "ओमान" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "पाकिस्तान" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "पलाउ" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "पनामा" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "पपुआ नवीन गिनिआ" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "पाराग्वे" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "पेरु" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "फिलिपाइन्स" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "पोलंड" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "पोर्तुगाल" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "प्युर्टो रिको" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "कतार" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "रियुनियन" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "रोमानिया" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "रशियन फेडरेशन" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "रवांडा" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "सेंट किट्स आणि नेव्हिस" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "सेंट ल्युसिया" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "सेंट व्हिन्सेंट आणि ग्रेनेडीन्स" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "सामोआ" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "सान मारिनो" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "साओ टोम आणि प्रिंसिप" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "सौदी अरेबिया" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "सेनेगल" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "सेरिबा" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "सीचेलेस" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "सिएरा लिऑन" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "सिंगापूर" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakia (Slovak Republic)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "स्लोव्हेनिया" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "सोलोमोन आयलॅंड" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "सोमालिआ" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "दक्षिण आफ्रिका" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "South Georgia, South Sandwich Islands" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "स्पेन" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "श्रीलंका" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "St. Pierre And Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "सुदान" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "सुरिनाव" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "स्वालबार्ड आणि जान मायेन आयलँड" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "स्वाझिलँड" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "स्वीडन" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "स्वित्झर्लंड" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syrian Arab Republic" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "तैवान" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "ताजिकिस्तान" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania, United Republic Of" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "थायलंड" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "टोगो" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "टोकेलाऊ" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "टोंगा" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "त्रिनिदाद आणि टोबॅगो" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "ट्युनिशिया" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "टर्की" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "तुर्कमेनस्तान" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "टर्क्स आणि काइकॉस आयलँड्स" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "तूवालू" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "युगांडा" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "युक्रेन" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "यूनायटेड अरब एमिरेट्स" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "युनायटेड किंग्डम" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "यूनायटेड स्टेट्स" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "उरुग्वे" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "उझबेकिस्तान" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "वानुआटु" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "वेनेझूएला" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Viet Nam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "वर्जिन आयलँड (ब्रिटीश)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Virgin Islands (U.S.)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "वॉलिस आणि फ्‍यूचूना आयलँड" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "पश्चिमी सहारा" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "येमेन" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "युगोस्लाव्हिया" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "झाम्बिया" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "झिंबाब्वे" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "देश" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Default Country" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Use a custom first option" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Custom first option" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "दक्षिण सुदान" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Credit Card" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Card Number Label" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "कार्ड क्रमांक" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Card Number Description" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "The (typically) 16 digits on the front of your credit card." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Card CVC Label" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Card CVC Description" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "The 3 digit (back) or 4 digit (front) value on your card." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Card Name Label" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Name on the card" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Card Name Description" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "The name printed on the front of your credit card." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Card Expiry Month Label" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Expiration month (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Card Expiry Month Description" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "The month your credit card expires, typically on the front of the card." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Card Expiry Year Label" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Expiration year (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Card Expiry Year Description" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "The year your credit card expires, typically on the front of the card." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "मजकूर" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Text Element" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Hidden Field" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "User ID (If logged in)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "User Firstname (If logged in)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "User Lastname (If logged in)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "User Display Name (If logged in)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "User Email (If logged in)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Post / Page ID (If available)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Post / Page Title (If available)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Post / Page URL (If available)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Today's Date" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Querystring Variable" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "This keyword is reserved by WordPress. Please try another." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Is this an email address?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "If this box is checked, Ninja Forms will validate this input as an email address." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Send a copy of the form to this address?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "सूची" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "This is the user's state" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Selected Value" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Add Value" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Remove Value" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "रेडिओ" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Checkboxes" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multi-Select" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "List Type" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Multi-Select Box Size" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Import List Items" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Show list item values" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "आयात करा" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "To use this feature, you can paste your CSV into the textarea above." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "The format should look like the following:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Label,Value,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "If you want to send an empty value or calc, you should use '' for those." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "निवडले" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Number" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimum Value" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maximum Value" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Step (amount to increment by)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizer" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "पासवर्ड" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Use this as a registration password field" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "If this box is checked, both password and re-password textboxes will be output." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Re-enter Password Label" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Re-enter Password" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Show Password Strength Indicator" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ " "% ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "संकेतशब्द जुळत नाही" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Star Rating" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Number of stars" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Confirm that you are not a bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Please complete the captcha field" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Please make sure you have entered your Site & Secret keys correctly" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha mismatch. Please enter the correct value in captcha field" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Spam Question" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Spam Answer" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "सादर करा" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "कर" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Tax Percentage" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Should be entered as a percentage. e.g. 8.25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Textarea" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Show Rich Text Editor" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Show Media Upload Button" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Disable Rich Text Editor on Mobile" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Validate as an email address? (Field must be required)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Disable Input" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datepicker" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Phone - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "चलन" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Custom Mask Definition" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "मदत" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Timed Submit" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Submit button text after timer expires" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Please wait %n seconds" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n will be used to signify the number of seconds" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Number of seconds for countdown" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "This is how long a user must wait to submit the form" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "If you are a human, please slow down." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "You need JavaScript to submit this form. Please enable it and try again." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "List Field Mapping" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Interest Groups" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "एकल" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "बहुविध" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Lists" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "रीफ्रेश करा" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Submission Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "User Meta (if logged in)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Collect Payment" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "No forms found." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "तयार केल्याची तारीख" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "शीर्षक" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "अद्यतनित केले" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Go get a life, script kiddies" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Parent Item:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "All Items" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Add New Item" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "New Item" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Edit Item" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Update Item" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "View Item" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Search Item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Not found in Trash" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Form Submissions" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Submission Info" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Add New Form" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Form Template Import Error." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Fields" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "There uploaded file is not a valid format." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Invalid Form Upload." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Import Forms" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Export Forms" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Equation (Advanced)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operations and Fields (Advanced)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Auto-Total Fields" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "No file was uploaded." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Unknown upload error." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "File Upload Error" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Add-On Licenses" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrations and Mock Data complete. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "View Forms" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "सेटिंग्ज जतन करा." #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Server IP Address" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "होस्ट नाव" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Append a Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Form Not Found" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Field Not Found" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "एक अनपेक्षित त्रुटी आली." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Preview does not exist." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Payment Gateways" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Payment Total" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Hook Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Email address or search for a field" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Subject Text or seach for a field" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Attach CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Label Here" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Help Text Here" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Enter the label of the form field. This is how users will identify individual fields." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Form Default" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Hidden" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Select the position of your label relative to the field element itself." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "आवश्यक फिल्ड" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Ensure that this field is completed before allowing the form to be submitted." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Number Options" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "मिनिट" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Step" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "पर्याय" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "एक" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "एक" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "दोन" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "दोन" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "तीन" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "तीन" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Calc Value" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Restricts the kind of input your users can put into this field." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "काहीही नाही" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "US Phone" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "सानुकूल" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Custom Mask" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Represents an alpha character " "(A-Z,a-z) - Only allows letters to be entered. " "
    • \n
    • 9 - Represents a numeric character " "(0-9) - Only allows numbers to be entered.
    • \n " "
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and\n letters to be " "entered.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Limit Input to this Number" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Character(s)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Word(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Text to Appear After Counter" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "वर्ण शिल्लक" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Enter text you would like displayed in the field before a user enters any data." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Custom Class Names" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Container" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Adds an extra class to your field wrapper." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Adds an extra class to your field element." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "dd/mm/yyyy" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Friday, November 18, 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Default To Current Date" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Number of seconds for timed submit." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Field Key" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Creates a unique key to identify and target your field for custom development." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Label used when viewing and exporting submissions." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Shown to users as a hover." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "वर्णन" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sort as Numeric" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "This column in the submissions table will sort by number." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Number of seconds for the countdown" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Use this as a reistration password field. If this box is check, " "both\n password and re-password textboxes will be output" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "पुष्टी करा" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Allows rich text input." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Processing Label" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Checked Calculation Value" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "This number will be used in calculations if the box is checked." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Unchecked Calculation Value" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "This number will be used in calculations if the box is unchecked." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Display This Calculation Variable" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Select a Variable" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "किंमत" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Use Quantity" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Allows users to choose more than one of this product." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Product Type" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Single Product (default)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multi Product - Dropdown" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multi Product - Choose Many" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multi Product - Choose One" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "User Entry" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "किंमत" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Cost Options" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Single Cost" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Cost Dropdown" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Cost Type" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "उत्पादन" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Select a Product" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Answer" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "A case sensitive answer to help prevent spam submissions of your form." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomy" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Add New Terms" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "This is a user's state." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Used for marking a field for processing." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Saved Fields" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Common Fields" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "User Information Fields" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Pricing Fields" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Layout Fields" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Miscellaneous Fields" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "आपला अर्ज यशस्वीरित्या सबमिट केला." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "निंन्जा फॉर्म्स सबमिशन" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "सबमिशन जतन करा" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Variable Name" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Equation" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Default Label Position" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Form Key" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Programmatic name that can be used to reference this form." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Add Submit Button" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Logged In" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Does apply to form preview." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Submission Limit" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Does NOT apply to form preview." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Display Settings" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Calculations" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "किंमत:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "प्रमाणः" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "जोडा" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Open in new window" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "If you are a human seeing this field, please leave it empty." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "उपलब्ध" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Please enter a valid email address!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "These fields must match!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Number Min Error" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Number Max Error" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Please increment by " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Insert Link" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Insert Media" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Please correct errors before submitting this form." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot Error" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "File Upload in Progress." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "FILE UPLOAD" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "All Fields" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Sub Sequence" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Post ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Post Title" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Post URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP पत्ता" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "User ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "प्रथम नाव" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "आडनाव" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "प्रदर्शन नाव" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Opinionated Styles" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "प्रकाश" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "गडद" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Use default Ninja Forms styling conventions." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Rollback" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Rollback to v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Rollback to the most recent 2.9.x release." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha Settings" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA Theme" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Rich Text Editor (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "प्रगत" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administration" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Blank Forms" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "माझ्याशी संपर्क करा" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Mock Success Message Action" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Thank you {field:name} for filling out my form!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Mock Email Action" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "This is an email action." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hello, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Mock Save Action" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "This is a test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "This is another test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "मदत मिळवा" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "What Can We Help You With?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Agree?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Best Contact Method?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "फोन" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Snail Mail" #: includes/Database/MockData.php:315 msgid "Send" msgstr "पाठवा" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "किचन सिंक" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Select List" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Option One" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Option Two" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Option Three" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Radio List" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Bathroom Sink" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Checkbox List" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "These are all the fields in the User Information section." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "पत्ता" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "शहर" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "पिन कोड" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "These are all the fields in the Pricing section." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Product (quanitity included)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Product (seperate quantity)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "प्रमाण" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "एकूण" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Credit Card Full Name" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "क्रेडीट कार्ड क्रमांक" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Credit Card CVV" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Credit Card Expiration" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Credit Card Zip Code" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "These are various special fields." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Anti-Spam Question (Answer = answer)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "answer" #: includes/Database/MockData.php:805 msgid "processing" msgstr "प्रक्रिया करत आहे" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Long Form - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Fields" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Field #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Email Subscription Form" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "ईमेल पत्ता" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "आपला ईमेल पत्ता प्रविष्ट करा" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Subscribe" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Product Form (with Quantity Field)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "खरेदी करा" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "You purchased " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "product(s) for " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Product Form (Inline Quantity)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " product(s) for " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Product Form (Multiple Products)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Product A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Quantity for Product A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Product B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Quantity for Product B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "of Product A and " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "of Product B for $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Form with Calculations" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "My First Calculation" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "My Second Calculation" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Calculations are returned with the AJAX response ( response -> data -> calcs" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "कॉपी" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Save Form" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Credit Card Zip" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "You must be logged in to preview a form." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "No Fields Found." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Notice: Ninja Forms shortcode used without specifying a form." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms shortcode used without specifying a form." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "पत्ता 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "बटण" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Single Checkbox" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "checked" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "unchecked" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Credit Card CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "निवडा" #: includes/Fields/ListState.php:26 msgid "State" msgstr "राज्य" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Note text can be edited in the note field's advanced settings below." #: includes/Fields/Note.php:45 msgid "Note" msgstr "टीप" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Password Confirm" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "पासवर्ड" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Please complete the recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Advanced Shipping" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Question" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Question Position" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Incorrect Answer" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Number of Stars" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Terms List" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "No available terms for this taxonomy. %sAdd a term%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "No taxonomy selected." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Available Terms" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Paragraph Text" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Single Line Text" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "झिप" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "पोस्ट" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Query Strings" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Query String" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "वापरकर्ता" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " requires an update. You have version " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " installed. The current version is " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Editing Field" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Label Name" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Above Field" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Below Field" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Left of Field" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Right of Field" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Hide Label" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Class Name" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Basic Fields" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Mult-Select" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Add new field" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Add new action" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Expand Menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "प्रकाशित करा" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "प्रकाशित करा" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "लोड करीत आहे" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "View Changes" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Add form fields" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Get started by adding your first form field." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Add New Field" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Just click here and select the fields you want." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "It's that easy. Or..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Start from a template" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "आमच्याशी संपर्क साधा" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Quote Request" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Event Registration" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Newsletter Sign Up Form" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Add form actions" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicate (^ + C + click)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Delete (^ + D + click)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "कृती" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Toggle Drawer" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "पूर्ण स्क्रिन" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Half screen" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "पूर्ववत करा" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "झाले" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Undo All" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Undo All" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "जवळजवळ पोहोचलो आहे..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "अद्याप नाही" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Open in new window" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "De-activate" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Fix it." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Select a form" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Being Date" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Before requesting help from our support team please review:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE documentation" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "What to try before contacting support" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Our Scope of Support" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Import Fields" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Updated on: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Submitted on: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Submitted by: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Submission Data" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "पहा" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "अजून दाखवा" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Editing field" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Form Fields" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Preview Changes" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "संपर्क अर्ज" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s was deactivated." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Please help us improve Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "If you skip this, that's okay! Ninja Forms will still work just fine." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sAllow%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sDo not allow%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "You do not have permission." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Permission Denied" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEBUG: Switch to 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEBUG: Switch to 3.0.x" lang/ninja-forms-ms_MY.mo000064400000254211152331132460011274 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 #&>C@$Z?0Du |  k y L3F58  -6?EL\ e s    ,s:**- =IXas    wogg5n} $ !   ' 3=E&W~    $26: L X;e   (Hb i t  #+26 ; FRez L AQfu (:ILe j w  + 3">ay W&%,R a n {  :N nz$ )3C R_p $#* 9 DOf}   $[7 ) 6EKbu " ( ;H!W y  v -5 = I S]l|   #%,0R' MOUg <!^fo   3#?c   $ (.W\s)    0 LWnu |  % 4@FM R_go 7,q1  ?!' EQcx    " (4Pd lv  ! |   %Qh`PnQ OrQD<Y%1EwH    . <J'[     /?Td! /  9 D J R  [ &g        2  " L)  v      !   %  5 C K S j  p ~             $ 5 <  L  Y  d  o z &       k B  S  ^  i s w       _ 2:A#a  29 B M Xem    2 HV^ct W ) 9GP _k  +A[{o!Zc|1|fUXLZUV5',2Ibs!4 "@FUnuD0=!_fw##)9>CN^     )> T_r    )CR cq C S5_)!2-P~"#%$I#n8C yD (  ) +'!(S!j|!!%!$","3"S"\"a" "" "" " " "" ##+#1#8# G#Q#b#~### # ## #"$ 5$:B$}$ $$$$$$ $ $ $$ %% #%1% 7%B%T%l% % %%+% %%>%:&*C& n&y&&&&&&+&+'4' H'i'~'?''''' ((*$(O(b(j(|(( ((( ( (( (( ))")2) F) T)a)p)) ) ) ))) ) ) ) * **V?*G****(*%+-+4+F+N+ ]+ h+ u+1++++ + , ,*,@, [, h,r,z, ,,, ,,, ,r,l-|--- -%- -- - -(. ,. 6.A.Y. i.u....#.... ./! /"./ Q/\/k/{//// //&/&/ !0 ,090 H0V0e0m0|000 00 000 001 1<1Q1n1t1111 11 11+1 2!2)2$22W2d2SB3n3/4;549q4J44*55G6 727#7 78\8G8:;9Fv99xW:*:0:9,;+f;!;;9;<<4<C<[<t<4<B<\=_=3x=5==:>q>Z]???A?:@@&gAGAA AAABBDB B CCC C&C-C^3CCCC CCCCCCCCD DD.D E&E/EDESE$dEE E E E EE EE FF*F.F6F QF^F,xFOF[F)QG{G( H3H UGUKUOSUU UUUUUUUU V"V3V6VVV_VeVkVqVzVVVVV VV VVV WW0W@WSW cWmWsWyW }WWWWBWfW8PX Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedTindakanAktifkanAktifTambahAdd DescriptionAdd FormTambah BaharuAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesTambahanAlamatAlamat 2Adds an extra class to your field element.Adds an extra class to your field wrapper.E-mel PentadbirAdmin LabelAdministrationLanjutanAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaSemuaAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Hampir selesai...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaRalat tidak dijangka berlaku.AndorraAngolaAnguillaJawapanAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageTetapkanArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesTersediaAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanPengebilanBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaTindakan PukalBurkina FasoBurundiButangCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaBatalCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelNombor KadCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Baki aksaraAksaraMenipu’ huh?Check out our documentationKotak semakCheckbox ListKotak semakCheckedChecked Calculation ValueChileChinaChristmas IslandBandar:Class NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.SahkanConfirm that you are not a botCongoCongo, The Democratic Republic Of TheBorang KontrakHubungi SayaHubungi KamiContainerTeruskanCook IslandsKosCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyNegaraCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameNombor Kad KreditCredit Card ZipCredit Card Zip CodeKreditCroatia (Local Name: Hrvatska)CubaMata wangCurrency SymbolHalaman semasaSuai LangganCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionMedan tempahan telah dipadam.Medan tempahan telah dikemaskinikan.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xGelapData restored successfully!TarikhTarikh DiciptaDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateNyahaktifDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.LalaiDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateNilai LalaiDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsHapusDelete (^ + D + click)Hapus Secara KekalDelete this formHapus butir ini secara kekalDenmarkHuraianDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?KetepikanPaparkanDisplay Form TitleDisplay NameSeting PaparanDisplay This Calculation VariableDisplay TitleDisplaying Your FormPembahagiDjiboutiDo not show these termsDokumentasiDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicSelesaiDownload All SubmissionsJuntai bawahSalinanDuplicate (^ + C + click)Duplicate FormEcuadorSuntingEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmelEmail & ActionsAlamat emelEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsTarikh TamatEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Masukkan alamat e-mel andaEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaRalatError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)EksportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADGagal menulis fail ke dalam cakera.Kepulauan Falkland (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.MedanField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiRalat Memuat Naik FailFile Upload in Progress.Muat naik fail dihentikan oleh sambungan.FinlandNama PertamaFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersBorangForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatBorangForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressDaripada NamaFull ChangelogFull screenGabonGambiaUmumTetapan UmumGeorgiaGermanyDapatkan BantuanGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Cara BermulaGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.PergiGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!BantuanHelp TextHelp Text HereTersembunyiMedan TersembunyiHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Negeri Bandar Vatican)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagNama HosHow's It Going?HungaryAlamat IPIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskMasukkanInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementDipasangInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKekunciKiribatiSemua BendaKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicNama AkhirLatviaLayout ElementsLayout FieldsKetahui Lebih LanjutLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLesenLiechtensteinTerangLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberSenaraiList Field MappingList TypeSenaraiLithuaniaMemuatkanSedang memuat...LokasiBerdaftar MasukLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMungkin KemudianMayotteMediumMesejMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchKehilangan folder sementara.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeBerbilangMy First CalculationMy Second CalculationMySQL VersionMyanmarNamaName on the cardName or fieldsNamibiaNauruPerlukan Bantuan?NepalNetherlandsAntilles BelandaNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingPenyerahan Ninja FormNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueTidakNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sTiada fail yang dimuat naik.No forms found.No taxonomy selected.No valid changelog was found.TiadaNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNotaNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanSatuOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoPilihanOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitVersi PHPPENERBITANPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:Kata laluanPassword ConfirmPassword Mismatch LabelKata laluan tidak padananPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesTelefonPhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.Pemegang tempatTeks KosongPlease %scontact support%s with the error seen above.Sila jawab soalan anti-spam dengan betul.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Sila pastikan semua medan diperlukan lengkap.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Sila masukkan alamat e-mel yang sah.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Sila biarkan medan spam kosong.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsSila tunggu untuk menyerahkan borang.PluginsPolandPopulate this with the taxonomyPortugalSiarPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitleURL KirimanPratontonPreview ChangesPreview FormPreview does not exist.HargaHarga:Pricing FieldsMemprosesProcessing LabelProcessing Submission LabelProdukProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.SiarPuerto RicoBeliQatarKuantitiQuantity for Product AQuantity for Product BKuantiti:Query StringQuery StringsQuerystring VariableSoalanQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaUbah HalaBuangRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?DiperlukanRuangan yang Perlu DiisiRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+PulihkanRestore Ninja FormsRestore this item from the TrashRestriction SettingsSekatanRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaPersekutuan RusiaRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSimpan BorangSave OptionsSimpan TetapanSimpan PenyerahanDisimpanSaved FieldsMenyimpan...Search ItemSearch SubmissionsPilihPilih SemuaSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.DipilihSelected ValueHantarSend a copy of the form to this address?SenegalSerbiaServer IP AddressTetapanSettings SavedSeychellesPenghantaranKod pendekShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonPaparkan LebihShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeTunggalSingle CheckboxSingle CostSingle Line TextSingle Product (default)URL TapakSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateNegeriStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorKuatSub SequenceSubjekSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsHantarSubmit button text after timer expiresSubmit via AJAX (without page reload)?DiserahkanSubmitted BySubmitted by: Dihantar padaSubmitted on: LangganMesej kejayaanSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemStatus SistemTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfCukaiTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTeksText ElementText to Appear After CounterText to appear after character/word counterKawasan teksTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.Kata laluan disediakan tidak padan.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.Fail yang dimuat naik melebihi arahan MAX_FILE_SIZE yang telah dinyatakan dalam borang HTML.The uploaded file exceeds the upload_max_filesize directive in php.ini.Fail yang dimuat naik tidak dimuat naik dengan sepenuhnya.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.Ruang ini perlu diisiRuang ini perlu diisi.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersTigaTimed SubmitTimer error messageTimor-Leste (East Timor)KepadaTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaJumlahTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluDuaJenisURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.Buat asalUndo AllUnited Arab EmiratesUnited KingdomAmerika SyarikatUnited States Minor Outlying IslandsUnknown upload error.UnpublishedKemaskiniUpdate ItemUpdated on: Updating Form DatabaseNaik tarafUpgrade to Ninja Forms THREENaik TarafUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.penggunaUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersiVersi %sVery weakVietnamLihatView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogKepulauan Virgin (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.LemahWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYaYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.Anda tidak boleh serahkan borang tanpa Javaskrip didayakan.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Borang anda telah berjaya diserahkan.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipKod Zipa - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allolehcharacter(s) leftcheckedSalincustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ytiadadaripadaof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha SettingsSegarkan Semulasmtp_portthreetajuktwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.lang/ninja-forms-es_ES.po000064400000661576152331132460011271 0ustar00msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2018-01-08 20:14-0500\n" "Last-Translator: Jesus Garcia \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.5.5\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Aviso: Se requiere JavaScript para este contenido." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Trampeando, eh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Campos marcados con %s*%s son requeridos" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Favor de estar seguro que todos los campos estén completos." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Este campo es requerido." #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "" "Favor de contestar la pregunta de anti-spam (contra el correo no deseado) " "correctamente." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Favor de dejar vacante el campo de spam (correo no deseado)." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Favor de esperar para submitir el formulario." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "No se puede submitir el formulario sin permitir Javascript." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Favor de registrar una dirección de correo electrónico verdadera." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Procesando" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Las contraseñas previstas no son iguales. " #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Agregar formulario" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Selecciona un formulario o tipo de búsqueda" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Cancelar" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Insertar" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Id. de formulario inválido" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Aumentar conversaciones" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "¿Sabías que puedes aumentar la conversión de formularios al dividir " "formularios más grandes en otros más pequeños, es decir, partes que se " "pueden asimilar más fácilmente?

    La extensión de los formularios " "multipartes para Ninja Forms hace que esto sea rápido y sencillo.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Obtén más información acerca de los formularios multipartes" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Quizás más tarde" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 #: includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Descartar" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Es más probable que los usuarios llenen formularios más largos si pueden " "guardarlos y regresar más adelante para completarlos.

    La extensión Guardar " "progreso para Ninja Forms hace que esto sea rápido y sencillo.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Obtén más información acerca de Guardar progreso" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Dirección de correo electrónico" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Nombre de quién procede el correo" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Nombre o campos" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Correo electrónico aparecerá ser de este nombre." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Dirección de que proviene el correo" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Solamente una dirección de correo electrónico o uno campo " #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Correo electrónico aparecerá ser de esta dirección." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Para" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Direcciónes de correos electrónicos o buscar un campo" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "¿Quién debe recibir este correo electrónico?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Sujeto" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Texto de Sujeto o buscar un campo" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Esto será el sujeto del correo electrónico." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Mensaje de Correo Electrónico" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Archivos Adjuntos" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Submisión CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Configuración Avanzada" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Formato" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Texto sin formato" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Responder a" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Redirigir" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Mensaje de Exito" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Formulario Anterior" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Formulario Posterior" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Ubicación" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Mensaje" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "Duplicar" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Desactivar" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Activar" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Editar" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Borrar" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplicar" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nombre" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Escribir" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Fecha Actualizado" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "Ver Todos los Tipos" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Obtener más tipos" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Dirección de Correo Electrónico y Acciónes" #: deprecated/classes/notifications.php:219 #: deprecated/classes/subs-cpt.php:118 deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 #: includes/Admin/CPT/Submission.php:47 includes/Config/FieldSettings.php:153 #: includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Añadir Nuevo" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Nueva Acción" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Editar Acción" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Regresar a la Lista" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Nombre de Acción" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Obtener más acciones" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Acción Actualizada" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Seleccionar un campo o escribir para buscar" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Insertar un Campo" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Insertar Todos los Campos" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Favor de seleccionar un formulario para ver las sumisiones." #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Ninguna Sumisión Encontrada" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Sumisiones" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Sumisión" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Añadir Sumisión Nueva" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Editar Sumisión" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Sumisión Nueva" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Ver Sumisión" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Buscar Sumisiones" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "No Sumisiones Encontradas en la Basura" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 #: includes/Config/MergeTagsSystem.php:27 includes/Database/MockData.php:620 #: includes/Fields/Date.php:30 msgid "Date" msgstr "Fecha" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Editar este artículo" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Exportar este artículo" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 #: includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Exportar" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Mover este artículo a la Basura" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Basura" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Restaurar este artículo de la Basura" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Restaurar" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Borrar este artículo permanentemente" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Borrar permanentemente" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Inédito" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s atrás" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Presentado" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Seleccionar un formulario" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Fecha de Comenzar" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Fecha de Terminar" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s actualizada." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Campo personalizado actualiza." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Campo personalizado borrada." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restaurado para revisión desde %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s publicado." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s guardado." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s enviado. Vista previa%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s programado para: %2$s. Vista previa%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "" "%1$s borrador actualizado. Vista previa" "%3$s" #: deprecated/classes/subs-cpt.php:709 #: includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Descargar Todas las Sumisiónes" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Regresar a la lista" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Valores Presentados por el Usuario " #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Estadísticas de Sumisión" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Campo" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Valor" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Estatus" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 #: includes/Admin/Menus/ImportExport.php:99 includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formulario" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Presentado el" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modificado el" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Presentado Por" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Actualización" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Fecha Presentado" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms no puede ser activado por un red. Favor de visitar el tablero " "(dashboard) de cada sitio para activar el plugin. " #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Usted encontrará éste incluido con su correo electrónico de compra." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Clave" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "" "No se pudo activar la licencia . Verifique por favor su número de licencia " #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Desactivar Licencia" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Valores Presentados por Usuarios" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Gracias por completar este formulario." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Hay una nueva versión de %1$s disponible. Ver detalles de la versión %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Hay una nueva versión de %1$s disponible. Ver detalles de la versión %3$s o actualizar ahora." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "" "No tienes autorización para instalar las actualizaciones de complementos" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Error" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Campos Estándares" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Elementos de Disposición" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Creación de Puesto" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Favor de calificar %sNinja Forms%s %s on %sWordPress.org%s para ayudarnos " "guardar este plugin gratis. iGracias del equipo WP Ninjas!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Título de Visualización" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Ninguno" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formularios" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Todos los Formularios" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Actualizaciones (Upgrades) de Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Actualizaciones" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importar/Exportar" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importar/Exportar" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ajustes de Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Ajustes" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Estado del Sistema" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Complementos" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Preestrenar" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Guardar" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "tipos restantes" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "No mostrar estes artículos." #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Guardar Opciones" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Preestrenar el Formulario" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Actualiza a Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "¡Cumples los requisitos para actualizar a Ninja Forms THREE versión " "Candidate! %sActualizar ahora%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "¡Ya llega THREE!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Se está por hacer una actualización importante a Ninja Forms. %sObtén más " "información acerca de las nuevas funciones, la compatibilidad con versiones " "anteriores y las preguntas frecuentes.%s" #: deprecated/includes/admin/notices.php:53 #: includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "¿Cómo va eso?" #: deprecated/includes/admin/notices.php:54 #: includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "¡Gracias por usar Ninja Forms! Esperamos que hayas encontrado todo lo que " "necesitas, pero si tienes alguna pregunta:" #: deprecated/includes/admin/notices.php:55 #: includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Revisa nuestra documentación" #: deprecated/includes/admin/notices.php:56 #: includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Obtén ayuda" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Editar Artículo del Menu" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Seleccionar Todo" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Anexar Un Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "¿Qué te gustaría llamar a este favorito? " #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Debe proporcionar un nombre para este favorito." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "¿Realmente desactivar todas las licencias?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Restablecer el proceso de conversión de formulario para v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "¿Eliminar TODOS los datos de Ninja Forms sobre desinstalación?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Editar Formulario" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Guardado" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Guardando..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "¿Eliminar este campo? Será eliminado aún si usted no lo guarda." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Ver Sumisiones" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms Está Procesando" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms- Está Procesando" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Cargando..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "No Acción Especificado" #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "El proceso ha comenzado; favor de tener paciencia. Esto puede tomar varios " "minutos. Usted será redirigida cuando finalice el proceso. " #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Bienvenido a Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "iGracias por actualizar! iNinja Forms %s hace construir formularios más " "fácil que nunca !" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Bienvenido a Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Historial de Cambios" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Primeros pasos con Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Las personas que construyen Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Qué Hay de Nuevo" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Empezando " #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Créditos" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versión %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Una experiencia simplificada y más poderosa de construir formularios." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Etiqueta de Constructor Nuevo" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Al crear y editar formularios, vaya directamente a la sección que más " "importa." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Ajustes de Campo Mejor-Organizados " #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Los ajustes más comunes se muestran inmediatamente, mientras que otros " "ajustes, no esenciales, se encuentran escondidos en el interior de las " "secciones expandibles." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Claridad Mejorada" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Junto con la ficha \"Construir su formulario\", hemos eliminado " "\"Notificaciones\" en favor de \"Los correos electrónicos y acciones.\" Esta " "es una indicación mucho más clara de lo que puede hacerse en esta ficha. " #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Eliminar Todos los Datos de Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Hemos añadido la opción para eliminar todos los datos de Ninja Forms " "(presentaciones, formularios, campos , opciones ) cuando se elimina el " "plugin. Lo llamamos la opción nuclear." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Mejor Administración de Licencias" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Desactivar las licencias de extensión de Ninja Forms de forma individual o " "en grupo a partir de la ficha de configuración ." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Más por venir " #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Las actualizaciones de la interfaz de esta versión sientan las bases para " "algunas grandes mejoras en el futuro. La versión 3.0 se apoyará en estos " "cambios para hacer Ninja Forms un constructor de la forma más estable, " "potente y fácil de usar." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Documentación" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "" "Echa un vistazo a nuestra documentación de Ninja Forms en profundidad más " "adelante." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Documentación de Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Obtener soporte " #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Regresar a Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Ver la lista completa de cambios " #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Historial de Cambios Completo" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Ir a Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Utilice los siguientes consejos para empezar a usar Ninja Forms. iVa a estar " "en funcionamiento en muy poco tiempo!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Todo Sobre Formularios" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "El menú de los formularios es su punto de acceso para todas las cosas de " "Ninja Forms. Ya hemos creado tu primera %s contact form%s quedando con un " "ejemplo. También puede crear su propio haciendo clic %sAdd New%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Construya Su Formulario" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Aquí es donde se va a construir tu formulario añadiendo campos y " "arrastrándolos a la orden que desea que aparezcan. Cada campo tendrá una " "variedad de opciones, tales como etiquetas, posición de la etiqueta , y " "marcador de posición." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Emails y Acciones" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Si usted quisiera que su formulario le notifique a través de correo " "electrónico cuando un usuario hace clic en Enviar, usted puede configurar " "esto en esta ficha. Usted puede crear un número ilimitado de mensajes de " "correo electrónico, incluyendo mensajes de correo electrónico enviados al " "usuario que llenó el formulario ." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Esta ficha mantenga la configuración general de formulario, como el título y " "el método de envío, así como los ajustes de pantalla, como ocultar un " "formulario cuando se haya completado con éxito ." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Visualización de su Formulario " #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Anexar a la Página" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "En Comportamiento Básico de Formularios en la Configuración del Formulario, " "usted puede seleccionar fácilmente una página que le gustaría que el " "formulario anexa automáticamente al final del contenido de esa página. Una " "opción similar es disponible en cada pantalla de edición de contenidos en su " "barra lateral." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Código Corto" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Coloque %s en cualquier área que acepte códigos cortos para mostrar su forma " "en cualquier lugar que desee. Incluso en medio de su página o mensajes de " "contenido." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms proporciona un widget que se puede colocar en cualquier área " "Widgetized de su sitio y seleccionar exactamente qué formulario usted desea " "que se muestren en ese espacio." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Función de Plantilla" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms también viene con una plantilla simple de función que se puede " "colocar directamente en un archivo de plantilla php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "¿Necesita ayuda?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Documentación Creciente" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "La documentación está disponible abarca desde %sTroubleshooting%s a nuestro " "%sDeveloper API%s. Nuevos documentos se puede añadir cada día." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "El Mejor Soporte en el Negocio" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Nosotros haremos todo lo posible para proporcionar a cada usuario de Ninja " "Forms con el mejor apoyo posible. Si encuentra un problema o tiene alguna " "pregunta, póngase en contacto con nosotros, %splease contact us%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "iGracias por actualizar a la versión más reciente! iNinja Forms %s está " "preparado para hacer de su experiencia en la gestión de sumisiones una " "agradable!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms es creado por un equipo mundial de desarrolladores que tienen " "como objetivo proporcionar al # 1 WordPress comunidad de creación de " "formularios plugin." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "No se encontró cambios válidos." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Ver %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Desactivar Autocompletador del Navegador" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sChecked%s Valor de Cálculo" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Este es el valor que se utilizará si %sChecked%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sUnchecked%s Valor de Cálculo" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Este es el valor que se utilizará si %sUnchecked%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "¿Incluir en la auto- totales? (Si está activado)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Clases CSS Personalizadas" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Antes de Todo" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Etiqueta Anterior" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Etiqueta Posterior" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Después de Todo" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Si \" texto desc\" está activado, habrá un signo de interrogación %s " "colocado al lado del campo de entrada. Al pasar por encima de este signo de " "interrogación se mostrará el texto desc." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Añadir Descripción" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Posición de Descripción " #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Contenido de Descripción " #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Si \"el texto de ayuda\" está activado, habrá un signo de interrogación %s " "colocado al lado del campo de entrada. Al pasar por encima de este signo de " "interrogación se mostrará el texto de ayuda." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Mostrar Texto de Ayuda" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Texto de Ayuda" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Si deja la casilla vacía, se utilizará ningún límite" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limite de entrada a este número" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "de" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Tipos" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Palabras" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Texto que aparece después del contador de tipos/palabras" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "A la Izquierda del Elemento" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Arriba del Elemento" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Debajo del Elemento" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "A la Derecha del Elemento" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Dentro del Elemento" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 #: includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Posición de la Etiqueta" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Identificación del Campo" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Configuración de Restricciones" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Ajustes de Cálculo" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Eliminar" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Rellenar esto con la taxonomía " #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Ninguno" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Marcador de Posición" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Necesario" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Guardar Configuración de Campo" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Clasificar como numérico " #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Si esta casilla está activada, esta columna en la tabla de sumisiones " "ordenará por número." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Etiqueta de Administración" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "" "Esta es la etiqueta que se utiliza durante la visualización/ la edición/ la " "exportación de sumisiones." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Facturación" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Envío" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Personalización" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Campo de Grupo de Información del Usuario" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Grupo de Campos Personalizados" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Por favor, incluya esta información cuando soliciten apoyo:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Obtener Informe del Sistema" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Ambiente" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL de Inicio" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL de Sitio" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Versión de Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Versión de WP" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisitio Activado" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Sí" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "No" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Información del Servidor Web" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Versión PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Versión MySQL" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "Sitio PHP" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Límite de Memoria de WP" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Modo de Depuración de WP" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Lenguaje de WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Defecto" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Tamaño Máximo de Carga de WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "Tamaño Máximo de Puesto PHP" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Nivel Máximo de Entrada de la Anidación" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Límite de Tiempo" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Entrada Máxima Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Instalado" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Zona Horaria por Defecto" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Por defecto la zona horaria es %s - debe ser UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Por defecto la zona horaria es %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Su servidor tiene fsockopen y cURL habilitados." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Su servidor tiene fsockopen y cURL discapacitados." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Su servidor tiene permitido cURL , fsockopen está deshabilitado." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Su servidor no tiene fsockopen o cURL habilitado - PayPal IPN y otras " "secuencias de comandos que se comunican con otros servidores no funcionarán. " "Comuníquese con su proveedor de hosting." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Cliente SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "El servidor tiene habilitado la clase de Cliente SOAP." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Su servidor no tiene la clase %sSOAP Client%s habilitado - algunos plugins " "de entrada que utilizan SOAP no van a funcionar como se espera." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "Puesto Remoto de WP" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() fue un éxito - PayPal IPN está funcionando." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() ha fallado. PayPal IPN no funcionará con el servidor. " "Comuníquese con su proveedor de hosting. Error:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "" "wp_remote_post() ha fallado. PayPal IPN no puede funcionar con su servidor." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins " #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Plugins Instalados" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visitar la Página Web de plugin" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "por" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "versión" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "" "Dale a su formulario de un título. Así es como econtrará el formulario luego." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Usted no ha añadido un botón de envío a su formulario. " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Máscara de Entrada" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Cualquier tipo que usted deposita en la caja \"máscara personalizada\" que " "no está en la lista de abajo se introducirá automáticamente para el usuario " "mientrás se escribe y no será desmontable" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Estos son los tipos de máscara predefinidos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Representa un tipo alfabético (AZ , az ) - Sólo permite que las letras " "que se introducirán" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Representa un tipo numérico ( 0-9 ) - Sólo permite números para ingresar" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Representa un tipo alfanumérico (AZ , az, 0-9 ) - Esto permite que ambos " "números y letras que se introduzcan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Así que, si querías hacer una máscara para un Número de Seguro Social de " "América, que pondría 999-99-9999 en la caja" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "Los 9s representarían cualquier número, y la -s se añade automáticamente " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Esto impediría al usuario de la puesta en otra cosa que números " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "También se pueden combinar estos para aplicaciones específicas" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Por ejemplo, si has tenido una clave de producto que se encontraba en forma " "de A4B51.989.B.43C, puede enmascarar con: a9a99.999.a.99a, lo que obligaría " "a todos a's a ser letras y las 9s a ser números" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Campos Definidos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Los Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Los Campos de Pago" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Los Campos de la Plantilla" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Información del Usuario" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Todos" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Acciones en Bloque" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Aplicar " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formularios Por Página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Ir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Ir a la primera página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Ir a la página anterior " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Página corriente" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Ir a la página siguiente " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Ir a la última página " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Título de Formulario" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Eliminar este formulario " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicar Formulario " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formluarios Eliminados" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formulario Eliminado" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Prevista de Formulario " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Visualización" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Título del Formulario de Visualización " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Añadir formulario a esta página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "¿Presentar a través de AJAX (sin recarga de la página)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "¿Eliminar el formulario completado con éxito?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Si se selecciona esta casilla, Ninja Forms despejará los valores del " "formulario después de que ha sido enviado correctamente. " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "¿Ocultar el formulario completado con éxito?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Si se selecciona esta casilla, Ninja Forms ocultará la forma después de " "haber sido enviado correctamente ." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Restricciones " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "¿El usuario deberá estar registrado para ver el formulario?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Mensaje de No Estar Registrado " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Mensaje mostrado a los usuarios si la casilla \"registrado\" de arribe se " "comprueba y que no está en el sistema de entrada." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limite las Sumisiones" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Seleccione el número de sumisiones que este formulario aceptará. Dejar en " "blanco para ningún límite." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Mensaje de que el Límite llegó" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Por favor, introduzca un mensaje que desea mostrar cuando este formulario ha " "llegado a su límite de sumisión y no aceptará nuevas sumisiones." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Ajustes del Formulario Guardados" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Ajustes Básicos" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "La ayuda básica de Ninja Forms va aquí." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Ampliar Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentación próximamente ." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Activo" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Instalado" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Aprende Más" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Reservar / Restaurar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Reservar Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Restaurar Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "iDatos restaurados con exito!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importar Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Seleccione un archivo" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importar Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "No Campos Favoritos Encontrados" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Exportar Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Exportar Campos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Por favor, seleccione los campos favoritos para exportar." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoritos importados correctamente." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Por favor, seleccione un archivo de campos favoritos válida." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importar un formulario" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importar Formulario" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Exportar un formulario" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Exportar Formulario" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Por favor, seleccione un formulario." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formulario Importado con éxito." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Por favor, seleccione un archivo de formulario exportado válida." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importar / Exportar Sumisiones" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Ajustes de Fecha" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "General" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Configuración General" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versión" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Formato de Fecha" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Trata de seguir las especificaciones de %sPHP date() function%s, pero no " "todos los formatos son compatibles." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Símbolo de Moneda" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Configuración de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Clave de sitio de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Obtén una clave de sitio para tu dominio registrándote %saquí%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Clave secreta de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Idioma de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Idioma usado por reCAPTCHA Para obtener el código para tu idioma, haz clic " "%saquí%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Si se marca esta casilla, todos los datos de Ninja Forms serán eliminados de " "la base de datos debido a la supresión. %sAll form and submission data will " "be unrecoverable.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Desactivar notificaciones del administrador" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "No veas ninguna notificación del administrador en el panel de control de " "Ninja Forms. Desmarca esta opción para verlas nuevamente." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Esta configuración eliminará COMPLETAMENTE cualquier cosa relacionada con " "Ninja Forms después de eliminar el complemento. Esto incluye los ENVÍOS y " "FORMULARIOS. Esta acción no se puede deshacer." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Continuar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Ajustes Guardados" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etiquetas " #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Etiquetas de Mensaje" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Etiqueta Obligatoria de Campo" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Símbolo Obligatorio de Campo" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "" "Mensaje de error dado si todos los campos obligatorios no son completados" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Error de Campo Obligatorio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Mensaje de Anti-Spam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Mensaje de error Honeypot " #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Mensaje de Error del Minutero" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Mensaje de error de JavaScript discapacitado" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Por favor, introduce una dirección de correo electrónico válida" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Procesando Etiqueta de Sumisiones" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Este mensaje se muestra dentro del botón de enviar cada vez que un usuario " "hace clic en \"enviar\" para hacerles saber que está procesando." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Etiqueta de Discrepancia de Contraseña " #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Este mensaje se muestra a un usuario cuando los valores no coincidentes se " "colocan en el campo de la contraseña." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licencias" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Guardar y Activar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Desactivar Todas las Licencias" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Para activar licencias para las extensiones de Ninja Forms primero debes " "%sinstalar y activar%s la extensión que desees. La configuración de la " "licencia se mostrará más abajo." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Restablecer conversión de formularios" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Restablecer conversión de formulario" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Si tienes formularios \"faltantes\" después de actualizar a la versión 2.9, " "este botón intentará recuperar tus antiguos formularios para que se muestren " "en esa versión. Todos los formularios actuales permanecerán en la tabla " "\"Todos los formularios\"" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Todos los formularios actuales permanecerán en la tabla \"Todos los " "formularios\" En algunos casos, algunos formularios pueden duplicarse " "durante este proceso." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "E-mail de Administración" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "E-mail del Usuario" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms tiene que actualizar sus notificaciones de formulario, haga clic " "en %shere%s para iniciar la actualización ." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms tiene que actualizar la configuración de correo electrónico, " "haga clic en %shere%s para iniciar la actualización ." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms necesita actualizar la tabla de presentaciones, haga clic en " "%shere%s para iniciar la actualización ." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Gracias por actualizar a la versión 2.7 de Ninja Forms. Por favor, actualice " "cualquier extensiones de Ninja Forms de" #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Su versión de la extensión de carga de archivos de Ninja Forms no es " "compatible con la versión 2.7 de Ninja Forms. Tiene que ser al menos la " "versión 1.3.5. Por favor, actualice esta extensión en" #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Su versión de la extensión de Ninja Forms de Guardar el Progreso no es " "compatible con la versión 2.7 de Ninja Forms. Tiene que ser por lo menos la " "versión 1.1.3. Por favor, actualice esta extensión en" #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Actualizando el Base de datos de Formularios" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms tiene que actualizar la configuración de formulario, haga clic " "en %shere%s para iniciar la actualización." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Procesamiento de actualización de Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "" "%sPonte en contacto con asistencia técnica%s e indica el error que se " "muestra más arriba." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "¡Ninja Forms realizó todas las actualizaciones disponibles!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Ir a Formularios" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Actualización de Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Actualizar" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Actualización completa" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms necesita procesar %s actualización(es). Esto puede demorar unos " "minutos en completarse. %sComenzar a actualizar%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Paso %d de aproximadamente %d funcionando" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Estado del Sistema de Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Indicador de Fuerza" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Muy débil " #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Débil" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Medio" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Fuerte" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Discrepancia " #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Seleccione Uno" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "" "Si usted es un humano y está viendo este ámbito, por favor deje en blanco." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Campos marcados con un * son obligatorios." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Esto es un campo obligatorio." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Por favor, marque los campos obligatorios." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Cálculo" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Número de cifras decimales." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Cuadro de texto " #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Cálculo de salida como " #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etiqueta" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "¿Desactivar la entrada?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Utiliza el siguiente código corto para insertar el cálculo final: " "[ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Puede introducir ecuaciones de cálculo aquí usando campo_x donde x es el ID " "del campo que desea utilizar. Por ejemplo, %sfield_53 + field_28 + " "field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Ecuaciones complejas pueden ser creados añadiendo entre paréntesis: %s" "( field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Por favor, use estos operadores: + - * / . Esta es una característica " "avanzada. Cuidado con cosas como la división por 0 ." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automáticamente Da el Total de Valores de cálculo" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Especifique Operaciones Y Campos (Avanzado ) " #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Use Una Ecuación ( Avanzado) " #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Método de Cálculo" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Operaciones de Campo " #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Añadir Operación " #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Ecuación Avanzada" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Nombre del Cálculo" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Este es el nombre de programación de su campo . Ejemplos son: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Valor de Defecto" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Clase CSS Personalizada" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Seleccione un Campo" #: deprecated/includes/fields/checkbox.php:4 #: includes/Database/MockData.php:443 includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Casilla" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "No marcado" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Marcado" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Presentar Este" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Ocultar Este" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Cambiar el Valor" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afganistán " #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania " #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Argelia " #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Samoa Americana " #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra " #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola " #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguila" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antártida " #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua y Barbuda " #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina " #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia " #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia " #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaiyán " #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrein " #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Belarús " #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Bélgica " #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belice" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermudas" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bután " #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia y Herzegovina " #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Isla Bouvet " #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Territorio Británico del Océano Índico " #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Camboya " #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Camerún " #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canadá " #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cabo Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Islas Caimán " #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "República Centroafricana " #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "La Isla de Navidad" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Islas Cocos ( Keeling) " #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoras" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "La República Democrática del Congo " #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Islas Cook" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Costa de Marfil " #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croacia (Nombre Local: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "República Checa " #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Dinamarca" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "República Dominicana" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Timor Oriental)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egipcia" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Guinea Ecuatorial" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiopía " #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Islas Malvinas ( Falkland) " #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Islas Feroe " #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlandia" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Francia" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Francia, Metropolitana " #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Guayana Francés" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polinesia Francés" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Territorios Franceses del Sur " #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabón " #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Alemania" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grecia" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Groenlandia " #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Granada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadalupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau " #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guayana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haití " #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Islas Heard y Mc Donald" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Santa Sede (Ciudad del Vaticano)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungría" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islandia " #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Irán ( República Islámica del) " #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlanda" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italia" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japón " #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordania" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazajstán " #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenia" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "República Popular Democrática de Corea " #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "República de Corea " #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait " #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirguistán " #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "República Democrática Popular Lao" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Letonia " #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Líbano " #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesoto" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Jamahiriya Árabe Libia " #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein " #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lituania " #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemburgo " #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Antigua República Yugoslava de Macedonia " #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldivas" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Malí " #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Islas Marshall" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinica " #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania " #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauricio " #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte " #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "México " #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Estados Federados de Micronesia " #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "República de Moldova " #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Mónaco " #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat " #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marruecos " #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique " #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar " #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal " #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Países Bajos (Holanda)" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antillas Holandesas " #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nueva Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nueva Zelanda" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Níger " #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Isla Norfolk " #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Islas Marianas del Norte" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Noruega" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Omán " #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistán " #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papúa Nueva Guinea " #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Perú " #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filipinas " #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn " #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polonia" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunión" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Rumania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Federación de Rusia" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "San Cristóbal y Nieves " #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Santa Lucía " #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "San Vicente y las Granadinas " #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Santo Tomé y Príncipe " #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Arabia Saudita " #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles " #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leona " #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapur " #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Eslovaquia (República Eslovaca)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Eslovenia " #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Islas Salomón" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Sudáfrica " #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Georgias del Sur, Islas Sandwich del Sur" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "España " #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena " #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "San Pedro y Miquelón" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudán " #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Islas Svalbard y Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swazilandia" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Suecia" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Suiza" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "República Árabe Siria" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwán " #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tayikistán " #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "República Unida de Tanzania" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Tailandia " #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau " #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad y Tobago " #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Túnez " #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turquía " #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistán" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Islas Turcas y Caicos " #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ucrania " #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Emiratos Árabes Unidos " #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Reino Unido " #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Estados Unidos " #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Las Islas menores alejadas de los Estados Unidos " #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistán " #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu " #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Islas Vírgenes (británicas)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Islas Vírgenes ( EE.UU. )" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Islas Wallis y Futuna " #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Sáhara Occidental " #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen " #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabue " #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "País" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "País Predeterminado" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Utilice una primera opción personalizada " #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Primera Opción Personalizada " #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sudán del Sur" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Tarjeta De Crédito" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etiqueta del Número de la Tarjeta " #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Número de la Tarjeta" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Descripción del Número de la Tarjeta" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "" "Los (típicamente) 16 dígitos en la parte delantera de su tarjeta de crédito." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Etiqueta CVC de la Tarjeta" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Descripción CVC de la Tarjeta" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Los 3 dígitos (tras) o los 4 dígitos (frente) de valor en su tarjeta." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Etiqueta de Nombre de la Tarjeta" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Nombre en la Tarjeta" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Descripción del Nombre de la Tarjeta" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "El nombre impreso en la parte delantera de su tarjeta de crédito." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Etiqueta del Mes de Caducidad de la Tarjeta" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Mes de Caducidad (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Descripción del Mes de Caducidad de la Tarjeta" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "" "El mes que vence su tarjeta, por lo general en el frente de la tarjeta." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etiqueta del Año de Caducidad de la Tarjeta" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Año de Caducidad (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Descripción del Año de Caducidad de la Tarjeta" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "" "El año que su tarjeta de crédito expira, típicamente en la parte frontal de " "la tarjeta." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Texto" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Elemento de Texto" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Campo Ocultado" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID de usuario (si está conectado)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Nombre de usuario (si está conectado) " #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Apellido del Usuario (si está conectado)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Nombre de Visualización de Usuario (si está conectado)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Correo electrónico del Usuario (si está conectado)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Puesto / ID de página (si está disponible)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Puesto / Título de página (si está disponible)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Puesto / URL de la página (si está disponible) " #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "La Fecha de Hoy" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variable de cadena de consulta" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Esta es una palabra clave reservada de WordPress. Intenta con otra." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "¿Es esta una dirección de correo electrónico?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Si se selecciona esta casilla, Ninja Forms validará esta entrada como una " "dirección de correo electrónico." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "¿Enviar una copia del formulario a esta dirección?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Si se selecciona esta casilla, Ninja Forms enviará una copia de este " "formulario (y cualquier mensaje adjunta) a esta dirección." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr " #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Lista" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Este es el estado del usuario." #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valor Seleccionado" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Añadir Valor" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Eliminar Valor" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Desplegable" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Casillas" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multi-Seleccionar" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Tipo de Lista" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Tamaño de la Casilla de Multi-Seleccionar" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importar Lista de Artículos" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Mostrar Valores de los Artículos de la Lista" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importar" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "" "Para utilizar esta función, puede pegar su CSV en el área de texto de arriba." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "El formato debe ser similar al siguiente:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Etiqueta,Valor,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Si desea enviar un valor vacío o calc, debe utilizar ' ' para aquellos." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Seleccionado" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Número" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Valor mínimo " #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Valor máximo " #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Paso (cantidad para incrementar por)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizador" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Contraseña" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Use esto como un campo de contraseña de registro " #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Si se marca esta casilla, ambos los cuadros de texto contraseña y re-" "contraseña se emitirán." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Volver a Introducir la Etiqueta de Contraseña" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Escriba la Contraseña otra vez" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Mostrar Indicador de la Fuerza de la Contraseña" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Sugerencia: La contraseña debe tener al menos siete tipos. Para hacerlo más " "fuerte, use letras mayúsculas y minúsculas, números y símbolos como ! ? \" $" "% ^ & Amp; ) ." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Contraseñas no son iguales" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Grado de la Estrella " #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Número de estrellas " #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Sirve para confirmar que no eres un bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Llena el campo captcha" #: deprecated/includes/fields/recaptcha.php:98 #: includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "" "Asegúrate de ingresar las claves tus clases Sitio y Secreto correctamente" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "" "El código Captcha no coincide. Ingresa el valor correcto en el campo captcha" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Pregunta de Spam" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Respuesta de Spam" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Presentar" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Impuesto" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Porcentaje de Impuesto" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Debe introducirse como un porcentaje. por ejemplo 8,25 % , 4 % " #: deprecated/includes/fields/textarea.php:4 #: includes/Database/MockData.php:382 includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Area de Texto" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Mostrar Editor de Texto Enriquecido" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Mostrar Botón de Carga de Medios" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Desactivar Editor de Texto Enriquecido para Móvil " #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "" "¿Validar como una dirección de correo electrónico? (El campo debe ser " "necesario)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Desactivar Entrada" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Recogedor de Fecha" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Teléfono - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Moneda" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Definición de Máscara Personalizada" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Ayuda" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Enviar Programado" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Presentar el texto del botón después de que expire el minutero" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Por favor, espere %n segundos" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n se utilizará para significar el número de segundos" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Número de segundos para la cuenta atrás " #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "" "Este es el tiempo que un usuario debe esperar para enviar el formulario " #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Si usted es un ser humano, por favor, más despacio." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Necesitas JavaScript para presentar este formulario. Por favor, activa y " "vuelve a intentarlo." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Mapeo del campo lista" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Grupos de interés" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "una sola" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Múltiple" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listas" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Actualizar" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Envío de Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Usuario Meta (si iniciaste sesión)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Recibir pago" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "No se ha encontrado ningun formulario." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Creado el" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "título" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "actualizado" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Intento fallido" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Elemento Padre:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Todos los Ítems" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Añadir nuevo" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nuevo" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Editar elemento" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Actualizar" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Ver" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Buscar Item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "No es troba a la paperera" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Envíos de formularios" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Información del envío" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Añadir nueva forma" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Error de importación de plantilla de formularios" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Campos" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "El archivo cargado no tiene un formato válido." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Carga de formulario inválido." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importar formularios" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Formas de exportación" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Ecuación (avanzado)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operaciones y campos (avanzado)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Campos total automático" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "El archivo cargado supera la directiva upload_max_filesize en php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "El archivo cargado supera la directiva MAX_FILE_SIZE que se especificó en el " "formulario HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "El archivo solo se pudo cargar de forma parcial." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "No se cargó ningún archivo." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Falta una carpeta temporal." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "No se pudo escribir el archivo en el disco." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Carga de archivo detenida por extensión." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Error de carga desconocido." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Error al cargar el archivo" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Licencias de complementos" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migraciones y datos falsos completos. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Ver formularios" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Guardar configuración" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Dirección IP del servidor" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Nombre del host" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Anexar un Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "No se encontró el formulario" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "No se encontró el campo" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Ocurrió un error inesperado." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Esta vista previa no existe." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Pasarela de Pago" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Pago total" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Etiqueta de gancho" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Dirección de correo electrónico o buscar un campo" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Texto del asunto o buscar un campo" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Adjuntar CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Etiqueta aquí" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Texto de ayuda aquí" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Ingresa la etiqueta del campo del formulario. Así es cómo los usuarios " "identificarán los campos individuales." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Formulario predeterminado" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Oculta" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "" "Selecciona la posición de tu etiqueta relativa al elemento del campo en sí." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Campo obligatorio" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Asegúrate de que este campo esté completo antes de permitir que se envíe el " "formulario." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Opciones numéricas" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Mín" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Máx" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Paso" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Opciónes" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Uno" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "uno" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Dos" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "dos" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Tres" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "tres" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Valor calc" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "" "Restringe el tipo de entrada que tus usuarios pueden ingresar en este campo." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "nada" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Teléfono de EE. UU." #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "personalizado" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Máscara personalizada" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n" "
    • a - Representa un carácter alfa (A-Z,a-z) - " "Solo permite ingresar letras.
    • \n" "
    • 9 - Representa un carácter numérico (0-9) - " "Solo permite ingresar números.
    • \n" "
    • * - Representa un carácter alfanumérico (A-Z," "a-z,0-9) - Esto permite ingresar\n" " tanto números como letras.
    • \n" "
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Límite de entrada para este número" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Carácter(es)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Palabra(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Texto que se muestra después del contador" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Caracteres restantes" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Ingresa el texto que deseas mostrar en el campo antes de que un usuario " "ingrese datos." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Nombres de clase personalizados" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Contenedor" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Agrega una clase adicional a tu capa de campo." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Elemento" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Agrega una clase adicional a tu elemento del campo." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-AAAA" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "DD/MM/AAAA" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-AAAA" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Viernes, 18 de noviembre de 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Valor predeterminado para la fecha actual" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Cantidad de segundos para el envío programado." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Clave del Campo" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Crea una clave única para identificar y orientar tu campo para desarrollo " "personalizado." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Etiqueta usada al ver y exportar envíos." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Se muestra a los usuarios como un posicionamiento" #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Decripción" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Ordenar como numérico" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Esta columna en la tabla de envíos se ordenará por número." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Cantidad de segundos para la cuenta regresiva" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Usa esto como un campo de contraseña de registro. Si el cuadro está marcado, " "los cuadros de texto\n" " contraseña y reingresar la contraseña serán salida" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Confirmar" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Permite la entrada de texto." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Etiqueta de procesamiento" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Valor de cálculo marcado" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Este número se usará en cálculos si el cuadro se marca." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Valor de cálculo desmarcado" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Este número se usará en cálculos si el cuadro se desmarca." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Muestra esta variable de cálculo" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Selecciona una variable" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Costa" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Cantidad de uso" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Permite a los usuarios elegir más de una unidad de este producto." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Tipo de producto" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Producto único (predeterminado)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Producto múltiple - menú desplegable" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Producto múltiple - elige muchos" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Producto múltiple - elige uno" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Entrada de usuario" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Coste " #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Opciones de costo" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Costo único" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Menú desplegable de costo" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Tipo de costo" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Producto" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Selecciona un producto" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Respuesta" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "" "Una respuesta que distingue mayúsculas y minúsculas para prevenir los envíos " "de tu formulario." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomía" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Agregar nuevas condiciones" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Este es el estado del usuario." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Usado para hacer un campo para procesamiento." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Campos guardados" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Campos comunes" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Campos de información de usuario" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Campos de precios" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Campos de diseño" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Campos de miceláneas" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Tu formulario se ha enviado correctamente" #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Presentación de formularios ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Guardar presentación" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Nombre variable" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "ecuación" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Posición predeterminada de la etiqueta" #: includes/Config/FormDisplaySettings.php:111 #: includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Envoltura" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Clave Formulario" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "" "Nombre programático que se puede usar para hacer referencia a este " "formulario." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Agregar botón Enviar" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Hemos advertido que tu formulario no tiene ningún botón Enviar. Podemos " "agregar uno por ti automáticamente." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Conectado" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Aplica a la vista previa del formulario." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Límite de envío" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "NO aplica a la vista previa del formulario." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Opciones de visualización" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Cálculos" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Precio:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Cantidad:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Añadir" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Abrir en una nueva ventana" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "" "Si eres un ser humano y estás viendo este campo, por favor déjalo vacío." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Disponible" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Introduce una dirección de correo electrónico válida." #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Estos campos deben coincidir." #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Error de número mínimo" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Error de número máximo" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Increméntalo por " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Insertar enlace" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Insertar medios" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Corrige los errores antes de enviar este formulario." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Error de Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Carga de archivo en curso." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "CARGA DE ARCHIVO" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Todos los Campos" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Subsecuencia" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Mensaje ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Título de Publicar" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "Dirección de IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID de Usuario" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Primer Nombre" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Apellido" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Nombre mostrado" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Estilos para obstinados" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Sencillo" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Ocuro" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Usa las conversiones predeterminadas de Ninja Forms." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Reducción de precios" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Reducción de precios para v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Reducción de precios para las versiones 2.9.x más recientes." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Ajustes reCAPTCHA" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Tema de reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Panel del Editor de texto enriquecido (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Avanzadas" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administración" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Formularios en blanco" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Comuníquense conmigo" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Acción de mensaje de falso éxito" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "¡Gracias, {field:name}, por completar mi formulario!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Acción de correo falso" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Esta es una acción de correo electrónico." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "¡Hola, Formularios Ninja!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Acción de guardado falso" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Esta es una prueba" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "Juan Pérez" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "usuario@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Esta es otra prueba." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Obtener Ayuda" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "¿En qué te podemos ayudar?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "¿De acuerdo?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "¿Mejor método de contacto?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Teléfono" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Correo postal" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Enviar" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Seleccionar de la lista" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Opción uno" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Opción dos" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Opción tres" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Lista de opciones" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Lavabo" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Lista del cuadro de verificación" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Estos son todos los campos de la sección de Información del usuario." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Dirección" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Ciudad" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Código postal" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Estos son todos los campos de la sección Precios." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Producto (cantidad incluida)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Producto (cantidad separada)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Cantidad" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Total" #: includes/Database/MockData.php:735 #: includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Nombre completo de la tarjeta de crédito" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Número de tarjeta de crédito" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Código de verificación de la tarjeta de crédito" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Vencimiento de la tarjeta de crédito" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Código postal de la tarjeta de crédito" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Estos son diversos campos especiales." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Pregunta antispam (Respuesta = respuesta)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "respuesta" #: includes/Database/MockData.php:805 msgid "processing" msgstr "procesando" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Formulario largo - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Campos" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Campo #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Formulario de suscripción de correo electrónico" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Dirección de email" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Ingresa tu dirección de correo electrónico" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Suscribirse" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Formulario de productos (con campo de cantidad)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Comprar" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Compraste " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "producto(s) para " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Formulario del producto (cantidad en línea)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " producto(s) para " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Formulario de productos (varios productos)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Producto A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Cantidad para el Producto A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Producto B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Cantidad para el Producto B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "del Producto A y " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "del Producto B por $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formulario con cálculos" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Mi primer cálculo" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Mi segundo cálculo" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Los cálculos se devuelven con la respuesta AJAX ( respuesta -> datos -> calcs" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Copiar" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Guardar formulario" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Código postal de la tarjeta de crédito" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Para tener una vista previa de un formulario debes iniciar sesión." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "No se encontró ningún campo." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Aviso: Código de Ninja Forms usado sin especificar un formulario." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Código de Ninja Forms usado sin especificar un formulario." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Dirección 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Botón" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Cuadro de verificación único" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "marcado" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "desmarcado" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Código de verificación de la tarjeta de crédito" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divisor" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Seleccionar" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Estado / Región" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "" "El texto de la nota se puede modificar en las configuraciones avanzadas del " "campo Nota a continuación." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Nota" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Confirmación de contraseña" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "contraseña" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Llena el código recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Envío avanzado" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Pregunta" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Posición de la pregunta" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Respuesta incorrecta" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Cantidad de estrellas" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Lista de términos" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "" "No hay términos disponibles para esta taxonomía. %sAgregar un término%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "No se seleccionó ninguna taxonomía." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Términos disponibles" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Texto del párrafo" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Texto de una sola línea" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Código postal" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "puesto" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Cadena de consultas" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Cadena de consulta" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Sistema" #: includes/MergeTags/User.php:13 msgid "User" msgstr "usuario:" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " requiere una actualización Tienes la versión " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " instalada. La versión actual es " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Edición del campo" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Nombre de la etiqueta" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Arriba del campo" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Debajo del campo" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Izquierda del campo" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Derecha del campo" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Ocultar etiqueta" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Nombre de la clase" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Campos básicos" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Selección múltiple" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Añadir campo nuevo" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Añadir acción nueva" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Ampliar menú" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Publicar" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLICAR" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Cargando" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Ver cambios" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Añadir campos al formulario" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Comienza agregando el primer campo de tu formulario." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Añadir campo nuevo" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Simplemente haz clic aquí y selecciona los campos que desees." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Es así de fácil. O bien..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Comienza a partir de una plantilla" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Comunícate con nosotros" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Permite que tus usuarios se comuniquen contigo utilizando este sencillo " "formulario de contacto. Puedes agregar o eliminar campos según sea necesario." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Solicitud de cotización" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Administra las solicitudes de cotización desde tu sitio web fácilmente con " "esta plantilla. Puedes agregar o eliminar campos según sea necesario." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Registro de eventos" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Permite al usuario registrarse para tu próximo evento utilizando este " "formulario fácil de completar. Puedes agregar o eliminar campos según sea " "necesario." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Formulario de inscripción al boletín informativo" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Añade suscriptores e incrementa tu lista de correos electrónicos mediante " "este formulario de inscripción al boletín informativo. Puedes agregar o " "eliminar campos según sea necesario." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Añadir acciones al formulario" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Comienza agregando el primer campo de tu formulario. Simplemente haz clic en " "el signo positivo y selecciona las acciones que desees. Es así de fácil." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicar (^ + C + clic)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Eliminar (^ + D + clic)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Acciones" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Conmuta la gaveta" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Pantalla completa" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Mitad de la pantalla" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Deshacer" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Hecho" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Deshacer todo" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Deshacer todo" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Ya casi..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Aún no" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Abrir en una nueva ventana" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Desactivar" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Arreglar esto" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Selecciona un formulario" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Fecha de inicio" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "" "Antes de solicitar ayuda de nuestro equipo de Asistencia técnica consulta lo " "siguiente:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "La documentación de Ninja Forms THREE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Lo que debes intentar antes de comunicarte con Asistencia técnica" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "El alcance de nuestra Asistencia técnica" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importar campos" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Actualizado el: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Enviado el: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Enviado por: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Datos del envío" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Ver" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Mostrar más" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Edición del campo" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Campos del formulario" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Vista previa de los cambios" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Formulario de contacto" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "¡Uy! El complemento no es compatible con Ninja Forms THREE %sMás información" "%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "Se desactivó %s." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "¡Ayúdanos a mejorar Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Si te suscribes, algunos datos sobre la instalación de Ninja Forms se " "enviarán a NinjaForms.com (esto NO incluye tu envío)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Si omites esto, ¡no hay problema! Ninja Forms aún así funcionará bien." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sPermitir%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sNo permitir%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "No tienes autorización." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Autorización denegada" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEPURAR: Cambiar a 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEPURAR: Cambiar a 3.0.x" #: includes/Config/i18nBuilder.php:17 includes/Config/i18nDashboard.php:5 #: includes/Config/i18nFrontEnd.php:30 msgid "Previous Month" msgstr "Previo Mes" #: includes/Config/i18nBuilder.php:18 includes/Config/i18nDashboard.php:6 #: includes/Config/i18nFrontEnd.php:31 msgid "Next Month" msgstr "Siguiente Mes" #: includes/Config/i18nBuilder.php:20 includes/Config/i18nDashboard.php:8 #: includes/Config/i18nFrontEnd.php:33 msgid "January" msgstr "Enero" #: includes/Config/i18nBuilder.php:21 includes/Config/i18nDashboard.php:9 #: includes/Config/i18nFrontEnd.php:34 msgid "February" msgstr "Febrero" #: includes/Config/i18nBuilder.php:22 includes/Config/i18nDashboard.php:10 #: includes/Config/i18nFrontEnd.php:35 msgid "March" msgstr "Marzo" #: includes/Config/i18nBuilder.php:23 includes/Config/i18nDashboard.php:11 #: includes/Config/i18nFrontEnd.php:36 msgid "April" msgstr "Abril" #: includes/Config/i18nBuilder.php:24 includes/Config/i18nBuilder.php:38 #: includes/Config/i18nDashboard.php:12 includes/Config/i18nDashboard.php:26 #: includes/Config/i18nFrontEnd.php:37 includes/Config/i18nFrontEnd.php:51 msgid "May" msgstr "Mayo" #: includes/Config/i18nBuilder.php:25 includes/Config/i18nDashboard.php:13 #: includes/Config/i18nFrontEnd.php:38 msgid "June" msgstr "Junio" #: includes/Config/i18nBuilder.php:26 includes/Config/i18nDashboard.php:14 #: includes/Config/i18nFrontEnd.php:39 msgid "July" msgstr "Julio" #: includes/Config/i18nBuilder.php:27 includes/Config/i18nDashboard.php:15 #: includes/Config/i18nFrontEnd.php:40 msgid "August" msgstr "Agosto" #: includes/Config/i18nBuilder.php:28 includes/Config/i18nDashboard.php:16 #: includes/Config/i18nFrontEnd.php:41 msgid "September" msgstr "Septiembre" #: includes/Config/i18nBuilder.php:29 includes/Config/i18nDashboard.php:17 #: includes/Config/i18nFrontEnd.php:42 msgid "October" msgstr "Octubre" #: includes/Config/i18nBuilder.php:30 includes/Config/i18nDashboard.php:18 #: includes/Config/i18nFrontEnd.php:43 msgid "November" msgstr "Noviembre" #: includes/Config/i18nBuilder.php:31 includes/Config/i18nDashboard.php:19 #: includes/Config/i18nFrontEnd.php:44 msgid "December" msgstr "Diciembre" #: includes/Config/i18nBuilder.php:34 includes/Config/i18nDashboard.php:22 #: includes/Config/i18nFrontEnd.php:47 msgid "Jan" msgstr "Ene" #: includes/Config/i18nBuilder.php:35 includes/Config/i18nDashboard.php:23 #: includes/Config/i18nFrontEnd.php:48 msgid "Feb" msgstr "Feb" #: includes/Config/i18nBuilder.php:36 includes/Config/i18nDashboard.php:24 #: includes/Config/i18nFrontEnd.php:49 msgid "Mar" msgstr "Mar" #: includes/Config/i18nBuilder.php:37 includes/Config/i18nDashboard.php:25 #: includes/Config/i18nFrontEnd.php:50 msgid "Apr" msgstr "Abr" #: includes/Config/i18nBuilder.php:39 includes/Config/i18nDashboard.php:27 #: includes/Config/i18nFrontEnd.php:52 msgid "Jun" msgstr "Jun" #: includes/Config/i18nBuilder.php:40 includes/Config/i18nDashboard.php:28 #: includes/Config/i18nFrontEnd.php:53 msgid "Jul" msgstr "Jul" #: includes/Config/i18nBuilder.php:41 includes/Config/i18nDashboard.php:29 #: includes/Config/i18nFrontEnd.php:54 msgid "Aug" msgstr "Ago" #: includes/Config/i18nBuilder.php:42 includes/Config/i18nDashboard.php:30 #: includes/Config/i18nFrontEnd.php:55 msgid "Sep" msgstr "Sep" #: includes/Config/i18nBuilder.php:43 includes/Config/i18nDashboard.php:31 #: includes/Config/i18nFrontEnd.php:56 msgid "Oct" msgstr "Oct" #: includes/Config/i18nBuilder.php:44 includes/Config/i18nDashboard.php:32 #: includes/Config/i18nFrontEnd.php:57 msgid "Nov" msgstr "Nov" #: includes/Config/i18nBuilder.php:45 includes/Config/i18nDashboard.php:33 #: includes/Config/i18nFrontEnd.php:58 msgid "Dec" msgstr "Dic" #: includes/Config/i18nBuilder.php:48 includes/Config/i18nDashboard.php:36 #: includes/Config/i18nFrontEnd.php:61 msgid "Sunday" msgstr "Domingo" #: includes/Config/i18nBuilder.php:49 includes/Config/i18nDashboard.php:37 #: includes/Config/i18nFrontEnd.php:62 msgid "Monday" msgstr "Lunes" #: includes/Config/i18nBuilder.php:50 includes/Config/i18nDashboard.php:38 #: includes/Config/i18nFrontEnd.php:63 msgid "Tuesday" msgstr "Martes" #: includes/Config/i18nBuilder.php:51 includes/Config/i18nDashboard.php:39 #: includes/Config/i18nFrontEnd.php:64 msgid "Wednesday" msgstr "Miércoles" #: includes/Config/i18nBuilder.php:52 includes/Config/i18nDashboard.php:40 #: includes/Config/i18nFrontEnd.php:65 msgid "Thursday" msgstr "Jueves" #: includes/Config/i18nBuilder.php:53 includes/Config/i18nDashboard.php:41 #: includes/Config/i18nFrontEnd.php:66 msgid "Friday" msgstr "Viernes" #: includes/Config/i18nBuilder.php:54 includes/Config/i18nDashboard.php:42 #: includes/Config/i18nFrontEnd.php:67 msgid "Saturday" msgstr "Sabado" #: includes/Config/i18nBuilder.php:57 includes/Config/i18nDashboard.php:45 #: includes/Config/i18nFrontEnd.php:70 msgid "Sun" msgstr "Dom" #: includes/Config/i18nBuilder.php:58 includes/Config/i18nDashboard.php:46 #: includes/Config/i18nFrontEnd.php:71 msgid "Mon" msgstr "Lun" #: includes/Config/i18nBuilder.php:59 includes/Config/i18nDashboard.php:47 #: includes/Config/i18nFrontEnd.php:72 msgid "Tue" msgstr "Mar" #: includes/Config/i18nBuilder.php:60 includes/Config/i18nDashboard.php:48 #: includes/Config/i18nFrontEnd.php:73 msgid "Wed" msgstr "Mie" #: includes/Config/i18nBuilder.php:61 includes/Config/i18nDashboard.php:49 #: includes/Config/i18nFrontEnd.php:74 msgid "Thu" msgstr "Jue" #: includes/Config/i18nBuilder.php:62 includes/Config/i18nDashboard.php:50 #: includes/Config/i18nFrontEnd.php:75 msgid "Fri" msgstr "Vie" #: includes/Config/i18nBuilder.php:63 includes/Config/i18nDashboard.php:51 #: includes/Config/i18nFrontEnd.php:76 msgid "Sat" msgstr "Sab" #: includes/Config/i18nBuilder.php:66 includes/Config/i18nDashboard.php:54 #: includes/Config/i18nFrontEnd.php:79 msgid "Su" msgstr "Do" #: includes/Config/i18nBuilder.php:67 includes/Config/i18nDashboard.php:55 #: includes/Config/i18nFrontEnd.php:80 msgid "Mo" msgstr "Lu" #: includes/Config/i18nBuilder.php:68 includes/Config/i18nDashboard.php:56 #: includes/Config/i18nFrontEnd.php:81 msgid "Tu" msgstr "Ma" #: includes/Config/i18nBuilder.php:69 includes/Config/i18nDashboard.php:57 #: includes/Config/i18nFrontEnd.php:82 msgid "We" msgstr "Mi" #: includes/Config/i18nBuilder.php:70 includes/Config/i18nDashboard.php:58 #: includes/Config/i18nFrontEnd.php:83 msgid "Th" msgstr "Ju" #: includes/Config/i18nBuilder.php:71 includes/Config/i18nDashboard.php:59 #: includes/Config/i18nFrontEnd.php:84 msgid "Fr" msgstr "Vi" #: includes/Config/i18nBuilder.php:72 includes/Config/i18nDashboard.php:60 #: includes/Config/i18nFrontEnd.php:85 msgid "Sa" msgstr "Sa" lang/ninja-forms-pl_PL.mo000064400000267373152331132460011273 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 0 =d?!fN-/|  ',*=^h'E>z;O  '3;C IT do #9Wjz 3;A*I*t   ; F S an} <.A?N =DK T _ j-t   ": Wa s (15;K]Qm    -!Km (- ?I [hpy }  K 7AIPWOv"# .Hgx )1$Afw # )*9MVlVs $3;R[ ams >  %!1!Su&} ,AZj   ,<M_ d o|m (8S&l2 .>Rmsx )*?GV ^l! ! <Ie!!:\ epw  /BIYiox $ *("SvVVjV J%px   4 HRg#z + " 3>)\!<  !%- #+O`z"  "8@Te/y  ,3 :Hb y=.]'  N .A[s  $ )3 :HOT Zg  ' L W` w  ,xn o r [f j A- Ao 6 < % H ] %q $7Ki~& )/ D O]n $'"+ELemu,}' ) 3C JT]rQP )] ;8?EYmu} *!&>D Yci o z     *  ).t4   , /7 @Lva # -2 F Sa |#  $5<[d"w"$!6 MZ` frs  !   $ 0>V f &!/G`sk2T i!x!{!mz""A####$+$"I$*l$?$$$%-*%X% ]%k%~%"%%%%F%9%&H_&&&& &&'!'='8T'''''\'!(7(V(g( v( ( ( ((( ((() *) 5)?)H)N)U)g)w))))3))) **0*B*G*P*_*x** +,+E<+6+,+++/,BM,,-#5-Y-"x-4- -#-C.D././/2B/0u/)/z/K0.g000'0 00$0(1+/1[1k1 t1 11111111 12"2;2C2Y2 r2 |2&2%2$2 2P3 V3 `3j3p3 v333333 34 44.4E4]4-x4/4 4 44F4;5(K5Bt5 5@56 6#6A6Z6 q6 6;6 66#797 P7F]777777 8#868N8V8\8c8 h8t88 888 8&88 99%979 H9 U9b9s9 |9999999%9 :%:97:[q:2:;;;'";J;R;Y; j;u;;; ;4;;&;<*<#H< l<!v<3< << <<< ==9=J= j=t=q==>>/>H>*f>> > > >)> >>?(?9???S?e?l?q???? ?????@#@"4@W@#j@@ @ @.@/@A "A/A?A OA \AgAAAAAA AAAA)AB %BK2B~BBB B BBBBCC-3C aC oC }C3CC7LDdDsD8]EAE9E9FLF)1G5[GMHH?cI-IIIamJYJ6)KC`KKwEL-L"L5M#DMhMM[MMN )N6NLNiNAzNLNJ OTOCnOFOOMPk6QPQPQTDRRuS7T6QTT TTTTT>qUUUUUUUUqUdVvV~V VVVVVVVVV V&V WXX%XBXRX,dXXX XXX%X Y'Y FY!SYuYyYY YY6Y[Z]Z/Z[0[ [+\2\,F\s\+\\3\"]#])=].g]"]']'] ^ ^@^ :_D_L_ [_e_ l_ w___ _______`2` P`q` ````` ```aQbbbccPreview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Pola Otwórz w nowym oknie Cofnij wszystko . Aktualna wersja to prod. za wymaga aktualizacji. Zainstalowana jest wersja #Zaktualizowano wersję roboczą elementu %1$s. Podgląd dla: %3$sPrzywrócono wersję %1$s z %2$s.%1$s — zaplanowane dla: %2$s. Podgląd dla: %4$sPrzesłano element %1$s. Podgląd dla: %3$s%n będzie używany do oznaczenie liczby sekund%s temu%s opublikowany.%s zapisano.%s zaktualizowano.Dezaktywowano %s.%sZezwalaj%s%sZaznaczone%s — wartość obliczenia%sNie zezwalaj%s%sNiezaznaczone%s — wartość obliczenia* - reprezentuje znaki alfanumeryczne (A-Z, a-z, 0-9) - to pozwala być wpisane cyfry i litery- Brak-Wybierz jeden- Wybierz pole- Wybierz produkt- Wybierz zmienną— Wybierz formularz-Zobacz wszystkie typy9 - reprezentuje cyfrę (0-9) - pozwala tylko wprowadzać tylko cyfry
    • a — reprezentuje znak litery (A–Z,a–z) — można wprowadzać tylko litery.
    • 9 — reprezentuje cyfrę (0–9) — można wprowadzać tylko cyfry.
    • * — reprezentuje znak alfanumeryczny (A–Z,a–z,0–9) — można wprowadzać zarówno cyfry, jak i litery.
    Odpowiedź, w której jest rozróżniana wielkość liter. Pomaga w zapobieganiu wysyłania spamu przy użyciu formularza.Wkrótce zostanie udostępniona poważna aktualizacja wtyczki Ninja Forms. %sDowiedz się więcej na temat nowych funkcji i zgodności ze starszymi wersjami oprogramowania oraz przeczytaj często zadawane pytania.%sUproszczone i oferujące więcej możliwości środowisko tworzenia formularzy.Ponad elementemPowyżej polaNazwa działaniaZaktualizowano działanieDziałanie:AktywujAktywnaDodajDodaj opisDodaj formularzDodaj noweDodaj nowe poleDodaj nowy formularzDodaj nowy elementDodaj nowe zgłoszenieDodaj nowe terminyDodaj operacjeDodaj przycisk PrześlijDodaj wartośćDodaj akcje do formularzaDodaj pola formularzaDodaj formularz do tej stronyDodaj nową akcjęDodaj nowe poleTen formularz rejestracji na biuletyn pozwoli Ci dodawać subskrybentów i rozwijać swoją listę e-mailową. Możesz dodawać i usuwać pola zgodnie z potrzebami.Licencje dodatkówDodatkiAdresAdres 2Dodaje dodatkową klasę do elementu pola.Dodaje dodatkową klasę do wrappera pola.E-mail administratoraEtykiety AdministratoraAdministracjaZaawansowanyZaawansowane równanieUstawienia zaawansowaneUstawienia zaawansowane wysyłkiAfganistanPo wszystkimPo formularzuPo etykiecieZgadzasz się?AlbaniaAlgieriaWszystkieFormularze w centrum uwagiWszystkie polaWszystkie formularzeWszystkie elementyWszystkie bieżące formularze pozostaną w tabeli „Wszystkie formularze”. W niektórych przypadkach podczas tego procesu część formularzy może zostać zduplikowana.Ten prosty do wypełnienia formularz pozwoli użytkownikom zarejestrować się na Twoje następne wydarzenie. Możesz dodawać i usuwać pola zgodnie z potrzebami.Daj użytkownikom możliwość kontaktu przy użyciu tego prostego formularza kontaktowego. Możesz dodawać i usuwać pola zgodnie z potrzebami.Zezwól na wprowadzanie tekstu sformatowanego.Zezwala użytkownikom na wybranie tego produktu więcej niż raz.Już prawie...Zastąpiliśmy karty „Utwórz formularz” oraz „Powiadomienia” kartą „Wiadomości e-mail i działania”. Ten tytuł ściślej informuje o tym, co można robić na tej karcie.Samoa AmerykańskieWystąpił nieoczekiwany błąd.AndoraAngolaAnguillaOdpowiedźAntarktydaAnti-SpamPytanie antyspamowe (Odpowiedź = odpowiedź)Komunikat o błędzie anty-spamAntigua i BarbudaDowolny znak, który umieścisz w polu "niestandardowa maska", i którego nie ma na liście poniżej zostanie automatycznie wprowadzony za użytkownika i nie będzie można go usunąć.Dodaj Ninja FormDodaj formularz Ninja FormsDołącz do stronyZatwierdźArgentynaArmeniaArubaDołącz plik CSVZałącznikiAustraliaAustriaPola automatycznej sumyAutomatycznie obliczanie sumDostępneDostępne terminyAzerbejdżanPowrót do listyPowrót do listyKopie zapasowe i przywracanieKopia zapasowa Ninja FormsBahamyBahrajnBangladeszBarBarbadosPola podstawowePodstawowe ustawieniaUmywalkaBaz"UDW"Przed WszystkimPrzed formularzemPrzed etykietąZanim poprosisz nasz zespół pomocy technicznej o pomoc, przejrzyj te dokumenty:Data rozp.DataBiałoruśBelgiaBelizePod elementemPoniżej polaBeninBermudyNajlepsza metoda kontaktu?Najlepsze wsparcie w biznesieLepsza organizacja ustawień pólLepsze zarządzanie licencjamiBhutanDane do fakturyPuste formularzeBoliwiaBośnia i HercegowinaBotswanaBouvet IslandBrazyliaBrytyjskie Terytorium Oceanu IndyjskiegoBrunei DarussalamUtwórz formularzBułgariaDziałania masoweBurkina FasoBurundiPrzyciskCVCObliczeniaWartość obliczeniaObliczeniaMetoda obliczaniaUstawienia obliczaniaNazwa obliczeńObliczeniaWyliczenia są zwracane w odpowiedzi AJAX (odpowiedź -> dane -> wyliczeniaKambodżaKamerunKanadaAnulujRepublika Zielonego PrzylądkaNiezgodna treść pola Captcha. Wprowadź prawidłową wartość w polu captchaOpis kodu CVC Etykieta kodu CVCOpis miesiąca wygaśnięcia kartyEtykieta miesiąca ważności kartyOpis rok ważności kartyEtykieta roku ważności kartyOpis nazwy kartyEtykietka pola na nazwę kartyNumer kartyOpis numeru kartyEtykietka pola na numer kartyKajmany"DW"Republika Południowej AfrykiCzadZmień wartośćZnakizn. pozostałoZnakówOszukujesz, co?Zapoznaj się z naszą dokumentacjąPole zaznaczeniaLista pól wyboruPola wyboru (checkbox)ZaznaczoneZaznaczone — wartość obliczeniaChileChinyWyspa WielkanocnaMiastoNazwa klasyWyczyść pomyślnie wysłane formularze?Wyspy KokosoweOdbierz płatnośćKolumbiaCzęsto używane polaKomoryDodając nawiasy, można tworzyć złożone równania: %s( field_45 * field_2 ) / 2%s.PotwierdźPotwierdź, że jesteś człowiekiemKongoDemokratyczna Republika KongaFormularz kontaktowyKontaktSkontaktuj się z namiKontenerDalejWyspy CookaKosztLista rozwijana kosztuOpcje kosztówTyp kosztuKostarykaWybrzeże Kości SłoniowejNie udało się aktywować licencji. Zweryfikuj klucz licencjiKrajTworzy unikatowy klucz służący do identyfikowania i ustawiania jako cel pola na potrzeby niestandardowego tworzenia formularzy.Karta kredytowaKod CVC karty kredytowejKod CVV karty kredytowejData ważności karty kredytowejImię i nazwisko na karcie kredytowejNumer karty kredytowejKod pocztowy dla karty kredytowejKod pocztowy dla karty kredytowejAutorzyChorwacja (nazwa regionalna: Hrvatska)KubaWalutaSymbol walutyBieżąca stronaWłasneWłasne klasy CSS:Własne klasy CSSNiestandardowe nazwy klasGrupa pół własnychNiestandardowa maskaDefinicja własnej maskiPole usunięte.Pole zaktualizowane.Niestandardowa opcjaCyprCzechyDD-MM-YYYYDD/MM/YYYYDEBUG: Przejdź na 2.9.xDEBUG: Przejdź na 3.0.xCiemneDane zostały przywrócone!DataData utworzeniaFormat datyUstawienia datyData przesłaniaData aktualizacjiDataDezaktywujDezaktywacjaDezaktywuj wszystkie licencjeDezaktywuj licencjęLicencje rozszerzeń wtyczki Ninja Forms można dezaktywować na karcie ustawień pojedynczo lub jako grupę.DomyślnieDomyślnie KrajDomyślna pozycja etykietyDomyślna strefa czasowaUstaw jako domyślną datę bieżącąWartość domyślnaDomyślnie strefa czasowa to %sDomyślna strefa czasowa to % s - powinno być UTCZdefiniowane polaUsuńUsuń (^ + D + kliknięcie)Usuń na zawszeUsuń ten formularzUsuń ten obiekt na stałeDaniaOpisZawartość opisuPozycja opisuCzy wiesz, że możesz zwiększyć liczbę konwersji formularzy, dzieląc większe formularze na mniejsze, łatwiejsze do przeanalizowania części?

    Dzięki rozszerzeniu Multi-Part Forms wtyczki Ninja Forms możesz to szybko i łatwo osiągnąć.

    Wyłącz powiadomienia dla administratoraWyłącz autouzupełnianie w przeglądarceWyłącz wprowadzanie danychWyłącz edytor tekstu sformatowanego dla urządzeń mobilnych.Wyłącz pole?ZamknijWyświetlanieWyświetl tytuł formularzaWyświetlana nazwa użytkownikaWyświetl ustawieniaWyświetl tę zmienną obliczeniaWyświetlany tytułWyświetlanie formularzaRozdzielaczDżibutiNie pokazuj tych warunkówDokumentacjaDokumentacja już wkrótce.Dostępna jest dokumentacja obejmująca pełną gamę zagadnień: od %srozwiązywania problemów%s po nasz %sinterfejs API dla programistów%s. Stale są dodawane nowe dokumenty.NIE dotyczy podglądu formularza.Nie dotyczy podglądu formularza.DominikaDominikanaGotowePobierz wszystkie zgłoszeniaRozwijanaDuplikujDuplikuj (^ + C + kliknięcie)Duplikuj formularzEkwadorEdytujEdytuj działanieEdytuj formularzEdytuj elementEdytuj Element MenuEdytuj zgłoszenieEdytujEdytowanie polaEdytowanie polaEgiptSalwadorElementE-mailWiadomości e-mail i działaniaAdres e-mailWiadomości e-mailFormularz subskrypcji e-mailWpisz adres e-mail lub wyszukaj poleAdres e-mail lub wyszukaj poleE-mail pojawią się z tego adresu e-mail.E-mail pojawią się z tą nazwą.Wiadomości e-mail i działaniaData zakończeniaZanim zezwolisz na przesłanie formularza, upewnij się, że to pole jest wypełnione.Wprowadź tekst, który ma być wyświetlany w polu, zanim użytkownik wprowadzi dane.Wpisz etykietę pola formularza. Dzięki temu użytkownicy będą mogli identyfikować poszczególne pola.Wprowadź adres e-mailŚrodowiskoBilansRównanie (zaawansowane)Gwinea RównikowaErytreaBłądKomunikat o błędzie, jeśli wszystkie wymagane pola nie są wypełnione.EstoniaEtiopiaRejestracja na wydarzeniaRozwiń menuMiesiąc wygaśnięcia (MM)Rok wygaśnięcia (RRRR)EksportEksportowanie ulubionych pólEksportujEksport formularzaEksportuj formularzeEksportuj formularzEksportujRozszerz Ninja FormsPRZESYŁANIE PLIKUBłąd przy zapisie pliku na dysku.FalklandyWyspy OwczeUlubione polaUlubione zostały zaimportowane pomyślnie.PolePole nrID polaKlucz polaNie znaleziono polaOperacje na poluFormularzePola wymagane są oznaczone *Pola oznaczone znakiem %s*%s są wymaganeFidżiBłąd podczas przesyłania plikuPrzesyłanie pliku w toku.Ładowanie pliku zatrzymane przez wtyczkę lub rozszerzenie.FinlandiaImieNapraw to.FooFoo BarNa przykład, jeśli masz pewien klucz formie A4B51.989.B.43C, ty może dodać maskę z: a9a99.999.a.99a, co wymusi wstawienie liczb w pole zajęte przez 9 i liter w pole zajęte przez a.FormularzFormularz domyślnyFormularz usuniętyPola formularzaFormularz zaimportowany pomyślnie.Klucz formularzaNie znaleziono formularzaPodglądZapisano ustawieniaPrzesłane formularzeBłąd importu szablonu formularzaTytuł FormularzaFormularz z wyliczeniamiFormatFormularzeFormularze usunięteFormularzy na stronieFrancjaFrancja, MetropolieGujana FrancuskaPolinezja FrancuskaFrancuskie Terytoria Południowe i AntarktycznePiątek, 18 listopada, 2019Z adresuOd (imię i nazwisko)Pełna lista zmianPełny ekranGabonGambiaOgólneUstawienia ogólneGruzjaNiemcyUzyskaj pomocUzyskaj więcej działańUzyskaj więcej typówUzyskaj pomocUzyskaj pomoc technicznąPobierz raport systemowyUzyskaj klucz witryny dla domeny, rejestrując się %stutaj%sZacznij od dodania pierwszego pola formularza.Zacznij od dodania pierwszego pola formularza. Kliknij plus i wybierz akcje. To takie łatwe.WprowadzenieWprowadzenie do Ninja FormsGhanaGibraltarNadaj formularzowi tytuł. Dzięki temu będzie można go później znaleźć.IdźIdźcie się pobawić gdzie indziej, dzieciakiPrzejdź do wtyczki FormsPrzejdź do Ninja FormsIdź do pierwszej stronyIdź do ostatniej stronyPrzejdź do następnej stronyPrzejdź do poprzedniej stronyGrecjaGrenlandiaGrenadaWciaż rozwijana dokumentacjaGwadelupaGuamGwatemalaGwineaGwinea BissauGujanaHTMLHaitiPół ekranuWyspy Heard i McDonaldaWitaj, Ninja Forms!PomocTekst pomocyMiejsce na tekst pomocyUkrytyUkryte poleUkryj etykietęUkryj toUkryj pomyślnie wypełniony formularz?Podpowiedź: Hasło powinno składać się z co najmniej siedmiu znaków. Aby uczynić je silniejszym, użyj wielkich i małych liter, cyfr i symboli, jak ! "? $% ^ &).WatykanAdres URL strony głównejHondurasHoney PotBłąd HoneypotKomunikat o błędzie "honeypot" (ukryte pole, które powinno zostać puste)HongkongZnacznik elementu hookNazwa hostaCo słychać?WęgryAdresy IPIslandiaJeżeli "tekst opisu" jest właczony, dodany zostanie znak zapytania %s obok pola formularza. Wskazanie tego znaku ujawni tekst.Jeżeli "tekst pomocy" jest właczony, dodany zostanie znak zapytania %s obok pola formularza. Wskazanie tego znaku ujawni tekst.Jeśli to pole jest zaznaczone, podczas usuwania wtyczki Ninja Forms WSZYSTKIE dane wtyczki zostaną usunięte z bazy danych. %sNie będzie można przywrócić żadnych danych formularzy i przesyłanych elementów.%sJeśli to pole wyboru jest zaznaczone, Ninja Forms wyczyść wartości formularza, który został pomyślnie przesłany.Jeśli to pole wyboru jest zaznaczone, Ninja Forms ukryje formularz po tym jak został pomyślnie przesłany.Jeśli to pole wyboru jest zaznaczone, Ninja Forms wyśle kopię tego formularza (i wszelkie wiadomości dołączone) na ten adres.Jeśli to pole wyboru jest zaznaczone, Ninja Forms będzie traktował to pole jako e-mail (na potrzeby validacji).Jeżeli to pole jest zaznaczone wyświetlone zostanie pole na hasło i powtórzenie hasła.Jeśli to pole wyboru jest zaznaczone, ta kolumna w tabeli zgłoszeń zostanie posortowana według numeru.Jeśli jesteś człowiekiem i widzisz to pole, pozostaw je puste.Jeśli jesteś człowiekiem i widzisz to pole, nie wypełniaj go.Jeśli jesteś człowiekiem, proszę odczekaj chwilę.Jeśli to pole pozostanie puste, limity nie będą stosowaneJeśli się zarejestrujesz, niektóre dane dotyczące Twojej instalacji Ninja Forms zostaną przesłane do NinjaForms.com (NIE dotyczy to przesyłanych zgłoszeń).Możesz pominąć ten krok. Wtyczka Ninja Forms będzie nadal działać.Jeżeli nie chcesz wysyłać vartości lub obliczeń, wpisz '' (dwa pojedyncze cudzysłowia).Aby otrzymać powiadomienie e-mail, gdy użytkownik kliknie w formularzu przycisk Prześlij, możesz włączyć odpowiednią funkcję na tej karcie. Możesz utworzyć nieograniczoną liczbę wiadomości e-mail, w tym wiadomości e-mail wysyłanych do użytkownika, który wypełnił formularz.Jeśli po aktualizacji do wersji 2.9 „brakuje” formularzy, kliknięcie tego przycisku spowoduje podjęcie próby ponownego przekonwertowania starych formularzy, aby były widoczne w wersji 2.9. Wszystkie bieżące formularze pozostaną w tabeli „Wszystkie formularze”.ImportImportuj/eksportujImport / eksport zgłoszeńZaimportuj Ulubione PolaZaimportuj ulubioneImportuj formularzeImportuj formularzImportuj formularzeImportowanie listy elementówZaimportuj formularzImportuj/eksportujWiększa przejrzystośćDodać do auto-sumy? (Jeżeli aktywne)Nieprawidłowa odpowiedźZwiększ liczbę konwersjiIndieIndonezjaMaska wprowadzaniaWstawWstaw wszystkie polaWstaw poleWstaw łączeWstaw multimediaWewnątrz elementuZainstalowanyZainstalowane wtyczkiGrupy interesówPrzesłano nieprawidłowy formularz.Nieprawidłowy identyfikator formularzaIran (Islamska Republika)IrakIrlandiaCzy to jest adres e-mail?IzraelTo takie łatwe. Albo...WłochyJamajkaJaponiaKomunikat błedu o wyłączonej obsłudze JSJohn DoeJordaniaPo prostu kliknij tutaj i wybierz pola.KazachstanKeniaKluczKiribatiZlewKoreańska Republika Ludowo-DemokratycznaRepublika KoreiKuwejtKirgistanEtykietaMiejsce na etykietęNazwa etykietyPozycja etykietkiEtykieta używana podczas wyświetlania i eksportowania przesyłanych elementów.Etykieta,Wartość,ObliczenieEtykietyJęzyk używany przez reCAPTCHA. Aby uzyskać kod dla języka, kliknij %stutaj%sLaotańska Republika Ludowo-DemokratycznaNazwiskoŁotwaElementy układuPola układuDowiedz się więcejDowiedz się więcej na temat rozszerzenia Multi-Part FormsDowiedz się więcej na temat rozszerzenia Save ProgressLibanNa lewo od elementuZ lewej strony polaLesothoLiberiaLibijska Arabska DżamahirijjaLicencjeLiechtensteinJasnyOgranicz wprowadzanie danych do tej liczbyKomunikat po osiągnięciu limituLimit zgłoszeńOgranicz wprowadzanie do tej wartościListaMapowanie pola listyTyp listyListyLitwaŁadowanieWczytuję...LokalizacjaZalogowanoDługi formularz – LuksemburgMM-DD-YYYYMM/DD/YYYYMakauByła Jugosłowiańska Republika MacedoniiMadagaskarMalawiMalezjaMalediwyMaliMaltaTen szablon pozwoli Ci łatwo zarządzać prośbami o wycenę. Możesz dodawać i usuwać pola zgodnie z potrzebami.Wyspy MarshallaMartynikaMauretaniaMauritiusMax.Maksymalny wejściowy poziom zagnieżdżeniaWartość maksymalnaMoże późniejMajottaŚrednioWiadomośćEtykiety wiadomościKomunikat wyświetlany, gdy powyższe pole wyboru „zalogowany” jest zaznaczone, a użytkownik nie jest zalogowany.Pole metaboxMeksykSfederowane Stany MikronezjiMigracje i dane symulowane gotowe. Min.Wartość minimalnaRóżne polaNiezgodnośćBrak folderu tymczasowego.Udawana akcja wiadomości e-mailUdawana akcja zapisuUdawana akcja komunikatu o sukcesieZmodyfikowane dniaRepublika MołdawiiMonakoMongoliaCzarnogóraMontserratI dużo więcej.MarokoPrzenieś ten element do KoszaMozambikWielokrotny wybórWiele produktów — wybierz wieleWiele produktów — wybierz jedenWiele produktów — lista rozwijanaWybór wielokrotnyRozmiar pola wielokrotnego wyboruWieleMoje pierwsze wyliczenieMoje drugie wyliczenieWersja MySQLBirmaNazwaNazwa kartyNazwa lub polaNamibiaNauruPotrzebujesz pomocy?NepalHolandiaAntyle HolenderskieNa panelu nie będą wyświetlane powiadomienia dla administratora wysyłane przez wtyczkę Ninja Forms. Aby były one ponownie wyświetlane, anuluj zaznaczenie tej opcji.Nowe działanieNowa karta kreatoraNowa KaledoniaNowy elementNowe zgłoszenieNowa ZelandiaFormularz rejestracji na biuletynNikaraguaNigerNigeriaUstawienia Nninja FormsNinja FormsPrzetwarzanieLista zmian Ninja FormsNinja Forms DevDokumentacja wtyczki Ninja FormsPrzetwarzaniePrzesyłanie formularzy NinjaStatus systemu Ninja FormsDokumentacja wtyczki Ninja Forms THREEUaktualnienie wtyczki Ninja FormsPrzetwarzanie uaktualniania wtyczki Ninja FormsAktualizacja Ninja FormsWersja Ninja FormsWidget Ninja FormsWtyczka Ninja Forms jest też dostarczana z prostą funkcją szablonu, która może zostać umieszczona bezpośrednio w pliku szablonu php. %sPodstawowa pomoc Ninja FormsNinja Form nie mogą zostać zaktualizowane zbiorczo. Odwiedź panel każdej z witryn by aktytować plugin.Wtyczka Ninja Forms ukończyła przeprowadzanie wszystkich dostępnych uaktualnień.Ninja Forms jest tworzony przez zespół na twórców, którzy mają na celu zapewnienie Wspólnocie WordPress najlepszej wtyczki do tworzenia formularzy.Wtyczka Ninja Forms musi przetworzyć uaktualnienia (%s). Ukończenie tej operacji może potrwać kilka minut. %sRozpocznij uaktualnianie%sWtyczka Ninja Forms musi uaktualnić ustawienia e-mail. Kliknij %stutaj%s, aby rozpocząć uaktualnianie.Wtyczka Ninja Forms musi uaktualnić tabelę przesyłanych elementów. Kliknij %stutaj%s, aby rozpocząć uaktualnianie.Wtyczka Ninja Forms musi uaktualnić powiadomienia dotyczące formularzy. Kliknij %stutaj%s, aby rozpocząć uaktualnianie.Wtyczka Ninja Forms musi uaktualnić ustawienia formularzy. Kliknij %stutaj%s, aby rozpocząć uaktualnianie.Wtyczka Ninja Forms udostępnia widget, który można umieścić w dowolnym obszarze witryny obsługującym widgety. Następnie można wybrać formularz, który ma być wyświetlany w tym obszarze.kod wtyczki Ninja Forms jest używany bez określenia formularza.NiueNieNie określono działania...Brak Ulubionych PólNie znaleziono żadnych pól.Nie znaleziono żadnych zgłoszeńNie znaleziono żadnych zgłoszeń w KoszuBrak dostępnych terminów dla tej taksonomii. %sDodaj termin%sNie załadowano żadnego pliku.Nie znaleziono formularzy.Nie wybrano taksonomii.Nie znaleziono prawidłowego dziennika zmian.BrakWyspa NorfolkMariany PółnocneNorwegiaKomunikat o braku zalogowania sięNie, jeszcze nie terazNie znaleziono w koszuUwagaTekst uwagi można edytować w ustawieniach zaawansowanych pola uwagi.Uwaga: ta zawartość wymaga obsługi języka JavaScript.Uwaga: kod wtyczki Ninja Forms jest używany bez określenia formularza.LiczbaBłąd — liczba maksymalnaBłąd — liczba minimalnaOpcje liczbLiczba gwiazdekLiczba miejsc dziesiętnych.Liczba sekund do odliczaniaLiczba sekund licznikaLiczba sekund, po których będzie możliwe przesłanie.Liczba gwiazdekOmanJedenJeden adres e-mail lub poleUps! Dodatek nie jest jeszcze zgodny z wtyczką Ninja Forms THREE. %sDowiedz się więcej%s.Otwórz w nowym oknieOperacje i pola (zaawansowane)Style z opiniamiPierwsza opcjaTrzecia opcjaDruga opcjaUstawieniaOrganizatorZakres pomocy technicznejWyświetl obliczenia jakoPHP LocalePHP Max input varsPHP Post Max rozmiarPHP Limit czasu wykonywaniaWersja PHPOPUBLIKUJPakistanPalauPanamaPapua-Nowa GwineaObszar tekstowyParagwajElement nadrzędny:HasłoPotwierdź hasłoEtykieta komunikatu błędnego powtórzenia hasła.Hasła nie są identycznePola płatnościBramki płatnościSuma płatnościOdmowa uprawnieńPeruFilipinyNumer telefonuTelefon - (555) 555-5555PitcairnUmieść element %s w dowolnym obszarze obsługującym kody, aby formularz był wyświetlany w wybranym miejscu. Nawet w środku zawartości strony lub wpisu.WypełniaczCzysty tekst...%sSkontaktuj się z pomocą techniczną%s i zgłoś powyższy błąd.Proszę poprawnie odpowiedzieć na pytanie, anty-spam.Proszę wypełnić wszystkie wymagane pola *Wypełnij pole captchaWprowadź cały tekst recaptchaPopraw błędy, zanim prześlesz ten formularz.Prosimy upewnić się czy wszystkie wymagane pola są wypełnione.Wprowadź wiadomość, która ma być wyświetlana, kiedy ten formularz osiągnie limit zgłoszeń i nie przyjmuje nowych zgłoszeń.Wprowadź poprawny adres emailWprowadź prawidłowy adres e-mail!Wprowadź poprawny adres emailPomóż nam ulepszyć Ninja Forms.Prosimy o podanie tej informacji, żądając pomocy:Zwiększ o Proszę zostawić puste pole spamu.Upewnij się, że poprawnie wprowadzono klucz witryny i klucz tajnyOceń wtyczkę %sNinja Forms%s %s na stronie %sWordPress.org%s, aby pomóc nam w bezpłatnym udostępnianiu tej wtyczki. Podziękowania od zespołu twórców wtyczki Ninja Forms dla WP!Wybierz formularz, aby wyświetlić zgłoszenieWybierz formularz.Proszę wybrać poprawny plik eksportu formularza.Proszę wybrać poprawny zestaw ulubionych pól.Wybierz ulubione pola do wyeksportowania.Proszę korzystać z tych operatorów: + - * /. To jest zaawansowany cecha. Uważaj na takie rzeczy jak dzielenie przez 0.Proszę odczekać %n sekundProszę odczekać przed wysłaniem formularza.WtyczkiPolskaZaczytaj z taksonomii (kategoria / tag)PortugaliaPublikujID strony / postu (jeśli dostępne)Tytuł strony / postu (jeśli dostępne)Adres URL strony / postu (jeśli dostępne)Tworzenie postuID postuTytuł postaURL wpisuPodglądPodgląd zmianPodgląd formularzaPodgląd nie jest dostępny.CenaCena:Pola dotyczące cenPrzetwarzanieEtykieta przetwarzaniaEtykieta przetwarzania zgłoszeniaProduktProdukt (z ilością)Produkt (ilość osobno)Produkt AProdukt BFormularz produktu (ilość w treści)Formularz produktu (wiele produktów)Formularz produktu (z polem Ilość)Typ ProduktuNazwa programistyczna, której można używać w odniesieniu do tego formularza.OpublikujPortorykoZakupKatarLiczba sztukIlość produktu AIlość produktu BLiczba:Ciąg znaków zapytaniaCiągi znaków zapytaniaZmienna ciągu znaków zapytaniaPytaniePozycja pytaniaProśba o wycenęPrzełączniki (radio)Lista przycisków opcjiWprowadź ponownie hasło.Etykieta pola na wprowadzenie hasła ponownieCzy naprawdę dezaktywować wszystkie licencje?RecaptchaPrzekieruj doUsuńCzy podczas dezinstalacji usunąć WSZYSTKIE dane wtyczki Ninja Forms?Usuń wartośćUsuń wszystkie dane wtyczki Ninja FormsCzy usunąć to pole? Zostanie usunięte, nawet gdy nie zapiszesz.Adres zwrotnyWymagaj, by użytkownik był zalogowany aby zobaczyć formularz?WymaganePole wymaganeNie wypełniono obowiązkowego polaEtykieta wymaganego polaSymbol pola wymaganegoResetowanie konwersji formularzaResetowanie konwersji formularzyCzy zresetować proces konwersji formularzy dla wersji 2.9+PrzywracaniePrzywracanie Ninja FormsPrzywrócenie tego elementu z KoszaUstawienia ograniczeńOgraniczeniaOgranicza rodzaj danych wprowadzanych przez użytkowników w tym polu.Powrót do Ninja FormsReunionEdytor tekstu sformatowanegoNa prawo od elementuZ prawej strony polaWycofajWycofaj do najnowszej wersji 2.9.x.Wycofaj do wersji 2.9.xRumuniaRosjaRwandaSMTPClient SOAPSUHOSIN ZainstalowaneSaint Kitts i NevisSaint LuciaSaint Vincent i GrenadynySamoaSan MarinoWyspy Świętego Tomasza i KsiążęcaArabia SaudyjskaZapiszZapisz i aktywujZapisz ustawieniaZapisz formularzZapisz OpcjeZapisz opcjeZapisz formularzZapisanoZapisane polaZapisywanie...Wyszukaj elementWyszukaj zgłoszenieJednokrotny wybórWybierz wszystkoWybierz listęZaznacz pole lub wpisz, aby wyszukaćWybierz plikWybierz formularzWybierz formularz albo wyszukaj go, wpisując jego nazwęWybierz liczbę zgłoszeń, które przyjmie ten formularz. Pozostaw puste dla braku limitu.Wybierz pozycję etykiety względem elementu pola.WybraneWybrana wartośćWyślijWyślij kopię formularza na ten adres?SenegalSerbiaAdres IP serweraUstawieniaZapisano ustawieniaSeszeleDane do dostawyShortcodePowinno być wprowadzone jako procent. np. 8,25%, 4%Pokaż tekst pomocyPokaż przycisk wgrywnaia multimediówPokaż więcejPokaż wskaźnik siły hasłaPokaż edytor tekstu sformatowanegoPokaż toPokaż wartości elementów listyWyświetlane dla użytkowników jako element hover.Sierra LeoneSingapurPojedynczeJedno pole wyboruPojedynczy kosztPole tekstoweJeden produkt (domyślnie)Adres URL stronySłowacja (Republika Słowacka)SłoweniaPoczta tradycyjnaAby na przykład utworzyć maskę dla amerykańskiego numeru ubezpieczenia społecznego, wpisz w polu 999-99-9999Wyspy SalomonaSomaliaSortuj jako wartość liczbowąSortowanie jako liczboweRepublika Południowej AfrykiGeorgia Południowa i Sandwich PołudniowySudan PołudniowyHiszpaniaOdpowiedźPytanie spamOkreślić operacje i pola (Zaawansowane)Sri LankaWyspa Świętej HelenySaint-Pierre i MiquelonPola standardoweOcenaZacznij od szablonuStan/WojewództwoStatusKrokKrok %d z około %dKrok (przyrost)Wskaźnik siłyMocnePodsekwencjaTematWpisz temat lub wyszukaj poleTekst tematu lub wyszukaj polaPrzesyłany elementDane w formacie CSVData przesłaniaInformacje o przesłanym elemencieLimit przesyłaniaPole metabox przesyłanego elementuStatystyki zgłoszeńZgłoszeniaPrześlijTekst na przycisku wysłania po upływie czasuWyślij przez AJAX (bez przeładowania strony)?ZapisaneDodany przezPrzesłał(a): Przesłane dniaPrzesłano: SubskrybujKomunikat zakończenia sukcesemSudanSurinamSvalbard i Jan MayenSuaziSzwecjaSzwajcariaSyryjska Republika ArabskaSystemStatus systemuWtyczka THREE będzie dostępna wkrótce!TajwanTadżykistanZapoznaj się ze szczegółową dokumentacją wtyczki Ninja Forms poniżej.Zjednoczona Republika TanzaniiPodatekPodatek (wartość procentowa)TaksonomiaSzablon polaFunkcja SzablonuLista terminówTekstElement tekstowyTekst wyświetlany po licznikuTekst wyświetlany po liczniku znaków/słówPole tekstowePole tekstoweTajlandiaDziękujemy za wypełnienie niniejszego formularza.Dziękuję za aktualizację do najnowszej wersji! Ninja Forms %s jest gotowe uczyniś Twoje doświadczenie zarządzania formularzami przyjemnym!Dziękuję za aktualizację do wersji 2.7 Ninja Forms. Dziękujemy za aktualizację! Wtyczka Ninja Forms %s jeszcze bardziej ułatwia tworzenie formularzy.Dziękujemy za używanie wtyczki Ninja Forms! Mamy nadzieję, że spełniła ona Twoje oczekiwania. W razie pytań:Dziękuję Ci, {field:name}, za wypełnienie formularza!(Zazwyczaj) 16 cyfr na pierwszej stronie Twojej karty kredytowej.3-cyfrowy (z tyłu) lub 4 cyfry (przód) numer na karcie.9 reprezentuje liczbę, a - zostaną dodane automatycznieMenu Formularze jest punktem dostępu do wszystkich ustawień wtyczki Ninja Forms. Utworzyliśmy już pierwszy przykładowy %sformularz kontaktowy%s. Formularz można też utworzyć samodzielnie, klikając opcję %sDodaj nowy%s.Format powinien wyglądać następująco:Aktualizacje interfejsu w tej wersji stanowią podstawę do rozbudowy wtyczki w przyszłości. Oparte na nich usprawnienia wprowadzone w wersji 3.0 wtyczki Ninja Forms sprawią, że będzie ona jeszcze bardziej stabilnym, zapewniającym więcej możliwości i przyjaznym dla użytkownika kreatorem formularzy.Miesiąc, w którym twój karta kredytowa wygasa, zazwyczaj na awersie karty.Najczęściej używane ustawienia są widoczne od razu. Pozostałe, mniej ważne ustawienia, znajdują się w rozwijanych sekcjach.Nazwa wydrukowane na przedniej stronie Twojej karty kredytowej.Nowe hasło nie zgadza się z potwierdzeniem.Autorzy Ninja FormsProces rozpoczęty, prosimy o cierpliwość. To może potrwać kilka minut. Zostaniesz automatycznie przekierowany po jego zakonczeniu.Rozmiar przesyłanego pliku wykracza poza dyrektywę MAX_FILE_SIZE określoną w formularzu HTML.Rozmiar przesyłanego pliku wykracza poza dyrektywę upload_max_filesize w pliku php.ini.Przesyłany plik został przesłany tylko częściowo.Roku, w którym karta kredytowa wygasa, zazwyczaj na awersie karty.Dostępna jest nowa wersja %1$s. Wyświetl szczegóły wersji %3$s lub zaktualizuj teraz.Dostępna jest nowa wersja %1$s. Wyświetl szczegóły wersji %3$s.Przesłany plik nie ma prawidłowego formatu.To wszystkie pola w sekcji Cennik.To wszystkie pola w sekcji Informacje o użytkowniku.To są predefiniowane maski znakówTo różne pola specjalne.Te pola muszą się zgadzać!Ta kolumna w tabeli przesyłanych elementów będzie sortowana według wartości liczbowej.To pole jest wymaganeTo pole jest wymaganeTo jest testTo stan użytkownika.To akcja wiadomości e-mail.To kolejny test.Tak długo użytkownik musi poczekać przed wysłaniem formularzaTa etykieta jest używana podczas przeglądania/edycji/eksportu zgłoszenia.To jest systemowa nazwa pola. Przykłady: my_calc, price_total, user-totalTo jest stan użytkownikaTa wartość zostanie użyta w przypadku ustawienia %sZaznaczone%s.Ta wartość zostanie użyta w przypadku ustawienia %sNiezaznaczone%s.Tutaj można utworzyć własny formularz, dodając pola i przeciągając je, aby ustawić kolejność ich wyświetlania. W przypadku każdego pola jest dostępnych wiele opcji, na przykład etykieta, pozycja etykiety i element zastępczy.To słowo kluczowe jest zastrzeżone przez WordPress. Spróbuj użyć innego.Ten komunikat jest wyświetlany wewnątrz przycisku Prześlij gdy użytkownik kliknie przycisk "Prześlij".Ten komunikat jest wyświetlany użytkownikowi kiedy błędnie powtórzy hasło.Ta wartość liczbowa będzie używana w obliczeniach, gdy pole jest zaznaczone.Ta wartość liczbowa będzie używana w obliczeniach, gdy pole nie jest zaznaczone.To ustawienie spowoduje CAŁKOWITE usunięcie wszystkich danych związanych z wtyczką Ninja Forms podczas usuwania tej wtyczki. Dotyczy to także PRZESYŁANYCH ELEMENTÓW i FORMULARZY. Nie można cofnąć tej operacji.Na tej karcie znajdują się ogólne ustawienia formularza, na przykład tytuł i metoda przesyłania, a także ustawienia wyświetlania, na przykład ukrywanie formularza po jego wypełnieniu.To będzie temat e-maila.To zapobiegnie umieszczaniu innych treści niż liczbyTrzyLimit czasuKomunikat błedu upływu czasuTimor WschodniDoAby aktywować licencję rozszerzenia wtyczki Ninja Forms, najpierw %szainstaluj i aktywuj%s wybrane rozszerzenie. Ustawienia licencji zostaną wyświetlone poniżej.Aby użyć tej funkcji, wklej CSV do pola tekstowego powyżej.Dzisiejsza dataPrzełącz szufladęTogoTokelauTongaSumaKoszPomimo starań zachowania zgodności ze specyfikacją %sfunkcji PHP date()%s nie każdy format jest obsługiwany.Trynidad i TobagoTunezjaTurcjaTurkmenistanWyspy Turks i CaicosTuvaluDwaTypImage path (URL)Numer telefonu w USAUgandaUkrainaNiezaznaczoneNiezaznaczone — wartość obliczeniaW obszarze Podstawowe działanie formularza w Ustawieniach formularzy możesz wybrać stronę, na końcu której ma zostać automatycznie dodany formularz. Podobna opcja jest dostępna na pasku bocznym każdego ekranu edycji zawartości.CofnijCofnij wszystkoZjednoczone Emiraty ArabskieWielka BrytaniaStany ZjednoczoneDalekie Wyspy Mniejsze Stanów ZjednoczonychNieznany błąd przesyłania.NiepublikowaneAktualizujAktualizuj elementZaktualizowano: Aktualizowanie bazy danych formularzyAktualizujUaktualnij do wtyczki Ninja Forms THREEAktualizacjeUaktualnienia zostały ukończoneURLUrugwajUżyh równania (Zaawansowane)Liczba użyćUżyj niestandardowej opcjiUżyj domyślnych konwencji stylu wtyczki Ninja Forms.Aby wstawić wynik ostatecznego obliczenia użyj natępujący shortcode: [ninja_forms_calc]Użyj porad na dole aby rozpocząć swoją przygodę z Ninja Forms. Już niebawem będziesz w pełni wykorzystywał pełne możliwości.Użyj tego jako pole hasła podczas rejestracjiUżyj jako pola hasła rejestracji. Jeśli to pole jest zaznaczone, pola tekstowe hasła i ponownego wprowadzania hasła będą zawierały dane wyjścioweSłuży od oznaczania pola w celu przetworzenia.UżytkownikNazwa użytkownika (jeśli jest zalogowany)E-mail użytkownikaE-mail użytkownika (jeśli jest zalogowany)Wpis użytkownikaImię użytkownika (jeśli jest zalogowany)Identyfikator użytkownikaIdentyfikator użytkownika (jeśli jest zalogowany)Grupa pól informacji użytkownikaInformacja o użytkownikuPola dotyczące informacji o użytkownikuNazwisko użytkownika (jeśli jest zalogowany)Metadane użytkownika (zalogowany)Wartości przekazane przez UżytkownikaWartości przesłane przez użytkownikaUżytkownicy częściej wypełniają długie formularze, gdy mogą zapisać swój postęp i dokończyć wypełnianie później.

    Dzięki rozszerzeniu Save Progress wtyczki Ninja Forms możesz to szybko i łatwo osiągnąć.

    UzbekistanSprawdzić poprawność adresu e-mail? (Pole musi być wymagane)WartośćVanuatuNazwa zmiennejWenezuelaWersjaWersja: %sBardzo słabeWietnamZobaczZobacz %sWyświetl zmianyWyświetl formularzeWyświetl elementPrzejrzyj zgłoszenieZobacz zgłoszeniaZobacz pełny ChangelogBrytyjskie Wyspy DziewiczeAmerykańskie Wyspy DziewiczeOdwiedź stronę domową wtyczkiTryb debugowania WPJęzyk WPWP Max rozmiar uploaduLimit pamięci WPWP Multisite włączoneWP Remote PostWersjia WPWallis i FutunaDokładamy wszelkich starań, aby zapewnić każdemu użytkownikowi wtyczki Ninja Forms najlepszą możliwą pomoc techniczną. Jeśli napotkasz problem lub będziesz mieć pytanie, %sskontaktuj się z nami%s.Dodaliśmy możliwość usunięcia wszystkich danych wtyczki Ninja Forms (przesyłanych elementów, formularzy, pól, opcji) podczas jej usuwania. Nazywamy tę możliwość opcją nuklearną.Formularz nie zawiera przycisku Prześlij. Może on zostać dodany automatycznie.SłabeInformacje o serwerze sieci WebZapraszamy do Ninja formyZapraszamy do Ninja formy %sSahara ZachodniaW czym możemy pomóc?Co wypróbować przed kontaktem z pomocą technicznąJaką nazwę nadać temu ulubionemu elementowi?Co nowegoPodczas tworzenia i edytowania formularzy można przejść bezpośrednio do najważniejszej sekcji.Do kogo wysłać tę wiadomość?SłowaSłówWrapperY-m-dY/m/dRRRR-MM-DDYYYY/MM/DDJemenTakMożesz skorzystać z uaktualnienia do wtyczki Ninja Forms THREE Release Candidate! %sUaktualnij teraz%sMożna również połączyć te rozwiązania dla konkretnych zastosowańW tym miejscu możesz wprowadzać równania obliczeń przy użyciu elementu field_x, gdzie x to identyfikator pola, którego chcesz użyć. Na przykład %sfield_53 + field_28 + field_65%s.Nie możesz wysłać formularza bez włączonej obsługi JavaScript.Nie masz uprawnień potrzebnych do zainstalowania aktualizacji wtyczkiNie masz uprawnień.Do formularza nie dodano przycisku przesyłania.Podgląd formularza jest dostępny po zalogowaniu.Musisz nadać nazwę temu ulubionemu elementowi.Do przesłania tego formularza konieczna jest aktywna obsługa JavaScriptZakupiono Znajdziesz to dołączone do e-maila z potwierdzeniem zakupu.Formularz został przesłany.Twóje serwer nie posiada włączonej obsługi cURL ani fsockopen - PayPal i inne skrypty komunikujące się z serwerem nie będą działać. Skontaktuj się ze swoim usługodawcą.Na serwerze nie włączono klasy %sSOAPClient%s. Niektóre wtyczki bramy korzystające z protokołu SOAP mogą nie działać zgodnie z oczekiwaniami.Twój serwer ma włączone cURL lecz fsockopen jest wyłączona.Twój serwer ma włączone fsockopen i cURL.Twój serwer ma włączony fsockopen lecz cURL jest wyłączony.Twój serwer ma włączoną klasę obsługi SOAPWersja rozszerzenia Ninja Forms - File Upload - jest niekompatybilna z wersją 2.7 Ninja Forms. Zaktualizuj do wersji 1.3.5.Wersja rozszerzenia Ninja Forms - Save Progress - jest niekompatybilna z wersją 2.7 Ninja Forms. Zaktualizuj do wersji 1.1.5.JugosławiaZambiaZimbabweKodKod pocztowya - reprezentuje litery (A–z, a–z) - pozwala wprowadzać tylko literyodpowiedźbutton-secondary nf-download-allprzezpozostało znakówzaznaczonekopianiestandardowyd-m-Ydashicons dashicons-updateduplikatfoo@wpninjas.comHRjs-newsletter-list-update extral, F d Ym-d-Ym/d/Yżadnazproduktu A i produktu B za USDjedenone_week_supporthasłoprzetwarzanieprod. za reCAPTCHAJęzyk usługi reCAPTCHAKlucz tajny usługi reCAPTCHAUstawienia usługi reCAPTCHAKlucz witryny usługi reCAPTCHAMotyw usługi reCAPTCHAUstawienia usługi reCaptchaOdświeżsmtp_porttrzytytułdwaniezaznaczonezaktualizowanouser@gmail.comwersjawp_remote_post() nie powiodło się. PayPal IPN może nie działać z Twoim serwerem.wp_remote_post() nie powiodło się. PayPal IPN nie będzie działać z Twoim serwerem. Skontaktuj się z dostawcą usług hostingowych. Błąd:wp_remote_post() zakończył się sukcesem - PayPal IPN pracuje.lang/ninja-forms-pt_BR.mo000064400000267201152331132460011261 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 1JHL&Y<1S   z' T2u#O=  &;Vk'E[p+ 3 =/I.y  )6EY ku~m *;    ((2[vDYt   * & :FZn  #8:I ,$ Qr y ( !+ <IQX\as| Q $, 5I@-*,)=g  & , :G `k}  *IY k u_ ! >Ug x  QC^I,,$6[%z%  '@!_#!#% 7 BMj   )3Pec  )7*S~!  1J#0>o=  "1T\u})j$ &;C JX kx $&'KsE+ Z"`}cB` is H +D^g!0 JV!g,)9>X:x  8On- +3IY'm#  6? HVi z C5)  O03H]q   !+ 2@GL R_{  ,    ( 6 CMU Xb ~[ j \E K \ cK N 3 /2 9b  Z# O~  3Iay &   , :HW jt  #++2 ^ l3v     $4.Kz P  (#3 Wx  #4X^ |          %18AJOU    ( 9GYahq^ +B FTg%y%    $ / :GP o{   2 GU]br_ -9O _jz1  .Kf!'/C}V#r6kpCmd" r s n!> "_"d"i" """("D #N#h##/## ##$" $ -$8$H$XM$7$E$$%,%D%\%q%%,%1%2&5&I&N&Q&Oq&& && ' ' '*' 3'?'W' m'!w''' '' ''''((%(5(;(&R(y(((((( ((()") ) )6)5)+4*`*|*2*Q*+$+%+2,#6,9Z,,),E,-B-#-1..2.3a.}.//1/a/i/r// /"/(/#/0&090 H0T0c0{00000 00"01181 V1 `1-j1)1/11J2M2 V2a2i2 o2z22 2222 23393 ?3L3]3'x3 3 33;3 3!4>)4h4;w4 444 45#.5$R5=w5 5555 6D 6e6}6&6666*6 7#7,747;7 @7L7^7 w777 77777!78"828 I8V8 \8 j8v88 888+8891!9hS9L9 ::':5.:d:l:t::: :: :1:; ;9;$>;.c; ;;#; ; ;;; <%<;<T< ]< i<t<v<<==2=M='\= ====,= = =>>,><>Q>X>_>*e> >>> >>%>?&?,?;?J?a?q?? ??.?-?@ @ %@ 3@ @@M@U@i@p@y@ @@@@@@@@ ACA RA\AdA zA AAAAA#A9A,B5B =B(HBqBjCjmCwC?PDHDADfEE)uFFSGG;eH#H&HHUIEI6*JRaJJ]K5K.L@EL4L$L*LG MSMqMM MMMAMB3NgvNN/N2+O^O<4PqPWPBRQEQQ|R2SHRSS SS SSS>T TTTTTTUjUsUUUUUUUUlU2VCVJV SV^V7{VW WW WW*W"(XKX ZXdXtX*X X&XXXXYY'Y%7Y6]YPYgY*MZxZ. [O[X[x[[[%[[[2\8\$Q\$v\1\!\!\] ]B]^#^+^ =^G^ O^ Z^f^ n^ y^^^^^^)^_"_;_V_ h_r____ ___`rUaaaabb/b5Lb&bbPb* c 8cCc LcWc]c cc ncyccfcCc/dKd@eXe@seCe/ed(ff:f(fgg@Fh0h?h1h*iijj jjjSj6k ?k`kdk{kk kkkkkkkkkl lll&l;l>lOl Ul al olylllll(l m %m/m5m=m Bm MmXmjmIrm}mF:n Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Campos Abrir em nova janela Desfazer tudo instalada. A versão atual é produtos por requer uma atualização. Você tem uma versão #%1$s rascunho atualizado. Prévia%3$s%1$s restaurado para revisão de %2$s.%1$s agendado para: %2$s. Prévia%4$s%1$s enviado. Prévia%3$s%n será usado para mostrar o número de segundos%s atrás%s publicado.%s salvo.%s atualizado.%s foi desativado.%sPermitir%sValor de cálculo %sMarcado%s%sNão permitir%sValor de cálculo %sDesmarcado%s* - Representa um caracter texto ou número (A-Z,a-z,0-9) - Este caracter deixa tanto letras como números serem inseridos - Nenhum- Selecione Um - Selecione um campo- Selecione um produto- Selecione uma variável- Selecione um formulário- Ver Todos os Tipos9 - Representa um caracter numérico (0-9) - Somente números poderão ser inseridos
    • a - Representa um caractere alfa (A-Z,a-z) - Permite somente letras.
    • 9 - Representa um caractere numérico (0-9) - Permite somente números.
    • * - Representa um caractere alfanumérico (A-Z,a-z,0-9) - Permite tanto números quanto letras.
    Uma resposta que diferencia letras maiúsculas de minúsculas para ajudar a evitar envios de spam em seu formulário.Uma grande atualização do Ninja Forms está chegando. %sSaiba mais sobre novos recursos, compatibilidade com versões anteriores e outras perguntas frequentes.%sUma simplificada e mais poderosa experiência para contrução de formulários.Acima do ElementoCampo acimaNome da AçãoAção AtualizadaAçõesAtivarAtivoAdicionarAdicionar DescriçãoAdicionar formulárioAdicionar NovoAdicionar novo campoAdicionar novo formulárioAdicionar Novo SlideAdicionar Nova SubmissãoAdicionar novos termosOperação de AdiçãoAdicionar botão de envioAdicionar ValorAdicione ações de formulárioAdicionar campos do formulárioAdicionar formulário para esta páginaAdicionar nova açãoAdicionar novo campoAdicione inscritos e aumente sua lista de emails com este formulário de inscrição de boletim informativo. É possível adicionar e remover campos, se necessário.Licenças de add-onsAdd-OnsEndereçoComplementoAdiciona uma classe extra ao elemento do campo.Adiciona uma classe extra ao wrapper do campo.E-mail do AdministradorEtiqueta AdminAdministraçãoAvançadasEquação AvançadaConfigurações AvançadasFrete avançadoAfeganistãoDepois de TudoApós o FormulárioDepois do RótuloConcorda?AlbâniaArgéliaTodosTudo sobre formuláriosTodos os CamposTodos os FormuláriosTodosTodos os formulários atuais permanecerão na tabela "Todos os formulários". Em alguns casos, alguns formulários serão duplicados durante esse processo.Permita que o usuário se inscreva para seu próximo evento simplesmente preenchendo um formulário. É possível adicionar e remover campos, se necessário.Permita que seus usuários entrem em contato com você por meio deste formulário de contato simples. É possível adicionar e remover campos, se necessário.Permite entrada em texto com formatação.Permite que os usuários escolham mais de um deste produto.Quase lá...Junto com a aba "Construa seu formulário", nós removemos "Notificações" em favor de "Emails & Ações". Esta é uma indicação mais clara do que você pode fazer nesta aba.Samoa AmericanaOcorreu um erro inesperado.AndorraAngolaAnguilaRespostaAntárctidaAnti-SpamPergunta antisspam (resposta = resposta)Mensagem de Erro Anti-SpamAntígua e BarbudaTodo caracter que colocar no box da "máscara customizada" que não está na lista abaixo será automaticamente colocada para o usuário enquanto ele digita, e não poderá ser removida.Anexar um Ninja FormAcrescentar um Ninja FormsAcrescentar à PáginaAplicarArgentinaArméniaArubaAnexar CSVAnexosAustráliaÁustriaCampos de total automáticosValors dos Cálculos de Total AutomáticosDisponívelTermos disponíveisAzerbaijãoVoltar Para a ListaVoltar para a listaBackup / RecuperaçãoBackup Ninja FormsBahamasBahreinBangladeshBarBarbadosCampos básicosConfigurações BásicasPia do banheiroBazCco (Com Cópia Oculta)Antes de TudoAntes do FormulárioAntes do RótuloAntes de pedir ajuda da nossa equipe de suporte, consulte:Data de InícioDataRepública de BelarusBélgicaBelizeAbaixo do ElementoCampo abaixoBeninBermudasMelhor forma de contato?Melhor Suporte nos NegóciosCampos de configurações melhor organizadosMelhor gerenciamento de licençaButãoFaturamentoFormulários em brancoBolíviaBósnia-HersegóvinaBotsuanaIlha BouvetBrasilTerritório Britânico do Oceano ÍndicoBruneiConstrua o seu formulárioBulgáriaAções em MassaBurkina FasoBurundiBotãoCVCCalcValor do cálculoCálculoMétodo de CálculoOpções de CálculoNome do CálculoCálculosOs cálculos são retornados com a resposta AJAX (resposta -> dados -> cálculos)CambojaCamarõesCanadáCancelarCabo VerdeOs captchas não correspondem. Insira o valor correto no campo do captchaDescrição Cartão CVCEtiqueta Cartão CVCDescrição do Mês de Expiração do CartãoEtiqueta de Mês de Expiração do CartãoDescrição de Ano de Expiração do CartãoEtiqueta de Ano de Expiração do CartãoDescrição do Nome do CartãoEtiqueta Nome do CartãoNúmero do CartãoDescrição Número do CartãoEtiqueta Número do CartãoIlhas CaimãoCc (Com cópia)República Centro-AfricanaChadeAlterar ValorCaractere(s)Caractere(s) restante(s)CaracteresTrapaceando, han?Consulte nossa documentaçãoCheckboxLista de caixas de seleçãoCheckboxesMarcadoValor de cálculo marcadaChileChinaIlha do NatalCidadeNome da classeLimpar formulário completado com sucesso?Ilhas dos CocosColetar pagamentoColômbiaCampos comunsComoresEquações complexas podem ser criadas adicionando parênteses: %s( field_45 * field_2 ) / 2%s.ConfirmarConfirme que você não é um botCongoRepública Democrática do CongoFormulário de contatoEntre em contato:Entre em contatoContainerContinuarIlhas CookPreçoLista suspensa de custoOpções de custoTipo de custoCosta RicaCosta do MarfimNão foi possível ativar a licença. Por favor verifique a sua chave de licençaPaísCria uma chave única para identificar e apontar seu campo para desenvolvimento personalizado.Cartão de CréditoCódigo de segurança do cartão de créditoCódigo de segurança do cartão de créditoValidade do cartão de créditoNome completo no cartão de créditoNúmero do cartão de créditoCódigo postal do cartão de créditoCódigo postal do cartão de créditoCréditosCroáciaCubaMoedaSímbolo da MoedaPágina atualCustomizadoClasse CSS CustomizadaPersonalizar Classes CSSNomes de classe personalizadosAgrupamento de Campos CustomizadoMáscara personalizadaDefinição de Máscara CustomizadaCampo de customização deletado.Campo de customização atualizado.Customizar primeira opçãoChipreRepública TchecaDD-MM-AAAADD/MM/AAAADEPURAR: Alternar para 2.9.xDEPURAR: Alternar para 3.0.xEscuroDados recuperados com sucesso!DataData de criaçãoFormato das DatasConfigurações de DatasData de SubmissãoDatas AtualizadasDatepickerDesativarDesativarDesativar todas as licençasDesativar LicençaDesativar licenças de extensões Ninja Forms individualmente ou como um grupo na aba ConfiguraçõesPadrãoPaís PadrãoPosição padrão do rótuloFuso Horário PadrãoData atual por padrãoValor PadrãoFuso Horário Padrão é %sFuso Horário Padrão é %s - deve ser UTCCampos DefinidosDeletarExcluir (^ + D + click)Deletar permanentementeDeletar este formulárioDeletar este item permanentementeDinamarcaDescriçãoConteúdo da DescriçãoPosição da DescriçãoVocê sabia que pode aumentar a conversão de formulários quebrando formulários maiores em partes menores e mais segmentadas?

    A extensão Multi-Part Forms do Ninja Forms torna isso fácil e rápido.

    Desabilitar avisos do administradorDesativar preenchimento automático do navegadorDesabilitar entradaDesabilitar Editor de Texto Rico (Rich Text Editor) em MobileDesabilitar Entrada?DispensarExibirMostrar Título do FormulárioMostrar nomeConfigurações de ExibiçãoMostrar esta variável de cálculoTítuloExibindo Seu FormulárioDivisorDjibutiNão mostrar estes termosDocumentaçãoDocumentação em breve.Documentação está disponível cobrindo tudo desde %sSolução de Problemas%s até a nossa %sAPI de Desenvolvedor%s. Novos documentos sempre serão adicionados.NÃO se aplica à prévia do formulário.Aplica-se à prévia do formulário.DominicaRepública DominicanaFeitoBaixar todas as SubmissõesDropdownDuplicarDuplicar (^ + C + clique)Duplicar FormulárioEquadorEditarEditar AçãoEditar formulárioEditar SlideEditar Item de MenuEditar SubmissãoEditar este itemEditando campoEditando campoEgitoEl SalvadorElementoE-mailEmail & AçõesEndereço de e-mailMensagem do e-mailFormulário de inscrição por emailEndereço de email ou procurar um campoUm endereço de e-mail ou campoE-mail irá parecer ter sido enviado ser a partir deste endereço.E-mail irá aparecer com este remetente.Emails & AçõesData de FimVerifique se este campo está preenchido antes de permitir que o formulário seja enviado.Insira o texto que você gostaria que fosse exibido no campo antes de um usuário inserir dados.Insira o rótulo do campo do formulário. É assim que o usuário identificará campos individuais.Insira seu endereço de emailAmbienteEquaçãoEquiparação (Avançado)Guiné EquatorialEritréiaErroMensagem de erro se todos os campos obrigatórios não forem completadosEstôniaEtiópiaRegistro de eventosExpandir menuMês de Expiração (MM)Ano de Expiração (YYYY)ExportarExportar Campos FavoritosExportar CamposExportar FormulárioExportar FormuláriosExportar um formulárioExportar este itemExtender Ninja FormsUPLOAD DE ARQUIVOFalha ao gravar arquivo no disco.Ilhas Falkland (Malvinas)Ilhas FeroeCampos FavoritosFavoritos importados com sucesso.CampoCampo noID CampoChave do CampoCampo não encontradoOperações de CampoCamposCampos marcados com um * são obrigatórios.Campos marcados com %s*%s são requeridosFijiErro de upload do arquivoUpload de arquivo em andamento.O carregamento do arquivo foi interrompido pela extensão.FinlândiaPrimeiro nomeConsertar.FooFoo BarPor exemplo, se seu produto tem uma chave no formato A4B51.989.B.43C, sua máscara poderia ser: a9a99.999.a.99a, que iria forçar todos os a's para serem letras e 9s para serem númerosFormulárioPadrão do formulárioFormulário DeletadoCampos do formulárioForm importado com sucesso.Chave do FormulárioFormulário não encontradoPreview do FormulárioConfigurações do Form SalvasRespostas do formulárioErro de importação do modelo de formulárioTítulo do FormulárioFormulário com cálculosFormatoFormuláriosFormulários DeletadosFormulários Por PáginaFrançaFrança MetropolitanaGuiana FrancesaPolinésia FrancesaTerras Austrais e Antárticas FrancesasSexta-feira, 18 de novembro de 2019Endereço do RemetenteNome do RemetenteLog de Alterações CompletoTela cheiaGabãoGâmbiaGeralConfigurações GeraisGeórgiaAlemanhaObtenha AjudaObter mais açõesObter mais tiposPeça ajudaObter AjudaObter Relatório do SistemasObtenha uma chave de site para seu domínio registrando-se %saqui%sComece adicionando seu primeiro campo do formulário.Comece adicionando seu primeiro campo do formulário. Basta clicar no sinal de mais e selecionar as ações desejadas. É fácil!ComeçandoComeçando com Ninja FormsGanaGibraltarDê ao seu formulário um título. É assim que você o encontrará mais tarde.IrSua tentativa falhouAcessar formuláriosIr para Ninja FormsIr para a primeira páginaIr para a última páginaIr para a próxima páginaIr para a página anteriorGréciaGronelândiaGranadaDocumentação CrescenteGuadalupeGuamGuatemalaGuinéGuiné-BissauGuianaHTMLHaitiTela parcialIlha Heard e Ilhas McDonaldOlá, Ninja Forms!AjudaTexto de AjudaTexto de ajuda aquiOcultarCampo OcultoOcultar legendaEsconder IstoEsconder formulário completado com sucesso?Dica: A senha deverá ter no mínimo sete caracteres. Para torná-la mais forte, mescle letras maiúsculas com minúsculas, números e símbolos como !, ?, $, %, etc. ).Cidade do VaticanoURL PessoalHondurasHoney PotErro do HoneypotMensagem de Erro HoneypotHong KongTag de ganchoNome do hostComo vai?HungriaIPIslândiaSe "texto de descrição" estiver habilitado, terá uma exclamação %s colocada próximo ao campo. Passando o mouse sobre esta exclamação mostrará o texto de ajuda.Se "texto de ajuda" estiver ligado, terá uma exclamação %s colocada próximo ao campo. Passando o mouse sobre esta exclamação mostrará o texto de ajuda.Se esta caixa for marcada, TODOS os dados Ninja Forms serão removidos do banco de dados após exclusão. %sTodos os formulários e submissões não poderão ser recuperados.%sSe esta caixa estiver marcada, Ninja Forms limpará todos os valores do formulário depois que este for submetido com sucesso.Se este box for checado, Ninja Forms irá esconder o formulário após ele ter sido submetido com sucesso.Se este box for checado, Ninja Forms mandará uma cópia do formulário para este endereço.Se este box for checado, Ninja Forms irá validar este campo como um email.Se este box for marcado, tanto os boxes de senha como o de reentrar senha serão mostrados. Se esta caixa estiver marcada, esta coluna na tabela de submissões será classificada por número.Se você for um humano e está vendo este campo, por favor, deixe-o em branco.Se você for um humano, deixe este campo em branco.Se você for um humano, por favor, vá devagar.Se deixar esta caixa vazia, nenhum limite será utilizadoSe você se inscrever, alguns dados sobre a instalação do Ninja Forms serão enviados para NinjaForms.com (NÃO inclui seus envios).Se você pular isto, não tem problema! O Ninja Forms continuará funcionando normalmente.Se você quiser enviar um valor ou cálculo nulo, você deve usar '' para eles.Se você quer que o seu formulário te notifique por email quando um usuário clicar em enviar, você pode definir isto nesta aba. Você pode criar ilimitados emails, incluindo emails enviados para usuários que preencheram o formulário.Se seus formulários estiverem "ausentes" após atualizar para o 2.9, este botão tentará reconverter os formulários antigos para mostrá-los no 2.9. Todos os formulários atuais permanecerão na tabela "Todos os formulários".ImportarImportar / ExportarImportar / Exportar SubmissõesImportar Campos FavoritosImportar FavoritosImportar camposImportar FormulárioImportar formuláriosImportar Itens da ListaImportar um formulárioImportar/ExportarMaior clarezaIncluir no auto-total? (Se habilitado)Resposta incorretaAumentar conversõesÍndiaIndonésiaMáscara de InputInserirInserir Todos os CamposInserir CampoInsira o LinkInserir mídiaDentro do ElementoInstaladoPlugins InstaladosInterest GroupsUpload de formulário inválido.ID de formulário inválidoIrãIraqueIrlandaEste é um campo de email?IsraelÉ fácil! Ou...ItáliaJamaicaJapãoMensagem de Erro de JavaScript desabilitadoFulano de TalJordâniaBasta clicar aqui e selecionar os campos desejados.CazaquistãoQuéniaChaveKiribatiKitchen SinkCoréia do NorteCoreia do SulKuwaitQuirguistãoEtiquetaRótulo aquiNome da legendaPosição da Etiqueta Rótulo usado ao visualizar e exportar envios.Rótulo,Valor,CalcEtiquetasIdioma usado pelo reCAPTCHA. Para obter o código do seu idioma, clique %saqui%sLaosÚltimo NomeLetóniaElementos de LayoutCampos de layoutSaiba maisSaiba mais sobre o Multi-Part FormsSaiba mais sobre o Save ProgressLíbanoÀ Esquerda do ElementoÀ esquerda do campoLesotoLibériaLíbiaLicençasLiechtensteinLightLimitar entrada a este númeroLimite de Mensagens AtingidoLimite de SubmissõesLimite de entrada para este númeroListaMapeamento de campos de listaTipo de ListaListasLituâniaCarregandoCarregando...LocalizaçãoFazer o loginFormulário longo - LuxemburgoMM-DD-AAAAMM/DD/AAAAMacauRepública da MacedôniaMadagáscarMalawiMalásiaMaldivasMaliMaltaGerencie solicitações de orçamento do seu site facilmente com este modelo. É possível adicionar e remover campos, se necessário.Ilhas MarshallMartinicaMauritâniaMauríciaMáxMáxima entrada de nível de aninhamentoValor MáximoTalvez mais tardeMayotteMédioMensagemEtiqueta de MensagemMensagem exibida a usuários se a caixa "logado" acima está marcada e se não estão logados.MetaboxMéxicoEstados Federados da MicronésiaMigrações e dados simulados concluídos. MinValor MínimoCampos de diversosNão correspondemEstá faltando uma pasta temporária.Simular ação de emailSimular ação de salvamentoSimular ação de mensagem de sucessoModificado emMoldáviaMónacoMongóliaMontenegroMontserratMais por virMarrocosMover este item para a LixeiraMoçambiqueVárias opçõesMultiprodutos - Escolher quantosMultiprodutos - Escolher umMultiprodutos - Lista suspensaMulti-SelectBox de Múltiplas SeleçõesMúltiploMeu primeiro cálculoMeu segundo cálculoMySQL VersãoMyanmarNomeNome no CartãoNome ou camposNamíbiaNauruPrecisa de Ajuda?NepalPaíses BaixosAntilhas NeerlandesasNunca ver um aviso do administrador do Ninja Forms no painel. Desmarque para vê-los novamente.Nova AçãoNova Aba do ContrutorNova CaledóniaNovo SlideNova SubmissãoNova ZelândiaFormulário de inscrição de boletim informativoNicaráguaNígerNigériaOpções do Ninja FormNinja FormsNinja Forms - ProcessandoNinja Forms - AlteraçõesDesenvolvedor do Ninja FormsDocumentação Ninja FormsNinja Forms está ProcessandoEnvio de Ninja FormsStatus do Sistema Ninja FormsDocumentação do Ninja Forms 3.0Upgrade do Ninja FormsProcessamento do upgrade do Ninja FormsUpgrades - Ninja FormsNinja Forms VersãoNinja Forms WidgetNinja Forms também vem com uma função simples de modelo que você pode colocar diretamente em um arquivo de modelo php. %sNinja Forms ajuda básica vai aqui.Ninja Forms não pode ser ativado em rede. Por favor, visite o painel/dashboard de cada site para ativar o plugin.O Ninja Forms concluiu todos os upgrades disponíveis!Ninja Forms é criado por uma equipe mundial de desenvolvedores que visam proporcionar a comunidade WordPress número 1 para Plugin de criação de formulário.O Ninja Forms precisa processar %s upgrade(s). Isso pode levar alguns minutos para terminar. %sIniciar upgrade%sNinja Forms precisa atualizar as suas configurações de email, clique %saqui%s para iniciar a atualização.Ninja Forms precisa atualizar a tabela de submissões, clique %saqui%s para iniciar a atualização.Ninja Forms precisa atualizar as suas notificações de formulário, clique %saqui%s para iniciar a atualização.Ninja Forms precisa atualizar as suas configurações de formulário, clique %saqui%s para iniciar a atualização.Ninja Forms fornece um widget que você pode colocar em qualquer área de widgets do seu site e selecionar exatamente qual formulário você quer que seja exibido neste espaço.Shortcode do Ninja Forms usado sem especificar um formulário.NiueNãoNenhuma ação especificada...Nenhum Campo Favorito EncontradoNenhum campo encontrado.Nenhuma Submissão EncontradaNenhuma Submissão Encontrada Na LixeiraNenhum termo disponível para esta taxonomia. %sAdicionar um termo%sNenhum arquivo carregado.Nenhum formulário encontrado.Nenhuma taxonomia selecionada.Nenhum log de mudanças válido foi encontrado.NenhumIlha NorfolkIlhas Marianas do NorteNoruegaMensagem para usuário não logadoAinda nãoNada na lixeiraNotaO texto da nota pode ser editado nas configurações avançadas do campo da nota abaixo.Aviso: O JavaScript é necessário para esse conteúdo.Aviso: Shortcode do Ninja Forms usado sem especificar um formulário.NúmeroErro no número máximoErro no número mínimoOpções de númerosQuantidade de estrelasNúmero de casas decimais.Número de segundos para contagem regressivaQuantidade de segundos para a contagem regressivaA quantidade de segundos para envios temporizados.Número de EstrelasOmãUmUm endereço de e-mail ou campoOpa! O addon ainda não é compatível com o Ninja Forms TRÊS. %sSaiba mais%s.Abrir em nova janelaOperações e campos (Avançado)Estilos recomendadosOpção 1Opção 3Opção 2OpcionesOrganizadorNosso escopo de suporteMostrar cálculo comoPHP LocalPHP Máxima Entrada de VariáveisPHP Tamanho Máximo de PostPHP Tempo LimitePHP VersãoPUBLICARPaquistãoPalauPanamáPapua - Nova GuinéTexto de parágrafoParaguaiItem Principal:SenhaConfirmação da senhaEtiqueta de Incompatibilidade de SenhaSenhas não correspondemCampos de PagamentoGateways de PagamentoTotal do pagamentoPermissão negadaPeruFilipinasTelefoneTelefone - (555) 555-5555Ilhas PitcairnColoque %s em qualquer área que aceita shortcodes para exibir seu formulário onde quiser. Mesmo no meio do conteúdo de páginas ou posts.PlaceholderTexto Plano%sEntre em contato com o suporte%s sobre o erro acima.Por favor responda a pergunta anti-spam corretamente.Por favor verifique os campos obrigatóriosPreencha o campo do captchaPreencha o recaptchaCorrija os erros antes de enviar este formulário.Por favor, certifique-se de que todos os campos obrigatórios estão preenchidos.Por favor, digite uma mensagem que você deseja exibir quando este formulário alcançar seu número limite de submissões e não irá aceitar novas submissões.Por favor entre com um email válidoDigite um endereço de email válido.Por favor entre com um endereço de email válido.Ajude-nos a melhorar o Ninja Forms.Por favor, inclua esta informação ao solicitar suporte:Incremente por Por favor, deixar o campo spam em branco.Verifique se você inseriu suas chaves de site e secreta corretamentePor favor avalie %sNinja Forms%s %s no %sWordPress.org%s para ajudar-nos a manter este plugin gratuito. A equipe WP Ninjas agradece!Por favor, selecione um formulário para visualizar as submissõesPor favor selecione um formulário.Por favor selecione um arquivo exportado válido.Por favor selecione um campo favorito válido.Por favor selecione campos favoritos para exportar.Por favor use estes operadores: + - * /. Esta é uma funcionalidade avançada. Cuidado com coisas como divisão por zero (0).Por favor, espere %n segundosPor favor, aguarde a submissão do formulário.PluginsPolôniaPreencha isto com a taxonomiaPortugalem artigosID Post / Página (se disponível)Título do Post/Página (se disponível)URL Post / Página (se disponível)Criação de PostID da publicaçãoTitulo do PostURL do postPre-visualizarAlterações anterioresPreview do FormulárioA prévia não existe.PreçoPreço:Campos de preçoProcessandoRótulo de processamentoEtiqueta de Processando SubmissãoProdutoProduto (quantidade incluída)Produto (quantidade separada)Produto AProduto BFormulário de produto (quantidade incluída)Formulário de produto (vários produtos)Formulário de produto (com o campo Quantidade)Tipo do ProdutoNome programático que pode ser usado como referência a este formulário.PublicarPorto RicoComprarCatarQuantidadeQuantidade de Produto AQuantidade de Produto BQuantidade:String de consultaStrings de consultaVariável de string de consultaPerguntasPosição da perguntaSolicitação de orçamentoRadioLista radialRedigite a SenhaEtiqueta do Re-entre SenhaDesativar todas as licenças realmente?RecaptchaEncaminharRemoverRemover TODOS os dados Ninja Forms após a desinstalação?Remover ValorRemova todos os dados Ninja FormsRemover este campo? Será removido mesmo se você não salvar.Responder ParaRequerer que o usuário esteja logado para ver formulário?ObrigatórioCampo ObrigatórioErro de Campo ObrigatórioEtiqueta de Campos ObrigatóriosSímbolo de campo obrigatórioRedefinir conversão de formulárioRedefinir conversão de formuláriosRedefinir o processo de conversão de formulários para v2.9+RestaurarRecuperar Ninja FormsRestaurar este item da LixeiraConfigurações de RestriçãoRestriçõesRestringe o tipo de entrada que o usuário pode inserir neste campo.Retornar ao Ninja FormsReuniãoEditor de texto com formatação (RTE)À Direita do ElementoÀ direita do campoReverterReverte para a versão 2.9.x mais recente.Reverter para a v2.9.xRomêniaRússiaRuandaSMTPSOAP ClientSUHOSIN InstaladoSão Cristóvão e NevisSanta LúciaSão Vicente e GranadinasSamoaSan MarinoSão Tomé e PríncipeArábia SauditaSalvarSalvar & AtivarSalvar Configurações dos CamposSalvar formulárioSalvar OpçõesSalvar configuraçõesSalvar envioSalvoCampos salvosSalvando...Pesquisar SlidePesquisar SubmissõesSelecionarSelecionar TudoSelecionar listaSelecione um campo ou digite para pesquisarSelecionar ArquivoSelecionar um formulárioSelecione um formulário ou digite para pesquisarSelecione o número de submissões que este formulário aceitará. Deixe em branco para não ter limite.Selecione a posição de seu rótulo relativa ao próprio elemento do campo.SelecionadoValor SelecionadoEnviarmandar uma cópia do formulário para este endereço?SenegalSérviaEndereço IP do servidorConfiguraçõesConfigurações SalvasSeychellesFreteShortcodeDeve entrar como porcentagem, ex: 8.25%, 4%, etc.Mostrar Texto de AjudaExibir Botão de Upload de MediaMaisMostrar Indicador de Força da SenhaExibir Editor de Texto Rico (Rich Text Editor)Exibir IstoExibir valores de item da listaMostrado para usuários como hover.Serra LeoaSingapuraSingleCaixa de seleção únicaCusto únicoTexto de linha únicaProduto único (padrão)Site URLEslováquiaEslovêniaCorreio tradicionalEntão, se você quer criar uma máscara para um número de segurança social, você deve digitar 999-99-9999 no campoIlhas SalomãoSomáliaClassificar como numéricoClassificar como numéricoÁfrica do SulIlhas Geórgia do Sul e Sandwich do SulSudão do SulEspanhaResposta do SpamPergunta do SpamEspecificar Operações e Campos (Avançado)Sri LankaSanta HelenaSaint-Pierre e MiquelonCampos PadronizadosClassificaçãoComece por um modeloEstadoStatusPassoEtapa %d de aproximadamente %d processandoPasso (valor a ser incrementado)Indicador de forçaForteSubsequênciaAssuntoTexto de assunto ou procurar um campoAssunto ou busca para um campoEnvioSubmissão CSVEnvio de dadosEnvio de informaçõesLimite de envioMetabox de envioEstatística de SubmissãoSubmissõesSubmeterTexto do Botão de Envio após o timer expirarSubmeter via AJAX (sem recarregar a página)?EnviadoSubmetido PorEnviado por: Submetido emEnviado em: AssinarMensagem de SucessoSudãoSurinameSvalbard e Jan MayenSuazilândiaSuéciaSuíçaSíriaSistemaStatus do SistemasA versão TRÊS está chegando!República da ChinaTajiquistãoDê uma olhada em nossa profunda documentação Ninja Forms abaixo.TanzâniaImpostoPercentual de ImpostoTaxonomiaCampos ModeloFunção de TemplateLista de termosTextoElemento TextualTexto a aparecer depois da contagemTexto para exibir após o contador de caracteres/palavrasTextareaTextboxTailândiaObrigado por preencher este formulário.Obrigada por atualizar para a última versão! Ninja Forms %s está preparado para tornar agradável sua experiência na gestão de submissões!Obrigada por atualizar para a versão 2.7 de Ninja Forms. Por favor, atualize as extensões de Ninja FormsObrigado por atualizar! Ninja Forms %s torna a contrução de formulários mais fácil do que nunca antes!Obrigado por usar o Ninja Forms! Esperamos que tenha encontrado tudo de que precisa, mas se tiver mais alguma pergunta:Agradeço a você, {field:name}, por preencher meu formulário!Os (normalmente) 16 dígitos na parte frontal do seu cartão de créditoOs 3 (últimos) dígitos ou 4 dígitos (iniciais) em seu cartão.Os 9s representarão qualquer número, e os pontos e sinal de menos serão automaticamente adicionadosO menu de formulário é seu ponto de acesso para todas as coisas do Ninja Forms. Nós já criamos o seu primeiro %sformulário de contato%s como exemplo. Você também pode criar os seus próprios formulários clicando em %sAdicionar Novo%s.O formato deverá parecer com o seguinte:As atualizações de interface nesta versão prepara o terreno para algumas grandes melhorias no futuro. A versão 3.0 será construída nestas alterações para tornar o Ninja Forms ainda mais estável, poderoso e amigável.O mês que seu cartão de crédito expira, normalmente na parte frontal do cartão.As configurações mais comuns são exibidas imediatamente, enquanto outras, não essenciais, estão escondidas dentro de seções expansíveisO nome exibido na parte frontal do seu cartão de crédito.As senhas informadas não conferem.As pessoas que desenvolvem Ninja FormsO processo começou, por favor, seja paciente. Isto poderá levar muitos minutos. Você será automaticamente redirecionado quando o processo estiver finalizado.O arquivo carregado excede a diretiva MAX_FILE_SIZE especificada no formulário HTML.O arquivo carregado excede a diretiva upload_max_filesize em php.ini.O arquivo carregado foi apenas parcialmente carregado.O ano que seu cartão de crédito expira, normalmente na parte frontal do cartão.Há uma nova versão do %1$s disponível. Visualizar detalhes da versão %3$s ou atualizar agora.Há uma nova versão do %1$s disponível. Visualizar detalhes da versão %3$s.O arquivo carregado não está em um formato válido.Estes são todos os campos da seção Preços.Estes são todos os campos da seção Informações do usuário.Estes são os caracteres de máscara pré-definidos:Estes são vários campos especiais.Estes campos precisam ser correspondentes.Esta coluna na tabela de envios será classificada por ordem numérica.Este é um campo obrigatórioEste campo é obrigatório.Este é um testeEste é o estado de um usuário.Esta é uma ação de email.Este é outro teste.Quanto tempo um usuário deve esperar até submeter o formulárioEsta é a etiqueta usada ao visualizar/editar/exportar submissõesEste é o nome programático do seu campo. Exemplos são: meu_calculo, preco_total, total-usuario, etc.Este é o estado do usuárioEste é o valor que será usado se %sMarcado%s.Este é o valor que será usado se %sDesmarcado%s.Isto é onde você construíra seu formulário adicionando campos e arrastando-os na ordem que você quer que apareçam. Cada campo terá uma variedade de opções como rótulo, posição do rótulo e placeholder.Esta palavra-chave é reservada pelo WordPress. Tente outra.Esta mensagem é exibida dentro do botão de submissão sempre que um usuário clicar "submeter" para que saibam que está processando.Esta mensagem é exibida para um usuário quando as senhas digitadas não correspondem.Este número será usado nos cálculos se a caixa estiver marcada.Este número será usado nos cálculos se a caixa estiver desmarcada.Esta configuração removerá COMPLETAMENTE tudo relacionado ao Ninja Forms ao excluir o plugin. Isso inclui ENVIOS e FORMULÁRIOS. Isso não pode ser desfeito.Esta aba tem configurações gerais de formulário, como título e método de submissão, também exibe configurações como esconder um formulário quando o completado com sucesso.Este será o assunto do e-mail.Isto prevenirá o usuário de colocar qualquer coisa a não ser númerosTrêsTemporizadoMensagem de Erro do TimerTimor LesteParaPara ativar as licenças das extensões do Ninja Forms, primeiro você precisa %sinstalar e ativar%s a extensão desejada. Em seguida, as configurações da licença aparecerão.Para usar esta funcionalidade, cole seu CSV na textarea acima.Data AtualAlternar carteiraTogoTokelauTongaTotalLixeiraTenta seguir as especificações da %sfunção date() do PHP%s, mas nem todos os formatos são suportados.Trinodad e TobagoTunísiaTurquiaTurcomenistãoTurks e CaicosTuvaluDoisTipoURL - Localizador-Padrão de Recursos, basicamente o endereço de uma página web (Uniform Resource Locator)Telefone dos EUAUgandaUcrâniaDesmarcadoValor de cálculo desmarcadaEm Comportamento Básico do Formulário nas Configurações do formulário você pode facilmente selecionar uma página que você deseja que o formulário automaticamente anexe ao final do conteúdo dessa página. Uma opção similar está disponível em toda tela de edição de conteúdo em sua barra lateral.DesfazerDesfazer tudoEmirados Árabes UnidosReino UnidoEstados UnidosIlhas Menores Distantes dos Estados UnidosErro desconhecido no carregamento.Não publicadoAtualizarAtualizar SlideAtualizado em: Atualizando banco de dados de formuláriosAtualizarFaça upgrade para o Ninja Forms TRÊSUpgradesUpgrade concluídoUrlUruguaiUsar uma equação (Avançado)Usar quantidadeUsar uma primeira opção customizadaUsar as convenções de estilo padrão do Ninja Forms.Use os seguintes shortcodes para inserir o final do cálculo: [ninja_forms_calc]Use as dicas abaixo para começar a usar Ninja Forms. Você estará em pleno funcionamento rapidamente!Use este como o campo de senha do registroUse isto como um campo de registro de senha. Se esta caixa estiver marcada, as caixas de texto de senha e repetição da senha serão de saídaUsado para marcar um campo para processamento.UsuárioApelido do Usuário (se logado)Email do UsuárioEmail do Usuário (se logado)Entrada do usuárioPrimeiro Nome do Usuário (se logado)User IDID do Usuário (se logado)Agrupamento de Campos com Informação do UsuárioInformação do UsuárioCampos de informações de usuáriosÚltimo Nome do Usuário (se logado)Meta de usuário (se estiver acessando sua conta)Valores submetidos pelo usuário:Valores submetidos pelo usuário:Os usuários são mais inclinados a completar formulários longos quando eles podem salvar e continuar depois.

    A extensão Save Progress do Ninja Forms torna isso fácil e rápido.

    UzbequistãoValidar como um endereço de e-mail? (Campo deve ser obrigatório)ValorVanuatuNome da variávelVenezuelaVersãoVersão %sMuito fracoVietnãVisualizarVisualizar %sExibir alteraçõesExibir formuláriosVer ItemVisualizar SubmissãoVer SubmissõesVisualizar o Log de Alterações CompletoIlhas Virgens BritânicasIlhas Virgens AmericanasVisitar página de PluginsWP Modo DepuradorWP IdiomaWP Tamanho Máximo de UploadWP Limite de MemóriaWP Multisite HabilitadoWP Remote PostWP VersãoWallis e FutunaNós fazemos tudo que pudermos para fornecer a cada usuário Ninja Forms o melhor suporte possível. Se você encontrar um problema ou tem uma pergunta, %spor favor contate-nos%s.Nós adicionamos a opção para remover todos os dados do Ninja FOrms (submissões, formulários, campos, opções) quando você excluir o plugin. Nós chamamos isto de opção nuclear.Notamos que você não tem um botão de envio em seu formulário. Podemos adicionar um para você automaticamente.FracoInformações do Web ServerBem-vindo ao Ninja FormsBem-vindo ao Ninja Forms %sSaara OcidentalEm que podemos ajudar você?O que tentar antes de entrar em contato com o suporteComo gostaria de nomear este favorito?O que há de novo?Ao criar e editar formulários, vá diretamente para a seção que mais importa.Para quem este e-mail deverá ser enviado?Palavra(s)PalavrasInvólucroA-m-dd/m/YDD-MM-YYYYAAAA/MM/DDIémenSimVocê pode fazer upgrade para o Ninja Forms TRÊS "Candidato a Lançamento"! %sFaça upgrade agora%s Você também poderá combinar estes para aplicações específicasVocê pode digitar equações de cálculo aqui usando field_x onde x é o ID do campo que você quer usar. Por exemplo, %sfield_53 + field_28 + field_65%s.Você não pode submeter o formulário sem que o Javascript esteja ativado.Você não tem permissão para instalar atualizações de pluginVocê não tem permissão.Você não adicionou um botão de submissão ao seu formulário.Você precisa estar conectado para ver a prévia de um formulário.Você deve fornecer um nome para este favorito.Você precisa do JavaScript para submeter este formulário. Por favor, habilite-o e tente novamente.Você comprou Você encontrará isto incluído com seu e-mail de compra.Seu formulário foi enviado com sucesso.Seu servidor não tem fsockopen and cURL habilitados - PayPal IPN e outros scripts que se comunicam com outros servidores não funcionarão. Entre em contato com seu provedor de hospedagem.Seu servidor não tem a classe %sSOAP Client%s habilitada - alguns plugins de gateway que usam SOAP podem não funcionar como experado.Seu servidor tem cURL habilitado, fsockopen está desabilitado..Seu servidor tem fsockopen and cURL habilitados.Seu servidor tem fsockopen habilitado, cURL está desabilitado.Seu servidor tem a classe SOAP Client habilitada.Sua versão da extensão File Upload de Ninja Forms não é compatível com a versão 2.7 de Ninja Forms. É preciso que seja ao menos a versão 1.3.5. Por favor, atualize esta extensão emSua versão da extensão Save Progress de Ninja Forms não é compatível com a versão 2.7 de Ninja Forms. É preciso que seja ao menos a versão 1.1.3. Por favor, atualize esta extensão emReino da IugosláviaZâmbiaZimbábueCódigo postalCepa - Representa um caracter textual (A-Z,a-z) - Apenas letras poderão ser inseridasrespostabutton-secondary nf-download-allporcaractere(s) restantesmarcadaCopiarpersonalizadod-m-Adashicons dashicons-updateduplicarfoo@wpninjas.comhrjs-newsletter-list-update extral, F d Am-d-Am/d/Anenhumadede Produto A e de Produto B por US$umone_week_supportsenhaprocessandoprodutos por reCAPTCHAIdioma do reCAPTCHAChave secreta do reCAPTCHAConfigurações do reCAPTCHAChave de site do reCAPTCHATema do reCAPTCHAConfigurações do reCAPTCHAAtualizarsmtp_porttrêstítulodoisdesmarcadaatualizadousuario@gmail.comversãowp_remote_post() falhou. PayPal IPN pode não funcionar com seu servidor.wp_remote_post() falhou. PayPal IPN não funcionará com seu servidor. Entre em contato com seu provedor de hospedagem. Erro:wp_remote_post() realizado com sucesso - PayPal IPN está funcionando.lang/ninja-forms-hi_IN.po000064400000642667152331132460011261 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Notice: JavaScript is required for this content." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Cheatin’ huh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Fields marked with an %s*%s are required" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Please ensure all required fields are completed." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "This is a required field" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Please answer the anti-spam question correctly." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Please leave the spam field blank." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Please wait to submit the form." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "You cannot submit the form without Javascript enabled." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "कृपया कोई मान्य ईमेल पता दर्ज करें." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "प्रोसेसिंग" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "The passwords provided do not match." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Add Form" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Select a form or type to search" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "कैंसिल करें t" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Insert" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Invalid form id" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Increase Conversions" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Learn More About Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Maybe Later" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Dismiss" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Users are more likely to complete long forms when they can save and return to " "complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Learn More About Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "ईमेल" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "From Name" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Name or fields" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Email will appear to be from this name." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "From Address" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "One email address or field" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Email will appear to be from this email address." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "इस तक" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Email addresses or search for a field" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Who should this email be sent to?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "विषय" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Subject Text or search for a field" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "This will be the subject of the email." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Email Message" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "संलग्नक" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Submission CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "उन्नत सेटिंग्स " #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "एच टी एम एल (HTML)" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "सादा टेक्स्ट" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Reply To" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "पुन: निर्दिष्ट करें" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "सफलता संदेश" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Before Form" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "After Form" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "स्थान" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "संदेश" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplicate" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "निष्क्रिय करें" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "सक्रिय करें" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "एडिट करें t" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "हटाएँ" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplicate" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "नाम" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "प्रकार" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Date Updated" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- View All Types" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Get More Types" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email & Actions" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "नया जोड़े" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "New Action" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Edit Action" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Back To List" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Action Name" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Get More Actions" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Action Updated" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Select a field or type to search" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Insert Field" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Insert All Fields" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Please select a form to view submissions" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "No Submissions Found" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Submissions" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Submission" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Add New Submission" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Edit Submission" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "New Submission" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "View Submission" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Search Submissions" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "No Submissions Found In The Trash" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "दिनांक" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Edit this item" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Export this item" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "निर्यात" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Move this item to the Trash" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Trash" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Restore this item from the Trash" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "पुनर्स्थापित करें" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Delete this item permanently" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Delete Permanently" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Unpublished" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s पहले" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "सबमिट किया गया" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Select a form" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Begin Date" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "समाप्ति दिनांक" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s updated." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "कस्टम क्षेत्र का अद्यतन किया गया." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "कस्टम क्षेत्र मिटाया गया." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restored to revision from %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s published." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s saved." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s submitted. Preview %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s scheduled for: %2$s. Preview %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s draft updated. Preview %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Download All Submissions" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Back to list" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "User Submitted Values" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Submission Stats" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Field" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Value" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "स्थिति" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Form" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "निवेदित तिथि" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modified on" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Submitted By" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "अपडेट" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Date Submitted" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "You will find this included with your purchase email." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "कुंजी" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Could not activate license. Please verify your license key" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "लाइसेंस निष्क्रिय" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "User Submitted Values:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Thank you for filling out this form." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "There is a new version of %1$s available. View version %3$s details." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "There is a new version of %1$s available. View version %3$s details or update now." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "You do not have permission to install plugin updates" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "त्रुटि" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standard Fields" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Layout Elements" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Post Creation" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Display Title" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "कोई नहीं " #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "फ़ॉर्म" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "All Forms" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms Upgrades" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "नवीनीकृत" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Import/Export" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Import / Export" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form Settings" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "सेटिंग" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "सिस्टम स्टेटस " #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "एड-ऑन" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "पूर्वावलोकन" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "सेव करें t" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "वर्ण छूटे" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Do not show these terms" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "विकल्प हैं:" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Preview Form" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Upgrade to Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE is coming!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "How's It Going?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Check out our documentation" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Get Some Help" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Edit Menu Item" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "सभी चुनें" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Append A Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "What would you like to name this favorite?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "You must supply a name for this favorite." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Really deactivate all licenses?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Reset the form conversion process for v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Remove ALL Ninja Forms data upon uninstall?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Edit Form" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "सहेज दिया" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "सहेजा जा रहा है..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Remove this field? It will be removed even if you do not save." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "View Submissions" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms Processing" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Processing" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "लोड किया जा रहा है..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "No Action Specified..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Welcome to Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Thank you for updating! Ninja Forms %s makes form building easier than ever before!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Welcome to Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Changelog" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Getting started with Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "The people who build Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "What's New" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "आरंभ करना" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "श्रेय" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Version %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "A simplified and more powerful form building experience." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "New Builder Tab" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "When creating and editing forms, go directly to the section that matters most." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Better Organized Field Settings" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Improved clarity" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Remove all Ninja Forms data" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Better license management" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Deactivate Ninja Forms extension licenses individually or as a group from the " "settings tab." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "More to come" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "दस्तावेज़ीकरण" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Take a look at our in-depth Ninja Forms documentation below." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms Documentation" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Get Support" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Return to Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "View the Full Changelog" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Full Changelog" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Go to Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "All About Forms" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "The Forms menu is your access point for all things Ninja Forms. We've already " "created your first %scontact form%s so that you have an example. You can also " "create your own by clicking %sAdd New%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Build Your Form" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Emails & Actions" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully completed." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Displaying Your Form" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Append to Page" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that page's " "content. A similiar option is avaiable in every content edit screen in its sidebar." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "लघुकोड" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that space." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Template Function" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "मदद चाहिए?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Growing Documentation" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Best Support in the Business" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "No valid changelog was found." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "View %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Disable Browser Autocomplete" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sChecked%s Calculation Value" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "This is the value that will be used if %sChecked%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sUnchecked%s Calculation Value" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "This is the value that will be used if %sUnchecked%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Include in the auto-total? (If enabled)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Custom CSS Classes" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Before Everything" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Before Label" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "After Label" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "After Everything" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Add Description" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Description Position" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Description Content" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Show Help Text" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Help Text" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "If you leave the box empty, no limit will be used" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limit input to this number" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "इसका" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "वर्ण" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Words" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Text to appear after character/word counter" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Left of Element" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Above Element" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Below Element" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Right of Element" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Inside Element" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Label Position" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Field ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Restriction Settings" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Calculation Settings" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "हटायें" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Populate this with the taxonomy" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- None" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Placeholder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "अनिवार्य" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Save Field Settings" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sort as numeric" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "If this box is checked, this column in the submissions table will sort by number." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Admin Label" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "This is the label used when viewing/editing/exporting submissions." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "बिलिंग" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "शिप्पिंग" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "विशेष" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "User Info Field Group" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Custom Field Group" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Please include this information when requesting support:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Get System Report" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Environment" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "होम यूआरएल" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "साइट की यू.आर.एल." #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms Version" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite Enabled" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "हाँ" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "नहीं" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web Server Info" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP संस्करण " #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Locale" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Debug Mode" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP Language" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "डिफ़ॉल्ट" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Max Upload Size" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Max Input Nesting Level" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Installed" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Default Timezone" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Default timezone is %s - it should be UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Default timezone is %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Your server has fsockopen and cURL enabled." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Your server has fsockopen enabled, cURL is disabled." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Your server has cURL enabled, fsockopen is disabled." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Your server has the SOAP Client class enabled." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() was successful - PayPal IPN is working." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your " "hosting provider. Error:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() failed. PayPal IPN may not work with your server." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "प्लगिन्स" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "इनस्टॉल किये गए प्लगइन" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visit plugin homepage" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "इसके द्वारा" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "संस्करण " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Give your form a title. This is how you'll find the form later." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "You have not added a submit button to your form." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Input Mask" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not be removeable" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "These are the predefined masking characters" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "The 9s would represent any number, and the -s would be automatically added" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "This would prevent the user from putting in anything other than numbers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "You can also combine these for specific applications" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "For instance, if you had a product key that was in the form of " "A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force " "all the a's to be letters and the 9s to be numbers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Defined Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Payment Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Template Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "User Information" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "सभी" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "बल्क नीलामी" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "लागू करें" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Forms Per Page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "जाएँ" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Go to the first page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Go to the previous page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "वर्तमान पृष्ठ" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Go to the next page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Go to the last page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Form Title" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Delete this form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicate Form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Forms Deleted" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Form Deleted" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Form Preview" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "प्रदर्शित करें" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Display Form Title" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Add form to this page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Submit via AJAX (without page reload)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Clear successfully completed form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Hide successfully completed form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Restrictions" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Require user to be logged in to view form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Not Logged-In Message" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limit Submissions" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Limit Reached Message" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Please enter a message that you want displayed when this form has reached its " "submission limit and will not accept new submissions." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Form Settings Saved" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "बेसिक सेटिंग्स" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms basic help goes here." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Extend Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentation coming soon." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "सक्रिय" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "इंस्टाल किया गया" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "और जानें" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup / Restore" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Restore Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Data restored successfully!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Import Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Select a file" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Import Favorites" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "No Favorite Fields Found" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Export Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Export Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Please select favorite fields to export." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favorites imported successfully." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Please select a valid favorite fields file." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Import a form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Import Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Export a form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Export Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Please select a form." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Form Imported Successfully." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Please select a valid exported form file." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Import / Export Submissions" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Date Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "सामान्य" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "सामान्य सेटिंग्स tt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "संस्करण " #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Date Format" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Currency Symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA Site Key" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Get a site key for your domain by registering %shere%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA Secret Key" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA Language" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Disable Admin Notices" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "जारी रखें" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Settings Saved" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Message Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Required Field Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Required field symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Error message given if all required fields are not completed" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Required Field Error" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Anti-spam error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Timer error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript disabled error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "कृपया कोई मान्य ईमेल पता दर्ज करें" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Processing Submission Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Password Mismatch Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "This message is shown to a user when non-matching values are placed in the " "password field." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "लाइसेंस" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Save & Activate" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Deactivate All Licenses" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Reset Forms Conversion" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Reset Form Conversion" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "If your forms are \"missing\" after updating to 2.9, this button will attempt " "to reconvert your old forms to show them in 2.9. All current forms will " "remain in the \"All Forms\" table." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "एडमिन ईमेल" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "User Email" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to start " "the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms needs to update your email settings, click %shere%s to start the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja " "Forms extensions from " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Your version of the Ninja Forms Save Progress extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please " "update this extension at " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Updating Form Database" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms Upgrade Processing" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Please %scontact support%s with the error seen above." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms has completed all available upgrades!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Go to Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms Upgrade" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "नवीनीकरण करें" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Upgrades Complete" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Step %d of approximately %d running" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms System Status" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Strength indicator" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Very weak" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "सरल" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "मध्यम" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "ज़ोरदार या महत्वपू्ण" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "बेमेल" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Select One" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "If you are a human and are seeing this field, please leave it blank." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Fields marked with a * are required." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "यह अपेक्षित फ़ील्ड है." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Please check required fields." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Calculation" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Number of decimal places." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Textbox" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Output calculation as" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Label" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Disable input?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Use the following shortcode to insert the final calculation: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automatically Total Calculation Values" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Specify Operations And Fields (Advanced)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Use An Equation (Advanced)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Calculation Method" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Field Operations" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Add Operation" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Advanced Equation" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Calculation name" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Default Value" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Custom CSS Class" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Select a Field" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Checkbox" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Unchecked" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Checked" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Show This" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Hide This" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Change Value" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "अफगानिस्तान" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "अल्बानिया" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "अल्जीरिया" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "अमेरिकन समोआ" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "एंडोरा" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "अंगोला" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "एंगुइला" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "अंटार्कटिका" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "एंटीगुआ और बार्बूडा" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "अर्जेंटीना" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "अर्मीनिया" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "अरूबा" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "ऑस्ट्रेलिया" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "ऑस्ट्रिया" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "अज़रबैजान" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "बहामा" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "बहरीन" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "बांग्लादेश" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "बारबाडोस" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "बेलारूस" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "बेल्जियम" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "बेलीज़" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "बेनिन" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "बरमू़डा" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "भूटान" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "बोलीविया" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia And Herzegowina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "बोत्सवाना" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "बॉवेट द्वीप" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "ब्राजील" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "ब्रिटेन और भारतीय समुद्री क्षेत्र" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "ब्रुनेई दारुस्सलाम" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "बुल्गारिया" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "बुर्किना फासो" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "बुरूंडी" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "कंबोडिया" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "कैमरून" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "कनाडा" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "क्रेप वर्दे" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "केमैन आईलैंड" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "केंद्रीय अफ्रीकन गणराज्य" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "चाद" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "चिली" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "चीन" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "क्रिसमस आइलैंड" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "कोकोस (कीलिंग) द्वीप" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "कोलंबिया" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "कोमोरोस" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Congo, The Democratic Republic Of The" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "कुक आइलैंड्स" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "कोस्टा रिका" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "आइवरी कोस्ट" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croatia (Local Name: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "क्यूबा" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "साइप्रस" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "चेक गणराज्य" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "डेनमार्क" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "जिबूती" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "डोमिनिका" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "डोमिनिकन गणराज्य" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (East Timor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "इक्वेडोर" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "मिश्र" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "एल साल्वाडोर" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "भूमध्यवर्ती गिनी" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "इरिट्रिया" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "एस्टोनिया" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "इथोपिया" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falkland Islands (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "फ़ैरो द्वीप" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "फ़िजी" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "फिनलैंड" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "फ़्रांस" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "France, Metropolitan" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "फ्रेंच गुआना" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "फ़्रेंच पॉलीनेशिया" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "फ़्रांसीसी दक्षिणी क्षेत्र" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "गैबन" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "गाम्बिया" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "जार्जिया" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "जर्मनी" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "घाना" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "जिब्राल्टर" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "यूनान" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "ग्रीनलैंड" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "ग्रेनाडा" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "गुआदेलूप" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "गुआम" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "ग्वाटेमाला" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "गिन्नी" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "गिन्नी-बिसाऊ" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "गुयाना" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "हैती" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard And Mc Donald Islands" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Holy See (Vatican City State)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "होंडुरस" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "हॉगकॉग" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "हंगरी" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "आइसलैंड" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "भारत" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "इंडोनेशिया" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Islamic Republic Of)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "इराक" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "आयरलैंड" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "इज़राइल" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "इटली" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "जमैका" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "जापान" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "जॉर्डन" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "कजाखस्तान" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "केन्या" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "किरिबाती" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korea, Democratic People's Republic Of" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea, Republic Of" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "कुवैत" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "किर्गिज़स्तान" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Lao People's Democratic Republic" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "लाटविया" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "लेबनान" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "लिसोटो" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "लाइबेरिया" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libyan Arab Jamahiriya" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "लिचेंस्टीन" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "लिथुआनिया" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "लक्ज़मबर्ग" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "मकाऊ" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Macedonia, Former Yugoslav Republic Of" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "मेडागास्कर" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "मलावी" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "मलेशिया" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "मालदीव" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "माली" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "माल्टा" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "मार्शल द्वीप समूह" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "मार्टीनिक" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "मॉरिटानिया" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "मौरिशस" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "मैयट" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "मैक्सिको" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Micronesia, Federated States Of" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldova, Republic Of" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "मोनाको" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "मंगोलिया" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "मॉन्टेंगरो" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "मोंटसेराट" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "मोरक्को" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "मोजाम्बिक" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "म्यांमार" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "नामीबिया" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "नाउरू" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "नेपाल" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "नीदरलैंड" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "नीदरलैंड्स एंटाइल्स" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "न्यू कैलेडोनिया" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "न्यूजीलैंड" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "निकारागुआ" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "नाइजर" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "नाइजीरिया" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "नियू" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "नॉर्फोल्क आइलैंड" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "उत्तरी मारिआना द्वीप" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "नार्वे" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "ओमान" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "पाकिस्तान" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "पलाउ" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "पनामा" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "पापुआ न्यू गिनी" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "पराग्वे" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "पेरू" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "फिलीपींस" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "पोलैंड" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "पुर्तगाल" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "प्यूर्टो रिको" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "कतर" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "रीयूनियन" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "रोमानिया" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "रूसी संघ" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "रवांडा" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "सेंट किट्स और नेविश" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "संत लूसिया" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "सेंट विंसेंट और ग्रेनेडाइंस" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "समोआ" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "सैन मैरियो" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "साओ टोमे एंड प्रिंसिपे" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "सऊदी अरब" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "सेनेगल" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "सर्बिया" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "सेशेल्स" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "सियरा लिओन" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "सिंगापुर" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakia (Slovak Republic)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "स्लोवेनिया" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "सोलोमन द्वीप" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "सोमालिया" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "दक्षिण अफ़्रीका" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "South Georgia, South Sandwich Islands" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "स्पेन" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "श्रीलंका" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "St. Pierre And Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "सूडान" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "सूरीनाम" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "स्वालबार्ड और जैन मायेन द्वीप समूह" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "स्वाजीलैंड" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "स्वीडन" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "स्विट्जरलैंड" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syrian Arab Republic" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "ताइवान" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "तजाकिस्तान" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania, United Republic Of" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "थायलैंड" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "टोगो" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "टोकेलाऊ" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "टोंगा" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "त्रिनिदाद और टोबैगो" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "ट्यूनिशिया" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "तुर्की" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "तुर्कमेनिस्तान" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "तुर्क्स और कैकोज़ द्वीपसमूह" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "तुवालु" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "युगांडा" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "यूक्रेन" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "संयुक्त अरब अमीरात" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "यूनाइटेड किंगडम" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "यूनाइटेड स्टेट्स" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "उरुग्वे" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "उज़्बेकिस्तान" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "वानुअतु" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "वेनेजुएला" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Viet Nam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "वर्जिन द्वीपसमूह (ब्रिटिश)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Virgin Islands (U.S.)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "वॉलिस और फ़्यूचूना आइलैंड्स" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "पश्चिमी सहारा" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "यमन" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "यूगोस्लाविया" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "जाम्बिया" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "ज़िम्बाब्वे" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "देश " #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Default Country" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Use a custom first option" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Custom first option" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "दक्षिणी सुडान" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Credit Card" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Card Number Label" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "कार्ड नंबर" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Card Number Description" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "The (typically) 16 digits on the front of your credit card." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Card CVC Label" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Card CVC Description" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "The 3 digit (back) or 4 digit (front) value on your card." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Card Name Label" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Name on the card" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Card Name Description" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "The name printed on the front of your credit card." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Card Expiry Month Label" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Expiration month (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Card Expiry Month Description" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "The month your credit card expires, typically on the front of the card." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Card Expiry Year Label" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Expiration year (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Card Expiry Year Description" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "The year your credit card expires, typically on the front of the card." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "टेक्स्ट" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Text Element" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Hidden Field" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "User ID (If logged in)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "User Firstname (If logged in)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "User Lastname (If logged in)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "User Display Name (If logged in)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "User Email (If logged in)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Post / Page ID (If available)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Post / Page Title (If available)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Post / Page URL (If available)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Today's Date" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Querystring Variable" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "This keyword is reserved by WordPress. Please try another." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Is this an email address?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "If this box is checked, Ninja Forms will validate this input as an email address." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Send a copy of the form to this address?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "सूची" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "This is the user's state" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Selected Value" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Add Value" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Remove Value" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "रेडियो" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Checkboxes" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multi-Select" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "List Type" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Multi-Select Box Size" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Import List Items" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Show list item values" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "आयात" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "To use this feature, you can paste your CSV into the textarea above." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "The format should look like the following:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Label,Value,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "If you want to send an empty value or calc, you should use '' for those." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "चयनित" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Number" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimum Value" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maximum Value" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Step (amount to increment by)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizer" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "पासवर्ड" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Use this as a registration password field" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "If this box is checked, both password and re-password textboxes will be output." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Re-enter Password Label" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Re-enter Password" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Show Password Strength Indicator" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ " "% ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "पासवर्ड मेल नहीं खाते" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Star Rating" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Number of stars" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Confirm that you are not a bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Please complete the captcha field" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Please make sure you have entered your Site & Secret keys correctly" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha mismatch. Please enter the correct value in captcha field" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Spam Question" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Spam Answer" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "प्रस्तुत करें|" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "कर" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Tax Percentage" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Should be entered as a percentage. e.g. 8.25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Textarea" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Show Rich Text Editor" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Show Media Upload Button" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Disable Rich Text Editor on Mobile" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Validate as an email address? (Field must be required)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Disable Input" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datepicker" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Phone - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "मुद्रा" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Custom Mask Definition" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "सहायता " #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Timed Submit" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Submit button text after timer expires" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Please wait %n seconds" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n will be used to signify the number of seconds" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Number of seconds for countdown" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "This is how long a user must wait to submit the form" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "If you are a human, please slow down." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "You need JavaScript to submit this form. Please enable it and try again." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "List Field Mapping" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Interest Groups" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "एकल" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "एकाधिक" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Lists" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "रीफ़्रेश करें" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Submission Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "User Meta (if logged in)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Collect Payment" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "No forms found." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "निर्माण दिनांक" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "शीर्षक" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "अद्यतित" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Go get a life, script kiddies" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Parent Item:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "All Items" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Add New Item" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "New Item" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Edit Item" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Update Item" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "View Item" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Search Item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Not found in Trash" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Form Submissions" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Submission Info" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Add New Form" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Form Template Import Error." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "फ़ील्ड" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "There uploaded file is not a valid format." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Invalid Form Upload." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Import Forms" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Export Forms" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Equation (Advanced)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operations and Fields (Advanced)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Auto-Total Fields" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश(डायरेक्टिव) से अधिक है।" #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "अपलोड की गई फ़ाइल एचटीएमएल फ़ॉर्म में निर्दिष्ट(स्पेसिफ़ाइड) किए गए " "MAX_FILE_SIZE निर्देश(डायरेक्टिव) से अधिक है।" #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "फाइल पूरी तरह से अपलोड नही हो पाई." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "कोई फाइल अपलोड नहीं किया गया." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "एक अस्थायी फ़ोल्डर नहीं है." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "डिस्क पर फ़ाइल लिखने में विफल।" #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "फ़ाइल अपलोड एक्सटेंशन द्वारा बंद कर दिया गया।" #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Unknown upload error." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "File Upload Error" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Add-On Licenses" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrations and Mock Data complete. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "View Forms" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "सेटिंग्स सहेजें" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Server IP Address" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "होस्ट नाम" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Append a Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Form Not Found" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Field Not Found" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "कोई अनपेक्षित त्रुटि उत्पन्न हुई." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Preview does not exist." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Payment Gateways" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Payment Total" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Hook Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Email address or search for a field" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Subject Text or seach for a field" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Attach CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "यूआरएल" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Label Here" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Help Text Here" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Enter the label of the form field. This is how users will identify individual fields." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Form Default" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "छिपा हुआ" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Select the position of your label relative to the field element itself." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "आवश्यक फ़ील्ड" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Ensure that this field is completed before allowing the form to be submitted." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Number Options" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "निम्न" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "उच्च" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Step" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "विकल्प" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "एक" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "एक" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "दो" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "दो" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "तीन" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "तीन" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Calc Value" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Restricts the kind of input your users can put into this field." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "कोई नही" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "US Phone" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "विशेष" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Custom Mask" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Represents an alpha character " "(A-Z,a-z) - Only allows letters to be entered. " "
    • \n
    • 9 - Represents a numeric character " "(0-9) - Only allows numbers to be entered.
    • \n " "
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and\n letters to be " "entered.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Limit Input to this Number" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Character(s)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Word(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Text to Appear After Counter" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "वर्ण छूटे" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Enter text you would like displayed in the field before a user enters any data." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Custom Class Names" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Container" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Adds an extra class to your field wrapper." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Adds an extra class to your field element." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "dd/mm/yyyy" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Friday, November 18, 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Default To Current Date" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Number of seconds for timed submit." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Field Key" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Creates a unique key to identify and target your field for custom development." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Label used when viewing and exporting submissions." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Shown to users as a hover." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "विवरण" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sort as Numeric" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "This column in the submissions table will sort by number." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Number of seconds for the countdown" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Use this as a reistration password field. If this box is check, " "both\n password and re-password textboxes will be output" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "पुष्टि करें" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Allows rich text input." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Processing Label" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Checked Calculation Value" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "This number will be used in calculations if the box is checked." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Unchecked Calculation Value" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "This number will be used in calculations if the box is unchecked." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Display This Calculation Variable" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Select a Variable" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "मूल्य" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Use Quantity" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Allows users to choose more than one of this product." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Product Type" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Single Product (default)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multi Product - Dropdown" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multi Product - Choose Many" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multi Product - Choose One" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "User Entry" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "लागत" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Cost Options" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Single Cost" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Cost Dropdown" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Cost Type" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "उत्पाद " #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Select a Product" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "जवाब" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "A case sensitive answer to help prevent spam submissions of your form." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomy" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Add New Terms" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "This is a user's state." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Used for marking a field for processing." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Saved Fields" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Common Fields" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "User Information Fields" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Pricing Fields" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Layout Fields" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Miscellaneous Fields" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "आपका प्रपत्र सफलतापूर्वक सबमिट कर दिया गया है." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "निंजा प्रपत्र सबमिशन" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "सबमिशन सहेजें" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Variable Name" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Equation" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Default Label Position" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Form Key" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Programmatic name that can be used to reference this form." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Add Submit Button" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "पहले से लोगिन " #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Does apply to form preview." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Submission Limit" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Does NOT apply to form preview." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "डिस्प्ले सेटिंग्स " #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Calculations" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "मूल्य:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "मात्रा:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "जोड़ें" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Open in new window" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "If you are a human seeing this field, please leave it empty." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "उपलब्ध" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Please enter a valid email address!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "These fields must match!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Number Min Error" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Number Max Error" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Please increment by " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Insert Link" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Insert Media" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Please correct errors before submitting this form." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot Error" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "File Upload in Progress." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "FILE UPLOAD" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "All Fields" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Sub Sequence" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "पोस्ट आईडी" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Post Title" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Post URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP पता" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "User ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "प्रथम नाम" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "उपनाम" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "प्रदर्शन नाम" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Opinionated Styles" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "हल्का" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "गहरा" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Use default Ninja Forms styling conventions." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Rollback" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Rollback to v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Rollback to the most recent 2.9.x release." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha Settings" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA Theme" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Rich Text Editor (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "उन्नत" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administration" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Blank Forms" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "मुझसे संपर्क करें" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Mock Success Message Action" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Thank you {field:name} for filling out my form!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Mock Email Action" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "This is an email action." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hello, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Mock Save Action" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "This is a test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "This is another test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "सहायता प्राप्त करें" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "What Can We Help You With?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Agree?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Best Contact Method?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "फ़ोन" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Snail Mail" #: includes/Database/MockData.php:315 msgid "Send" msgstr "भेजें" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "किचन सिंक" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Select List" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Option One" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Option Two" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Option Three" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Radio List" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Bathroom Sink" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Checkbox List" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "These are all the fields in the User Information section." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "पता" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "शहर " #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "जिप कोड" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "These are all the fields in the Pricing section." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Product (quanitity included)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Product (seperate quantity)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "मात्रा" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "कुल" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Credit Card Full Name" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "क्रेडिट कार्ड नंबर" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Credit Card CVV" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Credit Card Expiration" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Credit Card Zip Code" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "These are various special fields." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Anti-Spam Question (Answer = answer)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "जवाब" #: includes/Database/MockData.php:805 msgid "processing" msgstr "प्रोसेसिंग" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Long Form - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Fields" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Field #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Email Subscription Form" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "ईमेल" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "अपना ईमेल पता दर्ज करें" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Subscribe" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Product Form (with Quantity Field)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "ख़रीदारी करें" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "You purchased " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "product(s) for " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Product Form (Inline Quantity)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " product(s) for " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Product Form (Multiple Products)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Product A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Quantity for Product A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Product B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Quantity for Product B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "of Product A and " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "of Product B for $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Form with Calculations" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "My First Calculation" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "My Second Calculation" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Calculations are returned with the AJAX response ( response -> data -> calcs" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "प्रतिकृति बनाये" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Save Form" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Credit Card Zip" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "You must be logged in to preview a form." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "No Fields Found." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Notice: Ninja Forms shortcode used without specifying a form." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms shortcode used without specifying a form." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "पता 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "बटन" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Single Checkbox" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "checked" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "unchecked" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Credit Card CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d/m/Y " #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "चुनें" #: includes/Fields/ListState.php:26 msgid "State" msgstr "राज्य" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Note text can be edited in the note field's advanced settings below." #: includes/Fields/Note.php:45 msgid "Note" msgstr "नोट" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Password Confirm" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "कूट शब्द" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Please complete the recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Advanced Shipping" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "प्रश्न" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Question Position" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Incorrect Answer" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Number of Stars" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Terms List" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "No available terms for this taxonomy. %sAdd a term%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "No taxonomy selected." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Available Terms" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Paragraph Text" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Single Line Text" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "ज़िप" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "पोस्ट " #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Query Strings" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Query String" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "उपयोगकर्ता" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " requires an update. You have version " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " installed. The current version is " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Editing Field" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Label Name" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Above Field" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Below Field" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Left of Field" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Right of Field" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Hide Label" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Class Name" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Basic Fields" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Mult-Select" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Add new field" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Add new action" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Expand Menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "प्रकाशित करें" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "प्रकाशित करें" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "लोड हो रहा रहा है" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "View Changes" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Add form fields" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Get started by adding your first form field." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Add New Field" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Just click here and select the fields you want." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "It's that easy. Or..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Start from a template" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "हमसे संपर्क करें" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Quote Request" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Event Registration" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Newsletter Sign Up Form" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Add form actions" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicate (^ + C + click)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Delete (^ + D + click)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "क्रियाएं" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Toggle Drawer" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "पूर्ण स्क्रीन" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Half screen" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "पूर्ववत् करें" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "पूर्ण" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Undo All" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Undo All" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "लगभग पहुंच गए..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "अभी तक नहीं" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Open in new window" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "De-activate" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Fix it." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Select a form" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Being Date" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Before requesting help from our support team please review:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE documentation" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "What to try before contacting support" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Our Scope of Support" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Import Fields" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Updated on: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Submitted on: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Submitted by: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Submission Data" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "देखे" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "अधिक दिखाएँ" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Editing field" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Form Fields" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Preview Changes" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "संपर्क पत्र" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s was deactivated." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Please help us improve Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "If you skip this, that's okay! Ninja Forms will still work just fine." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sAllow%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sDo not allow%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "You do not have permission." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Permission Denied" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEBUG: Switch to 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEBUG: Switch to 3.0.x" lang/ninja-forms-pt_PT.po000064400000646230152331132460011307 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Aviso: Este conteúdo necessita do JavaScript." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "A fazer batota, huh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Os campos assinalados com um %s*%s são obrigatórios" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Certifique-se de que todos os campos obrigatórios são preenchidos." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Este campo é obrigatório" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Responda corretamente à pergunta antisspam." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Deixe o campo do spam em branco." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Aguarde para enviar o formulário." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Não pode enviar o formulário sem ter o Javascript ativado." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Por favor introduza um endereço de email válido." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "A processar" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "As palavras-passe fornecidas não são iguais." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Adicionar formulário" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Selecionar um formulário ou tipo a procurar" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Cancelar" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Inserir" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "ID de formulário inválida" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Aumentar conversões" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Sabia que pode aumentar a conversão dos formulários ao dividir formulários " "grandes em várias secções mais pequenas e fáceis de digerir?

    A extensão " "Multi-Part Forms para o Ninja Forms torna este procedimento rápido e fácil.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Obter mais informações sobre a extensão Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Talvez mais tarde" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Ignorar" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "É mais provável que os utilizadores preencham formulários longos quando " "puderem guardar os mesmos e voltar mais tarde para conclui-los.

    A extensão " "Save Progress para o Ninja Forms torna este procedimento rápido e fácil.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Obter mais informações sobre a extensão Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Email" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "De Nome" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Nome ou campos" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "A mensagem de correio eletrónico será apresentada como tendo sido enviada por este nome." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Endereço \"De\"" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Um endereço de correio eletrónico ou campo" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "A mensagem de correio eletrónico será apresentada como tendo sido enviada a partir deste endereço." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Para" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Endereços de correio eletrónico ou procurar um campo" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Para quem deverá ser enviada esta mensagem de correio eletrónico?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Assunto" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Texto do assunto ou procurar um campo" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Este será o assunto da mensagem de correio eletrónico." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Mensagem de correio eletrónico" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Anexos" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV do envio" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Configurações avançadas" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Formato" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Texto Simples" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Responder a" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Redireccionamento" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Mensagem de êxito" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Antes do formulário" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Depois do formulário" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Local" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Mensagem" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplicar" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Desactivar" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Activar" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Editar" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Apagar" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplicar" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nome" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Tipo" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Data de atualização" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Visualizar todos os tipos" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Obter mais tipos" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Correio eletrónico e ações" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Adicionar novo" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Nova ação" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Editar ação" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Voltar à lista" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Nome da ação" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Obter mais ações" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Ação atualizada" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Selecionar um campo ou tipo a procurar" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Inserir campo" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Inserir todos os campos" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Selecione um formulário para visualizar os envios" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Nenhum envio encontrado" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Envios" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Envio" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Adicionar novo envio" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Editar envio" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Novo envio" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Visualizar envio" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Procurar envios" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Nenhum envio encontrado na Reciclagem" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Data" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Editar este item" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Exportar este item" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Exportar" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Mover este item para o Lixo" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Lixo" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Restaurar este item do Lixo" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Restaurar" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Eliminar este item permanentemente" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Eliminar permanentemente" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Não publicado" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "Há %s" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Enviado" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Selecionar um formulário" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Data de início" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Data de fim" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s actualizados." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Campo atualizado" #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Campo apagado" #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restaurado para revisão de %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s publicado." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s guardados." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s enviado. Pré-visualizar%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s agendado para: %2$s. Pré-visualizar%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s rascunho atualizado. Pré-visualizar%3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Descarregar todos os envios" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Voltar para lista" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Valores enviados pelo utilizador" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Estatísticas de envio" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Campo" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Valor" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Estado" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formulário" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Enviado a" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modificado a" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Enviado por" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Actualizar" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Data de envio" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "O Ninja Forms não pode ser ativado através da rede. Visite o painel de " "controlo de cada sítio para ativar o suplemento." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Encontrará estas informações incluídas na mensagem de correio eletrónico de confirmação da sua compra." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Chave" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Não foi possível ativar a licença. Confirme a sua chave de licença" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Desativar licença" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Valores enviados pelo utilizador:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Obrigado por preencher este formulário." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Está disponível uma nova versão do %1$s. Visualize os dados da versão %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Está disponível uma nova versão do %1$s. Visualize os dados da versão %3$s ou efetue a atualização agora." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Não tem permissão para instalar atualizações do suplemento" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Erro" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Campos padrão" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Elementos do esquema" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Publicar criação" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Classifique o %sNinja Forms%s %s em %sWordPress.org%s para nos ajudar a " "manter este suplemento gratuito. A equipa do Ninja Forms do WP agradece-lhe!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Miniaplicação do Ninja Forms" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Apresentar título" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Nenhum" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formulários" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Todos os formulários" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Atualizações do Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Atualizações" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importar/exportar" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importar/exportar" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Definições do Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Definições" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Estado do Sistema" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Suplementos" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Pré-visualizar" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Guardar" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "carácter/caracteres restante(s)" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Não mostrar estes termos" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Guardar opções" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Pré-visualizar formulário" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Atualizar para o Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "É elegível para efetuar a atualização para o Ninja Forms THREE RC! " "%sAtualizar agora%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "A versão THREE está prestes a ser disponibilizada!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Está prestes a ser disponibilizada uma grande atualização do Ninja Forms. " "%sObtenha mais informações sobre as novas funcionalidades e a " "retrocompatibilidade desta versão. Além disso, consulte também as novas " "perguntas mais frequentes.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Está tudo bem?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Obrigado por utilizar o Ninja Forms! Esperamos que tenha encontrado tudo " "aquilo de que necessita, mas, no caso de pretender esclarecer alguma questão:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Consulte a nossa documentação" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Obter ajuda" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Editar item do menu" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Seleccionar tudo" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Anexar um formulário do Ninja Forms" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Qual é o nome que gostaria de atribuir a este favorito?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Deve fornecer um nome para este favorito." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Tem a certeza de que pretende desativar todas as licenças?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Restabelecer o processo de conversão dos formulários para a versão 2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Remover TODOS os dados do Ninja Forms após a desinstalação?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Editar formulário" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Guardado" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "A guardar..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Remover este campo? O mesmo será removido, inclusivamente se não o guardar." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Visualizar envios" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Processamento do Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - A processar" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "A carregar..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Nenhuma ação especificada..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "O processo foi iniciado, seja paciente. Isto poderá demorar vários minutos. " "Será redirecionado automaticamente quando o processo for concluído." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Bem-vindo ao Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Obrigado por efetuar a atualização! O Ninja Forms %s torna a criação de " "formulários mais fácil do que nunca!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Bem-vindo ao Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Registo de alterações do Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Iniciação ao Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "As pessoas que criaram o Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Novidades" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Introdução" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Créditos" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versão %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Uma experiência de criação de formulários mais simples e sofisticada." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Novo separador do criador" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Ao criar e editar formulários, aceda diretamente à secção mais relevante." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Definições dos campos melhor organizadas" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "As definições mais comuns são mostradas imediatamente, enquanto as outras " "definições estão incluídas em secções expansíveis." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Maior clareza" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Juntamente com o separador \"Criar o seu formulário\", substituímos as " "\"Notificações\" por \"Mensagens de correio eletrónico e ações\". Esta é uma " "indicação muito mais clara sobre o que pode ser realizado neste separador." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Remover todos os dados do Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Adicionámos a opção para remover todos os dados do Ninja Forms (envios, " "formulários, campos e opções) ao eliminar o suplemento. Chamamos-lhe a opção nuclear." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Melhor gestão de licenças" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Desative as licenças das extensões do Ninja Forms individualmente ou em grupo " "no separador das definições." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Mais funcionalidades a caminho" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "As atualizações da interface desta versão estabelecem as bases para algumas " "melhorias fantásticas no futuro. A versão 3.0 tirará partido destas " "alterações para tornar o Ninja Forms um criador de formulários ainda mais " "estável, sofisticado e intuitivo." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Documentação" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Consulte a nossa documentação detalhada do Ninja Forms abaixo." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Documentação do Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Obter assistência" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Regressar ao Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Visualizar o registo de alterações completo" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Registo de alterações completo" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Aceder ao Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Utilize as sugestões abaixo para começar a utilizar o Ninja Forms. Irá " "dominá-lo num instante!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Todas as informações sobre os formulários" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "O menu \"Formulários\" é o seu ponto de acesso para tudo o que está " "relacionado com o Ninja Forms. Já criámos o seu primeiro %sformulário de " "contacto%s para que tenha um exemplo. Pode também criar o seu próprio " "formulário ao clicar em %sAdicionar novo%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Criar o seu formulário" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "É aqui que criará o seu formulário ao adicionar campos e arrastá-los de " "acordo com a ordem pela qual pretende que os mesmos sejam apresentados. Cada " "campo terá um conjunto de opções, tais como Etiqueta, Posição da etiqueta e " "Marcador de posição." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Mensagens de correio eletrónico e ações" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Se pretender que o seu formulário o notifique através de correio eletrónico " "quando um utilizador clicar no botão de envio, pode definir esta opção neste " "separador. Pode criar um número ilimitado de mensagens de correio eletrónico, " "incluindo as mensagens enviadas para o utilizador que preencheu o formulário." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Este separador inclui as definições gerais do formulário, tais como o " "respetivo título e método de envio, bem como as definições de apresentação, " "incluindo a ocultação do formulário quando o mesmo é preenchido com êxito." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Apresentar o seu formulário" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Anexar à página" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Na secção Comportamento básico do formulário das Definições do formulário, " "pode selecionar facilmente uma página em relação à qual pretende que o " "formulário seja anexado automaticamente ao final do respetivo conteúdo. " "Encontra-se disponível uma opção semelhante na barra lateral de cada ecrã de " "edição de conteúdo." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Shortcode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Coloque %s em qualquer área que aceite códigos abreviados para apresentar o " "seu formulário onde quiser. Poderá inclusivamente apresentá-lo no centro da " "sua página ou do conteúdo das publicações." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "O Ninja Forms fornece uma miniaplicação que pode colocar em qualquer área " "aplicável do seu sítio, permitindo-lhe selecionar o formulário que pretende " "apresentar nesse espaço." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Função do modelo" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "O Ninja Forms inclui também uma função de modelo simples que pode ser " "colocada diretamente num ficheiro de modelo em PHP. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Precisa de ajuda?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Documentação em expansão" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Encontra-se disponível documentação cobrindo todos os assuntos, desde a " "%sResolução de problemas%s até à nossa %sAPI para programadores%s. Estão " "sempre a ser adicionados novos documentos." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "A melhor assistência do mercado" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Efetuamos tudo o que está ao nosso alcance para fornecer a cada utilizador do " "Ninja Forms a melhor assistência possível. Se se deparar com um problema ou " "pretender esclarecer uma questão, %scontacte-nos%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Obrigado por efetuar a atualização para a versão mais recente! O Ninja Forms " "%s foi concebido especificamente para tornar a gestão dos envios uma " "experiência mais agradável!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "O Ninja Forms é desenvolvido por uma equipa mundial de programadores com o " "objetivo de fornecer à comunidade do WordPress o melhor suplemento de criação " "de formulários possível." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Não foi encontrado nenhum registo de alterações válido." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Ver %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Desativar conclusão automática do navegador" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "Valor do cálculo %smarcado%s" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Este é o valor que será utilizado se a opção estiver %sMarcada%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "Valor do cálculo %sdesmarcado%s" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Este é o valor que será utilizado se a opção estiver %sDesmarcada%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Incluir na soma automática? (Caso esteja ativado)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Classes de CSS personalizadas" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Antes de tudo" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Antes da etiqueta" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Depois da etiqueta" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Depois de tudo" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Se o \"texto da descrição\" estiver ativado, será apresentado um ponto de " "interrogação %s junto ao campo de introdução. A colocação do cursor do rato " "sobre este ponto de interrogação mostrará o texto da descrição." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Adicionar descrição" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Posição da descrição" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Conteúdo da descrição" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Se o \"texto de ajuda\" estiver ativado, será apresentado um ponto de " "interrogação %s junto ao campo de introdução. A colocação do cursor do rato " "sobre este ponto de interrogação mostrará o texto de ajuda." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Mostrar texto de ajuda" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Texto de ajuda" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Se deixar a caixa vazia, não será utilizado qualquer limite" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limitar introdução com base neste número" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "de" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Caracteres" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Palavras" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Texto a apresentar após o contador de caracteres/palavras" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "À esquerda do elemento" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Acima do elemento" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Abaixo do elemento" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "À direita do elemento" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Dentro do elemento" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Posição da etiqueta" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "ID do campo" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Definições de restrição" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Definições de cálculo" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Remover" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Popular isto com a taxonomia" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Nenhum" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Placeholder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Obrigarório" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Guardar definições dos campos" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Ordenar como numérico" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Se esta caixa estiver marcada, a respetiva coluna na tabela de envios será " "ordenada pelos números." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Etiqueta de administração" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Esta é a etiqueta utilizada ao visualizar/editar/exportar envios." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Faturação" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Envio" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Personalizado(a)" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Grupo de campos de informações dos utilizadores" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Grupo de campos personalizados" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Inclua estas informações ao solicitar assistência:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Obter Relatório do Sistema" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Ambiente" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL da página inicial" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL do site" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Versão do Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Versão do WP" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "Funcionalidade Multisítio do WP ativada" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Sim" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Não" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Informações dos servidores da internet" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Versão do PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Versão do MySQL" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "Definições regionais do PHP" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Limite de Memória do WP" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Modo WP Debug" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Idioma do WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Padrão" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Tamanho máximo de carregamento do WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "Tamanho máximo para upload no PHP" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Nível de incorporação máximo das introduções" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "Limite de tempo PHP" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Instalado" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Fuso horário predefinido" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Fuso horário padrão é %s - deve ser UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "O fuso horário predefinido é %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "O seu servidor tem as funções fsockopen e cURL ativadas." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "O seu servidor tem a função fsockopen ativada e a função cURL desativada." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "O seu servidor tem a função cURL ativada e a função fsockopen desativada." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "O seu servidor não tem fsockopen e cURL activos. A IPN do PayPal e outros " "scripts que comunicam com outros servidores não funcionarão. Contate o seu " "fornecedor de alojamento." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Programa-cliente do SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "O seu servidor tem a classe do Programa-cliente do SOAP ativada." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "O seu servidor não tem a classe do %sPrograma-cliente do SOAP%s ativada - " "Alguns suplementos de porta de ligação que utilizam o SOAP poderão não " "funcionar tal como esperado." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "Publicação remota do WP" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "A função wp_remote_post() foi bem-sucedida - O IPN do PayPal está a funcionar." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "A função wp_remote_post() fracassou. O IPN do PayPal não funcionará com o seu " "servidor. Contacte o seu fornecedor de alojamento. Erro:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "A função wp_remote_post() fracassou. O IPN do PayPal poderá não funcionar com o seu servidor." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Suplementos instalados" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visite a página da extensão" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "por" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "versão" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Dê um título ao seu formulário. Esta é a forma como poderá encontrar o formulário mais tarde." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Não adicionou um botão de envio ao seu formulário." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Máscara de introdução" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Qualquer carácter que colocar na caixa \"máscara personalizada\" que não " "esteja incluído na lista abaixo será introduzido automaticamente à medida que " "o utilizador escrever, não sendo possível removê-lo" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Estes são os caracteres de mascaramento predefinidos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Representa um carácter alfabético (A-Z, a-z) - Apenas permite a " "introdução de letras" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Representa um carácter numérico (0-9) - Apenas permite a introdução de números" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Representa um carácter alfanumérico (A-Z, a-z, 0-9) - Isto permite a " "introdução de números e letras" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Por conseguinte, se pretendesse criar uma máscara para um número de segurança " "social norte-americano, escreveria 999-99-9999 na caixa" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "Os \"9\" representariam qualquer número e os traços (\"-\") seriam " "adicionados automaticamente" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Isto impediria o utilizador de introduzir qualquer outro conteúdo sem ser números" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Pode também combinar estes caracteres para aplicações específicas" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Por exemplo, se tivesse uma chave de produto com o formato A4B51.989.B.43C, " "poderia mascará-la com a9a99.999.a.99a, o que forçaria que todos os \"a\" " "fossem letras e todos os \"9\" fossem números" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Campos definidos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Campos favoritos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Campos de pagamento" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Campos de modelo" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Informações do utilizador" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Tudo" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Acções por lotes" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Aplicar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formulários por página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Ir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Ir para a primeira página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Ir para a página anterior" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Página actual" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Ir para a página seguinte" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Ir para a última página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Título do formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Eliminar este formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicar formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formulários eliminados" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formulário eliminado" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Pré-visualização do formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Visualização" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Apresentar título do formulário" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Adicionar formulário a esta página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Enviar através de AJAX (sem recarregamento da página)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Apagar formulário concluído com êxito?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Se esta caixa estiver marcada, o Ninja Forms apagará os valores do formulário " "após o mesmo ter sido enviado com êxito." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Ocultar formulário concluído com êxito?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Se esta caixa estiver marcada, o Ninja Forms ocultará o formulário após o " "mesmo ter sido enviado com êxito." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Restrições" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Requerer que o utilizador tenha uma sessão iniciada para visualizar o formulário?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Mensagem de sessão não iniciada" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Mensagem mostrada aos utilizadores se a caixa de seleção \"com uma sessão " "iniciada\" acima estiver marcada e os mesmos não tiverem uma sessão iniciada." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limitar envios" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Selecione o número de envios aceites por este formulário. Deixe esta opção em " "branco para não estabelecer um limite." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Mensagem de limite alcançado" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Introduza uma mensagem a ser apresentada quando este formulário tiver " "alcançado o respetivo limite de envios e deixar de aceitar novos envios." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Definições do formulário guardadas" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Definições básicas" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "A ajuda básica do Ninja Forms é apresentada aqui." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Prolongar o Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentação disponível em breve." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Activo" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Instalado" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Saber Mais" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Efetuar cópia de segurança/restaurar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Efetuar cópia de segurança do Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Restaurar o Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Dados restaurados com êxito!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importar campos favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Selecione um ficheiro" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importar favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Nenhum campo favorito encontrado" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Exportar campos favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Exportar campos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Selecione os campos favoritos a exportar." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoritos importados com êxito." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Selecione um ficheiro de campos favoritos válido." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importar um formulário" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importar formulário" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Exportar um fomulário" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Exportar formulário" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Selecione um formulário." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formulário importado com êxito." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Selecione um ficheiro de formulário exportado válido." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importar/exportar envios" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Definições de data" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Geral" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Definições gerais" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versão" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Formato da data" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Tenta seguir as especificações da %sfunção de data do PHP%s, mas nem todos os " "formatos são compatíveis." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Símbolo de moeda" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Definições do reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Chave de sítio do reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Obtenha uma chave de sítio para o seu domínio ao registar-se %saqui%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Chave secreta do reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Idioma do reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Idioma utilizado pelo reCAPTCHA. Para obter o código para o seu idioma, " "clique %saqui%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Se esta caixa estiver marcada, TODOS os dados do Ninja Forms serão removidos " "da base de dados após a eliminação. %sTodos os dados dos formulários e envios " "serão irrecuperáveis.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Desativar avisos de administração" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Nunca veja um aviso de administração no painel de controlo do Ninja Forms. " "Desmarque esta opção para ver os avisos novamente." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Esta definição removerá COMPLETAMENTE todo o conteúdo relacionado com o Ninja " "Forms após a eliminação do suplemento. Isto inclui ENVIOS e FORMULÁRIOS. Esta " "ação não pode ser anulada." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Continuar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Definições guardadas" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etiquetas" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Etiquetas de mensagem" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Etiqueta de campo obrigatório" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Símbolo de campo obrigatório" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Mensagem de erro apresentada se não estiverem preenchidos todos os campos obrigatórios" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Erro de campo obrigatório" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Mensagem de erro do filtro antisspam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Mensagem de erro do pote de mel" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Mensagem de erro do temporizador" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Mensagem de erro de JavaScript desativado" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Introduza um endereço de correio eletrónico válido" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Etiqueta de processamento de envio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Esta mensagem será mostrada no botão de envio sempre que um utilizador clicar " "em \"enviar\" para informar o mesmo de que o envio está a ser processado." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Etiqueta de palavras-passe não coincidentes" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Esta mensagem será mostrada a um utilizador quando forem introduzidos valores " "diferentes nos campos da palavra-passe." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licenças" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Guardar e ativar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Desativar todas as licenças" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Para ativar a licença de uma extensão do Ninja Forms, deve primeiro " "%sinstalar e ativar%s essa extensão. As definições da licença serão então " "apresentadas abaixo." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Restabelecer conversão dos formulários" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Restabelecer conversão do formulário" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Se os seus formulários estiverem \"em falta\" após a atualização para a " "versão 2.9, este botão tentará reconverter os formulários antigos para " "mostrar os mesmos na versão mais recente. Todos os formulários atuais " "permanecerão na tabela \"Todos os formulários\"." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Todos os formulários atuais permanecerão na tabela \"Todos os formulários\". " "Em determinados casos, alguns formulários poderão ser duplicados durante este processo." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Correio eletrónico de administração" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Correio eletrónico do utilizador" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "O Ninja Forms necessita de atualizar as suas notificações dos formulários; " "clique %saqui%s para iniciar a atualização." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "O Ninja Forms necessita de atualizar as suas definições de correio " "eletrónico; clique %saqui%s para iniciar a atualização." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "O Ninja Forms necessita de atualizar a tabela de envios; clique %saqui%s para " "iniciar a atualização." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Obrigado por efetuar a atualização para a versão 2.7 do Ninja Forms. Atualize " "quaisquer extensões do Ninja Forms através de " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "A sua versão da extensão File Upload do Ninja Forms não é compatível com a " "versão 2.7 do mesmo. Esta extensão necessita de ser atualizada, no mínimo, " "para a versão 1.3.5. Atualize esta extensão em " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "A sua versão da extensão Save Progress do Ninja Forms não é compatível com a " "versão 2.7 do mesmo. Esta extensão necessita de ser atualizada, no mínimo, " "para a versão 1.1.3. Atualize esta extensão em " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "A atualizar a base de dados dos formulários" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "O Ninja Forms necessita de atualizar as suas definições dos formulários; " "clique %saqui%s para iniciar a atualização." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Processamento da atualização do Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sContacte a assistência%s com o erro apresentado acima." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "O Ninja Forms concluiu todas as atualizações disponíveis!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Aceder aos formulários" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Atualização do Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Mudar para um plano superior" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Atualizações concluídas" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "O Ninja Forms necessita de processar %s atualização(ões). Isto poderá demorar " "alguns minutos a concluir. %sIniciar atualização%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Passo n.º %d de (aproximadamente) %d em execução" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Estado do sistema do Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Indicador de segurança" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Muito fraca" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Fraca" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Média" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Forte" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Ausência de correspondência" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Selecionar uma opção" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Se não for um robô e estiver a ver este campo, deixe-o em branco." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Os campos assinalados com um * são obrigatórios." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Este campo é obrigatório." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Verifique os campos obrigatórios." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Cálculo" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Número de casas decimais." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Caixa de texto" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Gerar cálculo como" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etiqueta" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Desativar introdução?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Utilize o seguinte código abreviado para inserir o cálculo final: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Pode introduzir equações de cálculo aqui utilizando a expressão field_x, em " "que x é a ID do campo que pretende utilizar. Por exemplo, %sfield_53 + " "field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "É possível criar equações complexas ao adicionar parênteses: %s(field_45 * field_2)/2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Utilize estes operadores: + - * /. Esta é uma funcionalidade avançada. Esteja " "atento a certos itens, tal como a divisão por 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Somar automaticamente os valores do cálculo " #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Especificar operações e campos (avançado)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Utilizar uma equação (avançado)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Método de cálculo" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Operações dos campos" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Adicionar operação" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Equação avançada" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Nome do cálculo" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Este é o nome programático do seu campo. Exemplos: my_calc, price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Valor predefinido" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Classe de CSS personalizada" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Selecionar um campo" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Caixa de selecção" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Desmarcada" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Marcada" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Mostrar isto" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Ocultar isto" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Alterar valor" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afeganistão" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albânia" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Argélia" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Samoa Americana" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antártida" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antígua e Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Arménia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Austrália" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Áustria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijão" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Barém" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Bielorrússia" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Bélgica" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benim" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermudas" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Butão" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolívia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bósnia-Herzegóvina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botsuana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Ilha Bouvet" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Território Britânico do Oceano Índico" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgária" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambodja" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Camarões" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canadá" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cabo Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Ilhas Caimão" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "República da África Central" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chade" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Ilha do Natal" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Ilhas dos Cocos" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colômbia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comores" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Congo, República Democrática do" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Ilhas Cook" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Costa do Marfim" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croácia (nome local: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Chipre" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "República Checa" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Dinamarca" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibuti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Domínica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "República Dominicana" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Equador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egito" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Guiné Equatorial" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritreia" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estónia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiópia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Malvinas" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Ilhas Faroé" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlândia" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "França" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "França (Metropolitana)" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Guiana Francesa" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polinésia Francesa" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Territórios Austrais Franceses" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabão" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gâmbia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Geórgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Alemanha" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Gana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grécia" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Gronelândia" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Granada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadalupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guame" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guiné" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guiné-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guiana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Ilha Heard e Ilhas McDonald" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Santa Sé (Cidade-estado do Vaticano)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungria" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islândia" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Índia" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonésia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Irão, República Islâmica do" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraque" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlanda" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Itália" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japão" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordânia" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Cazaquistão" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Quénia" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Quiribáti" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Coreia, República Popular Democrática da" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Coreia, República da" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Quirguistão" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos, República Democrática Popular do" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Letônia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Líbano" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesoto" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Libéria" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Líbia, Jamahiriya Árabe da" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Listenstaine" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lituânia" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemburgo" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Macedónia, Antiga República Jugoslava da" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagáscar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malásia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldivas" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Ilhas Marshall" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinica" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritânia" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Maurícia" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Maiote" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "México" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Micronésia, Estados Federados da" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldávia, República da" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Mónaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongólia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Monserrate" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marrocos" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Moçambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Mianmar/Birmânia" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namíbia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Holanda" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antilhas Holandesas" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nova Caledónia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nova Zelândia" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicarágua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Níger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigéria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Ilha Norfolk" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Ilhas Marianas do Norte" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Noruega" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Omã" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Paquistão" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panamá" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua Nova Guiné" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguai" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filipinas" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Ilhas Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polónia" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Porto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunião" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Roménia" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Federação Russa" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "São Cristóvão e Neves" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Santa Lúcia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "São Vicente e Granadinas" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "São Marinho" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "São Tomé e Príncipe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Arábia Saudita" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Sérvia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seicheles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Serra Leoa" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapura" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Eslováquia (República Eslovaca)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Eslovénia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Ilhas Salomão" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somália" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "África do Sul" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Ilhas Geórgia do Sul e Sandwich do Sul" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Espanha" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanca" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Santa Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "São Pedro e Miquelão" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudão" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Ilhas Svalbard e Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Suazilândia" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Suécia" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Suíça" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Síria, República Árabe" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajiquistão" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzânia, República Unida da" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Tai|ândia" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Toquelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trindade e Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunísia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turquia" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turquemenistão" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Ilhas Turcas e Caicos" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ucrânia" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Emirados Árabes Unidos" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Reino Unido" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Estados Unidos" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Ilhas Menores Afastadas dos Estados Unidos" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguai" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbequistão" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Ilhas Virgens (Britânicas)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Ilhas Virgens Americanas" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis e Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Saara Ocidental" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Iémen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Jugoslávia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zâmbia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabué" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "País" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "País predefinido" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Utilizar uma primeira opção personalizada" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Primeira opção personalizada" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sudão do Sul" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Cartão de crédito" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etiqueta do número do cartão" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Número do Cartão" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Descrição do número do cartão" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "Os (geralmente) 16 dígitos na face do seu cartão de crédito." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Etiqueta do CVC do cartão" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Descrição do CVC do cartão" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "O valor com 3 dígitos (verso) ou 4 dígitos (face) no seu cartão." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Etiqueta do nome do cartão" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Nome no cartão" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Descrição do nome do cartão" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "O nome impresso na face do seu cartão de crédito." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Etiqueta do mês de expiração do cartão" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Mês de expiração (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Descrição do mês de expiração do cartão" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "O mês em que o seu cartão de crédito expira, sendo geralmente apresentado na face do cartão." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etiqueta do ano de expiração do cartão" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Ano de expiração (AAAA)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Descrição do ano de expiração do cartão" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "O ano em que o seu cartão de crédito expira, sendo geralmente apresentado na face do cartão." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Texto" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Elemento de texto" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Campo escondido" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID do utilizador (caso tenha uma sessão iniciada)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Nome próprio do utilizador (caso tenha uma sessão iniciada)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Apelido do utilizador (caso tenha uma sessão iniciada)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Nome de apresentação do utilizador (caso tenha uma sessão iniciada)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Endereço de correio eletrónico do utilizador (caso tenha uma sessão iniciada)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "ID da página/publicação (caso esteja disponível)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Título da página/publicação (caso esteja disponível)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL da página/publicação (caso esteja disponível)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Data de hoje" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variável da cadeia de consulta" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Esta palavra-chave foi reservada pelo WordPress. Experimente utilizar outra." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Isto é um endereço de correio eletrónico?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Se esta caixa estiver marcada, o Ninja Forms validará esta introdução como um " "endereço de correio eletrónico." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Enviar uma cópia do formulário para este endereço?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Se esta caixa estiver marcada, o Ninja Forms enviará uma cópia deste " "formulário (e quaisquer mensagens anexadas) para este endereço." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Pote de mel" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "h" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Lista" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Este é o estado do utilizador" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valor selecionado" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Adicionar valor" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Remover valor" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Cálculo" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Rádio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Caixas de verificação" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Seleção múltipla" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Tipo de lista" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Tamanho da caixa de seleção múltipla" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importar itens da lista" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Mostrar valores dos itens da lista" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importar" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Para utilizar esta funcionalidade, pode colar o seu CSV na área de texto acima." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "O formato deverá ser o seguinte:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Etiqueta,Valor,Cálculo" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Se pretender enviar um valor ou cálculo em branco, deverá utilizar '' para " "essas ocorrências." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Seleccionado" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Número" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Valor mínimo" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Valor máximo" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Incremento" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizador" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Senha" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Utilize isto como um campo de palavra-passe de registo" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Se esta caixa estiver marcada, serão apresentadas as caixas de texto da " "palavra-passe e da confirmação da mesma." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Etiqueta de reintrodução da palavra-passe" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Reintroduzir palavra-passe" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Mostrar indicador de segurança da palavra-passe" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Dica: A palavra-passe deverá ter, no mínimo, sete caracteres. Para torná-la " "mais segura, utilize letras maiúsculas e minúsculas, números e símbolos, tais " "como ! \" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Palavras-passe não correspondem" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Classificação de estrelas" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Número de estrelas" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Confirme que não é um robô" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Preencha o campo do CAPTCHA" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Certifique-se de que introduziu o sítio e as chaves secretas corretamente" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "O CAPTCHA não coincide. Introduza o valor correto no campo do CAPTCHA" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Antisspam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Pergunta do filtro contra spam" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Resposta do filtro contra spam" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Submeter" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Imposto" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Percentagem de imposto" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Este valor deverá ser introduzido como uma percentagem (por exemplo, 8,25% ou 4%)" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Área de texto" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Mostrar editor de texto formatado" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Mostrar botão de carregamento de conteúdo multimédia" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Desativar editor de texto formatado em dispositivos móveis" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Validar como um endereço de correio eletrónico? (O campo deve ser obrigatório)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Desativar introdução" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Selecionador de data" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefone - (555) 555-555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Moeda" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Definição de máscara personalizada" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Ajuda" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Envio temporizado" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Texto do botão de envio após o temporizador expirar" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Aguarde %n segundos" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "Será utilizada a variável %n para indicar o número de segundos" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Número de segundos da contagem decrescente" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Este é o período que um utilizador deve aguardar para enviar o formulário" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Se não for um robô, proceda de forma mais lenta." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Necessita do JavaScript para enviar este formulário. Ative-o e tente novamente." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Listar mapeamento dos campos" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Grupos de interesse" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Único" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Múltiplo" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listas" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "actualizar" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Caixa de metadados" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Caixa de metadados de envio" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Metadados do utilizador (caso tenha uma sessão iniciada)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Recolher pagamento" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Nenhum formulário encontrado." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Data de criação" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "título" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "atualizado" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "A sua tentativa falhou." #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Item principal:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Todos os itens" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Adicionar" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Novo item" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Editar" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Atualizar item" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Ver" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Pesquisar item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Não encontrado na Reciclagem" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Envios de formulários" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Informações de envio" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Adicionar novo formulário" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Erro de importação do modelo de formulário." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Campos" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "O ficheiro carregado não tem um formato válido." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Carregamento de formulário inválido." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importar formulários" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Exportar formulários" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Equação (avançado)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operações e campos (avançado)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Campos de soma automática" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "O ficheiro carregado excede a diretiva upload_max_filesize no ficheiro php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "O ficheiro carregado excede a diretiva MAX_FILE_SIZE que foi especificada no " "formulário em HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro enviado foi apenas parcialmente transferido." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Não foi enviado nenhum ficheiro." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Falta uma pasta temporária." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Falha ao escrever no disco." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Carregamento do ficheiro interrompido pela extensão." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Erro de carregamento desconhecido." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Erro de carregamento de ficheiro" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Licenças dos extras" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrações e dados de simulação concluídos. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Ver formulários" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Guardar Configurações" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Endereço de IP do Servidor" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Nome do host:" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Anexar um formulário do Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Formulário não encontrado" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Campo não encontrado" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Ocorreu um erro inesperado." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "A pré-visualização não existe." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Gateways de pagamento" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Total do pagamento" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Etiqueta da ligação" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Endereço de correio eletrónico ou procurar um campo" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Texto do assunto ou procurar um campo" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Anexar CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Link" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Etiqueta aqui" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Texto de ajuda aqui" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Introduza a etiqueta do campo do formulário. Esta é a forma como os " "utilizadores identificarão os campos individuais." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Predefinição do formulário" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Escondidas" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Selecione a posição da sua etiqueta em relação ao elemento do campo." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Campo Obrigatório" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Certifique-se de que este campo é preenchido antes de permitir que o " "formulário seja enviado." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Opções de números" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Máx" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Passo" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Opções" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Um" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "um" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Dois" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "dois" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Três" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "três" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Valor do cálculo" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Restringe o tipo de introdução que os seus utilizadores podem efetuar neste campo." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "não" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Telefone dos Estados Unidos" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "personalizado" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Máscara personalizada" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Representa um carácter alfabético " "(A-Z, a-z) - Apenas permite a introdução de letras.
    • " "\n
    • 9 - Representa um carácter numérico (0-9) - " "Apenas permite a introdução de números.
    • \n " "
    • * - Representa um carácter alfanumérico (A-Z, a-z, 0-9) - Isto permite a " "introdução de números e letras.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Limitar introdução com base neste número" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Carácter/Caracteres" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Palavra(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Texto a apresentar depois do contador" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Caracteres restantes" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Introduza o texto que pretende apresentar no campo antes de um utilizador " "introduzir quaisquer dados." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Nomes de classe personalizados" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Contentor" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Adiciona uma classe extra ao seu invólucro de campo." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Elemento" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Adiciona uma classe extra ao seu elemento de campo." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "AAAA-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Sexta, 18 de novembro de 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Utilizar data atual por predefinição" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Número de segundos do envio temporizado." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Chave do campo" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Cria uma chave exclusiva para identificar e segmentar o seu campo para " "desenvolvimento personalizado." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Etiqueta utilizada ao visualizar e exportar envios." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Mostrado aos utilizadores como um elemento sobreposto." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Descrição" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Ordenar como numérico" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Esta coluna na tabela de envios será ordenada pelos números." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Número de segundos da contagem decrescente" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Utilize isto como um campo de palavra-passe de registo. Se esta caixa estiver " "marcada, serão apresentadas as caixas de texto da palavra-passe e da " "confirmação da mesma" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Confirmar" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Permite a introdução de texto formatado." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "A processar etiqueta" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Valor do cálculo marcado" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Este número será utilizado nos cálculos se a caixa estiver marcada." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Valor do cálculo desmarcado" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Este número será utilizado nos cálculos se a caixa estiver desmarcada." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Apresentar esta variável de cálculo" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Selecionar uma variável" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Preço" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Utilizar quantidade" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Permite que os utilizadores escolham mais do que uma unidade deste produto." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Tipo de produto" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Um único produto (predefinição)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Vários produtos - Menu pendente" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Vários produtos - Escolher muitos" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Vários produtos - Escolher um" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Entrada do utilizador" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Custo" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Opções de custo" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Custo único" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Menu pendente do custo" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Tipo de custo" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produto" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Selecionar um produto" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Resposta" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Uma resposta que faz a distinção entre maiúsculas e minúsculas para ajudar a impedir os envios de spam do seu formulário." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomia" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Adicionar novos termos" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Este é um estado do utilizador." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Utilizado para assinalar um campo para processamento." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Campos guardados" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Campos comuns" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Campos de informações do utilizador" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Campos de preços" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Campos de esquema" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Campos diversos" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "O seu formulário foi enviado com sucesso." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Envio de formulários de ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Guardar envio" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Nome da variável" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Equacao " #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Posição da etiqueta predefinida" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Invólucro" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Chave de formulário" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Nome programático que pode ser utilizado para referenciar este formulário." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Adicionar botão de envio" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Verificámos que não tem um botão de envio no seu formulário. Podemos " "adicionar um por si automaticamente." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Fazer o login" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Aplica-se à pré-visualização do formulário." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Limite de envios" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "NÃO se aplica à pré-visualização do formulário." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Configurações de exibição" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Cálculos" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Preço:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Quantidade:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Adicionar" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Abrir numa nova janela" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Se for humano e estiver a ver este campo, deixe-o em branco." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Disponível" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Introduza um endereço de correio eletrónico válido!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Estes campos não coincidem!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Erro de número mínimo" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Erro de número máximo" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Aumente em " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Inserir hiperligação" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Inserir multimédia" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Corrija os erros antes de submeter este formulário." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Erro do pote de mel" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Carregamento do ficheiro em curso." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "CARREGAMENTO DO FICHEIRO" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Todos os campos" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Sub-sequência" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "ID da publicação" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Título do Post" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL do artigo" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "Endereço de IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID de utilizador" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Primeiro nome" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Sobrenome" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Nome exibido" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Estilos persistentes" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Claro" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Escuro" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Utilize as convenções de estilo predefinidas do Ninja Forms." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Recuar" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Recuar para a versão 2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Recuar para a versão 2.9.x mais recente." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Definições do reCAPTCHA" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Tema do reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Editor de texto formatado (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Avançado" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administração" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Formulários vazios" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Entrem em contacto comigo" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Ação de mensagem de sucesso da simulação" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Obrigado {field:name} por preencher o meu formulário!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Ação de e-mail de simulação" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Esta é uma ação de correio eletrónico." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Olá, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Ação de salvaguarda de simulação" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Isto é um teste" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "Zé Ninguém" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "utilizador@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Isto é outro teste." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Obtenha ajuda" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Como podemos ajudar?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Concorda?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Melhor método de contacto?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telefone" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Correio lento" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Enviar" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Selecionar lista" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Opção um" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Opção dois" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Opção três" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Lista de botões de seleção" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Lavatório" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Lista de caixas de seleção" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Estes são todos os campos da secção Informações do utilizador." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Morada" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Localidade" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Apartado" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Estes são todos os campos da secção Preços." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produto (quantidade incluída)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produto (quantidade separada)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Quantidade" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Total" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Nome completo do cartão de crédito" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Número do Cartão de Crédito" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "CVC do cartão de crédito" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Expiração do cartão de crédito" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Código postal do cartão de crédito" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Estes são vários campos especiais." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Pergunta anti-spam (Resposta = resposta)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "resposta" #: includes/Database/MockData.php:805 msgid "processing" msgstr "a processar" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Formulário longo - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Campos" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Campo n.º" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Formulário de subscrição de correio eletrónico" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Endereço de email" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Introduza o seu endereço de correio eletrónico" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Subscrever" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Formulário de produto (com campo Quantidade)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Adquirir" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Comprou " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "produto(s) por " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Formulário de produto (Quantidade em linha)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " produto(s) por " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Formulário de produto (Vários produtos)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produto A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Quantidade do Produto A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produto B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Quantidade do Produto B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "de Produto A e " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "de Produto B por $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formulário com cálculos" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "O meu primeiro cálculo" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "O meu segundo cálculo" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Os cálculos são devolvidos com a resposta AJAX ( resposta -> dados -> cálculo" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Copiar" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Guardar formulário" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Código postal do cartão de crédito" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Deve ter uma sessão iniciada para pré-visualizar um formulário." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Nenhum campo encontrado." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Aviso: Código abreviado do Ninja Forms utilizado sem especificar um formulário." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Código abreviado do Ninja Forms utilizado sem especificar um formulário." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Morada 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Botão" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Caixa de seleção única" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "marcada" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "desmarcada" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "CVC do cartão de crédito" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d/m/Y" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Seleccionar" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Distrito" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "O texto da observação pode ser editado nas definições avançadas do respetivo campo abaixo." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Nota" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Confirmação da palavra-passe" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "a palavra-passe" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "ReCAPTCHA" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Preencha o reCAPTCHA" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Expedição avançada" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Pergunta" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Posição da pergunta" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Resposta incorreta" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Número de Estrelas" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Lista de termos" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Nenhum termo disponível para esta taxonomia. %sAdicionar um termo%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Nenhuma taxonomia selecionada." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Termos disponíveis" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Texto do parágrafo" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Texto de linha única" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Código postal" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Publicação" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Cadeias de consulta" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Cadeia de consulta" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Sistema" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Utilizador" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " requer uma atualização Tem a versão " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " instalada. A versão atual é " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Campo de edição" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Nome da etiqueta" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Por cima do campo" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Por baixo do campo" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "À esquerda do campo" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "À direita do campo" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Ocultar etiqueta" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Nome da classe" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Campos básicos" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Escolha múltipla" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Adicionar novo campo" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Adicionar nova ação" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Expandir menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Publicar" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLICAR" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "A carregar" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Ver alterações" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Adicionar campos de formulário" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Comece por adicionar o seu primeiro campo de formulário." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Adicionar novo campo" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Basta clicar aqui e selecionar os campos pretendidos." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "É só isto. Ou…" #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Comece a partir de um modelo" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Contacte-nos" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Permita que os seus utilizadores entrem em contacto consigo através deste " "simples formulário de contacto. Pode adicionar ou remover campos conforme necessário." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Pedido de orçamento" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Faça a gestão de pedidos de orçamentos do seu sítio facilmente com este " "modelo. Pode adicionar ou remover campos conforme necessário." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Registo de eventos" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Permita que os utilizadores se registem no seu próximo evento através deste " "formulário fácil de preencher. Pode adicionar ou remover campos conforme necessário." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Formulário de inscrição no boletim informativo" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Adicione subscritores e aumente a sua lista de endereços de correio " "eletrónico com este formulário de inscrição no boletim informativo. Pode " "adicionar ou remover campos conforme necessário." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Adicionar ações de formulário" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Comece por adicionar o seu primeiro campo de formulário. Basta clicar no " "sinal de mais e selecionar as ações pretendidas. É só isto." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicar (^ + C + clique)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Apagar (^ + D + clique)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Tarefas" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Abrir/fechar gaveta" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Ecrã inteiro" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Meio ecrã" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Anular" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Concluído" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Desfazer tudo" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Desfazer tudo" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Está quase..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Ainda não" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Abrir numa nova janela" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Desativar" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Corrigir isto." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Selecionar um formulário" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Data atual" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Antes de solicitar ajuda à nossa equipa de assistência, reveja:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Documentação do Ninja Forms TRHEE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "O que experimentar antes de contactar a assistência" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "O nosso Âmbito da Assistência" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importar campos" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Atualizado a: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Enviado a: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Enviado por: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Dados de envio" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Visualizar" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Mostrar mais" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Campo de edição" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Campos do formulário" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Pré-visualizar alterações" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Formulário de contacto" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Ups! Esse extra ainda não é compatível com o Ninja Forms THREE. %sObtenha " "mais informações%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "O %s foi desativado." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Ajude-nos a melhorar o Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Se aceitar participar, serão enviados alguns dados sobre a sua instalação do " "Ninja Forms para NinjaForms.com (isto NÃO inclui os envios)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Se ignorar isto, não faz mal! O Ninja Forms funcionará corretamente na mesma." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sPermitir%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sNão permitir%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Não tem permissão." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Permissão recusada" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Dev do Ninja Forms" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEPURAÇÃO: Mudar para 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEPURAÇÃO: Mudar para 3.0.x" lang/ninja-forms-uk.po000064400000723172152331132460010701 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Пам’ятайте: для цього вмісту потрібен JavaScript." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Махлюєш, друже?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Поля, позначені зірочкою (%s*%s), обов'язкові до заповнення" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Будь-ласка, заповніть усі обов'язкові поля." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Це обов'язкове для заповнення поле" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Будь-ласка, надайте правильну відповідь на антиспамове запитання." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Залиште поле захисту від спаму пустим." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Зачекайте, щоб надіслати форму." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Не можна надіслати форму, якщо JavaScript вимкнено." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Введіть дійсну адресу електронної пошти." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "В обробці" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Паролі не збігаються." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Додати форму" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Виберіть форму або введіть текст для пошуку" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Відмінити" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Вставити" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Неприпустимий ID форми" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Підвищення показника конверсій" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Чи знаєте ви, що показник конверсії можна підвищити, розбиваючи великі форми " "на менші, легко засвоювані частини?

    Це зручно робити за допомогою " "розширення Multi-Part Forms для Ninja Forms.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Докладно про Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Можливо, пізніше" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Відхилити" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Користувачам більше подобається заповнювати довгі форми, коли вони можуть " "зберегти зміни, а потім повернутися до форми та завершити внесення даних " "згодом.

    Розширення Save Progress для Ninja Forms дає змогу зробити це " "легко та швидко.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Докладно про розширення Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Email" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Ім'я відправника" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Ім’я або поля" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Лист буде надіслано від цього імені." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Адрес відправника" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Одна адреса електронної пошти або поле" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Лист буде надіслано з цієї адреси електронної пошти." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Надіслати" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Адреси електронної пошти або пошук поля" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Хто має бути адресатом цього листа?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Тема" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Текст теми або пошук поля" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Це буде тема листа." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Текст листа" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Вкладення" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV надісланих даних" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Розришені налаштування" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Формат" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Звичайний текст" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Кому відповісти" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Копія" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Прихована копія" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Переадресувати" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL-адреса" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Повідомлення про успішну дію" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Попередня форма" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Наступна форма" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Розташування" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Повідомлення" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "дублікат" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Деактивувати" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Активувати" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Редагувати" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Видалити" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Дублювати" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Ім’я" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Тип" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Дата оновлення" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Переглянути всі типи" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Інші типи" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Електронні листи та дії" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Додати новий" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Нова дія" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Змінити дію" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Повернутися до списку" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Назва дії" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Інші дії" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Дію оновлено" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Виберіть поле або введіть дані для пошуку" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Вставити поле" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Вставити всі поля" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Виберіть форму для перегляду надсилань" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Надсилання не знайдено" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Надсилання" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Надсилання" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Додати нове надсилання" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Редагувати надсилання" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Нове надсилання" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Переглянути надсилання" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Пошук у надсиланнях" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Надсилання не знайдено в кошику" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "№" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Дата" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Редагувати цю позицію" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Експортувати цей елемент" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Експорт" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Перемістити цю позицію у смітник" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Смітник" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Відновити цю позицію із смітника" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Відновити" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Видалити цю позицію остаточно" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Остаточно видалити" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Неопубліковано" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s тому" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Подано" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Виберіть форму" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Початкова дата" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Дата закінчення" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s оновлено." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Користувацькі поля оновлені." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Користувацькі поля видалені." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s відновлено для перегляду з %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s опубліковано." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s збережено." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s надіслано. Попередній перегляд %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s заплановано на: %2$s. Попередній перегляд %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "Чернетку%1$s оновлено. Попередній перегляд %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Завантажити всі надсилання" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Повернутися до списку" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Надіслані користувачем значення" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Статистика надсилань" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Поле" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Значення" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Статус" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Форма" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Відправлено" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Дата зміни" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Ким надіслано" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Оновити" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Дата надсилання" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms не можна активувати через мережу. Щоб активувати плагін, " "скористайтеся панеллю керування на кожному сайті." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Ці відомості наведено в вашому листі про покупку." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Ключ" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Не вдалося активувати ліцензію. Перевірте ваш ліцензійний ключ" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Деактивувати ліцензію" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Надіслані користувачем значення:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Дякуємо за заповнення цієї форми." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Вийшла нова версія %1$s. Переглянути відомості про версію %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Вийшла нова версія %1$s. Переглянути відомості про версію %3$s або оновити." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Ви не маєте дозволу на інсталяцію оновлень плагіну" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Помилка" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Стандартні поля" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Елементи макета" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Створення публікації" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Будь ласка, оцініть плагін %sNinja Forms%s %s на %sвеб-сайті WordPress.org%s, " "щоб допомогти нам надавати цей плагін безкоштовно. Подяка від команди WP Ninja!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Віджет Ninja Forms" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Показати назву" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Немає" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Форми" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Усі форми" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Оновлення Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Оновлення" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Імпорт/експорт" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Імпорт / Експорт" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Настройки Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Налаштування" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Стан системи" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Додаткові компоненти" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Попередній перегляд" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Зберегти" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "символів залишилось" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Не показувати ці умови" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Зберегти параметри" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Попередній перегляд форми" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Оновлення до Ninja Forms 3" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Ви маєте право виконати оновлення до версії-кандидата Ninja Forms 3! " "%sОновити зараз%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "Виходить версія 3!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Виходить основне оновлення для Ninja Forms. %sОтримайте докладну інформацію " "про нові можливості та зворотну сумісність, а також ознайомтеся з відповідями " "на типові запитання.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Як справи?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Дякуємо за використання Ninja Forms! Ми сподіваємося, що ви знайшли все " "потрібне, але якщо ви маєте будь-які запитання:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Ознайомтеся з нашою документацією" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Отримайте допомогу" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Редагувати пункт меню" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Вибрати все" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Додати форму Ninja Forms" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Як назвати цей елемент обраного?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Необхідно вказати назву для обраного." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Справді деактивувати всі ліцензії?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Скинути процес перетворення форм для версії 2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Видалити ВСІ дані Ninja Forms з видаленням плагіну?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Редагувати форму" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Збережено" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Триває збереження..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Видалити це поле? Його буде видалено, навіть якщо ви не збережете форму." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Переглянути надсилання" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Обробка Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms – обробка" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Завантаження..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Не вказано дій..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Процес почався, зачекайте. Це може забрати кілька хвилин. По закінченні " "процесу ви автоматично перейдете на іншу сторінку." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Ласкаво просимо до Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Дякуємо за оновлення! Ninja Forms %s дає змогу створювати форми з нечуваною простотою!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Ласкаво просимо до Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Список змін у Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Початок роботи з Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Люди, що створили Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Що нового" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Початок роботи" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Подяки" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Версія %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Спрощений та потужніший плагін для створення форм." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Нова вкладка конструктора" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Створюючи та редагуючи форми, ви можете перейти безпосередньо до " "найважливішого розділу." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Краще організовані настройки полів" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Основні настройки відображаються одразу, а інші, несуттєві настройки " "приховуються всередині розділів, які можуть розгортатися." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Поліпшена зрозумілість" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Окрім вкладки «Створити форму», ми замінили вкладку «Сповіщення» на " "«Електронні листи та дії». Це краще пояснює, що можна зробити на цій вкладці." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Видалення всіх даних Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Ми додали опцію видалення всіх даних Ninja Forms (надсилань, форм, полів, " "настройок) разом з видаленням плагіну з WordPress. Ми назвали її «ядерною» опцією." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Поліпшене керування ліцензіями" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "На вкладці настройок можна деактивувати ліцензії для розширень Ninja Forms " "поодинці або групою." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Незабаром чекайте на інші вдосконалення" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Оновлення інтерфейсу в цій версії закладає основу для суттєвих поліпшень у " "майбутньому. Ці зміни буде застосовано у версії 3.0, щоб зробити Ninja Forms " "ще більш стабільним, потужним і зручним конструктором форм." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Документація" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Ознайомтеся з наведеною нижче докладною документацією до Ninja Forms." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Документація до Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Отримати підтримку" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Повернутися до Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Переглянути повний список змін" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Повний список змін" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Перейти до Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Скористайтеся наведеними нижче порадами, щоб почати роботу з Ninja Forms. Усе " "буде готово якнайскоріше!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Усе про форми" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Ви звертаєтеся до всіх можливостей Ninja Forms через меню «Форми». Ми вже " "створили вам першу %sконтактну форму%s для прикладу. Ви також можете створити " "свою власну форму, натиснувши кнопку %sДодати нову%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Створіть свою форму" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Тут ви будете створювати вашу форму, додаючи поля та перетягуючи їх у " "потрібному порядку. Кожне поле матиме набір опцій, таких як мітка, позиція " "мітки й заповнювач." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Електронні листи та дії" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Якщо ви бажаєте, щоб ваша форма надсилала вам сповіщення електронною поштою, " "коли користувач натискає кнопку надсилання, це можна зробити на цій вкладці. " "Ви можете створити необмежену кількість електронних листів, включно з листами " "до користувача, який заповнив форму." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Ця вкладка містить загальні параметри форми, такі як назва та метод " "надсилання, а також параметри відображення, такі як приховування форми, коли " "її успішно заповнено." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Відображення форми" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Додати до сторінки" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "У розділі «Базова поведінка форми» на вкладці «Настройки форми» можна вибрати " "сторінку, в кінці якої форму буде автоматично відображено. Така сама опція " "пропонується на боковій панелі в усіх вікнах редактора вмісту." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Короткий код" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Розташуйте %s в будь-якій області, що приймає короткі коди для відображення " "форми. Це може бути навіть усередині вмісту сторінки або публікації." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms пропонує віджет, який можна використовувати в будь-якій області " "вашого сайту, що підтримує віджети, і вказати, яку саме форму необхідно " "відобразити в цьому місці." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Функція шаблону" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "До складу Ninja Forms також входить простий шаблон, який можна вставити " "безпосередньо у файл шаблону php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Потрібна допомога?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Розширення документації" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Наразі доступні всі основні документи від %sПосібника з усунення неполадок%s " "до %sAPI для розробників%s. Разом із тим постійно додаються нові документи." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Найкраща підтримка в бізнесі" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Ми робимо все можливе, щоб надати кожному користувачеві Ninja Forms найкращу " "підтримку. Якщо ви зіткнулися з проблемою або маєте запитання, %sзвертайтеся " "до нас%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Дякуємо за оновлення до останньої версії! Ninja Forms %s зробить керування " "вашими формами легким і приємним!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Плагін Ninja Forms створено міжнародною групою розробників, які поставили " "собі за мету надати спільноті WordPress ідеальний засіб створення форм." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Чинний список змін не знайдено." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Перегляд %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Вимкнути автозаповнення у браузері" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr " %sВибране %s значення розрахунку" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Це значення використовуватиметься, якщо його %sвибрано%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sНе вибране %s значення розрахунку" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Це значення використовуватиметься, якщо його %sне вибрано%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Включити до автоматичного обрахунку підсумку? (Якщо ввімкнено)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Користувацькі класи CSS" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Перед усім" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Перед міткою" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Після мітки" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Після всього" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Якщо пояснювальний текст увімкнено, поруч із полем введення відображатиметься " "знак запитання %s. У разі наведення курсору на цей знак з’явиться " "пояснювальний текст." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Додати опис" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Позиція опису" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Вміст опису" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Якщо довідковий текст увімкнено, поруч із полем введення відображатиметься " "знак запитання %s. У разі наведення курсору на цей знак з’явиться довідковий текст." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Показати довідковий текст" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Довідковий текст" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Якщо залишити це поле пустим, межу не буде встановлено" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Обмежити введення до цієї кількості" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "з" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Символи" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Слів" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Текст, що відображається після лічильника слів/символів" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Зліва від елемента" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Над елементом" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Нижче елемента" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Справа від елемента" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Всередині елемента" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Позиція мітки" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Ідентифікатор поля" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Настройки обмежень" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Настройки розрахунку" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Видалити" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Заповнити це поле за допомогою таксономії" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Ні" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Заповнювач" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Обов'язкове поле" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Зберегти настройки поля" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Сортування за числовими значеннями" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Якщо цей прапорець установлено, цей стовпець у таблиці надсилань буде " "відсортовано за номерами." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Мітка адміністратора" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Ця мітка використовується для перегляду, редагування або експорту надсилань." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Платіж" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Доставка" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Користувацький" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Група полів інформації про користувача" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Група нестандартних полів" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Подаючи заявку на підтримку, вказуйте таку інформацію:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Отримати системний звіт" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Середовище" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Адреса домашньої сторінки" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Адреса сайту" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Версія Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Версія WordPress" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite активовано" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Так" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Ні" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Інформація про веб-сервер" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Версія PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Версія MySQL" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "Мова PHP" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Ліміт пам`яті WP" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP режим налагодження" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Мова WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "За замовчуванням" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Максимальний розмір завантаження WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Максимальний рівень вкладення вхідних даних" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN встановлено" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Часовий пояс за промовчанням" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "За замовчуванням часова зона %s — повинна бути UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Часовий пояс за промовчанням: %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "На вашому сервері ввімкнено fsockopen і cURL." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "На вашому сервері ввімкнено fsockopen і вимкнено cURL." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "На вашому сервері ввімкнено cURL і вимкнено fsockopen." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "На Вашому сервері не включено fsockopen або cURL - PayPal IPN та інші " "сценарії, яким потрібно зв'язуватись з іншими серверами, які не " "працюватимуть. Зв'яжіться з хостинг-провайдером." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Клієнт SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "На вашому сервері ввімкнено клас клієнта SOAP." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "На вашому сервері не ввімкнено клас %sклієнта SOAP%s – деякі плагіни шлюзу, " "що використовують протокол SOAP, можуть не працювати як належить." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() виконано – PayPal IPN працює." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() не виконано. PayPal IPN не працюватиме з вашим сервером. " "Зверніться до вашого провайдера хостингу. Помилка:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() не виконано. PayPal IPN може не працювати з вашим сервером." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Плагіни" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Інстальовані плагіни" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Відвідати сторінку плагіну" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "від" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "версія" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Присвойте вашій формі назву. За цією назвою ви зможете знайти її згодом." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Ви не додали кнопку надсилання форми." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Маска введення" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Будь-який символ, зазначений у полі маски введення (окрім наведених у списку " "нижче), буде автоматично відображатися для користувача, коли він вводить " "текст, без можливості видалення" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Це наперед визначені символи маски" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a – представляє літеру латинського алфавіту (A–Z, a–z) – дозволяється вводити " "лише літери" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 – представляє числовий символ (0–9) – дозволяється вводити лише цифри" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* – представляє алфавітно-цифровий символ (A–Z, a–z, 0–9) – дозволяється " "вводити як цифри, так і літери" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Наприклад, якщо ви бажаєте створити маску для номера американського " "соціального страхування, вам потрібно ввести в поле значення 999-99-9999" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "9 представлятиме будь-яку цифру" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Як наслідок, користувач не зможе вводити будь-які інші символи, крім цифр" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Символи також можна комбінувати для конкретних ситуацій" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Наприклад, якщо ви маєте ключ продукту A4B51.989.B.43C, то ви можете " "замаскувати його як a9a99.999.a.99a, тобто всі «а» повинні бути літерами, а " "всі «9» повинні бути цифрами" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Визначені поля" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Обрані поля" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Поля платежу" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Поля шаблону" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Інформація про користувача" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Всі" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Масові дії" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Застосувати" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Кількість форм на сторінці" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Перейти" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Перейти до першої сторінки" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Перейти до попередньої сторінки" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Поточна сторінка" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Перейти до наступної сторінки" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Перейти до останньої сторінки" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Назва форми" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Видалити форму" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Дублювати форму" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Форми видалено" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Форму видалено" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Попередній перегляд форми" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Відображення" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Показати назву форми" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Додати форму на цю сторінку" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Надіслати за допомогою AJAX (без перезавантаження сторінки)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Очистити успішно заповнену форму?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Якщо цей прапорець установлено, плагін Ninja Forms очистить значення форми " "після її успішного надсилання." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Приховати успішно заповнену форму?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Якщо цей прапорець установлено, плагін Ninja Forms приховає форму після її " "успішного надсилання." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Обмеження" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Чи повинен користувач авторизуватися для перегляду форми?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Повідомлення про необхідність авторизації" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Відображається для тих користувачів, які не виконали авторизацію, якщо " "розташований вище прапорець «авторизація» встановлено." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Обмеження надсилань" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Виберіть кількість надсилань даних, які сприйматиме ця форма. Якщо обмеження " "не потрібне, залиште це поле пустим." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Повідомлення про досягнення межі" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Введіть повідомлення, яке відображається, коли форма досягає граничної " "кількості надсилань і більше не прийматиме нових надсилань." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Настройки форми збережено" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Основні налаштування" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Тут подано основну довідкову інформацію Ninja Forms." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Розширте можливості Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Документація надійде незабаром." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Діючий" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Установлено" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Дізнатись більше" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Резервне копіювання/відновлення" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Резервне копіювання Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Відновлення Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Дані успішно відновлено!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Імпорт обраних полів" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Виберіть файл" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Імпорт обраного" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Обрані поля не знайдено" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Експорт обраних полів" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Експорт полів" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Виберіть обрані поля для експорту." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Обране успішно імпортовано." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Виберіть правильний файл обраних полів." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Імпорт форми" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Імпортувати форму" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Експорт форми" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Експортувати форму" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Виберіть форму." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Форму успішно імпортовано." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Виберіть правильний файл експортованої форми." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Імпорт/експорт надсилань" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Настройки дати" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Загальні" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Загальні налаштування" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Версія" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Формат дати" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Діють специфікації для %sфункції PHP date()%s, проте підтримуються не всі формати." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Символ валюти" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Настройки reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Ключ сайту reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Отримайте ключ сайту для свого домену, зареєструвавшись %sтут%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Секретний ключ reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Мова reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Мова, що використовується для reCAPTCHA. Щоб отримати код для вашої мови, " "натисніть %sтут%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Якщо цей прапорець установлено, УСІ дані Ninja Forms буде видалено з вашої " "бази даних у процесі видалення плагіну. %sВідновити дані форм і надсилань " "буде неможливо.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Вимкнути сповіщення адміністратора" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Сповіщення адміністратора від Ninja Forms не відображатимуться на панелі " "керування. Зніміть цей прапорець, щоб побачити їх знову." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Ця настройка дає змогу ПОВНІСТЮ видалити все, що стосується плагіну Ninja " "Forms, включно з НАДСИЛАННЯМИ та ФОРМАМИ. Цю дію неможливо скасувати." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Продовжити" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Налаштування збережені" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Мітки" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Мітки повідомлень" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Мітка обов’язкового поля" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Символ обов’язкового поля" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Повідомлення про помилку, яке відображається, якщо не всі обов’язкові поля заповнено" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Помилка обов’язкового поля" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Повідомлення про помилку системи захисту від спаму" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Повідомлення про помилку системи Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Повідомлення про помилку таймера" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Повідомлення про помилку вимкнення JavaScript" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Введіть правильну адресу електронної пошти" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Метка обробки надсилання" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Це повідомлення з’являється всередині кнопки надсилання, коли користувач " "натискає кнопку «Надіслати». Воно сповіщає користувача, що надіслані ним дані обробляються." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Метка невідповідності паролів" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Це повідомлення з’являється, якщо користувач вводить різний текст у поля для " "пароля та його підтвердження." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Ліцензії" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Зберегти й активувати" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Деактивувати всі ліцензії" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Щоб активувати ліцензії для розширень Ninja Forms, ви маєте спочатку " "%sінсталювати й активувати%s вибране розширення. Після цього настройки " "ліцензій буде показано нижче." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Скинути перетворення форм" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Скинути перетворення форми" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Якщо після оновлення до версії 2.9 ваші форми «зникли», натисніть цю кнопку, " "щоб запустити процес перетворення старих форм для відображення у версії 2.9. " "Усі поточні форми залишаться в таблиці «Усі форми»." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Усі поточні форми залишаться в таблиці «Усі форми». Інколи протягом цього " "процесу деякі форми можуть дублюватися." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Електронна пошта адміністратора" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Адреса ел. пошти користувача" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms має оновити ваші сповіщення форм, натисніть %sтут%s, щоб почати оновлення." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms має оновити ваші настройки електронної пошти, натисніть %sтут%s, " "щоб почати оновлення." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms має оновити таблицю надсилань, натисніть %sтут%s, щоб почати оновлення." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Дякуємо за оновлення плагіну Ninja Forms до версії 2.7. Оновіть розширення " "Ninja Forms від " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Ваша версія розширення Ninja Forms File Upload несумісна з Ninja Forms версії " "2.7. Розширення мусить мати версію не нижче 1.3.5. Оновіть це розширення тут: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Ваша версія розширення Ninja Forms Save Progress несумісна з Ninja Forms " "версії 2.7. Розширення мусить мати версію не нижче 1.1.3. Оновіть це " "розширення тут: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Оновлення бази даних форм" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms має оновити ваші настройки форм, натисніть %sтут%s, щоб почати оновлення." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Відбувається оновлення Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sЗверніться до служби підтримки%s та повідомте про зазначену вище помилку." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Усі доступні оновлення Ninja Forms виконано!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Перейти до форм" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Оновлення Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Перейти" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Оновлення завершено" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms має виконати оновлення: %s. Це може забрати кілька хвилин. " "%sПочати оновлення %s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Виконується крок %d з приблизно %d" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Стан системи Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Індикатор надійності" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Дуже слабкий" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Ненадійний" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Cередній" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Солідний" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Невідповідність" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Виберіть один варіант" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Якщо ви людина й бачите це поле, будь ласка, залиште його пустим." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Поля, позначені зірочкою *, обов'язкові до заповнення" #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Це обов'язкове для заповнення поле." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Перевірте обов’язкові поля." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Розрахунок" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Кількість десяткових розрядів." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Текстове поле" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Виводити розрахунок як" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Напис" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Вимкнути ввід?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Використайте цей короткий код для вставлення остаточного розрахунку: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Ви можете ввести тут рівняння для розрахунку, використовуючи field_x, де х — " "ідентифікатор потрібного поля. Наприклад, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Складні рівняння можна створювати, додаючи дужки: %s(field_45 * field_2) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Використовуйте такі оператори: + - * /. Це додаткова функція. Ділення на 0 не дозволяється." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Автоматичне отримання підсумкових значень розрахунку" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Укажіть операції та поля (додатково)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Використайте рівняння (додатково)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Метод розрахунку" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Операції з полями" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Додати операцію" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Розширене рівняння" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Назва розрахунку" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "Це програмне ім’я поля. Наприклад: my_calc, price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Значення за промовчанням" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Користувацький клас CSS" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Виберіть поле" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Чекбокс" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Не вибрано" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Вибрано" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Показати" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Приховати" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Змінити значення" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Афганістан" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Албанія" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Алжир" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Американське Самоа" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Андорра" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Ангола" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Ангілья" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Антарктида" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Антигуа й Барбуда" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Аргентина" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Вірменія" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Аруба" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Австралія" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Австрія" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Азербайджан" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Багамські острови" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Бахрейн" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Бангладеш" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Барбадос" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Білорусь" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Бельгія" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Беліз" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Бенин" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Бермудські Острови" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Бутан" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Болівія" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Боснія й Герцеговина" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Ботсвана" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Острів Буве́" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Бразилія" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Британська територія в Індійському океані" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Бруней" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Болгарія" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Буркіна-Фасо" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Бурунді" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Камбоджа" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Камерун" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Канада" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Кабо-Верде" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Кайманові острови" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Центральноафриканська Республіка" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Чад" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Чилі" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Китай" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Острів Різдва" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Кокосові (Кілінг) острови" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Колумбія" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Коморські острови" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Конго" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Конго (Демократична Республіка Конго)" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Острови Кука" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Коста-Ріка" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Кот-д'Івуар" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Хорватія ( Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Куба" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Кіпр" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Чеська Республіка" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Данія" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Джибуті" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Домініка" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Домініканська Республіка" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Тимор-Лешті (Східний Тимор)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Еквадор" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Єгипет" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "Сальвадор" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Екваторіальна Гвінея" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Еритрея" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Естонія" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Ефіопія" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Фолклендські (Мальвінські) острови" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Фарерські острови" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Фіджі" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Фінляндія" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Франція" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Франція (метрополія)" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Французька Гвіана" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Французька Полінезія" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Французькі Південні Території" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Габон" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Гамбія" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Джорджія" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Німеччина" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Гана" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Гібралтар" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Греція" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Ґренландія" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Гренада" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Гваделупа" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Гуам" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Гватемала" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Гвінея" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Гвінея-Бісау" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Гаяна" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Гаїті" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Херд і Макдональд, острови" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Ватикан" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Гондурас" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Гонконг" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Угорщина" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Ісландія" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Індія" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Індонезія" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Іран (Ісламська Республіка)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Ірак" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Ірландія" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Ізраїль" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Італія" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Ямайка" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Японія" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Йорданія" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Казахстан" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Кенія" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Кірібаті" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Корея, Народно-Демократична Республіка" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Корея, Республіка" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Кувейт" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Киргизія" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Лаоська Народно-Демократична Республіка" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Латвія" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Ліван" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Лесото" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Ліберія" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Лівійська Арабська Джамахірія" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Ліхтенштейн" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Литва" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Люксембург" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Макао" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Македонія (колишня республіка Югославії)" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Мадагаскар" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Малаві" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Малайзія" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Мальдіви" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Малі" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Мальта" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Маршаллові острови" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Мартиніка" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Мавританія" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Маврикій" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Майотта" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Мексика" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Мікронезія, Федеративні Штати" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Молдова, Республіка" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Монако" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Монголія" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Чорногорія" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Монтсеррат" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Марокко" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Мозамбік" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "М'янма" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Намібія" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Науру" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Непал" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Нідерланди" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Нідерландські Антілли" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Нова Каледонія" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Нова Зеландія" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Нікарагуа" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Нігер" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Нігерія" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Ніуе" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "острів Норфолк" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Північні Маріанські острови" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Норвегія" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Оман" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Пакистан" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Палау" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Панама" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Папуа-Нова Гвінея" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Парагвай" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Перу" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Філіппіни" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Піткерн" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Польща" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Португалія" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Пуерто-Рико" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Катар" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Реюньйон" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Румунія" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Російська Федерація" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Руанда" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Сент-Кітс і Невіс" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Сент-Люсія" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Сент-Вінсент і Гренадіни" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Самоа" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "Сан-Маріно" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Сан-Томе й Прінсіпі" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Саудівська Аравія" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Сенегал" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Сербія" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Сейшельські острови" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Сьєрра-Леоне" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Сінгапур" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Словаччина (Словацька Республіка)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Словенія" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Соломонові острови" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Сомалі" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Південна Африка" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Південна Георгія та Південні Сандвічеві острови" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Іспанія" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Шрі Ланка" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Острів Святої Єлени" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Сен-П’єр і Мікелон" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Судан" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Сурінам" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Шпіцберген і Ян-Майєн" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Свазіленд" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Швеція" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Швейцарія" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Сирійська Арабська Республіка" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Тайвань" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Таджикистан" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Танзанія, Об’єднана Республіка" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Таїланд" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Того" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Токелау" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Тонга" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Тринідад і Тобаго" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Туніс" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Туреччина" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Туркменістан" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Теркс і Кайкос, острови" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Тувалу" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Уганда" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Україна" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Об'єднані Арабські Емірати" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Великобританія" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "США" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Зовнішні малі острови США" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Уругвай" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Узбекистан" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Вануату" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Венесуела" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "В'єтнам" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Віргінські острови (Британські)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Віргінські острови (США)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Уолліс і Футуна, острови" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Західна Сахара" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Ємен" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Югославія" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Замбія" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Зімбабве" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Країна" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Країна за промовчанням" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Застосувати перший користувацький варіант" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Перший користувацький варіант" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "південний Судан" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Кредитна карта" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Мітка номера карти" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Номер Картки" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Опис номера карти" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "Зазвичай 16 цифр на лицьовій стороні вашої кредитної карти." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Мітка коду CVC карти" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Опис коду CVC карти" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "3 цифри (на звороті) або 4 цифри (на лицьовій стороні карти)." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Мітка імені власника карти" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Ім’я на карті" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Опис імені власника карти" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Ім’я, надруковане на лицьовій стороні вашої кредитної карти." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Мітка місяця закінчення строку дії карти" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Місяць закінчення строку дії (ММ)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Опис місяця закінчення строку дії карти" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Місяць, в якому спливає строк дії вашої кредитної карти, зазвичай указаний на лицьовій стороні." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Мітка року закінчення строку дії карти" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Рік закінчення строку дії карти (РРРР)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Опис року закінчення строку дії карти" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Рік, в якому спливає строк дії вашої кредитної карти, зазвичай указаний на лицьовій стороні." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Текст" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Елемент тексту" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Приховане поле" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Ідентифікатор користувача (у системі)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Ім’я користувача (у системі)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Прізвище користувача (у системі)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Екранне ім’я користувача (у системі)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Адреса електронної пошти користувача (у системі)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Ідентифікатор публікації/сторінки (якщо є)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Назва публікації/сторінки (якщо є)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL-адреса публікації/сторінки (якщо є)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Сьогоднішня дата" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Змінна QueryString" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Це ключове слово зарезервоване для WordPress. Введіть інше." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Це має бути адреса електронної пошти?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Якщо цей прапорець установлено, Ninja Forms зареєструє введені дані як адресу " "електронної пошти." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Надіслати копію форми на цю адресу?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Якщо цей прапорець установлено, Ninja Forms надішле копію цієї форми (та всі " "прикладені повідомлення) на вказану адресу." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "г" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Список" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Це стан користувача" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Вибране значення" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Додати значення" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Видалити значення" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Розрахунок" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Випадаючий список" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Радіо" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Прапорці" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Вибір кількох" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Тип списку" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Розмір вікна вибору кількох" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Імпорт елементів списку" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Показувати значення елементів списку" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Імпорт" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Для використання цієї функції можна вставити CSV в розташоване вище текстове поле." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Формат має виглядати так:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "мітка, значення, розрахунок" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Якщо ви бажаєте надіслати пусте значення або розрахунок, слід використати " "символ ''." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Вибране" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Кількість" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Мінімальне значення" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Максимальне значення" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Крок (величина збільшення)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Організатор" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Пароль" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Використовувати це поле для пароля реєстрації" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Якщо цей прапорець установлено, відображатимуться поля для пароля та його підтвердження." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Мітка підтвердження пароля" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Повторно введіть пароль" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Показати індикатор надійності пароля" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Підказка. Пароль має містити щонайменше сім символів. Щоб пароль був " "надійнішим, використайте в ньому великі та малі літери, цифри та спеціальні " "символи, такі як ! \" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Паролі не збігаються" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Рейтинг у зірках" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Кількість зірок" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Підтвердіть, що ви не робот" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Заповніть поле капчі" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Переконайтеся, що ви правильно ввели ключ сайту та секретний ключ" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Неправильна капча. Введіть правильне значення в полі капчі" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Антиспам" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Спам-відповідь" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Спам-запитання" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Відправити" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Податок" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Податкові відсотки" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Тут має бути введено значення у відсотках, наприклад: 8,25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Текстова область" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Показати редактор форматованого тексту" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Показати кнопку завантаження медіа" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Вимкнути редактор форматованого тексту на мобільному пристрої" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Зареєструвати як адресу електронної пошти? (Обов’язкове для заповнення поле)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Вимкнути введення" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Вибір дати" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Телефон: (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Валюта" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Визначення користувацької маски" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Довідка" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Відкладене надсилання" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Текст кнопки «Надіслати» з’являється через визначений час" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Зачекайте %n секунд" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n використовується для зазначення кількості секунд" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Кількість секунд для зворотного виклику" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Стільки має очікувати користувач, щоб надіслати форму" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Якщо ви людина, дійте повільніше." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Для надсилання цієї форми потрібен JavaScript. Увімкніть JavaScript і " "повторіть спробу." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Зіставлення полів списку" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Групи інтересів" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Окремий" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Помножити" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Списки підписчиків" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Оновити" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Поле метаданих" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Метадані надсилання" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Метадані користувача (у системі)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Отримання оплати" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Форми не знайдено." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Дата створення" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "заголовок" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "оновлено" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Ваша спроба не вдалася." #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Батьківський елемент:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Усі елементи" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Додати новий елемент" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Новий елемент" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Редагувати елемент" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Оновити елемент" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Переглянути елемент" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Пошук елемента" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Не знайдено в кошику" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Відправлення форми" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Відомості про надсилання" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Додати нову форму" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Помилка імпорту шаблону форми." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Поля" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Неправильний формат переданого файлу." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Помилка імпорту форми." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Імпорт форм" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Експорт форм" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Рівняння (додатково)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Операції й поля (додатково)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Поля автопідсумовування" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Розмір завантажуваного файлу перевищує значення upload_max_filesize у файлі php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Розмір завантажуваного файлу перевищує значення MAX_FILE_SIZE, указане у " "формі HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Файл було завантажено лише частково." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Жоден файл не завантажений." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Відсутня тимчасова тека." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Помилка запису файла на диск." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Завантаження файлу зупинене розширенням." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Невідома помилка завантаження." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Помилка передавання файлу" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Ліцензії для додаткових компонентів" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Міграцію й заповнення демонстраційними даними завершено. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Переглянути форми" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Зберегти Налаштування" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "IP-адреса сервера" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Ім'я хосту" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Додати Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Форму не знайдено" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Поле не знайдено" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Сталася несподівана помилка." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Попередні перегляд не передбачено." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Шлюзи сплати" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Оплата: разом" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Тег прив’язки" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Адреса електронної пошти або пошук поля" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Текст теми або пошук поля" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Приєднати CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Посилання" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Мітка тут" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Довідковий текст тут" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Введіть мітку поля форми. Таким чином користувачі будуть ідентифікувати " "окремі поля." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "За промовчанням для форми" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Приховано" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Виберіть позицію мітки відносно самого елемента поля." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Обов’язкове поле" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Перш ніж дозволяти надсилання форми, переконайтеся, що це поле заповнено." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Числові опції" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Мін." #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Макс." #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "крок" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Вибір" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Один" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "один" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Два" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "два" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Три" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "три" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Розрахункове значення" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Обмежує для користувача тип даних, які можуть бути введені в це поле." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "жоден" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Телефон у США" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "спеціальний" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Користувацька маска" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a – представляє літеру латинського " "алфавіту (A–Z, a–z) – дозволяється вводити лише літери.
    • " "\n
    • 9 – представляє числовий символ (0–9) – " "дозволяється вводити лише цифри.
    • \n
    • * – " "представляє алфавітно-цифровий символ (A–Z, a–z, 0–9) – дозволяється вводити " "як цифри, так і літери.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Обмежити введення до цієї кількості" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Символів" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Слів" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Текст, що відображається після лічильника" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "символів залишилось" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Введіть текст, який має відображатися в полі перед тим, як користувач почне " "вводити дані." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Користувацькі імена класів" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Контейнер" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Додає допоміжний клас до оболонки поля." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Елемент" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Додає допоміжний клас до елемента поля." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "РРРР-ММ-ДД" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "П’ятниця, 18 листопада 2019 р." #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "За промовчанням для поточної дати" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Кількість секунд для надсилання за таймером." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Ключ поля" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Створює унікальний ключ з метою ідентифікації та призначення вашого поля для " "нестандартної розробки." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Мітка використовується під час перегляду та експорту надсилань." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Відображається, коли користувач наводить курсор." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Опис" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Сортування за числовими значеннями" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Цей стовпець у таблиці надсилань буде відсортовано за номерами." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Кількість секунд для зворотного виклику" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Використовувати це поле для пароля реєстрації. Якщо цей прапорець " "установлено, відображатимуться поля для пароля та його підтвердження." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Підтвердити" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Дає змогу вводити форматований текст." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Обробка мітки" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Вибране значення розрахунку" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Це число буде використовуватися в розрахунках, якщо прапорець установлено." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Не вибране значення розрахунку" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Це число буде використовуватися в розрахунках, якщо прапорець не встановлено." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Показати цю змінну розрахунку" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Виберіть змінну" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Вартість" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Використовувати кількість" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Дозволяє користувачам вибрати кілька штук цього товару." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Тип товару" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Один товар (за промовчанням)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Кілька товарів – розкривний список" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Кілька товарів – вибрати кілька" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Кілька товарів – вибрати один" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Введення користувача" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Ціна" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Параметри витрат" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Одиничні витрати" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Розкривний список витрат" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Тип витрат" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Товар" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Виберіть товар" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Відповідь" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Відповідь з урахуванням реєстру, щоб запобігти розсилання спаму з вашою формою." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Таксономія" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Додати нові терміни" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Це стан користувача." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Використовується для маркування поля для обробки." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Збережені поля" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Спільні поля" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Поля інформація про користувача" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Поля ціни" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Поля макета" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Інші поля" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Вашу форму успішно надіслано." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Надсилання Ninja Forms" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Зберегти надсилання" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Ім’я змінної" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Рівняння" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Позиція мітки за промовчанням" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Оболонка" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Ключ форми" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Програмне ім’я, яке може використовуватися для посилання на цю форму." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Додати кнопки «Надіслати»" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Ми помітили, що у вашій формі немає кнопки «Надіслати». Ми можемо додати її автоматично." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Реєструється" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Застосовується до попереднього перегляду форми." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Ліміт відправлень" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "НЕ застосовується до попереднього перегляду форми." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Налаштування показу" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Обчислення" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Ціна:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Кількість:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Додати" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Відкрити в новому вікні" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Якщо ви людина, не вводьте дані в це поле." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Доступно" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Введіть дійсну адресу електронної пошти!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Вміст цих полів має збігатися!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Мін. номер помилки" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Макс. номер помилки" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Збільшуйте з кроком " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Вставити посилання" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Вставити медіафайл" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Виправте помилки перед тим, як надсилати цю форму." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Помилка Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Триває передавання файлу." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "ПЕРЕДАВАННЯ ФАЙЛУ" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Усі поля" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Вкладена послідовність" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "ID публікації" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Заголовок запису" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL публікації" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP-адреса" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID користувача" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Ім'я" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Прізвище" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Показати Назву" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Мотивовані стилі" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Світлий" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Темна" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Використовуйте правила стилів Ninja Forms за промовчанням." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Повернення" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Повернення версії 2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Повернення останнього випуску 2.9.x." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Настройки reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Тема reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Редактор форматованого тексту (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Розширене" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Адміністрування" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Пусті форми" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Зв’яжіться зі мною." #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Демонстрація повідомлення про успішну дію" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "{field:name}, дякую за заповнення моєї форми!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Демонстрація дії електронної пошти" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Це дія електронної пошти." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Доброго дня, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Демонстрація дії збереження" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Це тест" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Це ще один тест." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Отримати довідку" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Як ми можемо допомогти?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Погодилися?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Найкращий спосіб контакту?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "телефон" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Звичайна пошта" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Надіслати" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Раковина" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Виберіть у списку" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Варіант один" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Варіант два" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Варіант три" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Список перемикачів" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Умивальник для ванної" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Список прапорців" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Це всі поля з розділу відомостей про користувача." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Адреса" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Місто" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Поштовий індекс США (zip-код)" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Це всі поля з розділу цін." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Товар (разом із кількістю)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Товар (кількість окремо)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Кількість" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Усього" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Ім’я та прізвище на кредитній карті" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Номер кредитної картки" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "CVV-код на кредитній картці" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Строк дії кредитної карти" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Zip-код на кредитній картці" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Це різноманітні спеціальні поля." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Антиспамове запитання (Відповідь = відповідь)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "відповідь" #: includes/Database/MockData.php:805 msgid "processing" msgstr "триває обробка" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Довга форма: " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Поля" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Поле №" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Форма підписки на розсилку" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Електронна скринька" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Уведіть свою адресу електронної пошти" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Підписатися" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Форма товару (з полем кількості)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Придбати" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Ви придбали " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "товарів для " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Форма товару (кількість у рядку)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " товарів для " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Форма товару (кілька товарів)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Товар А" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Кількість товару А" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Товар Б" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Кількість товару Б" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "товару А та " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "товару Б за $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Форма з обчисленнями" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Моє перше обчислення" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Моє друге обчислення" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Результати обчислень повертаються з відповіддю AJAX (відповідь -> дані -> обчислення" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Копіювати" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Зберегти форму" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Zip-код кредитної карти" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Для попереднього перегляду форми потрібно ввійти до системи." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Поля не знайдено." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Пам’ятайте: короткий код Ninja Forms використовується без зазначення форми." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Короткий код Ninja Forms використовується без зазначення форми." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Адреса 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Кнопка" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Один прапорець" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "вибрано" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "не вибрано" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Код CVC кредитної карти" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Р/м/д" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Роздільник" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Виберіть" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Штат" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Текст примітки можна редагувати в розділі додаткових параметрів поля примітки (див. нижче)." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Примітка" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Підтвердження пароля" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "пароль" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "ReCaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Заповніть поле ReCaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Додаткові способи доставлення" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Питання" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Позиція запитання" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Неправильна відповідь" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Кількість зірок" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Список умов" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Немає доступних умов для цієї таксономії. %sДодати умову%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Таксономію не вибрано." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Доступні умови" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Текст абзацу" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Текст одного рядка" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Індекс" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Записи" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Рядки запиту" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Рядок запиту" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Система" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Користувач" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " потребує оновлення. У вас встановлено версію " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " . Поточна версія " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Редагування поля" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Назва" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Зверху від поля" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Знизу від поля" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Зліва від поля" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Справа від поля" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Приховати назву" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Назва класу" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Базові поля" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Вибір кількох значень" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Додати нове поле" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Додати нову дію" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Розгорнути меню" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Опублікувати" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "ОПУБЛІКУВАТИ" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Завантажується" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Переглянути зміни" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Додати поля форми" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Розпочніть із додавання свого першого поля в форму." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Додати нове поле" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Просто клацніть тут і виберіть потрібні поля." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Це справді дуже просто. Або..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Розпочніть із шаблону" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Зв’язатися з нами" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Надайте користувачам можливість звернутися до вас через цю просту контактну " "форму. За потреби можна додавати й видаляти поля." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Запит цінової пропозиції" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Керуйте запитами цінових пропозицій на своєму сайті за допомогою цього " "шаблону. За потреби можна додавати й видаляти поля." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Реєстрація на захід" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Надайте користувачам просту можливість зареєструватися на ваш наступний " "захід, заповнивши форму. За потреби можна додавати й видаляти поля." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Форма підписки на розсилку новин" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Додайте абонентів і розширте свій список розсилки за допомогою цієї форми " "підписки на розсилку новин. За потреби можна додавати й видаляти поля." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Додайте дії у форму" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Розпочніть із додавання свого першого поля в форму. Клацніть знак «плюс» і " "виберіть потрібні дії. Це справді дуже просто." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Дублювати (^ + C + клацання)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Видалити (^ + D + клацання)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Дії" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Перемкнути розкривне меню" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "На весь екран" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "На півекрана" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Скасувати" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Готово" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Скасувати все" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Скасувати все" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Майже готово..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Ще ні" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Відкрити в новому вікні" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Деактивувати" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Виправити це." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Виберіть форму" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Поточна дата" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Перед тим, як звернутися до нашої служби підтримки, перегляньте:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Документація для Ninja Forms версії 3" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Які дії спробувати перед тим, як звертатися по підтримку" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Наш обсяг підтримки" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Імпорт полів" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Оновлено: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Надіслано: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Ким надіслано: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Надіслані дані" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Перегляд" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Показати більше" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Редагування поля" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Поля форми" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Переглянути зміни" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Форма звернення" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Проблема! Цей додатковий компонент ще не сумісний з Ninja Forms 3. %sДокладніше%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s деактивовано." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Допоможіть нам поліпшити Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Якщо ви візьмете участь, деякі дані про вашу інсталяцію Ninja Forms " "надсилатимуться на сайт NinjaForms.com (до цього НЕ входять ваші надіслані дані)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Якщо ви цього не бажаєте, не проблема! Ninja Forms продовжить працювати як треба." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sДозволити%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sНе дозволяти%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Ви не маєте дозволу." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Відмовлено в дозволі" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Розробник Ninja Forms" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "НАЛАГОДЖЕННЯ: Перейти до 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "НАЛАГОДЖЕННЯ: Перейти до 3.0.x" lang/ninja-forms-vi.po000064400000654320152331132460010676 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Lưu ý: Cần phải có JavaScript với nội dung này." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Gian lận’ hả?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Các trường được đánh dấu %s*%s là bắt buộc" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Hãy nhớ điền tất cả các trường bắt buộc." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Đây là một trường bắt buộc" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Hãy trả lời chính xác câu hỏi về phòng chống thư rác." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Hãy để trống trường thư rác." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Vui lòng chờ để gửi mẫu." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Bạn không thể gửi mẫu mà không bật Javascript." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Vui lòng nhập địa chỉ email hợp lệ." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Đang xử lý" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Mật khẩu cung cấp không trùng khớp." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Thêm mẫu" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Chọn mẫu hoặc kiểu để tìm kiếm" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Hủy" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Chèn" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "ID mẫu không hợp lệ" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Tăng tỷ lệ chuyển đổi" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Bạn có biết rằng bạn có thể tăng tốc độ chuyển đổi mẫu bằng cách chia các mẫu " "lớn thành các phần nhỏ hơn và dễ xử lý hơn không?

    Tiện ích mở rộng Mẫu Đa " "phần cho Ninja Forms làm cho quá trình này nhanh chóng và dễ dàng hơn.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Tìm hiểu thêm về Mẫu Đa phần" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Có thể để sau" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Xóa bỏ" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Người dùng có nhiều khả năng hơn để hoàn tất các mẫu dài nếu họ có thể lưu và " "quay trở lại để hoàn tất việc gửi sau đó.

    Tiện ích mở rộng Lưu Tiến trình " "dành cho Ninja Forms giúp cho việc này nhanh chóng và dễ dàng hơn.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Tìm hiểu thêm về Lưu Tiến trình" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Email" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Tên người gửi" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Tên hoặc trường" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Email sẽ xuất hiện từ tên này." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Địa chỉ người gửi" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Một trường hoặc địa chỉ email" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Email sẽ xuất hiện từ địa chỉ email này." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Đến" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Địa chỉ email hoặc tìm kiếm một trường" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Email này cần được gửi đến ai?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Tiêu đề" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Nội dung Tiêu đề hoặc tìm kiếm một trường" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Đây sẽ là tiêu đề của email." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Nội dung Email" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Tập tin đính kèm" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV lượt gửi" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Cài đặt nâng cao" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Định dạng" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Văn bản thường" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Trả lời" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Chuyển hướng" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Thông báo gửi thành công" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Trước mẫu" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Sau mẫu" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Vị trí" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Tin nhắn" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "trùng lặp" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Hủy kích hoạt" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Kích hoạt captcha" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Sửa" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Xóa" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Sao chép" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Tên" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Gõ" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Ngày cập nhật" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Xem tất cả loại" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Nhận thêm loại" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email & Thao tác" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Thêm mới" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Thao tác mới" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Sửa thao tác" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Quay lại Danh sách" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Tên thao tác" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Nhận thêm thao tác" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Đã cập nhật thao tác" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Chọn một trường hoặc loại để tìm kiếm" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Chèn trường" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Chèn tất cả các trường" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Vui lòng chọn một mẫu để xem số lượt gửi" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Không tìm thấy số lượt gửi" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Lượt gửi" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Lượt gửi" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Thêm lượt gửi mới" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Sửa lượt gửi" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Lượt gửi mới" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Xem lượt gửi" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Tìm kiếm lượt gửi" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Không tìm thấy lượt gửi nào trong Thùng rác" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Ngày" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Sửa mục này" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Xuất mục này" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Xuất" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Chuyển mục này vào thùng rác" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Thùng rác" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Khôi phục mục này từ thùng rác" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Khôi phục" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Xoá mục này vĩnh viễn" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Xóa Vĩnh Viễn" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Chưa được đăng" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s trước đây" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Đã gửi" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Chọn một mẫu" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Ngày Bắt đầu" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Ngày kết thúc" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s đã cập nhật." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Trường tùy chỉnh đã cập nhật." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Trường tùy chỉnh đã xóa." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s đã được khôi phục để sửa đổi từ %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s đã được xuất bản." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s đã lưu." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s đã gửi. Xem trước %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s được lên lịch cho: %2$s. Xem trước %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "Đã cập nhật %1$s bản nháp. Xem trước %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Tải về tất cả lượt gửi" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Quay lại danh sách" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Giá trị được Gửi bởi Người dùng" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Thống kê Hồ sơ" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Trường" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Giá trị" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Trạng thái" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Mẫu" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Đã gửi ngày" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Đã sửa ngày" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Gửi Bởi" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Cập nhật" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Ngày Gửi" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms không thể kích hoạt bằng mạng. Vui lòng truy cập bảng điều khiển " "của mỗi trang để kích hoạt trình cắm." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Bạn sẽ tìm thấy trong email mua hàng của mình." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Tên" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Không thể kích hoạt giấy phép. Vui lòng xác minh khóa giấy phép của bạn" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Hủy kích hoạt giấy phép" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Giá trị được Gửi bởi Người dùng:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Cảm ơn bạn đã điền vào mẫu này." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Hiện đã có phiên bản mới của %1$s . Xem chi tiết phiên bản %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Hiện đã có phiên bản mới của %1$s . Xem chi tiết phiên bản %3$s hoặc cập nhật ngay." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Bạn không được phép cài đặt các bản cập nhật trình cắm." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Lỗi" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Các trường thông thường" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Các thành phần bố cục" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Tạo Bài đăng" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Vui lòng xếp hạng đánh giá %sNinja Forms%s %s trên %sWordPress.org%s để giúp " "chúng tôi duy trì trình cắm này miễn phí. Lời cảm ơn từ nhóm WP Ninjas!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Widget Ninja Forms" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Hiển thị Tiêu đề" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Không mục nào" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Các mẫu" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Tất cả Mẫu" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Nâng cấp Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Nâng cấp" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Xuất/Nhập" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Xuất / Nhập" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Cài đặt Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Thiết lập" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Trạng thái hệ thống" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Tiện ích bổ sung" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Xem trước" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Lưu" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "ký tự còn lại" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Không hiển thị các thuật ngữ này" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Lưu Tùy chọn" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Mẫu Xem trước" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Nâng cấp lên Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Bạn đủ điều kiện để nâng cấp lên Ninja Forms THREE Release Candidate! %sNâng " "cấp Ngay%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "Sắp có phiên bản THREE!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Ninja Forms sắp diễn ra một đợt nâng cấp quy mô lớn. %sTìm hiểu thêm về các " "tính năng mới, khả năng tương thích ngược, và nhiều Câu hỏi thường gặp khác.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Mọi việc thế nào rồi?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Cảm ơn bạn đã sử dụng Ninja Forms! Chúng tôi hi vọng bạn đã tìm được mọi thứ " "mà bạn cần, nhưng nếu bạn có bất kỳ thắc mắc nào\"" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Tham khảo tài liệu của chúng tôi." #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Nhận trợ giúp" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Sửa mục menu" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Chọn tất cả" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Gắn thêm Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Bạn muốn đặt tên mục yêu thích này là gì?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Bạn phải đặt tên cho mục yêu thích này." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Bạn thực sự muốn hủy kích hoạt tất cả các giấy phép?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Đặt lại quy trình chuyển đổi mẫu cho v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Xóa tất cả dữ liệu Ninja Forms khi gỡ cài đặt?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Sửa mẫu" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Đã lưu" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Đang lưu..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Xóa trường này? Nó sẽ bị xóa thậm chí cả khi bạn không lưu." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Xem số lượt gửi" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Đang xử lý Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Đang xử lý " #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Đang tải..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Không thao tác nào được chỉ định..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "Quy trình đã bắt đầu, xin bạn hãy kiên nhẫn. Quy trình này có thể mất một vài " "phút. Bạn sẽ được tự động chuyển hướng khi quy trình kết thúc." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Chào mừng bạn đến với Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Cám ơn bạn đã cập nhật! Ninja Forms %s giúp việc tạo mẫu dễ dàng hơn bao giờ hết!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Chào mừng bạn đến với Ninja Forms " #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Nhật ký cập nhật trong Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Bắt đầu sử dụng Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Những người đã xây dựng lên Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Các điểm mới" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Bắt đầu" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Tín dụng" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Phiên bản %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Một trải nghiệm tạo mẫu đơn giản và giàu tính năng hơn." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Thẻ Người tạo mới" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "Khi tạo và sửa mẫu, hãy vào trực tiếp phần quan trọng nhất." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Phần cài đặt trường được tổ chức tốt hơn" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Phần cài đặt cơ bản nhất sẽ được hiển thị ngay, trong khi các phần cài đặt " "phụ khác sẽ được xếp riêng vào các mục có thể mở rộng." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Độ rõ ràng được cải thiện" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Cùng với thẻ \"Tạo mẫu của bạn\", chúng tôi đã xóa \"Thông báo\" để hỗ trợ " "cho \"Email & Thao tác.\" Đây là cách chỉ báo rõ ràng hơn về những gì có thể " "thực hiện được trên thẻ này." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Xóa tất cả dữ liệu Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Chúng tôi đã bổ sung tùy chọn xóa tất cả dữ liệu Ninja Forms (lượt gửi, mẫu, " "trường, tùy chọn) khi bạn xóa trình cắm. Chúng tôi gọi nó là tùy chọn hạt nhân." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Quản lý giấy phép tốt hơn" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Hủy kích hoạt các giấy phép tiện ích mở rộng của Ninja Forms riêng lẻ hay " "theo nhóm từ thẻ cài đặt." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Và còn nhiều tính năng khác nữa" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Những cập nhật giao diện trong phiên bản này sẽ đặt cơ sở cho một số cải tiến " "tuyệt vời trong tương lai. Phiên bản 3.0 sẽ xây dựng dựa trên những thay đổi " "này để làm cho Ninja Forms trở thành một trình dựng mẫu thậm chí còn ổn định, " "mạnh mẽ và thân thiện với người dùng hơn." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Tài liệu" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Hãy tham khảo tài liệu chi tiết về Ninja Forms của chúng tôi ở bên dưới." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Tài liệu Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Nhận trợ giúp" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Quay lại Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Xem toàn bộ nhật ký cập nhật" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Toàn bộ nhật ký cập nhật" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Chuyển đến Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Sử dụng các mẹo dưới đây để bắt đầu sử dụng Ninja Forms. Bạn sẽ được khởi " "động và vận hành ngay tức khắc!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Toàn bộ thông tin về Mẫu" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Menu Mẫu là điểm truy cập của bạn đến tất cả mọi nội dung trong Ninja Forms. " "Chúng tôi đã tạo sẵn %smẫu liên hệ%s đầu tiên cho bạn để bạn có thể tham khảo " "bản mẫu. Bạn cũng có thể tạo mẫu riêng cho mình bằng cách nhấp vào %sThêm mới%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Tạo mẫu của bạn" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Đây là nơi bạn sẽ tạo mẫu bằng cách thêm các trường và kéo chúng theo trật tự " "mà bạn muốn chúng xuất hiện. Mỗi trường sẽ được phân loại các tùy chọn như " "nhãn, vị trí nhãn và trình giữ chỗ." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Emails & Thao tác" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Nếu bạn muốn mẫu thông báo cho bạn qua email khi có người dùng nhấp gửi, bạn " "có thể cài đặt tùy chọn trên thẻ này Bạn có thể tạo vô số các email, kể cả " "các email được gửi tới người dùng đã điền vào mẫu đó." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Thẻ này bao gồm phần cài đặt mẫu chung, chẳng hạn như tiêu đề và phương thức " "gửi, cũng như cài đặt hiển thị như ẩn mẫu khi nó được gửi thành công." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Đang hiển thị mẫu của bạn" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Gắn thêm vào trang" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Bên dưới Hành vi mẫu cơ bản trong Phần cài đặt mẫu, bạn có thể dễ dàng chọn " "một trang mà bạn muốn tự động gắn thêm mẫu vào cuối nội dung trang đó. Một " "tùy chọn tương tự hiện cũng có sẵn trong mọi màn hình sửa nội dung tại vị trí " "thanh bên." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Mã ngắn:" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Đặt %s vào bất kỳ khu vực nào chấp nhận mã ngắn để hiển thị mẫu tại bất kỳ vị " "trí nào mà bạn muốn. Thậm chí ở giữa nội dung trang hoặc bài đăng." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms cung cấp một widget mà bạn có thể đặt vào khu vực bất kỳ trên " "trang của bạn và chọn chính xác mẫu nào bạn muốn hiển thị trong vùng đó." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Chức năng mẫu" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms cũng được trang bị chức năng tạo mẫu đơn giản có thể đặt trực " "tiếp vào tập tin mẫu php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Cần hỗ trợ?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Phát triển Tài liệu" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Tài liệu sẵn có bao gồm mọi thứ từ %sKhắc phục sự cố%s đến %sAPI Nhà phát " "triển%s của chúng tôi. Tài liệu mới luôn được bổ sung." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Hỗ trợ Tốt nhất trong Doanh nghiệp" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Chúng tôi làm tất cả có thể để cung cấp cho mỗi người dùng Ninja Forms sự hỗ " "trợ tốt nhất có thể. Nếu bạn gặp phải một vấn đề hoặc có bất kỳ thắc mắc nào, " "%svui lòng liên hệ với chúng tôi%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Cảm ơn bạn đã cập nhật lên phiên bản mới nhất! Ninja Forms %s được đưa vào để " "làm cho trải nghiệm quản lý hồ sơ gửi của bạn trở nên thú vị!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms được tạo bởi một nhóm các nhà phát triển trên khắp thế giới nhằm " "cung cấp trình cắm tạo mẫu số 1 cho cộng đồng WordPress." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Không tìm thấy nhật ký cập nhật hợp lệ." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Xem %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Tắt tính năng Tự động điền Trình duyệt" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "Giá trị Phép tính %sĐược đánh dấu%s " #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Đây là giá trị sẽ được sử dụng nếu %sĐược đánh dấu%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "Giá trị Phép tính %sKhông được đánh dấu%s " #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Đây là giá trị sẽ được sử dụng nếu %sKhông được đánh dấu%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Bao gồm trong tính năng tự động tính tổng? (Nếu đã bật)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Các Nhóm CSS Tùy chỉnh" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Trước Mọi thứ" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Trước Nhãn" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Sau Nhãn" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Sau Mọi thứ" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Nếu bật \"văn bản mô tả\", sẽ có một dấu hỏi %s được đặt bên cạnh trường nhập " "liệu. Di chuột trên dấu hỏi này sẽ hiển thị văn bản mô tả." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Thêm Mô tả" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Vị trí Mô tả" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Nội dung Mô tả" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Nếu bật \"văn bản trợ giúp\", sẽ có một dấu hỏi %s được đặt bên cạnh trường " "nhập liệu. Di chuột trên dấu hỏi này sẽ hiển thị văn bản trợ giúp." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Hiển thị Văn bản Trợ giúp" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Văn bản Trợ giúp" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Nếu bạn để trống ô này, sẽ không có giới hạn nào được sử dụng" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Giới hạn đầu vào cho số này" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "của" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Ký tự" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Từ" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Nội dung xuất hiện sau trình đếm ký tự/từ" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Bên trái Thành phần" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Bên trên Thành phần" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Bên dưới Thành phần" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Bên phải Thành phần" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Bên trong Thành phần" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Vị trí Nhãn" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "ID Trường" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Cài đặt Hạn chế" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Cài đặt Phép tính" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Xóa" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Điền nguyên tắc phân loại vào đây" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Không" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Nơi nhập dữ liệu" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Bắt buộc" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Lưu Cài đặt Trường" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sắp xếp theo số" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "Nếu đánh dấu ô này, cột này trong bảng lượt gửi sẽ sắp xếp theo số." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Nhãn Quản trị" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Đây là nhãn được sử dụng khi xem/chỉnh sửa/xuất lượt gửi." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Thanh toán:" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Giao nhận" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Tùy chỉnh" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Nhóm Trường Thông tin Người dùng" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Nhóm Trường Tùy chỉnh" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Hãy nhập thông tin này khi yêu cầu hỗ trợ:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Lấy Báo cáo hệ thống" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Môi trường" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL trang chủ" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL trang" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Phiên bản Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Phiên bản WP" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "Đã bật WP Multisite" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Có" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Không" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Thông tin máy chủ web" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Phiên bản PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Phiên bản MySQL" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "Ngôn ngữ PHP" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Giới hạn Bộ nhớ WP" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Chế độ Sửa lỗi WP" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Ngôn ngữ WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Mặc định" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Kích thước tải lên tối đa trong WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "Kích cỡ tối đa của một tập tin PHP" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Mức lồng thông tin đầu vào tối đa" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "Giới hạn thời gian PHP" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "Số biến thể nhập vào tối đa trong PHP" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "Đã cài đặt SUHOSIN" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Múi giờ mặc định" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Múi giờ mặc định là %s - múi giờ mặc định nên là UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Múi giờ mặc định là %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Máy chủ của bạn đã bật fsockopen và cURL." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Máy chủ của bạn đã bật fsockopen và tắt cURL." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Máy chủ của bạn đã bật cURL và tắt fsockopen." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Máy chủ của bạn không có fsockopen hay cURL được kích hoạt - PayPal IPN và " "các đoạn mã kết nối với máy chủ khác sẽ không hoạt động. Hãy liên lạc người " "cung cấp hosting của bạn." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Chương trình SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Máy chủ của bạn đã bật chương trình SOAP." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Máy chủ của bạn chưa bật %schương trình SOAP%s - một số trình cắm cổng kết " "nối sử dụng SOAP có thể không hoạt động như mong đợi." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "Đăng từ xa trong WP" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() đã thành công - IPN PayPal đang hoạt động." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() đã thất bại. IPN PayPal không hoạt động với máy chủ của bạn. " "Liên hệ với nhà cung cấp dịch vụ lưu trữ của bạn. Lỗi:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() đã thất bại. IPN PayPal có thể không hoạt động với máy chủ của bạn." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Trình cắm" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Trình cắm đã cài" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Ghé thăm trang chủ" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "bởi" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "phiên bản" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Đặt tiêu đề cho mẫu. Đây là cách giúp bạn sẽ tìm thấy mẫu này về sau." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Bạn đã không thêm nút gửi vào mẫu của bạn." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Mặt nạ nhập liệu" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Bất kỳ ký tự nào bạn điền vào ô \"mặt nạ tùy chỉnh\" mà không nằm trong danh " "sách dưới đây sẽ không được tự động thêm vào cho người dùng khi họ nhập nội " "dung và sẽ không thể xóa được" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Dưới đây là những ký tự che dữ liệu được xác định trước" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "a - Đại diện cho ký tự chữ cái (A-Z,a-z) - Chỉ cho phép nhập chữ cái" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "9 - Đại diện cho ký tự số (0-9) - Chỉ cho phép nhập số" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Đại diện cho ký tự chữ-số (A-Z,a-z,0-9) - Tùy chọn này cho phép nhập cả " "chữ cái và số" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Như vậy, nếu bạn muốn tạo mặt nạ cho Số an sinh xã hội của Mỹ, bạn sẽ nhập " "999-99-9999 vào ô này" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "9s sẽ đại diện cho bất kỳ số nào và -s sẽ tự động được thêm vào" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Điều này sẽ ngăn không cho người dùng nhập bất kỳ nội dung gì ngoài chữ số" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Bạn cũng có thể kết hợp những tùy chọn này với những ứng dụng cụ thể" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Ví dụ, nếu bạn có một khóa sản phẩm với định dạng A4B51.989.B.43C, bạn có thể " "ngụy trang khóa này thành: a9a99.999.a.99a, theo cách này thì tất cả các ký " "tự a sẽ là chữ cái và 9 sẽ là chữ số" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Trường xác định" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Các trường yêu thích" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Trường thanh toán" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Trường mẫu" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Thông tin người dùng" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Tất cả" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Các thao tác hàng loạt" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Đồng ý" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Số mẫu trên một trang" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Đi" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Tới trang đầu tiên" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Tới trang kế tiếp" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Trang hiện tại" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Tới trang sau" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Tới trang trước" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Tiêu đề mẫu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Xóa mẫu này" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Sao y mẫu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Đã xóa mẫu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Đã xóa mẫu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Xem trước mẫu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Hiển thị" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Hiển thị tiêu đề mẫu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Thêm mẫu vào trang này" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Gửi qua AJAX (không cần tải lại trang)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Xóa mẫu điền thành công?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Nếu chọn ô này, Ninja Forms sẽ xóa các giá trị mẫu sau khi nó được gửi thành công." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Ẩn mẫu điền thành công?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "Nếu chọn ô này, Ninja Forms sẽ ẩn mẫu sau khi nó được gửi thành công." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Giới hạn" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Yêu cầu người dùng đăng nhập để xem mẫu?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Thông báo chưa đăng nhập" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Thông báo sẽ được hiển thị cho người dùng nếu hộp kiểm \"đã đăng nhập\" phía " "trên được đánh dấu và họ vẫn chưa đăng nhập vào." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Hạn chế số lượt gửi" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "Chọn số lượt gửi mà mẫu này chấp nhận. Để trống nếu không có giới hạn." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Thông báo đạt đến giới hạn" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Hãy nhập thông báo mà bạn muốn hiển thị khi mẫu này đạt đến giới hạn gửi và " "sẽ không chấp nhận các lượt gửi mới." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Đã lưu phần cài đặt mẫu" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Cài đặt cơ bản" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Bạn có thể xem phần trợ giúp cơ bản của Ninja Forms ở đây." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Mở rộng Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Sẽ sớm có tài liệu." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Kích hoạt" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Đã cài đặt" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Tìm hiểu thêm" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Sao lưu / Khôi phục" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Sao lưu Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Khôi phục Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Đã khôi phục dữ liệu thành công!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Nhập các trường yêu thích" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Chọn tập tin" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Nhập Mục yêu thích" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Không tìm thấy trường yêu thích nào" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Xuất các trường yêu thích" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Xuất trường" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Chọn các trường yêu thích để xuất." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Đã nhập mục yêu thích thành công" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Hãy chọn một tập tin trường yêu thích hợp lệ." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Nhập một mẫu" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Nhập Mẫu" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Xuất một mẫu" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Xuất Mẫu" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Hãy chọn một mẫu." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Đã nhập mẫu thành công." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Hãy chọn một tập tin mẫu xuất hợp lệ." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Nhập / Xuất các lượt gửi" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Cài đặt ngày" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Chung" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Thiết lập chung" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Phiên bản" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Định dạng ngày" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Đã thử dựa theo các thông số của %shàm ngày PHP()%s nhưng không phải định " "dạng nào cũng được hỗ trợ." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Biểu tượng tiền tệ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Cài đặt reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Khóa trang reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Lấy khóa trang cho miền của bạn bằng cách đăng ký %stại đây%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Khóa bảo mật reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Ngôn ngữ reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Ngôn ngữ được reCAPTCHA.sử dụng Để lấy mã cho ngôn ngữ bạn dùng, hãy nhấp vào %sđây%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Nếu bạn đánh dấu ô này, TẤT CẢ dữ liệu Ninja Forms sẽ bị xóa khỏi cơ sở dữ " "liệu khi gỡ cài đặt. %sTất cả dữ liệu mẫu và lượt gửi sẽ không thể khôi phục " "lại được.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Tắt thông báo quản trị" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Không bao giờ xem thông báo quản trị từ Ninja Forms trên bảng điều khiển.. Bỏ " "chọn ô này để xem lại." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Cài đặt này sẽ xóa HOÀN TOÀN những gì liên quan đến Ninja Forms khi xóa trình " "cắm. Phần này bao gồm CÁC LƯỢT GỬI và MẪU. Bạn không thể hoàn tác thao tác này." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Tiếp tục" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Đã lưu cài đặt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Nhãn" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Nhãn thư" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Nhãn trường bắt buộc" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Biểu tượng trường bắt buộc" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Hiển thị thông báo lỗi nếu chưa điền hết tất cả các trường bắt buộc" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Lỗi trường bắt buộc" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Thông báo lỗi phòng chống thư rác" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Thông báo lỗi Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Thông báo lỗi Timer" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Thông báo lỗi tắt JavaScript" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Hãy nhập một địa chỉ email hợp lệ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Đang xử lý nhãn gửi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Thông báo này được hiển thị bên trong nút gửi bất cứ khi nào một người dùng " "nhấp \"gửi\" để thông báo cho họ biết quy trình đang được xử lý." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Nhãn mật khẩu không khớp" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Thông báo này sẽ được hiển thị cho người dùng khi các giá trị không khớp xuất " "hiện trong trường mật khẩu." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Giấy phép" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Lưu & kích hoạt" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Hủy kích hoạt tất cả các giấy phép" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Để kích hoạt giấy phép mở rộng Ninja Forms, trước tiên bạn phải %scài đặt và " "kích hoạt%s tiện ích mở rộng đã chọn. Sau đó, phần cài đặt giấy phép sẽ xuất " "hiện ở bên dưới." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Đặt lại chuyển đổi mẫu" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Đặt lại chuyển đổi mẫu" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Nếu các mẫu của bạn bị \"thiếu\" sau khi nâng cấp lên 2.9, nút này sẽ gúp " "chuyển đổi lại các mẫu cũ của bạn để hiển thị chúng trong 2.9. Tất cả các " "mẫu hiện tại sẽ vẫn nằm trong bảng \"Tất cả các mấu\"." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Tất cả các mẫu hiện tại sẽ vẫn nằm trong bảng \"Tất cả các mấu\". Trong một " "vài trường hợp, một số mẫu có thể được sao y trong suốt quy trình này." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Email quản trị" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Email người dùng" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms cần phải nâng cấp thông báo mẫu của bạn, hãy nhấp vào %sđây%s để " "bắt đầu quá trình nâng cấp." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms cần phải cập nhật cài đặt email của bạn, hãy nhấp vào %sđây%s để " "bắt đầu quá trình nâng cấp." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms cần phải nâng cấp bảng lượt gửi của bạn, hãy nhấp vào %sđây%s để " "bắt đầu quá trình nâng cấp." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Cảm ơn bạn đã nâng cấp lên phiên bản 2.7 của Ninja Forms. Hãy cập nhật bất kỳ " "tiện ích mở rộng nào của Ninja Forms từ " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Phiên bản của tiện ích Tải tập tin lên trong Ninja Forms không tương thích " "với phiên bản 2.7 của Ninja Forms. Cần phải sử dụng tối thiểu phiên bản " "1.3.5. Hãy cập nhật tiện ích mở rộng này tại " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Phiên bản của tiện ích Lưu tiến trình trong Ninja Forms không tương thích với " "phiên bản 2.7 của Ninja Forms. Cần phải sử dụng tối thiểu phiên bản 1.1.3. " "Hãy cập nhật tiện ích mở rộng này tại " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Đang cập nhật cơ sở dữ liệu mẫu" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms cần phải nâng cấp cài đặt mẫu của bạn, hãy nhấp vào %sđây%s để " "bắt đầu quá trình nâng cấp." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Đang xử lý quá trình nâng cấp Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Hãy %sliên hệ với bộ phận hỗ trợ%s về thông báo lỗi trên." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms đã hoàn tất tất cả các đợt nâng cấp hiện có!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Chuyển sang Mẫu" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Nâng cấp Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Nâng cấp" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Nâng cấp đã hoàn thành" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms cần phải xử lý %s đợt nâng cấp. Quá trình này có thể mất một vài " "phút để hoàn thành. %sBắt đầu nâng cấp%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Bước %d trên khoảng %d đang thực hiện" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Trạng thái Hệ thống Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Chỉ báo độ mạnh" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Rất yếu" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Yếu" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Phương tiện" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Mạnh mẽ" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Không phù hợp" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Chọn Mẫu" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Nếu bạn không phải là máy móc và đang nhìn thấy trường này, vui lòng để trống." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Các trường được đánh dấu * là bắt buộc." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Đây là một trường bắt buộc." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Vui lòng kiểm tra các trường bắt buộc." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Phép tính" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Số chữ số thập phân." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Hộp văn bản" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Phép tính đầu ra là" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Nhãn" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Vô hiệu hóa đầu vào?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Sử dụng mã ngắn sau đây để chèn phép tính cuối cùng: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Bạn có thể nhập các phương trình tính toán ở đây sử dụng trường_x trong đó x " "là ID của trường mà bạn muốn sử dụng. Ví dụ, %strường_53 + trường_28 + trường_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Có thể tạo các phương trình phức tạp bằng cách thêm dấu ngoặc đơn: %s( " "trường_45 * trường_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Vui lòng sử dụng các phép toán này. + - * /. Đây là một tính năng nâng cao. " "Chú ý các phép tính như phép chia cho số 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Tự động Tính tổng Giá trị Phép tính" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Chỉ định Phép tính Và Trường (Nâng cao)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Sử dụng một Phương trình (Nâng cao)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Phương pháp Tính toán" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Phép toán trong Trường" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Thêm Phép toán" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Phương trình Nâng cao" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Tên phép tính" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Đây là tên lập trình của trường của bạn. Ví dụ: my_calc, price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Giá trị Mặc định" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Nhóm CSS Tùy chỉnh" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Chọn một Trường" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Hộp kiểm" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Bỏ chọn" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Đã chọn" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Hiển thị" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Ẩn" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Thay đổi Giá trị" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeria" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "American Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarctica" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua Và Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Úc" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Áo" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Belarus" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Bỉ" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia Và Herzegovina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Đảo Bouvet" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brazil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Lãnh thổ Ấn Độ Dương thuộc Anh" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Campuchia" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Cameroon" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cape Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Quần đảo Cayman" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Cộng hòa Trung Phi" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Trung Quốc" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Island" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Quần đảo Cocos (Keeling)" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Công gô" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Cộng hòa Dân chủ Công-gô" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Quần đảo Cook" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Bờ Biển Ngà" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croatia (Tên Địa phương: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Cộng hòa Séc" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Đan Mạch" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Cộng hòa Dominica" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Đông Timor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Ai Cập" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Guinea Xích đạo" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Ethiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Quần đảo Falkland (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Quần đảo Faroe" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Phần Lan" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Pháp" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Pháp, Metropolitan" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Guyane thuộc Pháp" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polynesia thuộc Pháp" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Lãnh thổ miền Nam nước Pháp" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Đức" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Hy Lạp" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Greenland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Quần đảo Heard và Mc Donald" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Holy See (Thành Vatican)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hồng Kông" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungary" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Iceland" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Ấn Độ" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "(Cộng hòa Hồi giáo) Iran" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraq" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Ireland" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Ý" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Nhật Bản" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakhstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Cộng hòa Dân chủ Nhân dân Triều Tiên" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Đại Hàn Dân Quốc" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Cộng hòa Dân chủ Nhân dân Lào" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Lebanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Cộng hòa Nhân dân Ả-rập Lybia" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lithuania" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxembourg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Ma Cao" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Cộng hòa Macedonia thuộc Nam Tư cũ" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldives" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Quần đảo Marshall" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Nhà nước Liên bang Micronesia" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Cộng hòa Moldova" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mông Cổ" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Morocco" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Hà Lan" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antilles thuộc Hà Lan" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "New Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "New Zealand" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Island" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Quần đảo Bắc Mariana" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Na Uy" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Philippines" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Phần Lan" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Bồ Đào Nha" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Liên bang Nga" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts và Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent Và Grenadines" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tome Và Principe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Ả Rập Saudi" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakia (Cộng hòa Slovak)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Quần đảo Solomon" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Nam Phi" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Quần đảo Nam Georgia, Nam Sandwich" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Tây Ban Nha" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "St. Pierre Và Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Quần đảo Svalbard Và Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Thụy Điển" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Thụy Sĩ" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Cộng hòa Ả rập Syria" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Đài Loan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Cộng hòa Tanzania Thống nhất" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thái Lan" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad Và Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Thổ Nhĩ Kỳ" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Quần đảo Turks Và Caicos" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraine" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Các tiểu vương quốc Ả Rập" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Vương quốc Liên hiệp Anh và Bắc Ireland" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Mỹ" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Các Tiểu đảo Xa của Hoa Kỳ" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Việt Nam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Quần đảo Virgin (thuộc Anh)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Quần đảo Virgin (Mỹ)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Quần đảo Wallis Và Futuna" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Western Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Quốc gia" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Quốc gia Mặc định" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Sử dụng tùy chọn tùy chỉnh đầu tiên" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Tùy chọn tùy chỉnh đầu tiên" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Nam Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Thẻ tín dụng" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Nhãn số thẻ" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Số thẻ" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Mô tả số thẻ" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "(Thường là) 16 chữ số ở mặt trước của thẻ tín dụng." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Nhãn CVC Thẻ" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Mô tả CVC Thẻ" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Giá trị 3 chữ số (mặt sau) hoặc 4 chữ số (mặt trước) trên thẻ của bạn." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Nhãn tên thẻ" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Tên trên thẻ" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Mô tả tên thẻ" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Tên được in trên mặt trước của thẻ tín dụng." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Nhãn tháng hết hạn thẻ" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Tháng hết hạn (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Mô tả tháng hết hạn thẻ" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Tháng mà thẻ của bạn hết hạn, thường trên mặt trước của thẻ." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Nhãn năm hết hạn thẻ" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Năm hết hạn (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Mô tả năm hết hạn thẻ" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Năm mà thẻ của bạn hết hạn, thường trên mặt trước của thẻ." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Văn bản" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Thành phần văn bản" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Trường Ẩn" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID Người dùng (Nếu đăng nhập)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Tên của Người dùng (Nếu đăng nhập)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Họ của Người dùng (Nếu đăng nhập)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Tên hiển thị của Người dùng (Nếu đăng nhập)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Email người dùng (Nếu đăng nhập)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "ID Bài đăng / Trang (Nếu có)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Tiêu đề Bài đăng / Trang (Nếu có)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL Bài đăng / Trang (Nếu có)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Ngày hôm nay" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Biến số chuỗi truy vấn" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Từ khóa này được bảo vệ bởi WordPress. Vui lòng thử từ khác." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Đây là một địa chỉ email?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Nếu chọn ô này, Ninja Forms sẽ xác thực thông tin đầu vào này như một địa chỉ email." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Gửi bản sao của mẫu đến địa chỉ này?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Nếu chọn ô này, Ninja Forms sẽ gửi một bản sao của mẫu này (và bất kỳ thông " "báo đính kèm nào) đến địa chỉ này." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "giờ" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Danh sách" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Đây là trạng thái của người dùng" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Giá trị được chọn" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Thêm giá trị" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Xóa giá trị" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Phép tính" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Thả xuống" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Các hộp kiểm" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Nhiều lựa chọn" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Loại danh sách" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Kích cỡ ô nhiều lựa chọn" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Nhập các mục trong danh sách" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Hiển thị giá trị các mục trong danh sách" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Nhập" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Để sử dụng tính năng này, bạn có thể dán CSV của mình vào vùng văn bản ở trên." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Định dạng cần hiển thị như sau:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Nhãn,Giá trị,Phép tính" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Nếu bạn muốn gửi một phép tính hoặc giá trị rỗng, bạn nên sử dụng dấu ''." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Đã chọn" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Số" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Giá trị Tối thiểu" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Giá trị Tối đa" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Bước (số gia bằng)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Người tổ chức" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Mật khẩu" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Sử dụng như một trường mật khẩu đăng ký" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "Nếu chọn ô này, cả ô mật khẩu và nhập lại mật khẩu sẽ là đầu ra." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Nhãn Nhập lại Mật khẩu" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Nhập lại Mật khẩu" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Hiển thị Chỉ báo Độ mạnh Mật khẩu" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Gợi ý: Mật khẩu mới cần dài tối thiểu bảy ký tự. Để mật khẩu mạnh hơn, hãy sử " "dụng cả chữ hoa và chữ thường, số, và các biểu tượng như ! \" ? $ % ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Mật khẩu không khớp" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Xếp hạng sao" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Số sao" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Xác nhận rằng bạn không phải là máy móc" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Vui lòng điền vào trường mã captcha" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Hãy chắc chắn rằng bạn đã nhập đúng Trang & Khóa bảo mật của bạn" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Mã captcha không đúng. Vui lòng nhập giá trị chính xác vào trường mã captcha" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Chống thư rác" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Câu hỏi Chống thư rác" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Câu trả lời Chống thư rác" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Gửi" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Thuế" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Phần trăm Thuế" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Cần được nhập ở dạng phần trăm, ví dụ 8.25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Textarea" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Hiển thị Trình soạn thảo văn bản giàu tính chất" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Hiển thị nút Tải lên đa phương tiện" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Tắt Trình soạn thảo văn bản giàu tính chất trên di động" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Xác thực như một địa chỉ email? (Trường bắt buộc)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Vô hiệu hóa Đầu vào" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Chọn ngày" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Điện thoại - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Hiện tại" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Định nghĩa Mặt nạ Tùy chỉnh" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Giúp đỡ" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Gửi hẹn giờ" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Gửi nội dung nút sau khi thời gian kết thúc" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Vui lòng đợi %n giây" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n sẽ được sử dụng để biểu thị số giây" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Số giây để đếm ngược" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Đây là thời gian người dùng phải chờ để gửi mẫu" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Nếu bạn không phải là máy móc, vui lòng chậm lại." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "Bạn cần JavaScript để gửi mẫu này. Vui lòng kích hoạt và thử lại." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Ánh xạ trường Danh sách" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Nhóm Yêu thích" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Đơn" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Nhiều" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Danh sách" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Làm mới" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Metabox lượt gửi" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Meta Người dùng (nếu đăng nhập)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Thu tiền thanh toán" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Không tìm thấy mẫu nào." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Ngày tạo" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "tiêu đề" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "đã cập nhật" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Nỗ lực của bạn đã thất bại" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Mục chính:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Tất cả các mục" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Thêm mục mới" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Mục mới" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Sửa mục" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Cập nhật mục" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Xem mục" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Tìm kiếm mục" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Không tìm thấy trong Thùng rác" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Gửi mẫu" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Thông tin gửi" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Thêm mẫu mới" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Lỗi nhập mẫu." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Trường" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Tập tin vừa tải lên không có định dạng hợp lệ." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Tải mẫu không hợp lệ." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Nhập mẫu" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Xuất mẫu" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Phương trình (Nâng cao)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Phép tính và Trường (Nâng cao)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Trường Tự động Tính tổng" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Tập tin được tải lên có dung lượng vượt quá hạn mức quy định bởi cài đặt upload_max_filesize trong tập tin php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Tập tin được tải lên có dung lượng vượt quá hạn mức MAX_FILE_SIZE được chỉ " "định trong mẫu HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Tập tin chỉ được tải lên một phần." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Không có tập tin nào được tải lên." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Thiếu thư mục tạm thời." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Không thể lưu tập tin vào đĩa cứng" #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Tập tin đã bị ngưng tải lên do dạng tập tin không đúng." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Lỗi tải lên không xác định." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Lỗi tải lên tập tin" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Giấy phép Tiện ích bổ sung" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Đã hoàn thành việc di chuyển và giả dữ liệu. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Xem mẫu" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Lưu thiết lập" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Địa chỉ IP Máy chủ" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Tên máy chủ" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Gắn kèm một Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Không tìm thấy mẫu" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Không tìm thấy trường" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Đã xảy ra lỗi không mong đợi." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Không tồn tại bản xem trước." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Cổng thanh toán" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Tổng Thanh toán" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Thẻ móc nối" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Địa chỉ email hoặc tìm kiếm một trường" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Nội dung Tiêu đề hoặc tìm kiếm một trường" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Đính kèm CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Đường dẫn" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Nhãn tại đây" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Văn bản Trợ giúp tại đây" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Nhập nhãn của trường mẫu. Đây là cách người dùng sẽ xác định các trường đơn lẻ." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Mặc định mẫu" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Ẩn" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Chọn vị trí của nhãn của bạn so với chính thành phần trường." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Trường bắt buộc" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "Hãy đảm bảo rằng trường này được hoàn tất trước khi cho phép gửi mẫu." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Tùy chọn số" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Tối thiểu" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Tối đa" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Bước" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Tùy chọn" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Một" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "một" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Hai" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "hai" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Ba" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "ba" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Giá trị Phép tính" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Hạn chế loại thông tin đầu vào mà người dùng của bạn có thể nhập vào trường này." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "không" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Số điện thoại ở Mỹ" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "tùy chỉnh" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Mặt nạ Tùy chỉnh" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Đại diện cho ký tự chữ (A-Z, a-z) - " "Chỉ cho phép nhập chữ cái.
    • \n
    • 9 - Đại " "diện cho ký tự số (0-9) - Chỉ cho phép nhập " "số.
    • \n
    • * - Đại diện cho ký tự chữ-số " "(A-Z,a-z,0-9) - Cho phép nhập cả số và\n chữ " "cái.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Giới hạn Đầu vào cho Số này" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Ký tự" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Từ" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Nội dung xuất hiện sau trình đếm" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Ký tự còn lại" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Nhập nội dung bạn muốn hiển thị trong trường này trước khi người dùng nhập dữ " "liệu bất kỳ." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Tên Nhóm Tùy chỉnh" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Phần chứa" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Thêm một nhóm bổ sung vào trình bọc trường của bạn." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Thành phần" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Thêm một nhóm bổ sung vào thành phần trường của bạn." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Thứ sáu, ngày 18 tháng 11, năm 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Đặt mặc định ngày hiện tại" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Số giây để gửi theo giờ hẹn." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Khóa Trường" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Tạo một khóa duy nhất để xác định và hướng mục tiêu trường của bạn để phát " "triển tùy chỉnh." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Nhãn được sử dụng khi xem và xuất lượt gửi." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Hiển thị cho người dùng ở dạng nổi." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Mô tả" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sắp xếp theo số" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Cột này trong bảng lượt gửi sẽ sắp xếp theo số." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Số giây để đếm ngược" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Sử dụng như một trường mật khẩu đăng ký. Nếu chọn ô này, " "cả\n ô mật khẩu và nhập lại mật khẩu sẽ là đầu ra." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Xác nhận" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Cho phép đầu vào ở dạng văn bản phong phú." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Xử lý nhãn" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Giá trị phép tính được đánh dấu" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Số này sẽ được sử dụng trong các phép tính nếu ô này được đánh dấu." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Giá trị phép tính không được đánh dấu" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Số này sẽ được sử dụng trong các phép tính nếu ô này không được đánh dấu." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Hiển thị biến số của phép tính này" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Chọn một biến số" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Giá" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Sử dụng số lượng" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Cho phép người dùng lựa chọn nhiều sản phẩm loại này." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Loại sản phẩm" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Sản phẩm đơn lẻ (mặc định)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Nhiều sản phẩm - Kéo xuống" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Nhiều sản phẩm - Chọn nhiều" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Nhiều sản phẩm - Chọn một" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Mục nhập người dùng" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Chi phí" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Tùy chọn chi phí" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Chi phí đơn lẻ" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Kéo xuống chi phí" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Loại chi phí" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Sản phẩm" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Chọn một Sản phẩm" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Trả lời" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Một câu trả lời phân biệt dạng chữ giúp tránh gửi thư rác đối với mẫu của bạn." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Phân loại" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Thêm thuật ngữ mới" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Đây là một bang của người dùng." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Dùng để đánh dấu trường cần xử lý." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Các trường đã lưu" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Các trường chung" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Trường thông tin người dùng" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Trường tính giá" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Trường bố cục" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Các trường khác" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Mẫu của bạn đã được gửi thành công." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Gửi mẫu Ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Lưu gửi" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Tên biến" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Phương trình" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Vị trí nhãn mặc định" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Trình bọc" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Khóa Mẫu" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Tên lập trình có thể được dùng để tham chiếu mẫu này." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Thêm Nút Gửi" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Chúng tôi nhận thấy rằng không có nút gửi trên mẫu của bạn. Chúng tôi có thể " "tự động thêm một nút cho bạn." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Đăng nhập" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Áp dụng cho bản xem trước mẫu." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Giới hạn gửi" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "KHÔNG áp dụng cho bản xem trước mẫu." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Hiển thị thiết lập" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Phép tính" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Giá" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Số lượng:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Thêm" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Mở trong cửa sổ mới" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Nếu bạn là người đang xem trường này, hãy để trống nó." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Khả dụng" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Hãy nhập một địa chỉ email hợp lệ!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Những trường này phải khớp!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Lỗi số tối thiểu" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Lỗi số tối đa" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Hãy tăng theo " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Chèn liên kết" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Chèn phương tiện" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Hãy sửa lỗi trước khi gửi mẫu này." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Lỗi Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Đang tải tập tin lên." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "TẢI TẬP TIN LÊN" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Tất cả trường" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Trình tự phụ" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Bài đăng ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Chức danh" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Đến trang của tập tin" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "Địa chỉ IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID người dùng" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Họ" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "họ" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Tên hiển thị" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Kiểu bảo thủ" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Ánh sáng" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Màu tối" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Sử dụng quy ước tạo kiểu Ninja Forms mặc định" #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Khôi phục" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Khôi phục về v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Khôi phục về phiên bản 2.9.x mới nhất." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Cài đặt reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Giao diện reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Trình soạn thảo văn bản giàu tính chất (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Nâng cao" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Quản trị" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Mẫu để trống" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Liên hệ với tôi" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Thao tác Giả thông báo gửi thành công" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Cảm ơn bạn {field:name} đã điền mẫu của tôi!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Giả thao tác email" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Đây là một thao tác email." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Xin chào Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Giả thao tác lưu" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Đây là bài kiểm tra" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Đây là một bài kiểm tra khác." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Nhận trợ giúp" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Chúng tôi có thể giúp gì cho bạn?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Đồng ý?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Cách thức liên hệ tốt nhất?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "điện thoại" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Thư thường" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Gửi" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Bồn rửa bát" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Chọn danh sách" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Tùy chọn một" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Tùy chọn hai" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Tùy chọn ba" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Danh sách radio" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Bồn tắm" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Danh mục hộp kiểm" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Đây là tất cả các trường trong phần Thông tin người dùng." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Địa chỉ" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Thành phố" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Mã zip" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Đây là tất cả các trường trong phần Định giá." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Sản phẩm (bao gồm số lượng)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Sản phẩm (số lượng tách riêng)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Số lượng" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Tổng cộng" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Họ tên thẻ tín dụng" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Số thẻ tín dụng" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Thẻ tín dụng CVV" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Hết hạn thẻ tín dụng" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Mã zip của thẻ tín dụng" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Đây là những trường đặc biệt khác nhau." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Câu hỏi về phòng chống thư rác (Câu trả lời = câu trả lời)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "câu trả lời" #: includes/Database/MockData.php:805 msgid "processing" msgstr "đang xử lý" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Mẫu dài - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Trường" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Trường #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Mẫu đăng ký email" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Địa chỉ email" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Nhập địa chỉ email của bạn" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Đăng ký" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Mẫu sản phẩm (có kèm trường Số lượng)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Mua" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Bạn đã mua " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "sản phẩm cho " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Mẫu sản phẩm (Số lượng theo hàng)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " sản phẩm cho " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Mẫu sản phẩm (Nhiều sản phẩm)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Sản phẩm A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Số lượng cho Sản phẩm A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Sản phẩm B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Số lượng cho Sản phẩm B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "của Sản phẩm A và " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "của Sản phẩm B với giá $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Mẫu kèm theo phép tính" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Phép tính đầu tiên" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Phép tính thứ hai" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Phép tính được trả về với phản hồi AJAX ( phản hồi -> dữ liệu -> phép tính" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Sao chép" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Lưu biểu mẫu" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Zip thẻ tín dụng" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Bạn phải đăng nhập vào để xem trước mẫu." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Không Tìm Được Trường." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Thông báo: Mã ngắn Ninja Forms được sử dụng mà không chỉ định mẫu." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Mã ngắn Ninja Forms được sử dụng mà không có chỉ định mẫu." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "địa chỉ 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Nút" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Hộp Kiểm Đơn" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "đã chọn" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "đã bỏ chọn" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "CVC thẻ tín dụng" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Lựa chọn" #: includes/Fields/ListState.php:26 msgid "State" msgstr "nhà nước" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Có thể sửa nội dung lưu ý trong cài đặt nâng cao của trường lưu ý dưới đây." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Lưu ý" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Xác nhận mật khẩu" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "mật khẩu" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Vui lòng điền recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Giao hàng nâng cao" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Câu hỏi" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Vị trí câu hỏi" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Câu trả lời không chính xác" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Số sao" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Danh sách thuật ngữ" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Không có thuật ngữ dành cho phân loại này. %sThêm thuật ngữ%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Không có phân loại nào được chọn." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Thuật ngữ hiện có" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Nội dung đoạn" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Nội dung từng dòng" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Vùng" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Đăng" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Chuỗi truy vấn" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Chuỗi truy vấn" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Hệ thống" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Người dùng" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " yêu cầu bản cập nhật. Bạn có phiên bản " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " được cài đặt. Phiên bản hiện tại là " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Sửa trường" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Tên nhãn" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Phía trên trường" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Phía dưới trường" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Bên trái trường" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Bên phải trường" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Ẩn nhãn" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Tên lớp" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Các trường cơ bản" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Chọn nhiều" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Thêm trường mới" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Thêm thao tác mới" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Mở rộng menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Đăng tải" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "XUẤT BẢN" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Đang tải" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Xem thay đổi" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Thêm các trường mẫu" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Bắt đầu bằng cách thêm trường mẫu đầu tiên." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Thêm trường mới" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Chỉ cần nhấp vào đây và chọn các trường mà bạn muốn." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Thật dễ dàng phải không. Hoặc..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Khởi đầu bằng một mẫu" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Liên hệ với chúng tôi" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Cho phép người dùng của bạn liên hệ với bạn thông qua mẫu liên hệ đơn giản " "này. Bạn có thể thêm và xóa các trường nếu cần." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Yêu cầu báo giá:" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Quản lý dễ dàng các yêu cầu báo giá từ website của bạn với mẫu này. Bạn có " "thể thêm và xóa các trường nếu cần." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Đăng ký sự kiện" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Cho phép người dùng đăng ký sự kiện tiếp theo của bạn với mẫu dễ điền này. " "Bạn có thể thêm và xóa các trường nếu cần." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Mẫu đăng ký nhận bản tin" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Thêm người đăng ký và mở rộng danh sách email của bạn với mẫu đăng ký nhận " "bản tin này. Bạn có thể thêm và xóa các trường nếu cần." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Thêm các thao tác mẫu" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Bắt đầu bằng cách thêm trường mẫu đầu tiên. Chỉ cần nhấp vào dấu cộng và chọn " "các thao tác mà bạn muốn. Thật dễ dàng phải không." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Nhân đôi (^ + C + nhấp)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Xóa (^ + D + nhấp)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Các thao tác" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Bật/tắt ngăn kéo" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Toàn màn hình" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Bán màn hình" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Hoàn tác" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Hoàn thành" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Hoàn tác tất cả" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Hoàn tác tất cả" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Sắp xong..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Vẫn chưa xong" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Mở trong cửa sổ mới" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Hủy kích hoạt" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Khắc phục sự cố." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Chọn một mẫu" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Ngày hiện tại" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Trước khi yêu cầu trợ giúp từ nhóm hỗ trợ của chúng tôi, hãy tham khảo:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Tài liệu Ninja Forms THREE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Những gì cần thử trước khi liên hệ với bộ phận hỗ trợ" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Phạm vi hỗ trợ của chúng tôi" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Nhập trường" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Đã cập nhật vào: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Đã gửi vào: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Đã gửi bởi: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Dữ liệu gửi" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Xem" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Hiển thị nhiều hơn" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Sửa trường" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Các trường mẫu" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Xem trước thay đổi" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Mẫu liên hệ" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Rất tiếc! Tiện ích bổ sung này chưa tương thích với Ninja Forms THREE. %sTìm " "hiểu thêm%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "Đã hủy kích hoạt %s." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Hãy giúp chúng tôi cải thiện Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Nếu bạn chọn đăng ký, một số dữ liệu về phần cài đặt Ninja Forms của bạn sẽ " "được gửi cho NinjaForms.com (phần này KHÔNG bao gồm số lần gửi mẫu của bạn)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Nếu bạn bỏ qua bước này cũng không có vấn đề gì cả! Ninja Forms sẽ vẫn hoạt động bình thường." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sCho phép%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sKhông cho phép%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Bạn không được cấp phép." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Đã từ chối cấp phép" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Phát triển Ninja Forms" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "SỬA LỖI: Chuyển sang 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "SỬA LỖI: Chuyển sang 3.0.x" lang/ninja-forms-ms_MY.po000064400000623747152331132460011315 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Notice: JavaScript is required for this content." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Menipu’ huh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Fields marked with an %s*%s are required" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Sila pastikan semua medan diperlukan lengkap." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Ruang ini perlu diisi" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Sila jawab soalan anti-spam dengan betul." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Sila biarkan medan spam kosong." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Sila tunggu untuk menyerahkan borang." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Anda tidak boleh serahkan borang tanpa Javaskrip didayakan." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Sila masukkan alamat e-mel yang sah." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Memproses" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Kata laluan disediakan tidak padan." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Add Form" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Select a form or type to search" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Batal" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Masukkan" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Invalid form id" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Increase Conversions" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Learn More About Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Mungkin Kemudian" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Ketepikan" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Users are more likely to complete long forms when they can save and return to " "complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Learn More About Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Emel" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Daripada Nama" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Name or fields" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Email will appear to be from this name." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "From Address" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "One email address or field" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Email will appear to be from this email address." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Kepada" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Email addresses or search for a field" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Who should this email be sent to?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Subjek" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Subject Text or search for a field" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "This will be the subject of the email." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Email Message" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Attachments" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Submission CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Advanced Settings" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Teks Kosong" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Reply To" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Ubah Hala" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Mesej kejayaan" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Before Form" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "After Form" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Lokasi" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Mesej" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplicate" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Nyahaktif" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Aktifkan" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Sunting" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Hapus" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Salinan" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nama" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Jenis" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Date Updated" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- View All Types" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Get More Types" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email & Actions" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Tambah Baharu" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "New Action" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Edit Action" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Back To List" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Action Name" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Get More Actions" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Action Updated" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Select a field or type to search" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Insert Field" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Insert All Fields" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Please select a form to view submissions" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "No Submissions Found" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Submissions" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Submission" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Add New Submission" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Edit Submission" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "New Submission" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "View Submission" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Search Submissions" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "No Submissions Found In The Trash" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Tarikh" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Edit this item" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Export this item" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Eksport" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Move this item to the Trash" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Trash" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Restore this item from the Trash" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Pulihkan" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Hapus butir ini secara kekal" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Hapus Secara Kekal" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Unpublished" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s ago" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Diserahkan" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Select a form" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Begin Date" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Tarikh Tamat" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s updated." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Medan tempahan telah dikemaskinikan." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Medan tempahan telah dipadam." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restored to revision from %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s published." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s saved." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s submitted. Preview %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s scheduled for: %2$s. Preview %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s draft updated. Preview %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Download All Submissions" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Back to list" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "User Submitted Values" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Submission Stats" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Medan" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Value" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Borang" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Dihantar pada" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modified on" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Submitted By" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Kemaskini" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Date Submitted" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "You will find this included with your purchase email." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Kekunci" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Could not activate license. Please verify your license key" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Deactivate License" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "User Submitted Values:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Thank you for filling out this form." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "There is a new version of %1$s available. View version %3$s details." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "There is a new version of %1$s available. View version %3$s details or update now." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "You do not have permission to install plugin updates" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Ralat" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standard Fields" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Layout Elements" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Post Creation" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Display Title" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Tiada" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Borang" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "All Forms" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms Upgrades" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Naik Taraf" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Import/Export" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Import / Export" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form Settings" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Tetapan" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Status Sistem" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Tambahan" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Pratonton" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Save" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "character(s) left" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Do not show these terms" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Save Options" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Preview Form" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Upgrade to Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE is coming!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "How's It Going?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Check out our documentation" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Get Some Help" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Edit Menu Item" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Pilih Semua" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Append A Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "What would you like to name this favorite?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "You must supply a name for this favorite." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Really deactivate all licenses?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Reset the form conversion process for v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Remove ALL Ninja Forms data upon uninstall?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Edit Form" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Disimpan" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Menyimpan..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Remove this field? It will be removed even if you do not save." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "View Submissions" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms Processing" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Processing" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Sedang memuat..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "No Action Specified..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Welcome to Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Thank you for updating! Ninja Forms %s makes form building easier than ever before!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Welcome to Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Changelog" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Getting started with Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "The people who build Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "What's New" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Cara Bermula" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Kredit" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versi %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "A simplified and more powerful form building experience." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "New Builder Tab" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "When creating and editing forms, go directly to the section that matters most." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Better Organized Field Settings" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Improved clarity" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Remove all Ninja Forms data" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Better license management" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Deactivate Ninja Forms extension licenses individually or as a group from the " "settings tab." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "More to come" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Dokumentasi" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Take a look at our in-depth Ninja Forms documentation below." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms Documentation" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Get Support" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Return to Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "View the Full Changelog" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Full Changelog" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Go to Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "All About Forms" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "The Forms menu is your access point for all things Ninja Forms. We've already " "created your first %scontact form%s so that you have an example. You can also " "create your own by clicking %sAdd New%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Build Your Form" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Emails & Actions" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully completed." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Displaying Your Form" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Append to Page" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that page's " "content. A similiar option is avaiable in every content edit screen in its sidebar." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Kod pendek" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that space." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Template Function" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Perlukan Bantuan?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Growing Documentation" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Best Support in the Business" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "No valid changelog was found." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "View %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Disable Browser Autocomplete" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sChecked%s Calculation Value" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "This is the value that will be used if %sChecked%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sUnchecked%s Calculation Value" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "This is the value that will be used if %sUnchecked%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Include in the auto-total? (If enabled)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Custom CSS Classes" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Before Everything" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Before Label" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "After Label" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "After Everything" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Add Description" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Description Position" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Description Content" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Show Help Text" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Help Text" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "If you leave the box empty, no limit will be used" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limit input to this number" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "daripada" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Aksara" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Words" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Text to appear after character/word counter" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Left of Element" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Above Element" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Below Element" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Right of Element" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Inside Element" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Label Position" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Field ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Restriction Settings" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Calculation Settings" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Buang" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Populate this with the taxonomy" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- None" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Pemegang tempat" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Diperlukan" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Save Field Settings" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sort as numeric" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "If this box is checked, this column in the submissions table will sort by number." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Admin Label" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "This is the label used when viewing/editing/exporting submissions." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Pengebilan" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Penghantaran" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Suai Langgan" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "User Info Field Group" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Custom Field Group" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Please include this information when requesting support:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Get System Report" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Environment" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Home URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL Tapak" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms Version" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite Enabled" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Ya" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Tidak" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web Server Info" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Versi PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Locale" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Debug Mode" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP Language" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Lalai" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Max Upload Size" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Max Input Nesting Level" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Installed" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Default Timezone" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Default timezone is %s - it should be UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Default timezone is %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Your server has fsockopen and cURL enabled." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Your server has fsockopen enabled, cURL is disabled." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Your server has cURL enabled, fsockopen is disabled." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Your server has the SOAP Client class enabled." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() was successful - PayPal IPN is working." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your " "hosting provider. Error:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() failed. PayPal IPN may not work with your server." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Installed Plugins" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visit plugin homepage" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "oleh" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "version" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Give your form a title. This is how you'll find the form later." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "You have not added a submit button to your form." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Input Mask" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not be removeable" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "These are the predefined masking characters" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "The 9s would represent any number, and the -s would be automatically added" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "This would prevent the user from putting in anything other than numbers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "You can also combine these for specific applications" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "For instance, if you had a product key that was in the form of " "A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force " "all the a's to be letters and the 9s to be numbers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Defined Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Payment Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Template Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "User Information" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Semua" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Tindakan Pukal" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Tetapkan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Forms Per Page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Pergi" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Go to the first page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Go to the previous page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Halaman semasa" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Go to the next page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Go to the last page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Form Title" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Delete this form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicate Form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Forms Deleted" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Form Deleted" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Form Preview" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Paparkan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Display Form Title" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Add form to this page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Submit via AJAX (without page reload)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Clear successfully completed form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Hide successfully completed form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Sekatan" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Require user to be logged in to view form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Not Logged-In Message" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limit Submissions" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Limit Reached Message" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Please enter a message that you want displayed when this form has reached its " "submission limit and will not accept new submissions." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Form Settings Saved" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Basic Settings" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms basic help goes here." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Extend Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentation coming soon." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktif" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Dipasang" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Ketahui Lebih Lanjut" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup / Restore" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Restore Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Data restored successfully!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Import Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Select a file" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Import Favorites" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "No Favorite Fields Found" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Export Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Export Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Please select favorite fields to export." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favorites imported successfully." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Please select a valid favorite fields file." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Import a form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Import Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Export a form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Export Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Please select a form." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Form Imported Successfully." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Please select a valid exported form file." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Import / Export Submissions" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Date Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Umum" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Tetapan Umum" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Date Format" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Currency Symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA Site Key" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Get a site key for your domain by registering %shere%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA Secret Key" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA Language" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Disable Admin Notices" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Teruskan" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Settings Saved" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Message Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Required Field Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Required field symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Error message given if all required fields are not completed" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Required Field Error" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Anti-spam error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Timer error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript disabled error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Please enter a valid email address" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Processing Submission Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Password Mismatch Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "This message is shown to a user when non-matching values are placed in the " "password field." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Lesen" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Save & Activate" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Deactivate All Licenses" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Reset Forms Conversion" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Reset Form Conversion" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "If your forms are \"missing\" after updating to 2.9, this button will attempt " "to reconvert your old forms to show them in 2.9. All current forms will " "remain in the \"All Forms\" table." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "E-mel Pentadbir" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "User Email" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to start " "the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms needs to update your email settings, click %shere%s to start the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja " "Forms extensions from " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Your version of the Ninja Forms Save Progress extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please " "update this extension at " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Updating Form Database" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms Upgrade Processing" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Please %scontact support%s with the error seen above." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms has completed all available upgrades!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Go to Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms Upgrade" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Naik taraf" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Upgrades Complete" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Step %d of approximately %d running" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms System Status" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Strength indicator" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Very weak" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Lemah" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Medium" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Kuat" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Mismatch" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Select One" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "If you are a human and are seeing this field, please leave it blank." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Fields marked with a * are required." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Ruang ini perlu diisi." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Please check required fields." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Calculation" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Number of decimal places." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Textbox" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Output calculation as" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Label" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Disable input?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Use the following shortcode to insert the final calculation: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automatically Total Calculation Values" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Specify Operations And Fields (Advanced)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Use An Equation (Advanced)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Calculation Method" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Field Operations" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Add Operation" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Advanced Equation" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Calculation name" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Nilai Lalai" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Custom CSS Class" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Select a Field" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Kotak semak" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Unchecked" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Checked" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Show This" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Hide This" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Change Value" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeria" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "American Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarctica" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua And Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Belarus" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgium" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia And Herzegowina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Island" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brazil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambodia" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Cameroon" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cape Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Cayman Islands" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Central African Republic" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Island" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Islands" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Congo, The Democratic Republic Of The" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cook Islands" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Cote D'Ivoire" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croatia (Local Name: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Czech Republic" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Denmark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominican Republic" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (East Timor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypt" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Ethiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Kepulauan Falkland (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Faroe Islands" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "France" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "France, Metropolitan" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "French Guiana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "French Polynesia" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "French Southern Territories" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Germany" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Greece" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Greenland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard And Mc Donald Islands" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Holy See (Negeri Bandar Vatican)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungary" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Iceland" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Islamic Republic Of)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraq" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Ireland" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italy" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakhstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korea, Democratic People's Republic Of" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea, Republic Of" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Lao People's Democratic Republic" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Lebanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libyan Arab Jamahiriya" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lithuania" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxembourg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Macedonia, Former Yugoslav Republic Of" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldives" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshall Islands" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Micronesia, Federated States Of" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldova, Republic Of" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Morocco" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Netherlands" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antilles Belanda" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "New Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "New Zealand" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Island" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norway" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Philippines" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Poland" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Persekutuan Rusia" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts And Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent And The Grenadines" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tome And Principe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakia (Slovak Republic)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Solomon Islands" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "South Africa" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "South Georgia, South Sandwich Islands" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spain" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "St. Pierre And Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard And Jan Mayen Islands" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Sweden" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Switzerland" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syrian Arab Republic" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania, United Republic Of" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad And Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turkey" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks And Caicos Islands" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraine" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "United Kingdom" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Amerika Syarikat" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Kepulauan Virgin (British)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Virgin Islands (U.S.)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis And Futuna Islands" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Western Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Negara" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Default Country" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Use a custom first option" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Custom first option" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "South Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Credit Card" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Card Number Label" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Nombor Kad" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Card Number Description" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "The (typically) 16 digits on the front of your credit card." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Card CVC Label" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Card CVC Description" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "The 3 digit (back) or 4 digit (front) value on your card." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Card Name Label" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Name on the card" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Card Name Description" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "The name printed on the front of your credit card." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Card Expiry Month Label" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Expiration month (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Card Expiry Month Description" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "The month your credit card expires, typically on the front of the card." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Card Expiry Year Label" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Expiration year (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Card Expiry Year Description" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "The year your credit card expires, typically on the front of the card." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Teks" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Text Element" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Medan Tersembunyi" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "User ID (If logged in)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "User Firstname (If logged in)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "User Lastname (If logged in)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "User Display Name (If logged in)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "User Email (If logged in)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Post / Page ID (If available)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Post / Page Title (If available)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Post / Page URL (If available)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Today's Date" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Querystring Variable" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "This keyword is reserved by WordPress. Please try another." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Is this an email address?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "If this box is checked, Ninja Forms will validate this input as an email address." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Send a copy of the form to this address?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Senarai" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "This is the user's state" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Selected Value" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Add Value" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Remove Value" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Juntai bawah" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Kotak semak" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multi-Select" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "List Type" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Multi-Select Box Size" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Import List Items" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Show list item values" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Import" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "To use this feature, you can paste your CSV into the textarea above." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "The format should look like the following:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Label,Value,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "If you want to send an empty value or calc, you should use '' for those." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Dipilih" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Number" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimum Value" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maximum Value" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Step (amount to increment by)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizer" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Kata laluan" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Use this as a registration password field" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "If this box is checked, both password and re-password textboxes will be output." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Re-enter Password Label" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Re-enter Password" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Show Password Strength Indicator" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ " "% ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Kata laluan tidak padanan" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Star Rating" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Number of stars" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Confirm that you are not a bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Please complete the captcha field" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Please make sure you have entered your Site & Secret keys correctly" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha mismatch. Please enter the correct value in captcha field" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Spam Question" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Spam Answer" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Hantar" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Cukai" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Tax Percentage" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Should be entered as a percentage. e.g. 8.25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Kawasan teks" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Show Rich Text Editor" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Show Media Upload Button" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Disable Rich Text Editor on Mobile" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Validate as an email address? (Field must be required)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Disable Input" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datepicker" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Phone - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Mata wang" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Custom Mask Definition" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Bantuan" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Timed Submit" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Submit button text after timer expires" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Please wait %n seconds" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n will be used to signify the number of seconds" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Number of seconds for countdown" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "This is how long a user must wait to submit the form" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "If you are a human, please slow down." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "You need JavaScript to submit this form. Please enable it and try again." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "List Field Mapping" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Interest Groups" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Tunggal" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Berbilang" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Senarai" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Segarkan Semula" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Submission Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "User Meta (if logged in)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Collect Payment" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "No forms found." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Tarikh Dicipta" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "tajuk" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "updated" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Go get a life, script kiddies" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Parent Item:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "All Items" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Add New Item" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "New Item" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Edit Item" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Update Item" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "View Item" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Search Item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Not found in Trash" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Form Submissions" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Submission Info" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Add New Form" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Form Template Import Error." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Fields" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "There uploaded file is not a valid format." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Invalid Form Upload." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Import Forms" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Export Forms" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Equation (Advanced)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operations and Fields (Advanced)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Auto-Total Fields" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Fail yang dimuat naik melebihi arahan MAX_FILE_SIZE yang telah dinyatakan " "dalam borang HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Fail yang dimuat naik tidak dimuat naik dengan sepenuhnya." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Tiada fail yang dimuat naik." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Kehilangan folder sementara." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Gagal menulis fail ke dalam cakera." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Muat naik fail dihentikan oleh sambungan." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Unknown upload error." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Ralat Memuat Naik Fail" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Add-On Licenses" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrations and Mock Data complete. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "View Forms" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Simpan Tetapan" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Server IP Address" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Nama Hos" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Append a Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Form Not Found" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Field Not Found" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Ralat tidak dijangka berlaku." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Preview does not exist." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Payment Gateways" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Payment Total" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Hook Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Email address or search for a field" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Subject Text or seach for a field" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Attach CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Label Here" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Help Text Here" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Enter the label of the form field. This is how users will identify individual fields." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Form Default" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Tersembunyi" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Select the position of your label relative to the field element itself." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Ruangan yang Perlu Diisi" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Ensure that this field is completed before allowing the form to be submitted." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Number Options" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Step" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Pilihan" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Satu" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "one" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Dua" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "two" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Tiga" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "three" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Calc Value" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Restricts the kind of input your users can put into this field." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "tiada" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "US Phone" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "custom" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Custom Mask" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Represents an alpha character " "(A-Z,a-z) - Only allows letters to be entered. " "
    • \n
    • 9 - Represents a numeric character " "(0-9) - Only allows numbers to be entered.
    • \n " "
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and\n letters to be " "entered.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Limit Input to this Number" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Character(s)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Word(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Text to Appear After Counter" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Baki aksara" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Enter text you would like displayed in the field before a user enters any data." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Custom Class Names" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Container" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Adds an extra class to your field wrapper." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Adds an extra class to your field element." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Friday, November 18, 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Default To Current Date" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Number of seconds for timed submit." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Field Key" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Creates a unique key to identify and target your field for custom development." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Label used when viewing and exporting submissions." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Shown to users as a hover." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Huraian" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sort as Numeric" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "This column in the submissions table will sort by number." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Number of seconds for the countdown" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Use this as a reistration password field. If this box is check, " "both\n password and re-password textboxes will be output" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Sahkan" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Allows rich text input." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Processing Label" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Checked Calculation Value" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "This number will be used in calculations if the box is checked." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Unchecked Calculation Value" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "This number will be used in calculations if the box is unchecked." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Display This Calculation Variable" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Select a Variable" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Harga" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Use Quantity" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Allows users to choose more than one of this product." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Product Type" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Single Product (default)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multi Product - Dropdown" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multi Product - Choose Many" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multi Product - Choose One" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "User Entry" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Kos" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Cost Options" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Single Cost" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Cost Dropdown" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Cost Type" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produk" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Select a Product" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Jawapan" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "A case sensitive answer to help prevent spam submissions of your form." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomy" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Add New Terms" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "This is a user's state." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Used for marking a field for processing." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Saved Fields" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Common Fields" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "User Information Fields" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Pricing Fields" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Layout Fields" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Miscellaneous Fields" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Borang anda telah berjaya diserahkan." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Penyerahan Ninja Form" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Simpan Penyerahan" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Variable Name" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Equation" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Default Label Position" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Form Key" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Programmatic name that can be used to reference this form." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Add Submit Button" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Berdaftar Masuk" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Does apply to form preview." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Submission Limit" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Does NOT apply to form preview." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Seting Paparan" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Calculations" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Harga:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Kuantiti:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Tambah" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Open in new window" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "If you are a human seeing this field, please leave it empty." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Tersedia" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Please enter a valid email address!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "These fields must match!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Number Min Error" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Number Max Error" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Please increment by " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Insert Link" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Insert Media" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Please correct errors before submitting this form." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot Error" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "File Upload in Progress." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "FILE UPLOAD" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "All Fields" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Sub Sequence" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Post ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Post Title" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL Kiriman" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "Alamat IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "User ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Nama Pertama" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Nama Akhir" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Display Name" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Opinionated Styles" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Terang" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Gelap" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Use default Ninja Forms styling conventions." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Rollback" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Rollback to v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Rollback to the most recent 2.9.x release." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha Settings" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA Theme" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Rich Text Editor (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Lanjutan" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administration" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Blank Forms" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Hubungi Saya" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Mock Success Message Action" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Thank you {field:name} for filling out my form!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Mock Email Action" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "This is an email action." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hello, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Mock Save Action" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "This is a test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "This is another test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Dapatkan Bantuan" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "What Can We Help You With?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Agree?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Best Contact Method?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telefon" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Snail Mail" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Hantar" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Semua Benda" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Select List" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Option One" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Option Two" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Option Three" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Radio List" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Bathroom Sink" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Checkbox List" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "These are all the fields in the User Information section." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Alamat" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Bandar:" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Kod Zip" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "These are all the fields in the Pricing section." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Product (quanitity included)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Product (seperate quantity)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Kuantiti" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Jumlah" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Credit Card Full Name" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Nombor Kad Kredit" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Credit Card CVV" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Credit Card Expiration" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Credit Card Zip Code" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "These are various special fields." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Anti-Spam Question (Answer = answer)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "answer" #: includes/Database/MockData.php:805 msgid "processing" msgstr "processing" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Long Form - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Fields" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Field #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Email Subscription Form" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Alamat emel" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Masukkan alamat e-mel anda" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Langgan" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Product Form (with Quantity Field)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Beli" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "You purchased " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "product(s) for " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Product Form (Inline Quantity)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " product(s) for " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Product Form (Multiple Products)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Product A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Quantity for Product A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Product B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Quantity for Product B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "of Product A and " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "of Product B for $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Form with Calculations" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "My First Calculation" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "My Second Calculation" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Calculations are returned with the AJAX response ( response -> data -> calcs" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Salin" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Simpan Borang" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Credit Card Zip" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "You must be logged in to preview a form." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "No Fields Found." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Notice: Ninja Forms shortcode used without specifying a form." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms shortcode used without specifying a form." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Alamat 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Butang" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Single Checkbox" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "checked" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "unchecked" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Credit Card CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Pembahagi" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Pilih" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Negeri" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Note text can be edited in the note field's advanced settings below." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Nota" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Password Confirm" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "password" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Please complete the recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Advanced Shipping" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Soalan" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Question Position" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Incorrect Answer" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Number of Stars" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Terms List" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "No available terms for this taxonomy. %sAdd a term%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "No taxonomy selected." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Available Terms" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Paragraph Text" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Single Line Text" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Zip" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Siar" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Query Strings" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Query String" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "pengguna" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " requires an update. You have version " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " installed. The current version is " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Editing Field" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Label Name" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Above Field" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Below Field" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Left of Field" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Right of Field" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Hide Label" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Class Name" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Basic Fields" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Mult-Select" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Add new field" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Add new action" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Expand Menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Siar" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PENERBITAN" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Memuatkan" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "View Changes" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Add form fields" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Get started by adding your first form field." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Add New Field" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Just click here and select the fields you want." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "It's that easy. Or..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Start from a template" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Hubungi Kami" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Quote Request" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Event Registration" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Newsletter Sign Up Form" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Add form actions" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicate (^ + C + click)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Delete (^ + D + click)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Tindakan" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Toggle Drawer" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Full screen" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Half screen" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Buat asal" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Selesai" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Undo All" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Undo All" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Hampir selesai..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Not Yet" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Open in new window" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "De-activate" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Fix it." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Select a form" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Being Date" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Before requesting help from our support team please review:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE documentation" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "What to try before contacting support" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Our Scope of Support" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Import Fields" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Updated on: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Submitted on: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Submitted by: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Submission Data" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Lihat" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Paparkan Lebih" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Editing field" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Form Fields" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Preview Changes" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Borang Kontrak" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s was deactivated." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Please help us improve Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "If you skip this, that's okay! Ninja Forms will still work just fine." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sAllow%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sDo not allow%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "You do not have permission." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Permission Denied" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEBUG: Switch to 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEBUG: Switch to 3.0.x" lang/ninja-forms-fr_FR.po000064400000640663152331132460011263 0ustar00msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2019-07-14 19:34+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Remarque – JavaScript est requis pour ce contenu." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Alors on essaye de tricher ?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Les champs marqués d’un astérisque %s*%s sont obligatoires." #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Veuillez-vous assurer d'avoir rempli tous les champs." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Ceci est un champ obligatoire" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Veuillez répondre à la question anti-spam correctement." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Veuillez laisser le champ antispam vide." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Veuillez patienter pour envoyer votre formulaire." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Impossible de valider le formulaire sans JavaScript activé." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Veuillez encoder votre adresse e-mail valide." #: deprecated/ninja-forms.php:683 deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "En cours de traitement" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Les mots de passe fournis ne correspondent pas." #: deprecated/classes/add-form-modal.php:41 deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Ajouter un formulaire" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Sélectionnez le formulaire ou le type à rechercher" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Annuler" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Insérer" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Identifiant de formulaire non valide" #: deprecated/classes/notices-multipart.php:62 deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Augmenter le taux de conversion" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-" "Part Forms extension for Ninja Forms makes this quick and easy.

    " msgstr "" "Le saviez-vous ? Vous pouvez augmenter le taux de conversion de vos visiteurs en décomposant les gros formulaires en formulaires " "plus petits et plus faciles à remplir. Avec

    l'extension \"Multi-Part Forms for Ninja Forms\"

    , c'est très facile et très " "rapide." #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Plus d’info sur les formulaires multi-pages" #: deprecated/classes/notices-multipart.php:65 deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Plus tard" #: deprecated/classes/notices-multipart.php:66 deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Rejeter" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save " "Progress extension for Ninja Forms makes this quick and easy.

    " msgstr "" "Les utilisateurs sont plus disposés à remplir des formulaires long s'ils peuvent les enregistrer et y revenir plus tard." "

    L’extension Save Progress de Ninja Forms rend ce processus simple.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "En savoir plus sur Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 includes/Config/MergeTagsUser.php:66 #: includes/Database/MockData.php:81 includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Adresse de contact" #: deprecated/classes/notification-email.php:56 includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Nom de l’expéditeur" #: deprecated/classes/notification-email.php:58 includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Nom ou champs" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Nom de l’expéditeur du message" #: deprecated/classes/notification-email.php:63 includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "E-mail de l’expéditeur" #: deprecated/classes/notification-email.php:65 deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Un e-mail ou un champ" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "E-mail de l’expéditeur du message" #: deprecated/classes/notification-email.php:70 includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Pour" #: deprecated/classes/notification-email.php:72 deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Adresses e-mail ou recherche pour un champ" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "A qui ce message sera-t-il envoyé ?" #: deprecated/classes/notification-email.php:77 includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Sujet" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Texte du sujet ou recherche pour un champ" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Ce sera le sujet du message." #: deprecated/classes/notification-email.php:84 includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Message e-mail" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Pièces jointes" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Soumission d'un fichier CSV" #: deprecated/classes/notification-email.php:126 deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Réglages avancés" #: deprecated/classes/notification-email.php:130 includes/Config/ActionEmailSettings.php:117 includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 deprecated/includes/fields/calc.php:95 includes/Config/ActionEmailSettings.php:113 #: includes/Fields/HTML.php:37 includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Simple texte" #: deprecated/classes/notification-email.php:139 includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Répondre à" #: deprecated/classes/notification-email.php:145 includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Cci" #: deprecated/classes/notification-redirect.php:19 deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Redirection" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Message de succès" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Avant le formulaire" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Après le formulaire" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Emplacement" #: deprecated/classes/notification-success-message.php:55 includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Message" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "en double" #: deprecated/classes/notifications-table.php:117 deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Désactivé" #: deprecated/classes/notifications-table.php:117 deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Activé" #: deprecated/classes/notifications-table.php:129 deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Modifier" #: deprecated/classes/notifications-table.php:130 deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 includes/Admin/AllFormsTable.php:216 #: includes/Admin/Menus/Settings.php:80 includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Supprimer" #: deprecated/classes/notifications-table.php:131 deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Dupliquer" #: deprecated/classes/notifications-table.php:175 includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nom" #: deprecated/classes/notifications-table.php:176 deprecated/classes/notifications.php:259 includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Type" #: deprecated/classes/notifications-table.php:177 deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Date de mise à jour" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Voir tous les types" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Installez d'autres types" #: deprecated/classes/notifications.php:78 deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Mails et actions" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Ajouter" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Nouvelle action" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Modifier une action" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Retour à la liste" #: deprecated/classes/notifications.php:255 includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Nom de l’action" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Installer d'autres actions" #: deprecated/classes/notifications.php:334 deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Action mise à jour" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Sélectionnez le champ ou le type à rechercher" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Insérer champs" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Insérer tous les champs" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Pour afficher les soumissions, vous devez sélectionner un formulaire." #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Aucune soumission n’a été trouvée." #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 includes/Admin/CPT/Submission.php:40 #: includes/Admin/CPT/Submission.php:42 includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Soumissions" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Soumission" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Ajouter une nouvelle soumission" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Modifier une soumission" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Nouvelle soumission" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Afficher la soumission" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Rechercher dans les soumissions" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Aucune soumission dans la Corbeille." #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 deprecated/classes/subs.php:174 #: includes/Admin/CPT/Submission.php:92 includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 deprecated/includes/fields/textbox.php:175 includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Date" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Modifier cet élément" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Exporter cet élément" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 deprecated/classes/subs-cpt.php:692 #: includes/Admin/Menus/Submissions.php:234 includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Exporter" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Mettre cet article à la corbeille" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Supprimer" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Récupérer cet élément depuis la Corbeille" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Restaurer" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Supprimer cet article définitivement" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Supprimer définitivement" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Non publié" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "il y a %s" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Envoyée" #: deprecated/classes/subs-cpt.php:492 deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Sélectionner un formulaire" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Date de Début" #: deprecated/classes/subs-cpt.php:502 includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Date de Fin" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s mis à jour" #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "" "Champ\n" " \n" "personnalisé\n" " \n" "mis à jour\n" "." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "" "Champ\n" " \n" "personnalisé\n" " \n" "mis à jour\n" "." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restauré en révision à partir de %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s publié." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s enregistré." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s envoyé. Aperçu %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "%1$s scheduled for: %2$s. Preview %4$s" msgstr "%1$s prévue pour : %2$s. Aperçu %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s brouillon mis à jour. Aperçu %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Télécharger Toutes les Soumissions" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Retour à la liste" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Valeurs soumises par l’utilisateur" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Statistiques des soumissions" #: deprecated/classes/subs-cpt.php:897 includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Champ" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Valeur" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "État" #: deprecated/classes/subs-cpt.php:1002 deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formulaire" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Envoyé le" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modifié le" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Envoyé par" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Mise à jour" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Date de soumission" #: deprecated/includes/activation.php:216 msgid "Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin." msgstr "" "Les Ninja Forms ne peuvent pas être activées en réseau. Consultez le tableau de bord de chaque site pour activer le plug-in.++" #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "(Inclus dans votre mail d’achat.)" #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Clé" #: deprecated/includes/class-extension-updater.php:152 includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Impossible d'activer la licence. Vérifiez votre clé de licence" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Désactiver la license" #: deprecated/includes/deprecated.php:466 deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Valeurs Soumises par l'Utilisateur:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Merci d'avoir rempli ce formulaire." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Une nouvelle version de %1$s est disponible. Afficher les détails de la " "version %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or " "update now." msgstr "" "Une nouvelle version de %1$s est disponible. Afficher les détails de la " "version %3$s ou mettre à jour automatiquement." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Vous n’avez pas les droits suffisants pour installer les mises à jour de l'extension." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Erreur " #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Champs Standard" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Éléments de mise en page" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Créer un post" #: deprecated/includes/functions.php:526 #, php-format msgid "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!" msgstr "" "Merci d'attribuer une note à %sNinja Forms%s %s sur %sWordPress.org%s : votre contribution nous permettra de continuer à proposer " "ce plug-in gratuitement. Merci de la part de l’équipe WordPress/Ninja Forms !" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Afficher Titre" #: deprecated/includes/widget.php:96 deprecated/includes/admin/post-metabox.php:39 deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 deprecated/includes/fields/textbox.php:125 deprecated/includes/fields/textbox.php:173 #: includes/Widget.php:89 includes/Admin/Metaboxes/AppendAForm.php:55 includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Aucun" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formulaires" #: deprecated/includes/admin/admin.php:5 deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Tous les Formulaires" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Mise à niveau des Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Mises à jour" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importer / Exporter" #: deprecated/includes/admin/admin.php:29 includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importer / Exporter" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form Settings" #: deprecated/includes/admin/admin.php:30 deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 includes/Admin/Menus/Settings.php:25 #: includes/Config/FieldSettings.php:754 includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Réglages" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "État du système" #: deprecated/includes/admin/admin.php:32 includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Modules complémentaires" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Prévisualiser" #: deprecated/includes/admin/admin.php:178 deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 includes/Actions/Save.php:35 msgid "Save" msgstr "Sauve" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "caractère(s) restant(s)" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Ne pas afficher ces termes" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Enregistrer les options" #: deprecated/includes/admin/form-preview.php:39 includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Prévisualiser Formulaire" #: deprecated/includes/admin/notices.php:23 deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Mise à niveau vers Ninja Forms v3" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%s" msgstr "" "Vous êtes éligible à la mise à niveau vers la version Ninja Forms v3 (release candidate) ! %sEffectuer la mise à niveau maintenant" "%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "La version 3 sera bientôt disponible !" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked " "Questions.%s" msgstr "" "Une mise à jour majeure de Ninja Forms sera bientôt disponible. %sDécouvrez ses nouvelles fonctionnalités, sa compatibilité " "descendante et sa Foire aux questions/FAQ.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Comment ça va ?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:" msgstr "" "Merci d’utiliser les Ninja Forms ! Nous espérons que vous avez trouvé tout ce dont vous avez besoin, mais si vous avez des " "questions :" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Consultez notre documentation" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Demandez de l’aide" #: deprecated/includes/admin/output-tab-metabox.php:47 deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Editer l'Element du Menu" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Tout sélectionner" #: deprecated/includes/admin/post-metabox.php:12 deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Ajouter à la fin Un Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Quel nom voulez-vous donner à ce favori ?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Vous devez fournir un nom pour ce favoris." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Voulez-vous vraiment désactiver toutes les licences ?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Réinitialiser le processus de conversion de formulaires pour v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Voulez-vous supprimer toutes les données Ninja Forms lors de la désinstallation ?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Modifier le formulaire" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "sauvé" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Enregistrement..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Voulez-vous supprimer ce champ ? (Il sera supprimé même si vous n’enregistrez pas le formulaire.)" #: deprecated/includes/admin/sidebar.php:155 deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Voir les données reçues" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Traitement des Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr " Ninja Forms - Traitement" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "En cours de chargement…" #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Aucune action spécifiée…" #: deprecated/includes/admin/step-processing.php:141 deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. You will be automatically redirected when the " "process is finished." msgstr "" "Le processus a commencé, veuillez patienter (cette opération peut prendre plusieurs minutes). Lorsque le processus sera terminé, " "vous serez redirigé automatiquement." #: deprecated/includes/admin/welcome.php:42 deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Bienvenue sur Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "Thank you for updating! Ninja Forms %s makes form building easier than ever before!" msgstr "Merci pour cette mise à jour ! Avec Ninja Forms %s, la création de formulaires est plus facile que jamais !" #: deprecated/includes/admin/welcome.php:57 deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Bienvenue dans Ninja Forms !" #: deprecated/includes/admin/welcome.php:66 deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Log des changements apportés à Ninja Forms" #: deprecated/includes/admin/welcome.php:75 deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Premiers pas avec Ninja Forms" #: deprecated/includes/admin/welcome.php:84 deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Les créateurs des formulaires Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Quoi de neuf ?" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Par où commencer" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Crédits" #: deprecated/includes/admin/welcome.php:189 deprecated/includes/admin/welcome.php:283 deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Version %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Une expérience plus simple et plus puissante pour créer des formulaires." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Nouvel onglet \"Création de formulaire\"" #: deprecated/includes/admin/welcome.php:205 msgid "When creating and editing forms, go directly to the section that matters most." msgstr "Lorsque vous créez et que vous modifiez des formulaires, vous pouvez accéder directement à la section la plus pertinente." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Meilleur agencement des paramètres" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections." msgstr "" "Les paramètres les plus courants sont affichés immédiatement, alors que les paramètres secondaires sont masqués dans des sections " "développables." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Plus grande clarté" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in favor of \"Emails & Actions.\" This is a much clearer " "indication of what can be done on this tab." msgstr "" "Nous avons introduit l’onglet \"Création de formulaire\" et nous avons remplacé \"Notifications\" par \"Mails et actions\". Ces " "changements décrivent beaucoup plus clairement les actions possibles dans cet onglet." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Supprimer toutes les données Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call " "it the nuclear option." msgstr "" "Nous avons ajouté une option qui permet de supprimer toutes les données Ninja Forms (soumissions, formulaires, champs, options) " "chaque fois que vous supprimez le plug-in. Pour cette raison, nous l’appelons \"l'option atomique\"..." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Meilleure gestion des licences" #: deprecated/includes/admin/welcome.php:235 msgid "Deactivate Ninja Forms extension licenses individually or as a group from the settings tab." msgstr "Dans l’onglet Paramètres, vous pouvez désactiver les licences des extension Ninja Formes individuellement ou en groupe." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "D'autres changements sont prévus..." #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on " "these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Les modifications apportées à l'interface de cette version annoncent d'importantes améliorations à l’avenir. La version 3.0 " "s’appuiera sur ces changements pour faire de Ninja Forms un générateur de formes encore plus stable, plus puissant et plus " "ergonomique." #: deprecated/includes/admin/welcome.php:250 deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Documentation" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Pour plus de détails, consultez notre documentation Ninja Forms (ci-dessous)." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Documentation Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Obtenir de l’aide" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Retour à Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Voir le journal complet des changements" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Journal complet" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Aller à Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "Use the tips below to get started using Ninja Forms. You will be up and running in no time!" msgstr "" "Pour vos premiers pas avec Ninja Forms, utilisez les conseils présentés ci-dessous Vous serez opérationnel très rapidement !" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Pour tout savoir sur les formulaires" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you " "have an example. You can also create your own by clicking %sAdd New%s." msgstr "" "Le menu \"Formulaires\" est votre point d’accès pour toutes les activités Ninja Forms. Pour vous permettre de consulter un " "exemple, nous avons créé votre premier %sformulaire de contact%s. Pour créer un autre formulaire, il suffit de cliquer sur " "%sNouveau formulaire%s." #: deprecated/includes/admin/welcome.php:329 deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Créez votre formulaire" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will " "have an assortment of options such as label, label position, and placeholder." msgstr "" "Dans cette page, vous pouvez créer un formulaire en ajoutant des champs (vous pouvez faire glisser les champs à l'emplacement " "d'affichage de votre choix). Chaque champ est associé à différentes options telles que Label, Position du label, Espace réservé, " "etc." #: deprecated/includes/admin/welcome.php:332 includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Mails et actions" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can " "create an unlimited number of emails, including emails sent to the user who filled out the form." msgstr "" "Si vous souhaitez que votre formulaire vous avertisse par mail chaque fois qu’un utilisateur clique sur \"Soumettre\", vous " "pouvez le configurer dans cet onglet. Vous pouvez créer un nombre illimité de mails, y compris les mails envoyés aux utilisateurs " "qui remplissent le formulaire." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it " "is successfully completed." msgstr "" "Cet onglet reçoit les paramètres généraux (par exemple, titre et méthode de la soumission) et les paramètres d'affichage (par " "exemple, masquer un formulaire qui a été rempli complètement et correctement)." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Afficher le formulaire" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Insérer le formulaire dans une page" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended " "to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar." msgstr "" "Dans la section \"Comportement du formulaire\" des \"Paramètres du formulaire\", vous pouvez sélectionner la page dans laquelle " "le formulaire doit être inséré automatiquement (à la suite du contenu de cette page). Une option similaire est disponible dans " "chaque écran de modification de contenu (dans la barre latérale)." #: deprecated/includes/admin/welcome.php:355 deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Shortcode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts " "content." msgstr "" "Vous pouvez insérer %s dans toute zone qui accepte les shortcodes d'affichage de formulaire – y compris dans votre contenu de " "page ou de post." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like " "displayed in that space." msgstr "" "Ninja Forms propose un widget que vous pouvez placer dans n’importe quelle zone (supportant les widgets) de votre site et qui " "vous permet de sélectionner le formulaire que vous souhaitez faire apparaître dans cette zone." #: deprecated/includes/admin/welcome.php:369 deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Fonction de Template" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "Ninja Forms also comes with a simple template function that can be placed directly into a php template file. %s" msgstr "Ninja Forms propose également un modèle simplifié qui peut être inséré directement dans un fichier de modèle PHP.%s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Besoin d'aide ?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Documentation complète" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being " "added." msgstr "" "Une documentation très complète est disponible. Elle traite de tous les sujets – du %sDépannage%s à %sl'API pour développeurs%s. " "Cette documentation est enrichie en permanence." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Excellent support technique" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, " "%splease contact us%s." msgstr "" "Nous faisons tout le nécessaire pour que chaque utilisateur de Ninja Forms bénéficie du meilleur support technique possible. Si " "vous rencontrez une difficulté (ou si vous avez une question), n'hésitez pas à %snous contacter%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable " "one!" msgstr "" "Merci d'avoir effectué la mise à niveau vers la version la plus récente ! Ninja Forms %s a été conçu pour vous proposer la " "meilleure expérience possible en matière de gestion des soumissions !" #: deprecated/includes/admin/welcome.php:418 msgid "Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms a été créé par une équipe internationale de développeurs qui s'efforcent de proposer à la communauté WordPress le " "meilleur plug-in possible en matière de création de formulaires." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Aucun journal des changements valide n'a été trouvé." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Afficher l’%s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Désactiver la saisie semi-automatique du navigateur" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "Valeur de calcul %ssélectionnée%s" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Valeur qui sera utilisée si elle est %scochée%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "Valeur de calcul %snon sélectionnée%s" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Valeur qui sera utilisée si elle n’est pas %scochée%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Inclure le total automatique? (Si activé)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Classes CSS personnalisées" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Avant tout le contenu" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Avant le label" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Après le label" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Après tout le contenu" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark " "will show the desc text." msgstr "" "Si \"desc text\" (texte descriptif) est activé, un point d’interrogation (%s) est affiché à côté du champ d’entrée. Si vous " "survolez ce point d’interrogation avec la souris, le texte descriptif s’affiche." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Ajouter une description" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Position de la description" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Contenu de la description" #: deprecated/includes/admin/edit-field/help.php:32 deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark " "will show the help text." msgstr "" "Si \"aide textuelle\" est activée, il y a aura un point d'interrogation %s placé juste à coté du champ. Placez votre curseur " "souris au-dessus de ce dernier afin d'afficher l'aide contextuelle." #: deprecated/includes/admin/edit-field/help.php:33 deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Affichage Aide Textuelle" #: deprecated/includes/admin/edit-field/help.php:37 deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Texte d'Aide" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Si vous laissez ce champ vide, aucune limite ne sera imposée" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limiter les entrées à cette valeur" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "de" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Caractères" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Mots" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Texte qui apparaîtra à côté du compteur de caractères/de mots" #: deprecated/includes/admin/edit-field/label.php:39 deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 includes/Config/FieldSettings.php:50 includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Gauche de l'Element" #: deprecated/includes/admin/edit-field/label.php:40 deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 includes/Config/FieldSettings.php:42 includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Au-dessus de l'Element" #: deprecated/includes/admin/edit-field/label.php:41 deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 includes/Config/FieldSettings.php:46 includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "En-bas de l'Element" #: deprecated/includes/admin/edit-field/label.php:42 deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 includes/Config/FieldSettings.php:54 includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "A droite de l'Element" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "A l'Intérieur de l'Element" #: deprecated/includes/admin/edit-field/label.php:56 deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Position de Titre" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Section ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Paramètres de restriction" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Paramètres de Calcul" #: deprecated/includes/admin/edit-field/li.php:506 deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Supprimer" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Remplir ce champ avec la taxonomie" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Aucun" #: deprecated/includes/admin/edit-field/placeholder.php:19 includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Etiquette" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Requis" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Sauver les Paramètres du Champ" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Trier dans l'ordre numérique" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "If this box is checked, this column in the submissions table will sort by number." msgstr "Si vous cochez cette case, cette colonne du tableau des soumissions sera triée dans l'ordre numérique." #: deprecated/includes/admin/edit-field/sub-settings.php:68 includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Libellé de l’admin" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Label utilisé lors des opérations relatives aux soumissions (consultation/modification/export)." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Facturation" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 includes/Database/MockData.php:724 #: includes/Database/MockData.php:925 includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Livraison" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 deprecated/includes/fields/textbox.php:135 deprecated/includes/fields/textbox.php:177 #: includes/Actions/Custom.php:35 includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Personnalisé" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Groupe de champs d’infos utilisateur" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Groupe de champs personnalisés" #: deprecated/includes/admin/pages/system-status-html.php:3 includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Veuillez inclure cette information lorsque vous contactez le support :" #: deprecated/includes/admin/pages/system-status-html.php:4 includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Obtenir le rapport système" #: deprecated/includes/admin/pages/system-status-html.php:12 includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Environnement" #: deprecated/includes/admin/pages/system-status-html.php:17 includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL de l'accueil" #: deprecated/includes/admin/pages/system-status-html.php:21 includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL du site" #: deprecated/includes/admin/pages/system-status-html.php:25 includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Version de Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Version WP" #: deprecated/includes/admin/pages/system-status-html.php:33 includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite activé" #: deprecated/includes/admin/pages/system-status-html.php:34 deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Oui" #: deprecated/includes/admin/pages/system-status-html.php:34 deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Non" #: deprecated/includes/admin/pages/system-status-html.php:37 includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Infos Serveur Web" #: deprecated/includes/admin/pages/system-status-html.php:41 includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Version PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Version MySQL" #: deprecated/includes/admin/pages/system-status-html.php:55 includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Locale" #: deprecated/includes/admin/pages/system-status-html.php:64 includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Limite de mémoire WP" #: deprecated/includes/admin/pages/system-status-html.php:72 includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Mode débogage WP" #: deprecated/includes/admin/pages/system-status-html.php:76 includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP Langue" #: deprecated/includes/admin/pages/system-status-html.php:77 includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Défaut" #: deprecated/includes/admin/pages/system-status-html.php:80 includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Téléchargement max." #: deprecated/includes/admin/pages/system-status-html.php:85 includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP taille maximale d'envoi" #: deprecated/includes/admin/pages/system-status-html.php:89 includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Nombre max d’entrées imbriquées" #: deprecated/includes/admin/pages/system-status-html.php:93 includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "Limite de temps PHP" #: deprecated/includes/admin/pages/system-status-html.php:97 includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN installé" #: deprecated/includes/admin/pages/system-status-html.php:105 includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Fuseau horaire par défaut" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Le fuseau horaire par défaut est %s - Il devrait être UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Le fuseau horaire par défaut est %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Votre serveur a fsockopen et cURL activés." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Votre serveur a fsockopen actif, cURL est désactivé." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Votre serveur a cURL actif, fsockopen est désactivé." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not " "work. Contact your hosting provider." msgstr "" "Votre serveur n'a pas fsockopen ou cURL actifs - Paypal IPN et les autres scripts qui communiquent avec d'autres serveurs ne " "fonctionneront pas. Contacter votre hébergeur." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Votre serveur a le client SOAP activé." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected." msgstr "" "La classe %sSOAP Client%s n'est pas activée sur votre serveur. Certains plug-ins de passerelle qui utilisent SOAP risquent de ne " "pas fonctionner correctement." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Publication Distante" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() est un succès - PayPal IPN fonctionne." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:" msgstr "wp_remote_post() est un échec. PayPal IPN ne fonctionnera pas sur votre serveur. Contactez votre hébergeur. Erreur : " #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() est un échec. PayPal IPN ne devrait pas fonctionner sur votre serveur." #: deprecated/includes/admin/pages/system-status-html.php:178 includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Extensions" #: deprecated/includes/admin/pages/system-status-html.php:183 includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Extensions installées" #: deprecated/includes/admin/pages/system-status-html.php:203 includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visiter la page de l'extension" #: deprecated/includes/admin/pages/system-status-html.php:206 includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "par" #: deprecated/includes/admin/pages/system-status-html.php:206 includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "version" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Donnez un titre à votre formulaire. Cette information vous permettra de retrouver le formulaire par la suite." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Vous n’avez pas inséré de bouton \"Soumettre\" dans votre formulaire." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Masque d'entrée" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list below will be automatically entered for the user as " "they type and will not be removeable" msgstr "" "Quel que soit le caractère que vous placiez dans un \"masque personnalisé\" qui n'est pas dans la liste plus bas sera " "automatiquement encodé pour l'utilisateur lorsqu'il tapera au clavier et ne sera pas supprimante" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Voici les caractères prédéfinis de masque" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered" msgstr "a - Représente un caractère alpha (A-Z,a-z) - Cela permet d'accepter seulement les lettres à être entrées" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "9 - Représente un caractère numérique (0-9) - Cela permet d'accepter seulement les nombres à être entrés" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered" msgstr "" "* - Représente un caractère alpha-numérique (A-Z,a-z,0-9) - Cela permet d'accepter aussi bien les lettres et les nombres à être " "encodés" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "So, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the box" msgstr "" "Par exemple, un utilisateur qui voudrait créer un masque pour des numéros de sécurité sociale américains devrait taper " "99-999-9999 dans ce champ" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "The 9s would represent any number, and the -s would be automatically added" msgstr "Les 9 représenteraient n'importe quel nombre, et les '-' seraient automatiquement ajoutés" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Ceci empêcherait l'utilisateur d'encoder autre chose que des nombres" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Vous pouvez aussi combiner ceci pour des applications spécifiques" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which " "would force all the a's to be letters and the 9s to be numbers" msgstr "" "Par exemple, si vous aviez une clé de produit qui était sous le format A4B51.989.B.43C, you pourriez créer le masque suivant: " "a9a99.999.a.99a, ce qui forcerait tous les 'a' à être des lettres et les 9 des nombres" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Champs définis" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Champs Favoris" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Champs de paiement" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Champs du modèle" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Information de l'utilisateur" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Tout" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Actions Groupées" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Exécuter" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formulaires Par Page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Aller" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Aller à la première page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Aller à la page précédente" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Page courante" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Aller à la page suivante" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Aller à la dernière page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Titre du Formulaire" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Supprimer ce formulaire" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Formulaire en double" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formulaires Supprimés" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formulaire Supprimé" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Prévisualiser Formulaire" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Afficher" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Afficher Titre du Formulaire" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Ajouter le formulaire dans cette page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Soumettre via AJAX (sans recharger la page) ?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Vider formulaire compléter avec succès?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 includes/Config/FormDisplaySettings.php:44 msgid "If this box is checked, Ninja Forms will clear the form values after it has been successfully submitted." msgstr "" "Si cette case est cochée, le logiciel Ninja Forms efface les valeurs du formulaire dès que l'envoi de ce dernier a été effectué " "avec succès." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Cacher formulaire complété avec succès?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 includes/Config/FormDisplaySettings.php:58 msgid "If this box is checked, Ninja Forms will hide the form after it has been successfully submitted." msgstr "Si cette case est cochée, Ninja Forms cachera le formulaire après qu'il ai été soumis avec succès." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Restrictions" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Voulez-vous que l’utilisateur soit connecté pour afficher ce formulaire ?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Message d'utilisateur non connecté" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "Message shown to users if the \"logged in\" checkbox above is checked and they are not logged-in." msgstr "Message qui s’affiche si la case \"Connecté\" (ci-dessus) est cochée et que l’utilisateur n'est pas connecté." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limiter les envois" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "Select the number of submissions that this form will accept. Leave empty for no limit." msgstr "Sélectionnez le nombre de soumissions que ce formulaire acceptera (laissez vide pour un nombre illimité)." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Message pour limite atteinte" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached its submission limit and will not accept new " "submissions." msgstr "" "Entrez le message que vous souhaitez afficher lorsque ce formulaire a atteint le nombre maximum de soumissions et n'accepte plus " "de nouvelles présentations." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Paramètres de Formulaire Sauvés" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Paramètres de Base" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "L'aide de base de Ninja Forms se trouve ici." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Etendre Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentation disponible bientôt." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Actif" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Installé" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "En apprendre plus" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backuper / Restaurer" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Sauvegarder Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Restaurer Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Données restaurées avec succès!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importer les Champs Favoris" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Sélectionner un fichier" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importer les Favoris" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "Aucun Champs Favoris Trouvés" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Exporter Champs Favoris" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Exporter Champs" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Veuillez sélectionner les champs favoris à exporter." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoris importés avec succès." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Veuillez sélectionner un fichier valide contenant des champs favoris." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importer un formulaire" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importer Formulaire" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Exporter un formulaire" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Exporter Formulaire" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Veuillez sélectionner un formulaire" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formulaire Importé avec Succès." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Veuillez sélectionner un fichier valide de formulaire exporté." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importer / Exporter les données Soumises" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Paramètres de Date" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Général" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Paramètres Généraux" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Version" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Format de Date" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "Tries to follow the %sPHP date() function%s specifications, but not every format is supported." msgstr "Essaie de suivre les spécifications de la fonction %sPHP date()%s, mais certains formats ne sont pas supportés." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Symbole Monétaire" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Reglages reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Clé de site reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Pour associer une clé de site à votre nom de domaine, enregistrez-vous %sici%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Clé secrète reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Langue de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "Langue utilisée dans l’interface reCAPTCHA Pour déterminer le code associé à votre langue, cliquez %sici%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will " "be unrecoverable.%s" msgstr "" "Si cette case est cochée, la désinstallation supprimera toutes les données Ninja Forms. %sLes données des formulaires et des " "soumissions ne pourront plus être récupérées.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Désactiver les notifications aux administrateurs" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again." msgstr "" "Pour ne plus jamais voir une notification d'administrateur sur le tableau de bord des Ninja Forms. Pour réafficher ces " "notifications, il suffit de décocher la case." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It " "cannot be undone." msgstr "" "Ce paramètre supprime définitivement toutes les données relatives aux Ninja formes lors de la suppression des plug-ins (y compris " "les formulaires et les soumissions). Cette action ne peut pas être défaite." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Continuer" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Paramètres sauvés" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Titres" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Titres de Message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Titre de Champ Obligatoire" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Champ symbole obligaoire" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Message d'erreur à afficher si tous les champs obligatoires ne sont pas complétés" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Champ Erreur Obligatoire" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Message d'erreur anti-spam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Message d’erreur Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Message d’erreur du temporisateur" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Message d’erreur \"JavaScript désactivé\"" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Veuillez entrer une adresse e-mail valide" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Label de traitement de soumission" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "This message is shown inside the submit button whenever a user clicks \"submit\" to let them know it is processing." msgstr "" "Ce message s’affiche dans le bouton \"Soumettre\" chaque fois qu’un utilisateur clique sur ce bouton (pour indiquer que la " "soumission est en cours de traitement)." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Label pour saisies de mot de passe différentes" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "This message is shown to a user when non-matching values are placed in the password field." msgstr "Ce message s’affiche si l’utilisateur n'entre pas des valeurs identiques dans les deux champs de mot de passe." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licences" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Enregistrer et activer" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Désactiver toutes les licences" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings " "will then appear below." msgstr "" "Pour activer les licences associées aux extensions Ninja Forms, vous devez d'abord %sinstaller et activer%s l'extension choisie. " "Les paramètres de licence apparaîtront ensuite ci-dessous." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Convertir les formulaires" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Convertir les formulaires" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. " "All current forms will remain in the \"All Forms\" table." msgstr "" "Si vos anciens formulaires ont disparu après la mise à jour à la version v2.9, ce bouton peut essayer de les convertir pour les " "faire apparaître dans la version 2.9. Les formulaires actuels seront conservés dans le tableau \"Tous les formulaires\"." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "All current forms will remain in the \"All Forms\" table. In some cases some forms may be duplicated during this process." msgstr "" "Les formulaires actuels seront conservés dans le tableau \"Tous les formulaires\". Dans certains cas, ce processus génère des " "formulaires en double." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Adresse de contact de l’administrateur" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "E-mail utilisateur" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade." msgstr "Ninja Forms doit mettre à niveau vos notifications de formulaire : cliquez %sici%s pour lancer cette mise à niveau." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "Ninja Forms needs to update your email settings, click %shere%s to start the upgrade." msgstr "Ninja Forms doit mettre à niveau vos paramètres de messagerie : cliquez %sici%s pour lancer cette mise à niveau." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade." msgstr "Ninja Forms doit mettre à niveau le tableau des soumissions : cliquez %sici%s pour lancer cette mise à niveau." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from " msgstr "" "Merci d'avoir effectué la mise à jour vers la version 2.7 de Ninja Forms. Vous devez mettre à jour les extensions Ninja Forms à " "partir de " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least " "version 1.3.5. Please update this extension at " msgstr "" "Votre version de l’extension Ninja Forms File Upload n’est pas compatible avec la version 2.7 de Ninja Forms. Vous devez utiliser " "au moins la version 1.3.5. Vous devez mettre à jour cette extension à partir de la page : " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least " "version 1.1.3. Please update this extension at " msgstr "" "Votre version de l’extension Ninja Forms Save Progress n’est pas compatible avec la version 2.7 de Ninja Forms. Vous devez " "utiliser au moins la version 1.1.3. Vous devez mettre à jour cette extension à partir de la page : " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Mise à jour de la base de données des formulaires" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade." msgstr "Ninja Forms doit mettre à niveau vos paramètres de formulaires : cliquez %sici%s pour lancer cette mise à niveau." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Exécution de la mise à niveau de Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "%sContactez le support technique%s en mentionnant l'erreur affichée ci-dessus." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms a exécuté toutes les mises à niveau disponibles !" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Aller aux formulaires" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Mise à niveau de Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Mettre à jour" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Toutes les mises à niveau ont été effectuées" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%s" msgstr "Ninja Forms doit exécuter %s mise(s) à niveau. Cette opération peut prendre plusieurs minutes. %sLancer la mise à niveau%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Étape %d sur %d en cours d'exécution" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "État de l'environnement Ninja Forms" #: deprecated/includes/display/scripts.php:274 deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Indicateur de niveau de sécurité" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Très faible" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Faible" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Moyen [ sécurité mot de passe ]" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Fort" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Ne correspond pas" #: deprecated/includes/display/fields/list-term-filter.php:51 deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "Sélectionnez une valeur" #: deprecated/includes/display/form/honeypot.php:14 deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Si vous êtes un être humain et que vous voyez ce champ, merci de le laisser vide." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Les champs avec un * sont obligatoires." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Ce champs est requis." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Veuillez vérifier ces champs obligatoires." #: deprecated/includes/fields/calc.php:10 deprecated/includes/fields/calc.php:70 deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Type de calcul" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Nombre de décimales." #: deprecated/includes/fields/calc.php:94 deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Boite de texte" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Afficher calcul en tant que" #: deprecated/includes/fields/calc.php:113 deprecated/includes/fields/list.php:98 deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Libellé" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Désactiver entrée?" #: deprecated/includes/fields/calc.php:151 msgid "Use the following shortcode to insert the final calculation: [ninja_forms_calc]" msgstr "Utilisez le shortcode suivant pour insérer le calcul final: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + " "field_28 + field_65%s." msgstr "" "Vous pouvez entrer des équations mathématiques ici en utilisant field_x (où x est l’identifiant du champ à utiliser). Par " "exemple, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "Complex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s." msgstr "" "Vous pouvez créer des équations complexes en utilisant des parenthèses, par exemple :\n" "%s(field_45 * field_2) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0." msgstr "Veuillez utiliser ces opérateurs: + - * /. Ceci est une fonction avancée. Vérifiez de ne pas faire de division par zéro." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Calculer Automatiquement les Totaux" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Spécifier les Opérations Et les Champs (Avancé)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Utiliser Une Equation (Avancé)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Méthode de Calcul" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Opérations de Champ" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Ajouter Opération" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Equation Avancée" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Nom du Calcul" #: deprecated/includes/fields/calc.php:238 msgid "This is the programmatic name of your field. Examples are: my_calc, price_total, user-total." msgstr "Ceci est le nom interne de votre champ. Exemples: mon_calc, prix_total, utilisateur_total." #: deprecated/includes/fields/calc.php:239 deprecated/includes/fields/checkbox.php:19 deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 deprecated/includes/fields/number.php:69 deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 deprecated/includes/fields/textbox.php:122 includes/Config/FieldSettings.php:129 #: includes/Config/FieldSettings.php:326 includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Valeur par Défaut" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Class CSS personnalisées" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Sélectionner un Champ" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Case à cocher" #: deprecated/includes/fields/checkbox.php:10 includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Décoché" #: deprecated/includes/fields/checkbox.php:14 includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Coché" #: deprecated/includes/fields/checkbox.php:44 deprecated/includes/fields/list.php:35 deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Afficher" #: deprecated/includes/fields/checkbox.php:49 deprecated/includes/fields/list.php:40 deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Masquer" #: deprecated/includes/fields/checkbox.php:54 deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Changer la valeur" #: deprecated/includes/fields/country.php:12 deprecated/includes/fields/country.php:315 includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 deprecated/includes/fields/country.php:316 includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albanie" #: deprecated/includes/fields/country.php:14 deprecated/includes/fields/country.php:317 includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algérie" #: deprecated/includes/fields/country.php:15 deprecated/includes/fields/country.php:318 includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "American Samoa" #: deprecated/includes/fields/country.php:16 deprecated/includes/fields/country.php:319 includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorre" #: deprecated/includes/fields/country.php:17 deprecated/includes/fields/country.php:320 includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 deprecated/includes/fields/country.php:321 includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 deprecated/includes/fields/country.php:322 includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarctique" #: deprecated/includes/fields/country.php:20 deprecated/includes/fields/country.php:323 includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua-et-Barbuda" #: deprecated/includes/fields/country.php:21 deprecated/includes/fields/country.php:324 includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentine" #: deprecated/includes/fields/country.php:22 deprecated/includes/fields/country.php:325 includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Arménie" #: deprecated/includes/fields/country.php:23 deprecated/includes/fields/country.php:326 includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 deprecated/includes/fields/country.php:327 includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australie" #: deprecated/includes/fields/country.php:25 deprecated/includes/fields/country.php:328 includes/Config/CountryList.php:24 msgid "Austria" msgstr "Autriche" #: deprecated/includes/fields/country.php:26 deprecated/includes/fields/country.php:329 includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 deprecated/includes/fields/country.php:330 includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 deprecated/includes/fields/country.php:331 includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 deprecated/includes/fields/country.php:332 includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 deprecated/includes/fields/country.php:333 includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbades" #: deprecated/includes/fields/country.php:31 deprecated/includes/fields/country.php:334 includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Biélorussie" #: deprecated/includes/fields/country.php:32 deprecated/includes/fields/country.php:335 includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgique" #: deprecated/includes/fields/country.php:33 deprecated/includes/fields/country.php:336 includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 deprecated/includes/fields/country.php:337 includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 deprecated/includes/fields/country.php:338 includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermudes" #: deprecated/includes/fields/country.php:36 deprecated/includes/fields/country.php:339 includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 deprecated/includes/fields/country.php:340 includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivie" #: deprecated/includes/fields/country.php:38 deprecated/includes/fields/country.php:341 includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnie-Herzégovine" #: deprecated/includes/fields/country.php:39 deprecated/includes/fields/country.php:342 includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 deprecated/includes/fields/country.php:343 includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Île Bouvet" #: deprecated/includes/fields/country.php:41 deprecated/includes/fields/country.php:344 includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brésil" #: deprecated/includes/fields/country.php:42 deprecated/includes/fields/country.php:345 includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Territoire britannique de l'océan Indien" #: deprecated/includes/fields/country.php:43 deprecated/includes/fields/country.php:346 includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 deprecated/includes/fields/country.php:347 includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgarie" #: deprecated/includes/fields/country.php:45 deprecated/includes/fields/country.php:348 includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 deprecated/includes/fields/country.php:349 includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 deprecated/includes/fields/country.php:350 includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambodge" #: deprecated/includes/fields/country.php:48 deprecated/includes/fields/country.php:351 includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Cameroun" #: deprecated/includes/fields/country.php:49 deprecated/includes/fields/country.php:352 includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 deprecated/includes/fields/country.php:353 includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cap Vert" #: deprecated/includes/fields/country.php:51 deprecated/includes/fields/country.php:354 includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Îles Caïmans" #: deprecated/includes/fields/country.php:52 deprecated/includes/fields/country.php:355 includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "République Centrafricaine" #: deprecated/includes/fields/country.php:53 deprecated/includes/fields/country.php:356 includes/Config/CountryList.php:52 msgid "Chad" msgstr "Tchad" #: deprecated/includes/fields/country.php:54 deprecated/includes/fields/country.php:357 includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chili" #: deprecated/includes/fields/country.php:55 deprecated/includes/fields/country.php:358 includes/Config/CountryList.php:54 msgid "China" msgstr "Chine" #: deprecated/includes/fields/country.php:56 deprecated/includes/fields/country.php:359 includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Island" #: deprecated/includes/fields/country.php:57 deprecated/includes/fields/country.php:360 includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Îles Cocos" #: deprecated/includes/fields/country.php:58 deprecated/includes/fields/country.php:361 includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombie" #: deprecated/includes/fields/country.php:59 deprecated/includes/fields/country.php:362 includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comores" #: deprecated/includes/fields/country.php:60 deprecated/includes/fields/country.php:363 includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 deprecated/includes/fields/country.php:364 includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "République Démocratique du Congo" #: deprecated/includes/fields/country.php:62 deprecated/includes/fields/country.php:365 includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Îles Cook" #: deprecated/includes/fields/country.php:63 deprecated/includes/fields/country.php:366 includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 deprecated/includes/fields/country.php:367 includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Cote d'Ivoire" #: deprecated/includes/fields/country.php:65 deprecated/includes/fields/country.php:368 includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croatie" #: deprecated/includes/fields/country.php:66 deprecated/includes/fields/country.php:369 includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 deprecated/includes/fields/country.php:370 includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Chypre" #: deprecated/includes/fields/country.php:68 deprecated/includes/fields/country.php:371 includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "République Tchèque" #: deprecated/includes/fields/country.php:69 deprecated/includes/fields/country.php:372 includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Danemark" #: deprecated/includes/fields/country.php:70 deprecated/includes/fields/country.php:373 includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 deprecated/includes/fields/country.php:374 includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominique" #: deprecated/includes/fields/country.php:72 deprecated/includes/fields/country.php:375 includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "République Dominicaine" #: deprecated/includes/fields/country.php:73 deprecated/includes/fields/country.php:376 includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor oriental" #: deprecated/includes/fields/country.php:74 deprecated/includes/fields/country.php:377 includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Équateur" #: deprecated/includes/fields/country.php:75 deprecated/includes/fields/country.php:378 includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Égypte" #: deprecated/includes/fields/country.php:76 deprecated/includes/fields/country.php:379 includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "Salvador" #: deprecated/includes/fields/country.php:77 deprecated/includes/fields/country.php:380 includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Guinée équatoriale" #: deprecated/includes/fields/country.php:78 deprecated/includes/fields/country.php:381 includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Erythrée" #: deprecated/includes/fields/country.php:79 deprecated/includes/fields/country.php:382 includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonie" #: deprecated/includes/fields/country.php:80 deprecated/includes/fields/country.php:383 includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Éthiopie" #: deprecated/includes/fields/country.php:81 deprecated/includes/fields/country.php:384 includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Îles Falkland (Maldives)" #: deprecated/includes/fields/country.php:82 deprecated/includes/fields/country.php:385 includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Îles Féroé" #: deprecated/includes/fields/country.php:83 deprecated/includes/fields/country.php:386 includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 deprecated/includes/fields/country.php:387 includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlande" #: deprecated/includes/fields/country.php:85 deprecated/includes/fields/country.php:388 includes/Config/CountryList.php:84 msgid "France" msgstr "France" #: deprecated/includes/fields/country.php:86 deprecated/includes/fields/country.php:389 includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "France métropolitaine" #: deprecated/includes/fields/country.php:87 deprecated/includes/fields/country.php:390 includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Guyane Française" #: deprecated/includes/fields/country.php:88 deprecated/includes/fields/country.php:391 includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polynésie Française" #: deprecated/includes/fields/country.php:89 deprecated/includes/fields/country.php:392 includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Terres Australes Françaises" #: deprecated/includes/fields/country.php:90 deprecated/includes/fields/country.php:393 includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 deprecated/includes/fields/country.php:394 includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambie" #: deprecated/includes/fields/country.php:92 deprecated/includes/fields/country.php:395 includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Géorgie" #: deprecated/includes/fields/country.php:93 deprecated/includes/fields/country.php:396 includes/Config/CountryList.php:92 msgid "Germany" msgstr "Allemagne" #: deprecated/includes/fields/country.php:94 deprecated/includes/fields/country.php:397 includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 deprecated/includes/fields/country.php:398 includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 deprecated/includes/fields/country.php:399 includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grèce" #: deprecated/includes/fields/country.php:97 deprecated/includes/fields/country.php:400 includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Groenland" #: deprecated/includes/fields/country.php:98 deprecated/includes/fields/country.php:401 includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenade" #: deprecated/includes/fields/country.php:99 deprecated/includes/fields/country.php:402 includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 deprecated/includes/fields/country.php:403 includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 deprecated/includes/fields/country.php:404 includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 deprecated/includes/fields/country.php:405 includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinée" #: deprecated/includes/fields/country.php:103 deprecated/includes/fields/country.php:406 includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinée-Bissau" #: deprecated/includes/fields/country.php:104 deprecated/includes/fields/country.php:407 includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyane" #: deprecated/includes/fields/country.php:105 deprecated/includes/fields/country.php:408 includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 deprecated/includes/fields/country.php:409 includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Îles McDonald et Heard" #: deprecated/includes/fields/country.php:107 deprecated/includes/fields/country.php:410 includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Cité du Vatican" #: deprecated/includes/fields/country.php:108 deprecated/includes/fields/country.php:411 includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 deprecated/includes/fields/country.php:412 includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 deprecated/includes/fields/country.php:413 includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hongrie" #: deprecated/includes/fields/country.php:111 deprecated/includes/fields/country.php:414 includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islande" #: deprecated/includes/fields/country.php:112 deprecated/includes/fields/country.php:415 includes/Config/CountryList.php:111 msgid "India" msgstr "Inde" #: deprecated/includes/fields/country.php:113 deprecated/includes/fields/country.php:416 includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonésie" #: deprecated/includes/fields/country.php:114 deprecated/includes/fields/country.php:417 includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "République islamique d'Iran" #: deprecated/includes/fields/country.php:115 deprecated/includes/fields/country.php:418 includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraq" #: deprecated/includes/fields/country.php:116 deprecated/includes/fields/country.php:419 includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlande" #: deprecated/includes/fields/country.php:117 deprecated/includes/fields/country.php:420 includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israël" #: deprecated/includes/fields/country.php:118 deprecated/includes/fields/country.php:421 includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italie" #: deprecated/includes/fields/country.php:119 deprecated/includes/fields/country.php:422 includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaïque" #: deprecated/includes/fields/country.php:120 deprecated/includes/fields/country.php:423 includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japon" #: deprecated/includes/fields/country.php:121 deprecated/includes/fields/country.php:424 includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordanie" #: deprecated/includes/fields/country.php:122 deprecated/includes/fields/country.php:425 includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakhstan" #: deprecated/includes/fields/country.php:123 deprecated/includes/fields/country.php:426 includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 deprecated/includes/fields/country.php:427 includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 deprecated/includes/fields/country.php:428 includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "République populaire démocratique de Corée" #: deprecated/includes/fields/country.php:126 deprecated/includes/fields/country.php:429 includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "République de Corée" #: deprecated/includes/fields/country.php:127 deprecated/includes/fields/country.php:430 includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Koweït" #: deprecated/includes/fields/country.php:128 deprecated/includes/fields/country.php:431 includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirghizistan" #: deprecated/includes/fields/country.php:129 deprecated/includes/fields/country.php:432 includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "République Démocratique Populaire Lao" #: deprecated/includes/fields/country.php:130 deprecated/includes/fields/country.php:433 includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Lettonie" #: deprecated/includes/fields/country.php:131 deprecated/includes/fields/country.php:434 includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Liban" #: deprecated/includes/fields/country.php:132 deprecated/includes/fields/country.php:435 includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 deprecated/includes/fields/country.php:436 includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 deprecated/includes/fields/country.php:437 includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Émirats Arabes Unis" #: deprecated/includes/fields/country.php:135 deprecated/includes/fields/country.php:438 includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 deprecated/includes/fields/country.php:439 includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lituanie" #: deprecated/includes/fields/country.php:137 deprecated/includes/fields/country.php:440 includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxembourg" #: deprecated/includes/fields/country.php:138 deprecated/includes/fields/country.php:441 includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macao" #: deprecated/includes/fields/country.php:139 deprecated/includes/fields/country.php:442 includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Ancienne république yougoslave de Macédoine (FYROM)" #: deprecated/includes/fields/country.php:140 deprecated/includes/fields/country.php:443 includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 deprecated/includes/fields/country.php:444 includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 deprecated/includes/fields/country.php:445 includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaisie" #: deprecated/includes/fields/country.php:143 deprecated/includes/fields/country.php:446 includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldives" #: deprecated/includes/fields/country.php:144 deprecated/includes/fields/country.php:447 includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 deprecated/includes/fields/country.php:448 includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malte" #: deprecated/includes/fields/country.php:146 deprecated/includes/fields/country.php:449 includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Îles Marshall" #: deprecated/includes/fields/country.php:147 deprecated/includes/fields/country.php:450 includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 deprecated/includes/fields/country.php:451 includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritanie" #: deprecated/includes/fields/country.php:149 deprecated/includes/fields/country.php:452 includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Maurice" #: deprecated/includes/fields/country.php:150 deprecated/includes/fields/country.php:453 includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 deprecated/includes/fields/country.php:454 includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexique" #: deprecated/includes/fields/country.php:152 deprecated/includes/fields/country.php:455 includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Micronésie, États Fédérés de" #: deprecated/includes/fields/country.php:153 deprecated/includes/fields/country.php:456 includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "République de Moldavie" #: deprecated/includes/fields/country.php:154 deprecated/includes/fields/country.php:457 includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 deprecated/includes/fields/country.php:458 includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolie" #: deprecated/includes/fields/country.php:156 deprecated/includes/fields/country.php:459 includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 deprecated/includes/fields/country.php:460 includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 deprecated/includes/fields/country.php:461 includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Maroc" #: deprecated/includes/fields/country.php:159 deprecated/includes/fields/country.php:462 includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 deprecated/includes/fields/country.php:463 includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 deprecated/includes/fields/country.php:464 includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibie" #: deprecated/includes/fields/country.php:162 deprecated/includes/fields/country.php:465 includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 deprecated/includes/fields/country.php:466 includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Népal" #: deprecated/includes/fields/country.php:164 deprecated/includes/fields/country.php:467 includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Pays-Bas" #: deprecated/includes/fields/country.php:165 deprecated/includes/fields/country.php:468 includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antilles Néerlandaises" #: deprecated/includes/fields/country.php:166 deprecated/includes/fields/country.php:469 includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nouvelle-Calédonie" #: deprecated/includes/fields/country.php:167 deprecated/includes/fields/country.php:470 includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nouvelle-Zélande" #: deprecated/includes/fields/country.php:168 deprecated/includes/fields/country.php:471 includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 deprecated/includes/fields/country.php:472 includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 deprecated/includes/fields/country.php:473 includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 deprecated/includes/fields/country.php:474 includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 deprecated/includes/fields/country.php:475 includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Île Norfolk" #: deprecated/includes/fields/country.php:173 deprecated/includes/fields/country.php:476 includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: deprecated/includes/fields/country.php:174 deprecated/includes/fields/country.php:477 includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norvège" #: deprecated/includes/fields/country.php:175 deprecated/includes/fields/country.php:478 includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 deprecated/includes/fields/country.php:479 includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 deprecated/includes/fields/country.php:480 includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palaos" #: deprecated/includes/fields/country.php:178 deprecated/includes/fields/country.php:481 includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 deprecated/includes/fields/country.php:482 includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papouasie-Nouvelle-Guinée" #: deprecated/includes/fields/country.php:180 deprecated/includes/fields/country.php:483 includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 deprecated/includes/fields/country.php:484 includes/Config/CountryList.php:180 msgid "Peru" msgstr "Pérou" #: deprecated/includes/fields/country.php:182 deprecated/includes/fields/country.php:485 includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Philippines" #: deprecated/includes/fields/country.php:183 deprecated/includes/fields/country.php:486 includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 deprecated/includes/fields/country.php:487 includes/Config/CountryList.php:183 msgid "Poland" msgstr "Pologne" #: deprecated/includes/fields/country.php:185 deprecated/includes/fields/country.php:488 includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 deprecated/includes/fields/country.php:489 includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 deprecated/includes/fields/country.php:490 includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 deprecated/includes/fields/country.php:491 includes/Config/CountryList.php:187 msgid "Reunion" msgstr "La Réunion" #: deprecated/includes/fields/country.php:189 deprecated/includes/fields/country.php:492 includes/Config/CountryList.php:188 msgid "Romania" msgstr "Roumanie" #: deprecated/includes/fields/country.php:190 deprecated/includes/fields/country.php:493 includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Fédération de Russie" #: deprecated/includes/fields/country.php:191 deprecated/includes/fields/country.php:494 includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 deprecated/includes/fields/country.php:495 includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Christophe et Nevis" #: deprecated/includes/fields/country.php:193 deprecated/includes/fields/country.php:496 includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Sainte-Lucie" #: deprecated/includes/fields/country.php:194 deprecated/includes/fields/country.php:497 includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint-Vincent et Les Grenadines" #: deprecated/includes/fields/country.php:195 deprecated/includes/fields/country.php:498 includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 deprecated/includes/fields/country.php:499 includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 deprecated/includes/fields/country.php:500 includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tomé et Principe" #: deprecated/includes/fields/country.php:198 deprecated/includes/fields/country.php:501 includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Arabie Saoudite" #: deprecated/includes/fields/country.php:199 deprecated/includes/fields/country.php:502 includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Sénégal" #: deprecated/includes/fields/country.php:200 deprecated/includes/fields/country.php:503 includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbie" #: deprecated/includes/fields/country.php:201 deprecated/includes/fields/country.php:504 includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 deprecated/includes/fields/country.php:505 includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 deprecated/includes/fields/country.php:506 includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapour" #: deprecated/includes/fields/country.php:204 deprecated/includes/fields/country.php:507 includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovaquie (République Slovaque)" #: deprecated/includes/fields/country.php:205 deprecated/includes/fields/country.php:508 includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovénie" #: deprecated/includes/fields/country.php:206 deprecated/includes/fields/country.php:509 includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Îles Salomon" #: deprecated/includes/fields/country.php:207 deprecated/includes/fields/country.php:510 includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalie" #: deprecated/includes/fields/country.php:208 deprecated/includes/fields/country.php:511 includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Afrique du Sud" #: deprecated/includes/fields/country.php:209 deprecated/includes/fields/country.php:512 includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Géorgie du Sud et Îles Sandwich du Sud" #: deprecated/includes/fields/country.php:210 deprecated/includes/fields/country.php:514 includes/Config/CountryList.php:209 msgid "Spain" msgstr "Espagne" #: deprecated/includes/fields/country.php:211 deprecated/includes/fields/country.php:515 includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 deprecated/includes/fields/country.php:516 includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "Sainte-Hélène" #: deprecated/includes/fields/country.php:213 deprecated/includes/fields/country.php:517 includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "St-Pierre et Miquelon" #: deprecated/includes/fields/country.php:214 deprecated/includes/fields/country.php:518 includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Soudan" #: deprecated/includes/fields/country.php:215 deprecated/includes/fields/country.php:519 includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 deprecated/includes/fields/country.php:520 includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Îles Svalbard et Jan Mayen" #: deprecated/includes/fields/country.php:217 deprecated/includes/fields/country.php:521 includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 deprecated/includes/fields/country.php:522 includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Suède" #: deprecated/includes/fields/country.php:219 deprecated/includes/fields/country.php:523 includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Suisse" #: deprecated/includes/fields/country.php:220 deprecated/includes/fields/country.php:524 includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "République arabe syrienne" #: deprecated/includes/fields/country.php:221 deprecated/includes/fields/country.php:525 includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 deprecated/includes/fields/country.php:526 includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tadjikistan " #: deprecated/includes/fields/country.php:223 deprecated/includes/fields/country.php:527 includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "République Unie de Tanzanie" #: deprecated/includes/fields/country.php:224 deprecated/includes/fields/country.php:528 includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailande" #: deprecated/includes/fields/country.php:225 deprecated/includes/fields/country.php:529 includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 deprecated/includes/fields/country.php:530 includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 deprecated/includes/fields/country.php:531 includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 deprecated/includes/fields/country.php:532 includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad et Tobago" #: deprecated/includes/fields/country.php:229 deprecated/includes/fields/country.php:533 includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisie" #: deprecated/includes/fields/country.php:230 deprecated/includes/fields/country.php:534 includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turquie" #: deprecated/includes/fields/country.php:231 deprecated/includes/fields/country.php:535 includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkménistan" #: deprecated/includes/fields/country.php:232 deprecated/includes/fields/country.php:536 includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Îles Turques et Caïques" #: deprecated/includes/fields/country.php:233 deprecated/includes/fields/country.php:537 includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 deprecated/includes/fields/country.php:538 includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Ouganda " #: deprecated/includes/fields/country.php:235 deprecated/includes/fields/country.php:539 includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraine" #: deprecated/includes/fields/country.php:236 deprecated/includes/fields/country.php:540 includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Émirats Arabes Unis" #: deprecated/includes/fields/country.php:237 deprecated/includes/fields/country.php:541 includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Royaume Uni" #: deprecated/includes/fields/country.php:238 deprecated/includes/fields/country.php:542 includes/Config/CountryList.php:237 msgid "United States" msgstr "États-Unis" #: deprecated/includes/fields/country.php:239 deprecated/includes/fields/country.php:543 includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Îles Mineures éloignées des États-Unis" #: deprecated/includes/fields/country.php:240 deprecated/includes/fields/country.php:544 includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 deprecated/includes/fields/country.php:545 includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 deprecated/includes/fields/country.php:546 includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 deprecated/includes/fields/country.php:547 includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 deprecated/includes/fields/country.php:548 includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 deprecated/includes/fields/country.php:549 includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Îles Vierges (britanniques)" #: deprecated/includes/fields/country.php:246 deprecated/includes/fields/country.php:550 includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Îles Vierges (U.S.)" #: deprecated/includes/fields/country.php:247 deprecated/includes/fields/country.php:551 includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis et Futuna" #: deprecated/includes/fields/country.php:248 deprecated/includes/fields/country.php:552 includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Sahara occidental" #: deprecated/includes/fields/country.php:249 deprecated/includes/fields/country.php:553 includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 deprecated/includes/fields/country.php:554 includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yougoslavie" #: deprecated/includes/fields/country.php:251 deprecated/includes/fields/country.php:555 includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambie" #: deprecated/includes/fields/country.php:252 deprecated/includes/fields/country.php:556 includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Pays" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Pays par défaut" #: deprecated/includes/fields/country.php:277 includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Utiliser une première option personnalisée" #: deprecated/includes/fields/country.php:283 includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Première option personnalisée" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Soudan du Sud" #: deprecated/includes/fields/credit-card.php:14 includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Carte bancaire" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Label de numéro de carte" #: deprecated/includes/fields/credit-card.php:36 deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Numéro de la carte" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Description du numéro de carte" #: deprecated/includes/fields/credit-card.php:44 deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "En général, les 16 chiffres imprimés au recto de votre carte bancaire." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Label du cryptogramme visuel (CVC) de la carte" #: deprecated/includes/fields/credit-card.php:52 deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Description du cryptogramme visuel (CVC) de la carte" #: deprecated/includes/fields/credit-card.php:60 deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Bloc de chiffres imprimés sur votre carte (trois au verso ou quatre au recto)." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Label du nom associé à la carte" #: deprecated/includes/fields/credit-card.php:68 deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Nom gravé sur la carte" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Description du nom associé à la carte" #: deprecated/includes/fields/credit-card.php:76 deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Nom gravé sur le recto de votre carte bancaire." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Label du mois d'expiration de la carte" #: deprecated/includes/fields/credit-card.php:84 deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Mois d’expiration (mm)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Description du mois d'expiration de la carte" #: deprecated/includes/fields/credit-card.php:92 deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Mois de la date d'expiration de la carte (généralement gravé sur le recto de la carte)." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Label de l'année d'expiration de la carte" #: deprecated/includes/fields/credit-card.php:100 deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Année d’expiration (aaaa)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Description de l'année d'expiration de la carte" #: deprecated/includes/fields/credit-card.php:108 deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Année de la date d'expiration de la carte (généralement gravé sur le recto de la carte)." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Texte" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Element Texte" #: deprecated/includes/fields/hidden.php:4 includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Champ caché" #: deprecated/includes/fields/hidden.php:56 deprecated/includes/fields/number.php:73 deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID Utilisateur (Si connecté)" #: deprecated/includes/fields/hidden.php:57 deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Prénom Utilisateur (Si connecté)" #: deprecated/includes/fields/hidden.php:58 deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Nom Utilisateur (Si connecté)" #: deprecated/includes/fields/hidden.php:59 deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Nom Utilisateur Affiché (Si connecté)" #: deprecated/includes/fields/hidden.php:60 deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "E-mail Utilisateur (Si connecté)" #: deprecated/includes/fields/hidden.php:61 deprecated/includes/fields/number.php:74 deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Identifiant de post / de page (si disponible)" #: deprecated/includes/fields/hidden.php:62 deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Titre de post / de page (si disponible)" #: deprecated/includes/fields/hidden.php:63 deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "URL de post / de page (si disponible)" #: deprecated/includes/fields/hidden.php:64 deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Date d'aujourd'hui" #: deprecated/includes/fields/hidden.php:66 deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variable de chaîne de requête" #: deprecated/includes/fields/hidden.php:74 deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Ce mot-clé est réservé par WordPress. Spécifiez un autre mot-clé." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Est-ce une adresse e-mail?" #: deprecated/includes/fields/hidden.php:102 msgid "If this box is checked, Ninja Forms will validate this input as an email address." msgstr "Si cette case est cochée, Ninja Forms validera cette entrée en tant qu'adresse e-mail." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Envoyer une copie de ce formulaire à cette adresse?" #: deprecated/includes/fields/hidden.php:117 msgid "If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address." msgstr "" "Si cette case est cochée, Ninja Forms enverra une copie de ce formulaire (et n'importe quel message attaché) à cette adresse." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honeypot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Liste" #: deprecated/includes/fields/list.php:17 deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Ceci est l'état de l'utilisateur" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valeur sélectionnée" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Ajouter une valeur" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Supprimer la valeur" #: deprecated/includes/fields/list.php:112 deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Menu déroulant" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Cases à cocher" #: deprecated/includes/fields/list.php:137 includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Sélection multiple" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Type de liste" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Taille de la Boite à Multi-Sélection" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importer des éléments de liste" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Afficher la valeur des éléments de liste" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importer" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Pour utiliser cette fonctionnalité, vous pouvez faire un copier/coller de votre CSV dans la zone de texte ci-dessus." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Le format devrait ressembler à ceci:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Label,Valeur,Calc" #: deprecated/includes/fields/list.php:190 msgid "If you want to send an empty value or calc, you should use '' for those." msgstr "Pour envoyer une valeur vide ou calc, utilisez ''." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Sélectionné" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 includes/Fields/Number.php:28 msgid "Number" msgstr "Nombre" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Valeur minimale" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Valeur maximale" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Pas (valeur d’incrémentation)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organiser" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Mot de passe" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Utilisez ceci comme champ de mot de passe pour une inscription" #: deprecated/includes/fields/password.php:30 msgid "If this box is checked, both password and re-password textboxes will be output." msgstr "Si cette case est cochée, le champs mot de passe et le mot de passe de vérification seront affichés." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Titre de Vérfication du Mot de Passe" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Mot de passe de vérification" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Afficher l'Indicateur de Niveau de Sécurité" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and " "symbols like ! \" ? $ % ^ & )." msgstr "" "Info: Le mot de passe devrait être d'une longueur d'au moins sept caractères. Afin de le renforcer, utilisez des majuscules et " "minuscules, des nombres et symboles comme ! ? $ % ^ &)." #: deprecated/includes/fields/password.php:147 includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Les Mot de Pase ne correspondent pas" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Nombre d’étoiles" #: deprecated/includes/fields/rating.php:13 includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Nombre d'étoiles" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Confirmez que vous n’êtes pas un robot logiciel (bot)" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Vous devez reproduire le code Captcha dans le champ" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Vérifiez que vous avez entré les valeurs correctes de clé de site et de clé secrète" #: deprecated/includes/fields/recaptcha.php:100 includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "La valeur saisie ne correspond pas au code Captcha affiché Vous devez saisir la valeur correcte dans le champ Captcha" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-spam" #: deprecated/includes/fields/spam.php:29 deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Question SPAM" #: deprecated/includes/fields/spam.php:36 deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Réponse SPAM" #: deprecated/includes/fields/submit.php:4 deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 deprecated/includes/fields/timed-submit.php:81 includes/Database/MockData.php:165 #: includes/Database/MockData.php:483 includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Envoyer" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "TVA" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Pourcentage de TVA" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Devrait être encodé comme un pourcentage. ex: 8.25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Zone de texte" #: deprecated/includes/fields/textarea.php:18 includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Afficher l’éditeur de texte avancé" #: deprecated/includes/fields/textarea.php:23 includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Afficher le bouton de mise en ligne de fichier" #: deprecated/includes/fields/textarea.php:28 includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Désactiver l’éditeur de texte avancé sur mobile" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Valider comme adresse mail ? (Le champ doit être obligatoire)" #: deprecated/includes/fields/textbox.php:56 includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Désactiver l’entrée" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Calendrier" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Téléphone - (555) 555-555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Devise" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Définition d'un Masque Personnalisé" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Aide" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Soumission avec temporisation" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Soumettre le texte du bouton lorsque la temporisation expire" #: deprecated/includes/fields/timed-submit.php:18 deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Merci d’attendre %n secondes" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n sera utilisé pour signifier le nombre de secondes." #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Nombre de secondes du compte à rebours" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Temps d'attente imposé à l'utilisateur avant de soumettre le formulaire" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Si vous êtes un être humain, merci de ralentir !" #: deprecated/includes/fields/timed-submit.php:108 msgid "You need JavaScript to submit this form. Please enable it and try again." msgstr "Pour soumettre ce formulaire, vous devez activer JavaScript. Activez JavaScript et réessayez." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Mappage des champs de liste" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Groupes d’intérêts" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Simple" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Multiple" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listes" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "actualiser" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Soumission Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Utilisateur Metabox (si connecté)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "percevoir le paiement" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Aucun formulaire n'a été trouvé." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Date de création" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "titre" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "mis à jour" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Votre tentative a échoué" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Objet parent :" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Tous les objets" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Ajouter un nouvel objet" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nouvel objet" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Modifier" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Mettre à jour l'objet" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Afficher l'objet" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Rechercher un objet" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Pas trouvé dans la corbeille" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Données enregistrées" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Infos sur la soumission" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Ajouter la nouvelle forme" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Erreur d’importation du modèle de formulaire" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Types de champs" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Le format du fichier mis en ligne n’est pas valide." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Identifiant de formulaire non valide" #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importer des formulaires" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Exporter formulaires" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Équation (complexe)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Opérations et champs (avancé)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Champs à total automatique" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "La taille du fichier uploadé est supérieure à la directive upload_max_filesize qui a été spécifiée dans le fichier php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." msgstr "La taille du fichier uploadé est supérieure à la directive MAX_FILE_SIZE qui a été spécifiée dans le formulaire HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Le fichier a été partiellement chargé ." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Aucun fichier n'a été téléchargé." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Il manque un répertoire temporaire." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Le fichier n'a pas pu être écrit sur le disque." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Le téléchargement a été interrompu a cause d'une extension incompatible." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Erreur d'upload (nature indéterminée)." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Erreur de chargement de fichier" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Licences complémentaires" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrations et données fictives terminées. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Afficher les formulaires" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Sauvegarder les réglages" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Adresse IP du serveur" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Hôte" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Ajouter un formulaire Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Formulaire introuvable." #: includes/AJAX/Controllers/SavedFields.php:17 includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Champ introuvable" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Une erreur inattendue est survenue." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "L'aperçu n’existe pas." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Services de paiement" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Total à régler" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Balise de connexion (hook)" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Adresse mail ou rechercher un champ" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Texte d’objet ou rechercher un champ" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Joindre un fichier CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Champ URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Label ici" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Texte d’aide ici" #: includes/Config/FieldSettings.php:25 msgid "Enter the label of the form field. This is how users will identify individual fields." msgstr "Entrez le nom du champ de formulaire. Ces noms permettront aux utilisateurs d'identifier les différents champs" #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Valeur par défaut du formulaire" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Masquer" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Sélectionnez la position du label par rapport au champ." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Champs requis" #: includes/Config/FieldSettings.php:80 msgid "Ensure that this field is completed before allowing the form to be submitted." msgstr "Si ce champ n'est pas rempli, l'utilisateur ne sera pas autorisé à soumettre le formulaire." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Options numériques" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Etape" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Options" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 includes/Database/MockData.php:127 msgid "One" msgstr "Un" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "one" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 includes/Database/MockData.php:134 msgid "Two" msgstr "Deux" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "deux" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 includes/Database/MockData.php:141 msgid "Three" msgstr "Trois" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "trois" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Valeur de Calc" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Conditionne le type de valeur que les utilisateurs peuvent entrer dans ce champ." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "inactif" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Tél. USA" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "personnalisé" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Masque personnalisé" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n" "
    • a - Représente un caractère alphabétique (A-Z, a-z) - Accepte uniquement les lettres.\n" "
    • \n" "
    • 9 - Représente un caractère numérique (0-9) - Accepte uniquement les chiffres.
    • \n" "
    • * - Représente un caractère alphanumérique (A-Z, -Z, a-z, 0-9) - Accepte les lettres et\n" " les chiffres.
    • \n" "
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Limiter l’entrée à ce nombre :" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Caractère(s)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Mot(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Texte qui doit apparaître à côté du compteur" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Caractères restants" #: includes/Config/FieldSettings.php:315 msgid "Enter text you would like displayed in the field before a user enters any data." msgstr "Entrez le texte qui sera affiché à côté du champ pour guider l’utilisateur." #: includes/Config/FieldSettings.php:344 includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Noms de classe personnalisées" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Conteneur" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Ajoute une classe dans votre wrapper de champ." #: includes/Config/FieldSettings.php:361 includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Ajoute une classe dans votre élément de champ." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "AAAA-MM-JJ" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Vendredi 18 novembre 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Par défaut, la date d'aujourd'hui" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Nombre de secondes pour les soumissions temporisées." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Clé du champ" #: includes/Config/FieldSettings.php:451 msgid "Creates a unique key to identify and target your field for custom development." msgstr "Crée une clé unique pour identifier et cibler votre champ (pour développement personnalisé)." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Label utilisé pour l'affichage et l’exportation des soumissions." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "S'affiche lorsque l'utilisateur survole cette zone avec la souris." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Description" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Trier en mode numérique" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Cette colonne du tableau des soumissions sera triée numériquement." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Nombre de secondes du compte à rebours" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Utiliser ce champ pour le mot de passe d'inscription. Si cette case est cochée, les deux\n" "\n" " champs de mot de passe (saisir le mot de passe/confirmer le mot de passe) s'affichent." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Confirmer" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Permet d'entrer du texte enrichi." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Label de traitement" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Valeur de calcul (coché)" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Ce nombre sera utilisé dans les calculs si la case est cochée." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Valeur de calcul (non coché)" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Ce nombre sera utilisé dans les calculs si la case est décochée." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Afficher cette variable de calcul" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "Sélectionner une variable" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Budget" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Utiliser une quantité" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Permet aux utilisateurs de choisir plusieurs produits." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Type de produit" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Un seul produit (valeur par défaut)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Plusieurs produits - Liste déroulante" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Plusieurs produits - Sélectionner plusieurs produits" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Plusieurs produits - Sélectionner un seul produit" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Entrée utilisateur" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Prix" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Options de coût" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Coût unique" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Liste déroulante des coûts" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Type de coût" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 includes/Database/MockData.php:974 #: includes/Fields/Product.php:32 msgid "Product" msgstr "Produit" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "Sélectionner un produit" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Réponse" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Réponse (sensible à la casse) permettant d'éviter que votre formulaire soit utilisé dans des actions de spam." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomie" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Ajouter de nouveaux termes" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Décrit l'état d’un utilisateur." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Marque un champ pour traitement." #: includes/Config/FieldTypeSections.php:13 includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Champs enregistrés" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Champs communs" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Champs d’infos utilisateur" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Champs de prix" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Champs de mise en page" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Champs divers" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Votre formulaire a été envoyé." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Formulaires Ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Enregistrer le formulaire" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Nom de la variable" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Équation" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Position par défaut du label" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Habillage" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Clé de formulaire" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Nom programmatique qui peut être utilisé pour pointer sur ce formulaire." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Ajouter le bouton \"Soumettre\"" #: includes/Config/FormDisplaySettings.php:153 msgid "We've noticed that don't have a submit button on your form. We can add one for your automatically." msgstr "Votre formulaire ne comporte pas de bouton \"Soumettre\". Nous pouvons en ajouter un automatiquement." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "connecté" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "S’applique à l’aperçu du formulaire." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Nombre de soumission" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Ne s’applique pas à l’aperçu du formulaire." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Paramètres d'affichage" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Calculs" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Prix :" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Quantité :" #: includes/Config/i18nBuilder.php:8 includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Ajouter" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Ouvrir dans une nouvelle fenêtre" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Si vous êtes un être humain visualisant ce champ, merci de le laisser vide." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Disponible" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Entrez une adresse email valide !" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Ces champs doivent correspondre !" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Erreur min numéro" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Erreur max numéro" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Incrémenter par " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Insérer le lien" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Insérer le média" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Corrigez les erreurs avant de soumettre ce formulaire." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Erreur Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Upload du fichier en cours" #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "UPLOAD FICHIER" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Tous les champs" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Sous-séquence" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "ID d’article" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Titre de l'article" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL du billet" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "Addresse IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 includes/Database/MockData.php:653 #: includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Prénom" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 includes/Database/MockData.php:658 #: includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Nom" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Nom affiché" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Styles originaux" #: includes/Config/PluginSettingsAdvanced.php:62 includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Lumière" #: includes/Config/PluginSettingsAdvanced.php:66 includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Foncé" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Utiliser les conventions de style par défaut de Ninja Forms." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Revenir à une version antérieure" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Revenir à v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Revenir à la version 2.9.x la plus récente." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Paramètres reCAPTCHA" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Thème reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Éditeur de texte enrichi" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Mode Avancé" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administration" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Formulaires vides" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Contactez-moi" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Action pour un message de réussite fictif" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Merci {field:name} de remplir mon formulaire !" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Action pour email fictif" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Il s’agit d’une action email." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Bonjour, Ninja Forms !" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 includes/Database/MockData.php:490 #: includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Action pour un enregistrement fictif" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "C’est un test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "C'est un autre test." #: includes/Database/MockData.php:242 includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Obtenir de l’aide" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Comment pouvons-nous vous aider ?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "D’accord ?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Meilleure méthode de contact ?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 includes/Fields/Phone.php:24 msgid "Phone" msgstr "Tél" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Courrier postal" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Envoyer" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Fourre-tout" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Sélectionner la liste" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 includes/Database/MockData.php:539 #: includes/Database/MockData.php:567 includes/Database/MockData.php:595 msgid "Option One" msgstr "Option 1" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 includes/Database/MockData.php:546 #: includes/Database/MockData.php:574 includes/Database/MockData.php:602 msgid "Option Two" msgstr "Option 2" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 includes/Database/MockData.php:553 #: includes/Database/MockData.php:581 includes/Database/MockData.php:609 msgid "Option Three" msgstr "Option 3" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Liste de boutons radio" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Lavabo" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Liste de cases à cocher" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Tous ces champs se rapportent à la section Infos utilisateur." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Adresse" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Ville" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Code Zip" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Tous ces champs se rapportent à la section Tarifs." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Produit (quantité incluse)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Produit (quantité séparée)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Quantité" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 includes/Database/MockData.php:995 #: includes/Database/MockData.php:1098 includes/Fields/Total.php:28 msgid "Total" msgstr "Total" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Nom complet du titulaire de carte bancaire" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Numéro de la carte bancaire" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Code de sécurité de carte bancaire" #: includes/Database/MockData.php:750 includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Date d'expiration de carte bancaire" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Code postal de carte bancaire" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Ces champs sont des champs spéciaux." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Question anti-spam (Réponse = réponse)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "réponse" #: includes/Database/MockData.php:805 msgid "processing" msgstr "traitement" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Forme longue " #: includes/Database/MockData.php:822 includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Champs" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "N° de champ" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Envoyer le formulaire d’abonnement" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Adresse e-mail" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Entrez votre adresse mail" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "S'inscrire" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Formulaire produit (avec champ Quantité)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 includes/Database/MockData.php:1107 #: includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Acheter" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Vous avez acheté " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "produit(s) pour " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Formulaire produit (Quantité en ligne)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " produit(s) pour " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Formulaire produit (Plusieurs produits)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Produit A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Quantité pour produit A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Produit B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Quantité pour produit B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "du produit A et " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "du produit B pour $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formulaire avec calculs" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Mon premier calcul" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Mon deuxième calcul" #: includes/Database/MockData.php:1158 msgid "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "Les calculs sont renvoyés avec la réponse AJAX (réponse -> données -> calculs" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Copier" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Enregistrer le formulaire" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Code postal de carte bancaire" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Pour afficher l'aperçu d’un formulaire, vous devez être connecté." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Aucun champ trouvé." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Remarque – Ce shortcode Ninja Forms a été utilisé sans spécifier de formulaire." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ce shortcode Ninja Forms a été utilisé sans spécifier de formulaire." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Adresse 2" #: includes/Fields/Button.php:26 includes/Templates/admin-menu-forms.html.php:79 includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Bouton" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Case à cocher" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "coché" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "non coché" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Cryptogramme visuel de carte bancaire" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d/m/Y" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Séparateur" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Choisir" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Province" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Le texte de la note peut être modifié dans les paramètres avancés du champ de la note (ci-dessous)." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Remarque" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Confirmer le mot de passe" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "Le mot de passe" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Vous devez reproduire le code reCAPTCHA" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Navigation avancée" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Question" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Position de la question" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Réponse incorrecte" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Nombre d'étoiles" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Liste des termes" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Aucun terme n'est disponible pour cette taxonomie. %sAjouter un terme%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Aucune taxonomie sélectionnée." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Termes disponibles" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Paragraphe texte" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Texte sur une ligne" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Code postal" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Publier" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Chaînes de requête" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Chaîne de requête" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Système" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Utilisateur" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " doit être mis à jour. La version " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " est installée. Version actuelle : " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Modification du champ" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Nom d’étiquette" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Au-dessus du champ" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Au-dessous du champ" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "À gauche du champ" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "À droite du champ" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Masquer l’étiquette" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Nom de classe" #: includes/Templates/admin-menu-forms.html.php:55 includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Champs de base" #: includes/Templates/admin-menu-forms.html.php:70 includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Sélection multiple" #: includes/Templates/admin-menu-new-form.html.php:30 includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Ajouter un nouveau champ" #: includes/Templates/admin-menu-new-form.html.php:37 includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Ajouter une nouvelle action" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Menu Développer" #: includes/Templates/admin-menu-new-form.html.php:64 includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Publier" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLIER" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Chargement" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Afficher les modifications" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Ajouter des champs de formulaire" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Commencez par ajouter votre premier champ de formulaire." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Ajouter un nouveau champ" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Cliquez ici et sélectionnez les champs voulus." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Rien de plus simple. Ou..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Commencez avec un modèle" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Contactez-nous" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "Allow your users to contact you with this simple contact form. You can add and remove fields as needed." msgstr "" "Aidez vos utilisateurs à vous contacter avec ce formulaire de contact simple. Vous pouvez ajouter et supprimer des champs si " "nécessaire." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Demande de devis" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "Manage quote requests from your website easily with this remplate. You can add and remove fields as needed." msgstr "" "Utilisez ce modèle pour gérer en toute simplicité les demandes de devis à partir de votre site Web. Vous pouvez ajouter et " "supprimer des champs si nécessaire." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Enregistrements aux événements" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "Allow user to register for your next event this easy to complete form. You can add and remove fields as needed." msgstr "" "Aidez vos utilisateurs à s’enregistrer en toute simplicité pour votre prochain événement afin de terminer le formulaire. Vous " "pouvez ajouter et supprimer des champs si nécessaire." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Formulaire d’inscription à la newsletter" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "Add subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed." msgstr "" "Ajoutez les abonnés et développez votre liste d’emails avec ce formulaire d’inscription à la newsletter. Vous pouvez ajouter et " "supprimer des champs si nécessaire." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Ajouter des actions de formulaire" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy." msgstr "" "Commencez par ajouter votre premier champ de formulaire. Cliquez sur le signe plus et sélectionnez les actions voulues. Rien de " "plus simple." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Dupliquer (^ + C + clic)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Supprimer (^ + D + clic)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Action" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Basculer le tiroir" #: includes/Templates/admin-menu-new-form.html.php:192 includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Plein écran" #: includes/Templates/admin-menu-new-form.html.php:192 includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Demi-écran" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Annuler" #: includes/Templates/admin-menu-new-form.html.php:324 includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Terminé" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Tout annuler" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Tout annuler" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Vous y êtes presque..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Pas encore" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Ouvrir dans une nouvelle fenêtre" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Désactiver" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Réparez." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "Sélectionner un formulaire " #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Date actuelle" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Avant de demander de l’aide à notre équipe de support technique, consultez :" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Documentation Ninja Forms v3" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Que faire avant de contacter le support technique" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Étendue de notre support technique" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importer des champs" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Mise à jour le : " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Soumission le : " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Soumission par : " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Données d’envoi" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Voir" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Afficher plus" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Modification du champ" #: includes/Templates/ui-nf-header.html.php:5 includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Champs de formulaire" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Aperçu des modifications" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Formulaire de contact" #: lib/NF_AddonChecker.php:42 #, php-format msgid "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s." msgstr "Erreur ! Ce module complémentaire n’est pas encore compatible avec Ninja Forms v3. %sPlus de détails... %s" #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s a été désactivé." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Aidez-nous à améliorer Ninja Forms !" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your " "submissions)." msgstr "" "Si vous vous inscrivez, des données décrivant votre utilisation de Ninja Forms seront transmises à NinjaForms.com (ceci ne " "concerne pas vos soumissions)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Vous pouvez sauter cette étape ! Ninja Forms fonctionnera toujours à merveille." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sAutoriser%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sNe pas autoriser%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "Vous ne disposez pas des autorisations nécessaires." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Autorisation refusée" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DÉBOGUER : Passer à 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DÉBOGUER : Passer à 3.0.x" lang/ninja-forms-ko_KR.po000064400000640665152331132460011274 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "알림: 이 콘텐츠에는 JavaScript가 필요합니다." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "누굴 속이시려고?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "%s*%s로 표시된 필드는 필수입니다." #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "모든 필수 필드가 작성되었는지 확인해 주십시오." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "이것은 필수 필수입니다." #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "스팸 방지 질문에 정확하게 대답해 주십시오." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "스팸 필드를 비워둔 채로 두십시오." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "양식을 제출하려면 기다려 주십시오." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "귀하는 자바스크립트를 활성화하지 않고 그 양식을 제출할 수는 없습니다." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "유효한 이메일 주소를 입력합니다." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "처리중" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "제공된 암호가 일치하지 않습니다." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "양식 추가" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "양식 선택 또는 검색할 내용 입력" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "취소" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "삽입" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "유효하지 않은 양식 ID" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "변환 증가" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "큰 양식을 작게 나누고, 더 쉽게 간소화한 부분으로 나누어 양식 변환을 늘릴 수 있다는 사실을 아셨나요?

    Ninja Form을 위한 " "여러 부분으로 나누어진 양식 확장 기능이 이 작업을 빠르고 쉽게 해줍니다.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "여러 부분으로 나누어진 양식에 대해 자세히 알아보기" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "나중에" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "해제" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "사용자는 나중에 제출을 완료하기 위해 저장했다가 다시 돌아갈 때 긴 양식을 완료할 가능성이 많습니다.

    Ninja Form을 위한 저장 " "진행률 확장 기능이 이 작업을 빠르고 쉽게 해줍니다.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "저장 진행률에 대해 자세히 알아보기" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "이메일" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "보낸 사람 이름" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "이름 또는 필드" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "이메일은 이 이름으로 나타납니다." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "보낸 사람 주소" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "하나의 이메일 주소 또는 필드" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "이메일은 이 이메일 주소로 나타납니다." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "받는 사람" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "이메일 주소 또는 필드 검색" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "누가 이 이메일을 받게 되나요?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "제목" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "제목 텍스트 또는 필드 검색" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "이메일의 제목이 됩니다." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "이메일 메시지" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "첨부 파일" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "제출 CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "고급 설정" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "형식" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "일반 텍스트" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "다음에게 회신" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "참조" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "숨은 참조" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "리디렉션" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "성공 메시지" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "이전 양식" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "이후 양식" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "위치" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "메시지" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "복사" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "비활성화" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "활성화" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "편집" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "제거하기" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "복사" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "이름" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "형식" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "날짜가 업데이트됨" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- 모든 유형 보기" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "더 많은 유형 가져오기" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "이메일 및 동작" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "새로 추가" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "새 동작" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "동작 편집" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "목록으로 돌아가기" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "동작 이름" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "더 많은 동작 가져오기" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "동작이 업데이트됨" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "필드 선택 또는 검색할 내용 입력" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "필드 삽입" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "모든 필드 삽입" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "제출을 보려면 양식을 선택하기 바랍니다." #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "제출을 찾을 수 없음" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "제출" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "제출" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "새 제출 추가" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "제출 편집" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "새 제출" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "제출 보기" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "제출 검색" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "휴지통에서 제출을 찾을 수 없음" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "날짜" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "이 아이템 편집하기" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "이 항목 내보내기" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "내보내기" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "이 아이템을 휴지통으로 이동" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "휴지통" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "이 아이템을 휴지통에서 복구" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "복구" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "이 아이템을 영구적으로 삭제" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "영구적으로 삭제" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "미발행" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s 이전" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "제출됨" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "양식 선택" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "날짜 시작" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "종료 날짜" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s이(가) 업데이트되었습니다." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "사용자 정의 필드 업데이트됨." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "사용자정의 필드 삭제됨." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s이(가) %2$s(으)로부터 수정을 위해 복원되었습니다." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s이(가) 게시되었습니다." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s이(가) 저장되었습니다." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s이(가) 제출되었습니다. %3$s 미리 보기" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s이(가) 다음에 대해 예약됨: %2$s %4$s 미리 보기" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s 초안이 업데이트되었습니다. %3$s 미리 보기" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "모든 제출 다운로드" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "목록으로 돌아가기" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "사용자가 제출한 값" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "제출 통계" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "필드" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "값" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "상태" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "형식" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "제출 날짜:" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "수정 날짜:" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "제출한 사람:" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "업데이트" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "제출된 날짜" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "Ninja Form을 네트워크 활성화할 수 없습니다. 플러그인을 활성화하려면 각가의 사이트 대시보드를 방문하시기 바랍니다." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "구매 이메일이 포함되어 있습니다." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "키" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "라이선스를 활성화할 수 없습니다. 귀하의 라이선스 키를 확인하세요." #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "라이선스 비활성화" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "사용자가 제출한 값:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "이 양식을 작성해 주셔서 감사합니다." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "%1$s의 새 버전을 사용할 수 있습니다. 버전 %3$s 세부 사항을 봅니다." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "%1$s의 새 버전을 사용할 수 있습니다. 버전 %3$s 세부 사항을 보거나 지금 업데이트합니다." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "플러그인 업데이트를 설치할 수 있는 권한이 없습니다." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "에러" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "표준 필드" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "레이아웃 요소" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "게시물 생성" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "이 플러그인을 무료로 유지하려면 %sWordPress.org%s에서 %sNinja Forms%s %s를 평가해 주세요. 워드프레스 " "Ninja 팀의 감사를 전해 드립니다!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Form 위젯" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "제목 표시" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "없음" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "폼" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "모든 양식" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Form 업그레이드" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "업그레이드" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "가져오기/내보내기" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "가져오기/내보내기" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form 설정" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "설정" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "시스템 상태" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "추가 기능" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "미리보기" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "저장" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "왼쪽에 문자(들)" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "해당 용어 표시 안 함" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "옵션 저장" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "양식 미리 보기" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Ninja Forms THREE로 업그레이드" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "귀하는 Ninja Forms THREE 릴리스 후보로 업그레이드할 수 있습니다! %s지금 업그레이드%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE 출시 예정입니다!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Ninja Forms에 주요 업데이트가 예정되어 있습니다. %s새 기능, 이전 버전과의 호환성 및 자주 묻는 질문에 대해 자세히 알아봅니다.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "요즘 어떠세요?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "Ninja Form을 사용해 주셔서 감사합니다! 필요한 모든 사항을 찾으셨기를 바랍니다. 그래도 문의 사항이 있으신 경우:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "설명서 확인" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "도움 받기" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "메뉴 항목 편집" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "모두 선택" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Ninja Form 추가" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "이 즐겨찾기 이름을 무엇으로 지정하겠습니까?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "이 즐겨찾기에 이름을 지정해야 합니다." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "모든 라이선스를 비활성화하겠습니까?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "v2.9 이상에 대한 양식 전환 과정 재설정" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "제거 시 모든 Ninja Form 데이터를 제거하겠습니까?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "양식 편집" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "저장됨" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "저장 중..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "이 필드를 제거하겠습니까? 저장하지 않아도 제거됩니다." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "제출 보기" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Form 처리 중" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Form - 처리 중" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "로드 중..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "지정된 동작 없음..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "과정이 시작되었습니다. 잠시 기다려 주세요. 몇 분 정도 걸릴 수 있습니다. 과정이 완료되면 자동으로 리디렉션됩니다." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Ninja Form %s 사용 시작" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "업데이트해 주셔서 감사합니다! Ninja Form %s은(는) 전에 비해 양식 구축을 쉽게 해줍니다!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Ninja Form 시작" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Form 변경 로그" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Ninja Form 시작하기" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Ninja Form을 구축하는 사람" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "새로운 소식" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "시작하기" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "크레딧" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "버전 %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "간소화되고 더욱 강력해진 양식 구축 경험." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "새 빌더 탭" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "양식을 작성하고 편집할 때 가장 중요한 섹션으로 바로 이동합니다." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "보다 잘 조직된 필드 설정" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "가장 일반적인 설정은 바로 표시되는데 반해, 필수적이지 않은 설정은 확장 가능한 섹션 안에 접혀 있습니다." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "개선된 투명도" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "“이메일 및 동작”을 위해 “양식 구축” 탭과 함께 “알림”을 제거했습니다. 이 탭에서 무엇을 수행할 수 있는지 훨씬 분명하게 알 수 있습니다." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "모든 Ninja Form 데이터 제거" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "플러그인을 삭제하면 모든 Ninja Form 데이터(제출, 양식, 필드, 옵션)를 제거하는 옵션을 추가했습니다. 저희는 이것을 핵 " "옵션이라고 부릅니다." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "더 나아진 라이선스 관리" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "설정 탭에서 Ninja Form 확장 기능 라이선스를 개별적으로 또는 그룹으로 비활성화합니다." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "앞으로도 기대하세요." #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "이 버전에서 인터페이스 업데이트가 향후 엄청난 개선을 위해 기반을 다지고 있습니다. Ninja Form을 보다 안정적이고, 강력하며, " "사용자 친화적인 양식 빌더로 만들기 위해 버전 3.0이 구축됩니다." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "문서" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "아래의 자세한 Ninja Form 설명서를 살펴 보시기 바랍니다." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Form 설명서" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "지원 받기" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Ninja Form으로 돌아가기" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "전체 변경 로그 보기" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "전체 변경 로그" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Ninja Form으로 이동" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "Ninja Form을 시작하려면 아래 팁을 사용하세요. 지체 없이 바로 사용할 수 있습니다." #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Form에 대한 모든 정보" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Form 메뉴는 Ninja Form의 모든 것에 대한 액세스 지점입니다. 저희가 이미 귀하의 첫 번째 %s연락처 양식%s을 만들었으니 " "예시로 사용하세요. %s새로 추가%s를 클릭하여 자신만의 양식을 만들 수도 있습니다." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "양식 구축" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "필드를 추가하고 표시할 순서대로 끌어 놓아 양식을 구축하는 곳입니다. 각각의 필드에는 레이블, 레이블 위치 및 자리 표시자와 같은 옵션 " "모음이 있습니다." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "이메일 및 동작" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "사용자가 제출을 클릭하면 이메일을 통해 귀하에게 알림이 오도록 양식을 지정하려는 경우, 이 탭에서 설정할 수 있습니다. 양식을 입력한 " "사용자에게 전송되는 이메일을 비롯하여 이메일을 제한 없이 만들 수 있습니다." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "이 탭에는 제목 및 제출 방식과 같은 일반 양식 설정뿐 아니라 성공적으로 완료되면 양식 숨기기와 같은 표시 설정도 있습니다." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "양식 표시하기" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "페이지에 추가" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "양식 설정의 기본 양식 동작에서 해당 페이지의 콘텐츠 끝 부분에 양식을 자동으로 추가하려는 페이지를 쉽게 선택할 수 있습니다. 해당 " "사이드바의 모든 콘텐츠 편집 화면에서 유사한 옵션을 사용할 수 있습니다." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "단축 코드" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "원하는 어디든지 양식을 표시하도록 단축 코드를 수락하는 영역에 %s을(를) 둡니다. 페이지 중앙이나 게시물 콘텐츠 내에도 가능합니다." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Form은 사이트의 위젯화된 영역에 배치할 수 있고 해당 공간에 표시하려는 양식을 정확하게 선택할 수 있는 위젯을 제공합니다." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "템플릿 함수" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "Ninja Form은 php 템플릿 파일에 직접 배치할 수 있는 간단한 템플릿 함수와 함께 제공됩니다. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "도움이 필요한가요?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "확대되는 설명서" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "설명서는 %s문제 해결%s부터 %s개발자 API%s까지 모든 것을 다룰 수 있습니다. 항상 새 문서가 추가되고 있습니다." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "비즈니스에 있어 최고의 지원" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "모든 Ninja Form 사용자에게 가능한 최고의 지원을 제공하기 위해 저희가 할 수 있는 모든 노력을 기울이고 있습니다. 문제가 생기거나 " "문의 사항이 있는 경우 %s저희에게 문의%s 주시기 바랍니다." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "최신 버전으로 업데이트해 주셔서 감사합니다! Ninja Form %s은(는) 즐거운 제출 관리 경험을 만들기 위해 준비되었습니다." #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Form은 최고의 워드프레스 커뮤니티 양식 생성 플러그인을 제공하는 것을 목표로 하는 전 세계적인 개발자 팀을 통해 만들어집니다." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "유효한 변경 로그를 찾을 수 없습니다." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "%s 보기" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "브라우저 자동 완성 해제" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%s확인된%s 계산 값" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "%s확인된%s 경우 사용되는 값입니다." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%s확인되지 않은%s 계산 값" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "%s확인되지 않은%s 경우 사용되는 값입니다." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "자동 합계에 포함되나요? (설정된 경우)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "사용자 지정 CSS 클래스" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "맨 앞" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "레이블 앞" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "레이블 뒤" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "맨 뒤" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "“설명 텍스트”가 설정된 경우, 입력 필드 옆에 물음표 %s가 생깁니다. 이 물음표 위로 마우스를 옮기면 설명 텍스트가 표시됩니다." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "설명 추가" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "설명 위치" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "설명 콘텐츠" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "“도움말 텍스트”가 설정된 경우, 입력 필드 옆에 물음표 %s가 생깁니다. 이 물음표 위로 마우스를 옮기면 도움말 텍스트가 표시됩니다." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "도움말 텍스트 표시" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "도움말 텍스트" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "빈 상자로 두면 사용 제한이 없습니다." #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "이 숫자만큼 입력 제한" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "/" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "글자 수" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "단어" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "자/단어 수 뒤에 나타나는 텍스트" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "요소의 왼쪽" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "요소의 위" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "요소의 아래" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "요소의 오른쪽" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "요소의 내부" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "레이블 위치" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "필드 ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "제한 설정" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "계산 설정" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "제거하기" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "분류하여 채우기" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- 없음" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "플레이스홀더" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "필수" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "필드 설정 저장" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "숫자로 정렬" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "이 상자가 표시되면 제출 표에 있는 이 열은 숫자로 정렬됩니다." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "관리자 레이블" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "제출을 보고/편집하고/내보낼 때 사용되는 레이블입니다." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "청구:" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "배송" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "사용자 정의" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "사용자 정보 필드 그룹" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "사용자 지정 필드 그룹" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "지원 요청 시 이 정보를 포함해 주시기 바랍니다:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "시스템 보고서 받기" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "환경" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "홈 URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "사이트 URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Form 버전" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "워드프레스 버전" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP 멀티사이트 설정됨" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "네" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "아니오" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "웹 서버 정보" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP 버전" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL 버전" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP 로캘" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP 메모리 한도" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP 디버그 모드" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP 언어" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "기본" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP 최대 업로드 크기" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP 포스트 최대 사이즈" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "최대 입력 중첩 수준" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP 시간 한도" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "수호신 설치됨" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "기본 시간대" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "기본 타임존은 %s입니다 - UTC이어야 합니다" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "기본 시간대는 %s입니다." #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "귀하의 서버는 fsockopen 및 cURL이 설정되었습니다." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "귀하의 서버는 fsockopen이 설정되었으며, cURL이 해제되었습니다." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "귀하의 서버는 cURL이 설정되었으며, fsockopen이 해제되었습니다." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "서버가 fsockopen이나 cURL가 가능하지 않습니다 - 다른 서버와 통신하는 PayPal IPN과 다른 스크립트가 작동하지 않을 " "것입니다. 호스팅 서비스에 연락하세요." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP 클라이언트" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "귀하의 서버는 SOAP 클라이언트 클래스가 설정되었습니다." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "귀하의 서버는 %sSOAP 클라이언트%s 클래스가 설정되었습니다. SOAP를 사용하는 일부 게이트웨이 플러그인은 예상대로 작동하지 않을 수 있습니다." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP 원격 게시" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post()에 성공했습니다. - PayPal IPN이 동작 중입니다." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post()에 실패했습니다. PayPal IPN이 귀하의 서버와 동작하지 않습니다. 귀하의 호스팅 제공업체에 문의하세요. 오류:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post()에 실패했습니다. PayPal IPN이 귀하의 서버와 동작하지 않을 수 있습니다." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "플러그인" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "설치된 플러그인" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "플러그인 홈페이지 방문" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "올린이" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "버전" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "양식의 제목을 지정하세요. 제목은 나중에 양식을 찾는 수단이 됩니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "양식에 제출 버튼을 추가하지 않았습니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "입력 마스크" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "아래 목록에 없는 “사용자 지정 마스크” 상자에 귀하가 입력한 문자는 사용자가 입력한 대로 자동으로 입력되며 제거할 수 없습니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "다음은 미리 정의된 마스킹 문자입니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "a - 알파벳(A-Z,a-z)을 나타냄 - 문자 입력만 허용" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "9 - 숫자(0-9)를 나타냄 - 숫자 입력만 허용" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "* - 영숫자(A-Z,a-z,0-9)를 나타냄 - 숫자와 문자 모두 입력 허용" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "따라서 미국 사회 보장 번호에 대한 마스크를 만들려는 경우 상자에 999-99-9999를 입력하게 됩니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "9s는 임의의 숫자를 나타내며, -s는 자동으로 추가됩니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "이는 사용자가 숫자가 아닌 것을 입력하지 못하도록 합니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "특정 애플리케이션을 위해 이들을 결합할 수도 있습니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "예를 들어, A4B51.989.B.43C 양식으로 제품 키가 있었다면, 모든 a는 문자가 되고 9s는 숫자가 되도록 하는 " "a9a99.999.a.99a로 마스킹할 수 있습니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "정의된 필드" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "즐겨찾기 필드" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "결제 필드" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "템플릿 필드" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "사용자 정보" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "모두" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "일괄 작업" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "적용하기" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "페이지당 양식" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "가기" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "첫 번째 페이지로 이동" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "이전 페이지로 이동" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "현재 페이지" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "폐이지 넘기기" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "마지막 페이지로 이동" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "양식 제목" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "이 양식 삭제" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "양식 복제" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "양식 삭제됨" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "양식 삭제됨" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "양식 미리 보기" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "표시하기" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "양식 제목 표시" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "이 페이지에 양식 추가" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "AJAX를 통해 제출하겠습니까(페이지 다시 로드하지 않음)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "성공적으로 완료된 양식을 지우겠습니까?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "이 상자를 선택하면 성공적으로 제출된 후에 Ninja Form이 양식 값을 지웁니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "성공적으로 완료된 양식을 숨기겠습니까?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "이 상자를 선택하면 성공적으로 제출된 후에 Ninja Form이 양식을 숨깁니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "제한 사항" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "양식을 보기 위해 사용자가 로그인해야 합니까?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "로그인되지 않음 메시지" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "위의 “로그인” 확인란이 선택되는 경우 사용자에게 표시되는 메시지이며 사용자가 로그인되지 않습니다." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "제출 제한" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "이 양식이 허용하는 제출의 수를 선택합니다. 제한이 없는 경우는 비워 두십시오." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "제한에 도달했음 메시지" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "이 양식이 해당 제출 제한에 도달하여 새 제출을 허용하지 않을 때 표시할 메시지를 입력하세요." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "양식 설정 저장됨" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "기본 설정" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Form 기본 도움말은 여기로 이동하세요." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Ninja Form 확장" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "설명서가 예정되어 있습니다." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "활성" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "설치됨" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "자세한 정보" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "백업/복원" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Ninja Form 백업" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Ninja Form 복원" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "데이터가 성공적으로 복원되었습니다!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "즐겨찾기 필드 가져오기" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "파일 선택" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "즐겨찾기 가져오기" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "즐겨찾기 필드를 찾을 수 없음" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "즐겨찾기 필드 내보내기" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "필드 내보내기" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "내보낼 즐겨찾기 필드를 선택하세요." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "즐겨찾기를 성공적으로 가져왔습니다." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "유효한 즐겨찾기 필드 파일을 선택하세요." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "양식 가져오기" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "가져오기 양식" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "양식 내보내기" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "내보내기 양식" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "양식을 선택하세요." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "양식을 성공적으로 가져왔습니다." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "유효한 내보내기 양식 파일을 선택하세요." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "제출 가져오기/내보내기" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "날짜 설정" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "일반" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "일반 설정" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "버전" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "날짜 형식" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "%sPHP date() 함수%s 사양을 시도해 보십시오. 하지만 일부 형식은 지원되지 않습니다." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "통화 기호" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA 설정" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA 사이트 키" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "%s여기%s에서 등록하여 도메인의 사이트 키 얻기" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA 비밀 키" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA 언어" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "reCAPTCHA가 사용하는 언어입니다. 언어에 해당하는 코드를 받으려면 %s여기%s를 클릭하세요." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "이 상자를 선택하면, 삭제 시 데이터베이스에서 모든 Ninja Form 데이터가 제거됩니다. %s모든 양식 및 제출 데이터를 복구할 수 " "없게 됩니다.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "관리자 알림 해제" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "Ninja Form의 대시보드에서 관리자 알림을 보지 않습니다. 다시 보려면 선택을 해제합니다." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "이 설정은 플러그인 삭제 시 관련된 모든 Ninja Form을 완전히 제거합니다. 여기에는 제출 및 양식이 포함됩니다. 이 작업은 실행 " "취소할 수 없습니다." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "계속하기" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "설정 저장됨" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "레이블" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "메시지 레이블" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "필수 필드 레이블" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "필요 필드 기호" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "필수 필드가 전부 완료되지 않으면 오류 메시지가 표시됩니다." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "필수 필드 오류" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "스팸 방지 오류 메시지" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "허니팟 오류 메시지" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "타이머 오류 메시지" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript 해제 오류 메시지" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "유효한 이메일 주소를 다시 입력하세요." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "제출 레이블 처리 중" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "이 메시지는 처리 중임을 알리기 위해 사용자가 “제출”을 클릭할 때마다 제출 버튼 내에 표시됩니다." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "암호 불일치 레이블" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "이 메시지는 암호 필드에 일치하지 않는 값이 입력되면 사용자에게 표시됩니다." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "라이선스" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "저장 및 활성화" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "모든 라이선스 비활성화" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Ninja Form 확장 기능에 대한 라이선스를 활성화하려면 먼저 선택한 확장 기능을 %s설치 및 활성화%s해야 합니다. 그러면 라이선스 " "설정이 아래 나타납니다." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "양식 전환 재설정" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "양식 전환 재설정" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "2.9로 업데이트한 후 양식이 “유실”되는 경우 이 버튼은 2.9에서 양식을 표시하기 위해 이전 양식의 재변환을 시도합니다. 모든 현재 " "양식이 “모든 양식” 표에 남게 됩니다." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "모든 현재 양식이 “모든 양식” 표에 남게 됩니다. 일부 경우 어떤 양식은 이 과정 중에 중복될 수 있습니다." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "관리자 이메일" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "사용자 이메일" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "Ninja Form에서 양식 알림을 업그레이드해야 합니다. 업그레이드를 시작하려면 %s여기%s를 클릭하세요." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "Ninja Form에서 이메일 설정을 업데이트해야 합니다. 업그레이드를 시작하려면 %s여기%s를 클릭하세요." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "Ninja Form에서 제출 표를 업그레이드해야 합니다. 업그레이드를 시작하려면 %s여기%s를 클릭하세요." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Ninja Form 버전 2.7로 업데이트해 주셔서 감사합니다. 모든 Ninja Form 확장 기능을 업데이트해 주시기 바랍니다. " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Ninja Form 파일 업로드 확장 기능 버전이 Ninja Form 버전 2.7과 호환되지 않습니다. 버전 1.3.5 이상이어야 합니다. " "이 확장 기능을 업데이트해 주시기 바랍니다. " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Ninja Form 저장 진행률 확장 기능 버전이 Ninja Form 버전 2.7과 호환되지 않습니다. 버전 1.1.3 이상이어야 합니다. " "이 확장 기능을 업데이트해 주시기 바랍니다. " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "양식 데이터베이스 업데이트하기" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "Ninja Form에서 양식 설정을 업그레이드해야 합니다. 업그레이드를 시작하려면 %s여기%s를 클릭하세요." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Form 업그레이드 처리 중" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "위에 보이는 오류와 함께 %s지원에 문의%s하시기 바랍니다." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Form에 가능한 모든 업그레이드가 완료되었습니다!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "양식으로 이동" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Form 업그레이드" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "업그레이드" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "업그레이드 완료" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Form에서 %s개의 업그레이드를 처리해야 합니다. 완료하는 데 몇 분 정도 걸릴 수도 있습니다. %s업그레이드 시작%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "대략 %d 실행 중 %d 단계" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Form 시스템 상태" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "강도 지표" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "매우 약함" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "약함" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "중간" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "강력" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "불일치" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- 한 개 선택" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "귀하가 로봇이 아니며 이 필드가 보이는 경우에는 이 부분을 비워 두시기 바랍니다." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "*로 표시된 필드는 필수입니다." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "필요한 필드입니다." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "필수 필드를 확인하시기 바랍니다." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "계산" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "소수 자릿수." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "텍스트 상자" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "다음으로 출력 계산" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "라벨" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "입력을 해제하겠습니까?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "최종 계산을 삽입하려면 다음 단축 코드를 사용합니다. [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "x가 사용하려는 필드의 ID인 field_x를 사용하여 여기에 계산식을 입력하세요. 예: %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "복합 수식은 다음과 같이 괄호를 추가하여 만들 수 있습니다. %s( field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "다음 연산자를 사용하세요. + - * /. 이 기능은 고급 기능입니다. 0으로 나누기와 같은 경우에 주의하세요." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "자동 총 계산 값" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "연산 및 필드 지정(고급)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "수식 사용(고급)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "계산 방식" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "필드 연산" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "연산 추가" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "고급 수식" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "계산 이름" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "이 이름은 필드의 프로그램식 이름입니다. 예: my_calc, price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "기본 값" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "사용자 지정 CSS 클래스" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- 필드 선택" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "확인란" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "선택 해제됨" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "선택됨" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "표시" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "숨기기" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "변경 값" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "아프가니스탄" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeria" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "American Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarctica" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua and Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Belarus" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgium" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "보스니아 헤르체코비나" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Island" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brazil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "브루나이" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambodia" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Cameroon" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cape Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Cayman Islands" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Central African Republic" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Island" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Islands" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "콩고" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "콩고 민주 공화국" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cook Islands" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "코트디부아르" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "크로아티아(현지 이름: 흐르바트스카)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Czech Republic" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Denmark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominican Republic" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "티모르-레스테(동티모르)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypt" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Ethiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "포클랜드 제도(말비나스)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Faroe Islands" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "France" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "프랑스, 메트로폴리탄" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "French Guiana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "French Polynesia" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "French Southern Territories" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Germany" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Greece" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Greenland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "허드 맥도널드 제도" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "바티칸 시국" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungary" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Iceland" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "이란(이슬람 공화국)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraq" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "아일랜드" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italy" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakhstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "조선민주주의 인민공화국" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "대한민국" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "라오스 민주공화국" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Lebanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "리비아" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lithuania" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxembourg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "마카오" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "구 유고슬라비아 마케도니아 공화국" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldives" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshall Islands" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "미크로네시아연방 공화국" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "몰도바 공화국" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Morocco" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Netherlands" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "네덜란드령 앤틸리스" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "New Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "New Zealand" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Island" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norway" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "팔라우" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Philippines" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Poland" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "러시아 연방" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts and Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent and the Grenadines" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "사모아" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "상투메 프린시페" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "슬로바키아(슬로바키아 제1공화국)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Solomon Islands" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "South Africa" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "사우스조지아 사우스샌드위치 제도" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spain" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "세인트헬레나" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "생피에르에 미클롱 섬" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "스발바르 얀마웬 제도" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Sweden" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Switzerland" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "시리아 아랍공화국" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "탄자니아 합중국" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad and Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turkey" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks and Caicos Islands" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraine" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "영국" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "미국" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "미국령 군소 제도" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "베트남" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "버진 아일랜드(영국령)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "버진 제도(미국령)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "월리스푸투나" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Western Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "유고슬라비아" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "국가" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "기본 국가" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "사용자 지정 첫 번째 옵션 사용" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "사용자 지정 첫 번째 옵션" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "South Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "신용 카드" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "카드 번호 레이블" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "카드 번호" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "카드 번호 설명" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "(일반적으로) 신용 카드 앞면의 16자리입니다." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "카드 CVC 레이블" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "카드 CVC 설명" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "카드의 3자리(뒷면) 또는 4자리(앞면) 값입니다." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "카드 이름 레이블" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "카드에 표시된 이름" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "카드 이름 설명" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "신용 카드 앞면에 인쇄된 이름입니다." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "카드 만료 월 레이블" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "만료 월(MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "카드 만료 월 설명" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "신용 카드가 만료되는 달, 일반적으로 카드 앞면에 있습니다." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "카드 만료 연도 레이블" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "만료 연도(YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "카드 만료 연도 설명" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "신용 카드가 만료되는 연도, 일반적으로 카드 앞면에 있습니다." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Text" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "텍스트 요소" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "숨김 필드" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "사용자 ID(로그인한 경우)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "사용자 이름(로그인한 경우)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "사용자 성(로그인한 경우)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "사용자 표시 이름(로그인한 경우)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "사용자 이메일(로그인한 경우)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "게시물/페이지 ID(해당되는 경우)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "게시물/페이지 제목(해당되는 경우)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "게시물/페이지 URL(해당되는 경우)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "오늘 날짜" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "쿼리문자열 변수" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "이 키워드는 워드플레스를 통해 예약됩니다. 다른 키워드를 사용하세요." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "이메일 주소인가요?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "이 상자를 선택하면 Ninja Form이 이 입력을 이메일 주소로 확인합니다." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "양식 사본을 이 주소로 보낼까요?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "이 상자를 선택하면 Ninja Form이 이 양식 사본(및 연결된 모든 메시지)을 이 주소로 보냅니다." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "허니팟" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "목록" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "사용자의 상태입니다." #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "선택한 값" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "값 추가" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "값 제거" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "계산" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "드랍다운" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "라디오" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "확인란" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "다중 선택" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "목록 유형" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "다중 선택 상자 크기" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "목록 항목 가져오기" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "목록 항목 값 표시" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "가져오기" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "이 기능을 사용하기 위해 귀하의 CSV를 위의 텍스트 영역에 붙일 수 있습니다." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "해당 포맷은 다음과 같이 보입니다." #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "레이블,값,계산" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "빈 값 또는 계산을 보내려는 경우 ‘’를 사용해야 합니다." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "선택됨" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "숫자" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "최솟값" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "최댓값" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "단계(증가할 양)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "구성 도우미" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "비밀번호" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "등록 암호 필드로 사용" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "이 상자를 선택하면 암호 및 암호 확인 텍스트 상자가 모두 출력됩니다." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "암호 다시 입력 레이블" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "암호 다시 입력" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "암호 강도 지표 표시" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "힌트: 암호는 7자 이상이어야 합니다. 더 강력하게 하려면 대문자와 소문자, 숫자 및 특수문자(! “ ? $ % ^ &)를 사용하십시오." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "암호가 일치하지 않음" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "별점" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "별 수" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "귀하가 로봇이 아님을 확인합니다." #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Captcha 필드를 완료하세요." #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "귀하의 사이트 및 비밀 키를 정확하게 입력했는지 확인하세요." #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha가 일치하지 않습니다. Captcha 필드에 올바른 값을 입력하세요." #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "스팸 방지" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "스팸 질문" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "스팸 답변" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "저장하기" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "세금" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "세금 백분율" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "백분율로 입력해야 합니다(예: 8.25%, 4%)." #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "텍스트 영역" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "서식 있는 텍스트 편집기 표시" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "미디어 업로드 버튼 표시" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "모바일에서 서식 있는 텍스트 편집기 해제" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "이메일 주소로 확인할까요? (필드는 필수여야 함)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "입력 해제" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datepicker" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "전화 - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "통화" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "사용자 지정 마스크 정의" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "도움말" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "시간이 초과된 제출" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "타이머가 만료된 후의 제출 버튼 텍스트" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "%n초 기다려 주십시오." #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "초 수를 구분하기 위해 %n이(가) 사용됩니다." #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "카운트다운 시간(초)" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "사용자가 양식 제출을 위해 기다려야 하는 시간입니다." #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "귀하가 로봇이 아닌 경우에는 천천히 하시기 바랍니다." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "이 양식을 제출하려면 JavaScript가 필요합니다. 설정한 후에 다시 시도하십시오." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "목록 필드 매핑" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "관심 그룹" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "단일" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "복수" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "목록" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "새로고침" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "메타박스" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "제출 메타박스" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "사용자 메타(로그인한 경우)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "요금 결제" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "양식을 찾을 수 없습니다." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "생성일" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "제목" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "업데이트됨" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "귀하의 시도가 실패했습니다." #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "상위 항목:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "모든 항목" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "새 항목 추가" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "새 항목" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "항목 편집" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "항목 업데이트" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "항목 보기" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "항목 검색" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "휴지통에 없음" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "양식 제출" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "제출 정보" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "새 양식 추가" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "양식 템플릿 가져오기 오류입니다." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "필드" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "업로드된 파일의 형식이 유효하지 않습니다." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "유효하지 않은 양식이 업로드되었습니다." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "양식 가져오기" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "양식 내보내기" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "수식(고급)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "연산 및 필드(고급)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "자동 합계 필드" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "업로드한 파일이 php.ini에서 upload_max_filesize 지시문을 초과했습니다." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "업로드한 파일이 HTML 양식에서 지정된 MAX_FILE_SIZE 지시문을 초과했습니다." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "업로드된 파일은 부분만 업로드됐습니다." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "업로드한 파일이 없습니다." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "임시 폴더가 없습니다." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "디스크에 파일을 작성하지 못했습니다." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "확장자에 의해 파일 업로드가 중단되었습니다." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "알려지지 않은 업로드 오류입니다." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "파일 업로드 오류" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "애드온 라이선스" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "마이그레이션 및 모의 데이터 완료. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "양식 보기" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "변경 사항 저장" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "서버 IP 주소" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "호스트 이름" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Ninja Form 추가" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "양식을 찾을 수 없음" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "영역을 찾을 수 없음" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "예기치 못한 오류가 발생했습니다." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "미리 보기가 존재하지 않습니다" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "지불 게이트웨이" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "결제 합계" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "후크 태그" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "이메일 주소 또는 필드 검색" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "제목 텍스트 또는 필드 검색" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "CSV 첨부" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "여기에 레이블 삽입" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "여기에 도움말 텍스트" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "양식 필드의 레이블을 입력하십시오. 사용자는 이런 식으로 개별 필드를 식별할 수 있습니다." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "양식 기본값" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "보이지 않음" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "필드 요소 자체에 대해 상대적인, 레이블의 위치를 선택하십시오." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "필수 필드" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "양식을 제출하기 전에 이 필드를 반드시 작성해야 합니다." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "숫자 옵션" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "최소" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "최대" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "단계" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "선택사항" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "1" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "1" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "2" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "2" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "3" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "3" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "계산 값" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "귀하의 사용자가 이 필드에 입력할 수 있는 종류를 제한합니다." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "없음" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "미국 전화" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "사용자 정의" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "사용자 지정 마스크" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - 알파벳(A-Z,a-z)을 나타냄 - 문자 입력만 허용. " "
    • \n
    • 9 - 숫자(0-9)를 나타냄 - 숫자 입력만 " "허용.
    • \n
    • * - 영숫자(A-Z,a-z,0-9)를 나타냄 - " "숫자와\n 문자 모두 입력 허용.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "이 숫자만큼 입력 제한" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "자" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "단어" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "카운터 후에 나타낼 텍스트" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "왼쪽에 문자(들)" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "사용자가 데이터를 입력하기 전에 필드에 표시하려는 텍스트를 입력합니다." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "사용자 지정 클래스 이름" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "컨테이너" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "필드 래퍼에 추가 클래스를 추가합니다." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "요소" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "필드 요소에 추가 클래스를 추가합니다." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "2019년 11월 18일 금요일" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "현재 날짜로 기본값 지정" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "제출 시간 초과 시간(초)." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "필드 키" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "사용자 지정 개발을 위한 필드를 확인 및 대상으로 지정할 고유한 키를 만듭니다." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "제출을 보고 내보낼 때 사용되는 레이블입니다." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "가리킨 항목으로 표시됩니다." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "설명" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "숫자로 정렬" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "제출 표에 있는 이 열은 숫자로 정렬됩니다." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "카운트다운 시간(초)" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "등록 암호 필드로 사용합니다. 이 상자를 선택하면,\n 암호 및 암호 확인 텍스트 상자가 모두 출력됩니다." #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "확인" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "서식 있는 텍스트 입력을 허용합니다." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "레이블 처리 중" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "확인된 계산 값" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "이 숫자는 상자가 선택된 경우 계산에서 사용됩니다." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "확인되지 않은 계산 값" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "이 숫자는 상자가 선택되지 않은 경우 계산에서 사용됩니다." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "이 계산 변수 표시" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- 변수 선택" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "가격" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "사용 수량" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "사용자가 이 제품을 하나 이상 선택할 수 있도록 허용합니다." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "상품 형식" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "단일 제품(기본)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "여러 제품 - 드롭다운" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "여러 제품 - 다수 선택" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "여러 제품 - 한 개 선택" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "사용자 입력" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "비용" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "비용 옵션" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "단일 비용" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "비용 드롭다운" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "비용 유형" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "제품" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- 제품 선택" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "응답" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "양식의 스팸 제출을 방지하기 위한 대소문자 구분 답변." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "분류법" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "새 용어 추가" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "사용자의 상태입니다." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "처리 중인 필드를 표시하는 데 사용됩니다." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "저장된 필드" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "일반 필드" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "사용자 정보 필드" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "가격 필드" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "레이아웃 필드" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "기타 필드" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "귀하의 양식이 성공적으로 제출되었습니다." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "닌자 양식 제출" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "저장 제출" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "변수 이름" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "수식" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "기본 레이블 위치" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "래퍼" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "양식 키" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "이 양식을 참조하는 데 사용할 수 있는 프로그래밍 방식 이름." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "제출 버튼 추가" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "귀하의 양식에 제출 버튼이 없습니다. 저희가 자동으로 제출 버튼을 추가해 드릴 수 있습니다." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "로그인 됨" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "양식 미리 보기에 적용됩니다." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "제출 제한" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "양식 미리 보기에 적용되지 않습니다." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "표시 설정" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "계산" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Form" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "가격:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "수량:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "추가하기" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "새 창에서 열기" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "귀하가 로봇이 아니며 이 필드가 보이는 경우에는 이 부분을 비워 두시기 바랍니다." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "사용 가능" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "유효한 이메일 주소를 입력하시기 바랍니다!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "영역이 일치해야 합니다!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "최소 수 오류" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "최대 수 오류" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "증가: " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "링크 삽입" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "미디어 삽입" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "이 양식을 제출하기 전에 오류를 수정하시기 바랍니다." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "허니팟 오류" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "파일 업로드 진행 중." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "파일 업로드" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "모든 필드" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "하위 시퀀스" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "게시물 ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "글 제목" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "글 URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP 주소" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "사용자 ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "이름" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "성" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "이름 보이기" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "독단적인 스타일" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "밝음" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "어두움" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "기본 Ninja Form 스타일링 규칙을 사용합니다." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "롤백" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "v2.9.x(으)로 롤백" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "최신 2.9.x 릴리스로 롤백합니다." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha 설정" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA 테마" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "서식 있는 텍스트 편집기(RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "고급" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "관리" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "빈 양식" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "문의" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "모의 성공 메시지 동작" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "{field:name}, 이 양식을 작성해 주셔서 감사합니다!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "모의 이메일 동작" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "이것은 이메일 동작입니다." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "안녕하세요! Ninja Form입니다." #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "모의 저장 동작" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "이것은 테스트입니다." #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "홍길동" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "이것은 또 다른 테스트입니다." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "지원 받기" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "무엇을 도와드릴까요?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "동의하십니까?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "가장 좋은 연락 수단은 무엇인가요?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "전화" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "일반 우편" #: includes/Database/MockData.php:315 msgid "Send" msgstr "보내기" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "목록 선택" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "첫 번째 옵션" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "두 번째 옵션" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "세 번째 옵션" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "라디오 목록" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "욕실 세면대" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "확인란 목록" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "다음은 모두 사용자 정보 섹션에 있는 영역입니다." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "주소" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "도시" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "우편 번호" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "다음은 모두 가격 섹션에 있는 영역입니다." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "제품(수량 포함)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "제품(개별 수량)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "수량" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "총합" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "신용 카드 전체 이름" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "신용 카드 번호" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "신용 카드 CVV" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "신용 카드 만료" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "신용 카드 우편 번호" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "다음은 다양한 특별 영역입니다." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "스팸 방지 질문(답변 = 답변)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "응답" #: includes/Database/MockData.php:805 msgid "processing" msgstr "처리중" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "긴 양식 - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " 필드" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "필드 번호" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "이메일 구독 양식" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "이메일 주소" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "이메일 주소를 입력하십시오." #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "구독" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "제품 양식(수량 영역 포함)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "구매" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "구매함 " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "제품 " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "제품 양식(인라인 수량)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " 제품 " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "제품 양식(여러 제품)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "제품 A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "제품 A 수량" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "제품 B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "제품 B 수량" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "제품 A 및 " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "제품 B($)" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "계산 포함 양식" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "나의 첫 번째 계산" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "나의 두 번째 계산" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "계산은 AJAX 응답(응답 -> 데이터 -> 계산)을 반환합니다." #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "복사" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "양식 저장" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "신용 카드 지역 코드" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "양식 미리 보기로 로그인해야 합니다." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "필드를 찾을 수 없습니다." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "알림: 양식 지정 없이 사용되는 Ninja Form 단축 코드입니다." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "양식 지정 없이 사용되는 Ninja Form 단축 코드입니다." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "주소 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "버튼" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "단일 확인란" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "선택됨" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "선택 해제됨" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "신용 카드 CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Select" #: includes/Fields/ListState.php:26 msgid "State" msgstr "주" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "참고 텍스트는 아래 참고 필드의 고급 설정에서 편집할 수 있습니다." #: includes/Fields/Note.php:45 msgid "Note" msgstr "참고" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "암호 확인" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "비밀번호" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Recaptcha를 완료하세요." #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "사전 배송" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "문항" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "질문 위치" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "부정확한 답변" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "별 수" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "용어 목록" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "이 분류법에 사용 가능한 용어가 없습니다. %s용어 추가%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "선택된 분류법이 없습니다." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "사용 가능한 용어" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "단락 텍스트" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "단일 줄 텍스트" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "우편번호" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "올리기" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "쿼리 문자열" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "쿼리 문자열" #: includes/MergeTags/System.php:13 msgid "System" msgstr "시스템" #: includes/MergeTags/User.php:13 msgid "User" msgstr "사용자" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " 업데이트가 필요합니다. 버전 " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " 이(가) 설치되어 있습니다. 현재 버전은 " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "편집 영역" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "레이블 이름" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "위의 영역" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "아래 영역" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "영역 왼쪽" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "영역 오른쪽" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "레이블 숨기기" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "클래스 이름" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "기본 영역" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "다중 선택" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "새 영역 추가" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "새 동작 추가" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "메뉴 확장" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "게시" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "게시" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "로드 중" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "변경 사항 보기" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "양식 영역 추가" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "첫 번째 양식 영역을 추가하여 시작합니다." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "새 영역 추가" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "여기를 클릭하고 원하는 영역을 선택하세요." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "이렇게 간단합니다. 또는..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "템플릿으로 시작하세요." #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "연락처" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "간단한 연락처 양식으로 사용자가 귀하에게 연락할 수 있습니다. 필요에 따라 영역을 추가 및 제거할 수 있습니다." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "견적 요청" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "이 템플릿으로 웹사이트에서 견적 요청을 쉽게 관리합니다. 필요에 따라 영역을 추가 및 제거할 수 있습니다." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "이벤트 등록" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "사용자가 다음 이벤트를 등록하여 쉽게 양식을 완료할 수 있습니다. 필요에 따라 영역을 추가 및 제거할 수 있습니다." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "뉴스레터 등록 양식" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "이 뉴스레터 등록 양식으로 구독자를 추가하고 이메일 목록을 추가합니다. 필요에 따라 영역을 추가 및 제거할 수 있습니다." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "양식 추가 동작" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "첫 번째 양식 영역을 추가하여 시작합니다. 더하기 기호를 클릭하여 원하는 동작을 선택합니다. 이렇게 간단합니다." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "복제(^ + C + 클릭)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "삭제(^ + D + 클릭)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "작업" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "서랍 설정/해제" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "전체 화면" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "절반 화면" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "실행 취소" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "완료" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "모두 실행 취소" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " 모두 실행 취소" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "거의 다 끝나갑니다..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "아직 실행 안 함" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " 새 창에서 열기" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "비활성화" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "수정합니다." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- 양식 선택" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "실제 날짜" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "저희 지원 팀의 도움을 요청하기 전에 다음을 검토하시기 바랍니다." #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Form 3 설명서" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "지원에 문의하기 전에 점검할 사항" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "지원 범위" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "필드 가져오기" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "업데이트 날짜: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "제출 날짜: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "제출: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "제출 데이터" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "보기" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "더 보기" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "편집 영역" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "양식 영역" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "변경 사항 미리 보기" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "연락 형식" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "이런! 해당 애드온은 아직 Ninja Forms THREE와 호환되지 않습니다. %s자세히 알아봅니다%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s이(가) 비활성화되었습니다!" #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Ninja Form의 개선을 위해 도와주십시오!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "여기에 참여하시면 Ninja Form 설치에 대한 일부 데이터가 NinjaForms.com으로 전송됩니다(귀하의 제출은 포함되지 않음)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "이 과정은 건너 뛰어도 괜찮습니다! Ninja Form이 동작하는 데에는 문제가 없습니다." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%s허용%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%s허용 안 함%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "귀하는 권한이 없습니다." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "권한이 거부됨" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Form 개발" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "디버그: 2.9.x로 전환" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "디버그: 3.0.x로 전환" lang/ninja-forms-zh_TW.po000064400000617045152331132460011316 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "注意: 此內容需要 JavaScript。" #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "作弊喔?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "標有 %s*%s 為必填欄位" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "請確保所有必填欄位已填妥。" #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "這是必填欄位。" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "請正確回答反垃圾郵件的提問。" #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "請在垃圾郵件欄位留空。" #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "請等待提交表單。" #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "若未啟用 JavaScript 則不能提交表單。" #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "請輸入有效的電子郵件地址。" #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "處理中" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "輸入的密碼不相符。" #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "新增表單" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "選取要搜尋的表單或類型" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "取消" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "插入" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "表單 ID 無效" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "增加轉換率" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "您知道可以將較大的表單分成多個較小且易於處理的表單,以增加表單轉換率嗎?

    適用於 Ninja Form 的多份表單擴充功能可輕鬆快速做到這點。

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "深入瞭解多份表單" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "稍後" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "隱藏" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "如果使用者可以先儲存之後再回來完成提交,他們會比較願意填寫較長的表單。

    Ninja Form 的儲存進度擴充功能可輕鬆快速做到這點。

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "深入瞭解儲存進度" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "電子郵件" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "寄件者名稱" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "名稱或欄位" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "會依此名稱建立電子郵件。" #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "寄件者電子郵件地址" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "一個電子郵件地址或欄位" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "會依此電子郵件地址建立電子郵件。" #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "收件人" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "電子郵件地址或搜尋欄位" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "誰會收到此封電子郵件?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "主旨" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "主旨文字或搜尋欄位" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "這會是電子郵件主旨。" #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "電子郵件訊息" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "附件" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "提交 CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "進階設定" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "格式" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "純文字" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "回覆" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "副本" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "密件副本" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "重新導向" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "成功信息" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "表單之前" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "表單之後" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "地點" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "訊息" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "複製" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "停用" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "啟用" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "編輯" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "刪除" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "複製" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "名稱" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "類型" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "更新日期" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- 檢視所有類型" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "取得更多類型" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "電子郵件與動作" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "新增項目" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "新動作" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "編輯動作" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "返回清單" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "動作名稱" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "取得更多動作" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "更新動作" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "選取要搜尋的欄位或類型" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "插入欄位" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "插入所有欄位" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "請選取表單以檢視提交項目" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "找不到提交項目" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "提交項目" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "提交項目" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "新增提交項目" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "編輯提交項目" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "新提交項目" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "檢視提交項目" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "搜尋提交項目" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "垃圾筒中找不到提交項目" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "日期" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "編輯這個項目" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "匯出此項目" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "匯出" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "將此項目移至垃圾桶" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "垃圾桶" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "從垃圾桶中回復此項目" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "回復" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "永久刪除這個項目" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "永久刪除" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "未發佈" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s 前" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "已提交" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "選取表單" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "開始日期" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "結束日期" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "已更新。" #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "自定欄位更新。" #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "自定欄位刪除。" #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "已從 %2$s 還原 %1$s 以修訂。" #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "已發佈 %s。" #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s 已儲存。" #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "已提交 %1$s。 預覽%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "已為以下項目排程 %1$s: %2$s預覽%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "已更新 %1$s 份草稿。 預覽%3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "下載所有提交項目" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "返回清單" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "使用者提交值" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "提交項目狀態" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "欄位" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "值" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "狀態" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "表格" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "提交日期" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "修改日期" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "提交人員" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "更新" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "提交日期" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "網路無法啟動 Ninja Form。 請造訪每個網站的儀表板以啟動外掛程式。" #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "您會在購買電子郵件中找到此資訊。" #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "金鑰" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "無法啟動授權。 請檢查您的授權金鑰。" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "停用授權" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "使用者提交值:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "感謝您填寫此表單。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "有可用的新版本 %1$s。 檢視版本 %3$s 詳細資料。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "有可用的新版本 %1$s。 檢視版本 %3$s " "詳細資料立即更新。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "您沒有安裝此外掛程式更新的權限" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "錯誤" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "標準欄位" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "版面配置元素" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "建立文章" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "請在 %sWordPress.org%s 上為 %sNinja Form%s %s 評分,協助我們提供免費的應用程式。 WP Ninjas 團隊感謝您!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Form 小工具" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "顯示標題" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "無" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "表單" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "所有表單" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms 更新" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "升級" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "匯入/匯出" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "匯入/匯出" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form 設定" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "設定" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "系統狀態" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "附加元件" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "預覽" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "儲存" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "剩餘字元" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "不要顯示這些字詞" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "儲存選項" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "預覽表單" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "升級為 Ninja Form 3" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "您符合升級為 Ninja Form 3 版本的候選人! %s立即升級%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "第 3 版來了!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "Ninja Form 即將有重大更新。 %s深入瞭解新功能、向下相容以及其他常見問題。%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "一切都還好嗎?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "感謝您使用 Ninja Form! 我們希望您找到了一切所需的功能,但如果您有任何問題:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "請查看我們的文件" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "取得幫助" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "編輯功能表項目" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "選擇全部" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "附錄 A Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "您要將此最愛命名為?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "您必須為此最愛提供名稱。" #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "確定要停用所有授權?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "為 v2.9+ 重設表單轉換程序" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "在解除安裝時移除「所有」Ninja Form 資料?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "編輯表單" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "已儲存" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "正在儲存..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "移除此欄位? 即使您未儲存也會移除。" #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "檢視提交項目" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Form 處理" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Form - 處理" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "正在載入..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "無需進行特定動作..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "已開始程序,感謝您的耐心。 可能需要數分鐘的時間。 程序完成時,系統會將您自動導向。" #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "歡迎使用 Ninja Form %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "謝謝您的更新! Ninja Form %s 讓您輕鬆建立表單!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "歡迎使用 Ninja Form " #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Form 變更記錄" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "開始使用 Ninja Form" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Ninja Form 團隊" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "最新動向" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "開始進行" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "信用" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "版本 %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "簡化且更強大的表單製作體驗。" #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "新架設大師索引標籤" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "建立和編輯表單時,直接瞭解最重要的部份。" #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "更有組織的欄位設定" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "系統會立即顯示最常見的設定,其他較不重要的設定則位於可擴充的區段中。" #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "改善明確性" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "我們移除了「製作表單」和「通知」索引標籤,並加入了「電子郵件和動作」。 此索引標籤中包含了更清楚的可進行事項說明。" #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "移除所有 Ninja Form 資料" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "我們已新增選項,在您刪除外掛程式時移除所有 Ninja Form 資料 (提交項目、表單、欄位、選項)。 我們稱該選項為核子選項。" #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "更佳的授權管理" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "從設定索引標籤中個別或以群組方式停用 Ninja Form 擴充功能授權。" #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "更多新功能" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "此版本的介面更新為未來可能的增強功能提供了良好的基礎。 版本 3.0 會建置這些變更,讓 Ninja Form 成為更穩定、更強大且更友善的表單架設大師。" #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "文件" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "深入查看以下的 Ninja Form 文件。" #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Form 文件" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "取得支援" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "返回 Ninja Form" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "檢視完整的變更記錄" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "完整的變更記錄" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "前往 Ninja Form" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "使用下方的小秘訣開始使用 Ninja Form。 您很快就能上手!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "有關 Ninja Form" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "「表單」功能表中包含 Ninja Form 的所有功能。 我們已建立了第一個%s聯絡人表單%s可以做為您的範例。 您也可以按一下%s新增項目%s自行建立。" #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "建置您的表單" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "您可以新增欄位並將其以您希望的順序拖曳,以製作表單。 每個欄位都包含標籤、標籤位置以及預留位置等選項。" #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "電子郵件與動作" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "如果您希望在使用者按下提交時收到電子郵件通知,可以在此索引標籤中設定。 您可以建立無限量的電子郵件,包括寄送給填寫表單之使用者的電子郵件。" #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "此索引標籤保有常用的表單設定以及顯示設定,例如在成功完成之後隱藏表單。" #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "顯示您的表單" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "附加至頁面" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "在「表單設定」中的「基本表單行為」下,您可以輕鬆選取您要在頁面內容的結尾處自動弣加表單的頁面。 每個內容編輯畫面的側邊欄都有相似的選項可供使用。" #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "短代碼" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "將 %s 放置在接受短碼的所有區域中,以在您選擇的位置顯示表單。 您可以在頁面或貼文內容中間顯示表單。" #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "Ninja Form 提供小工具可讓您放置在網站任何可放置小工具的區域,也可選取要在該空間顯示的表格。" #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "範本功能" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "Ninja Form 也搭配了簡易的範本功能,可以直接放置在 PHP 範本檔案中。 %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "需要幫助?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "更多的文件" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "我們提供更多的文件,內容包含%s疑難排解%s及%s開發人員 API%s,應有盡有。 我們會隨時加入新文件。" #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "業界最佳的支援服務" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "我們致力於提供每位使用 Ninja Form 的使用者更好的支援服務。 如果您遇到問題或有任何疑問,%s請與我們聯絡%s。" #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "感謝您更新為最新版本! Ninja Form %s 的目的就是要讓您的管理提交項目工作更有趣!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "Ninja Form 是由一群來自世界各地的開發人員所建立,目標是提供最棒的 WordPress 社群表單建立外掛程式。" #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "找不到有效的變更記錄。" #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "檢視 %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "停用瀏覽器自動完成功能" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%s勾選的%s計算值" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "如果%s已勾選%s,則會使用該值。" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%s取消勾選的%s計算值" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "如果%s已取消勾選%s,則會使用該值。" #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "包含在自動總計中? (如果已啟用該功能)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "自訂 CSS 類別" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "在所有項目之前" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "在標籤之前" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "在標籤之後" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "在所有項目之後" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "如果啟用「描述文字」功能,輸入欄位旁會出現問號 %s。 讓滑鼠在問號上暫留會顯示描述文字。" #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "新增描述" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "描述位置" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "描述內容" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "如果啟用「說明文字」功能,輸入欄位旁會出現問號 %s。 讓滑鼠在問號上暫留會顯示說明文字。" #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "顯示說明文字" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "說明文字" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "如果您將方塊留白,則不會使用限制" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "限制輸入為此號碼" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "的" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "字元" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "字詞" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "字元/字詞計數之後顯示的文字" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "元素左側" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "元素上方" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "元素下方" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "元素右側" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "元素中" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "標籤位置" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "欄位 ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "限制設定" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "計算設定" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "刪除" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "以分類法植入" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- 無" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "標記符號" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "必填" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "儲存欄位設定" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "依數值排序" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "如果勾選此方塊,提交項目中的此欄位會依數字排序。" #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "管理標籤" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "這是在檢視/編輯/匯出提交項目時使用的標籤。" #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "帳單:" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "運送方式" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "自訂" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "使用者資訊欄位群組" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "自訂欄位群組" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "請在要求支援時提供此資訊:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "取得系統報表" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "環境" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "WordPress 網址" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "網站網址" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Form 版本" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP 版本" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "啟用 WP 多網站" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "是" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "否" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web 伺服器資訊" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP 版本" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL 版本" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP 地區" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP 記憶體限制" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP 偵錯模式" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP 語言" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "預設" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP 最大上傳大小" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "最大輸入巢狀等級" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN 已安裝" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "預設時區" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "預設時區為 %s - 應該為 UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "預設時區為 %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "您的伺服器已啟用 fsockopen 和 cURL。" #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "您的伺服器已啟用 fsockopen,停用 cURL。" #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "您的伺服器已啟用 cURL,停用 fsockopen。" #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "你的伺服器未啟用 fsockopen 或 cURL - PayPal IPN 及需與其他伺服器通訊的腳本將無法使用。請與你的主機服務商聯絡。 " #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP 用戶端" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "您的伺服器已啟用 SOAP 用戶端類別。" #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "您的伺服器並未啟用 %sSOAP 用戶端%s類別 - 使用 SOAP 的部分閘道外掛程式可能無法如預期運作。" #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP 遠端貼文" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() 成功 - PayPal IPN 運作正常。" #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "wp_remote_post() 失敗。 PayPal IPN 無法搭配您的伺服器運作。 連絡您的主機提供者。 錯誤:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() 失敗。 PayPal IPN 無法搭配您的伺服器運作。" #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "外掛程式" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "已安裝外掛程式" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "前往外掛主頁" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "由" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "版本" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "為表單建立標題。 稍後您可利用此標題找到表單。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "您尚未在表單中新增提交按鈕。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "輸入遮罩" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "您在「自訂遮罩」方塊中輸入的任何不在下方清單中的字元,會在使用者鍵入時自動輸入,且無法移除" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "這些是預先定義的遮罩字元" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "a - 表示字母字元 (A-Z,a-z) - 只能輸入字母" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "a - 表示數值字元 (A-Z,a-z) - 只能輸入數字" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "* - 表示英數字元 (A-Z、a-z、0-9) - 可輸入字母及數字" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "因此,如果您希望建立美國社會安全碼的遮罩,您應該在方塊中輸入 999-99-9999" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "這些 9 表示任何數字,而 - 會自動加入" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "這可防止使用者輸入數字以外的字元" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "您也可以針對特定的應用程式結合兩者" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "例如,如果您的產品金鑰格式為 A4B51.989.B.43C,您可以用下列遮罩:a9a99.999.a.99a,如此會強制所有 s 必須是字母,而所有 9 必須是數字" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "定義欄位" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "最愛欄位" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "付款欄位" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "範本欄位" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "使用者資訊" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "全部" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "批量操作" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "套用" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "每個頁面的表單" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "送出" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "跳至第一頁" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "跳至上一頁" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "目前頁面" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "跳至下一頁" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "跳至最後一頁" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "表單標題" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "刪除此表單" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "複製表單" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "已刪除表單" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "已刪除表單" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "已刪除預覽" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "顯示" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "顯示表單標題" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "在頁面中新增表單" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "透過 AJAX 提交 (無需頁面重新載入)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "清除成功完成的表單?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "如果勾選此方塊,Ninja Form 會在成功提交之後清除表單。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "隱藏成功完成的表單?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "如果勾選此方塊,Ninja Form 會在成功提交之後隱藏表單。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "限制" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "使用者必須登入才能檢視表單?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "未登入訊息" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "如果上方的「已登入」核取方塊已勾選但使用者並未登入,會向使用者顯示此訊息。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "限制提交項目" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "選取此表單接受的提交項目數量。 無限制者留空白。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "限制到達訊息" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "請輸入您要在表單達到提交項目限制且不接受新提交項目時顯示的訊息。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "已儲存表單設定" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "基本設定" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Form 基本說明在此。" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "延伸 Ninja Form" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "文件即將上線。" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "啟用" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "已安裝" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "學習更多" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "備份/還原" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "備份 Ninja Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "還原 Ninja Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "資料成功還原!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "匯入最愛欄位" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "選取檔案" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "匯入最愛" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "找不到最愛欄位" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "匯出最愛欄位" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "匯出欄位" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "請選取要匯出的最愛欄位。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "最愛成功匯入!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "請選取有效的最愛欄位檔案。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "匯入表單" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "匯入表單" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "匯出表單" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "匯出表單" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "請選取表單。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "表單成功匯入。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "請選取有效的已匯出表單檔案。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "匯入/匯出提交項目" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "日期設定" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "一般" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "一般設定" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "版本" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "日期格式" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "試著遵循 %sPHP date() 函式%s規格,但並不支援每一種格式。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "貨幣符號" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA 設定" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA 網站金鑰" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "%s在這裡%s註冊以取得網域的網站金鑰" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA 祕密金鑰" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA 語言" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "reCAPTCHA 使用的語言。 要取得您語言的代碼請安一下%s這裡%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "如果已勾選此方塊,刪除 Ninja Form 也會一併移除「所有」Ninja Form 資料。 %s無法復原所有表單及提交項目資料。%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "停用管理員通知" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "不要在 Ninja Form 儀表板上看到管理員通知。 取消勾選就能看到通知。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "此設定會在刪除外掛程式時「完全」移除與 Ninja Form 相關的所有資料。 包括「提交項目」及「表單」。 此動作無法復原。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "繼續" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "已儲存設定" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "標籤" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "訊息標籤" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "需要欄位標籤" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "需要欄位符號" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "如果所有必要欄位都未完成, 則會出現錯誤訊息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "需要欄位標籤" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "反垃圾錯誤訊息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot 錯誤訊息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "計時錯誤訊息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "停用 JavaScript 錯誤訊息" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "請輸入有效的電子郵件地址" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "處理提交項目標籤" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "當使用者按下「提交」時,會在提交按鈕中顯示此訊息,讓使用者知道正在處理提交。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "密碼不符標籤" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "當密碼欄位出現了不相符的值時,會向使用者顯示此訊息。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "授權" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "儲存並啟動" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "取消啟動所有授權" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "要啟動 Ninja Form 擴充功能的授權,您必須先%s安裝和啟動%s選取的擴充功能。 接著授權設定會在下方顯示。" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "重設表單轉換" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "重設表單轉換" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "如果您在更新至 2.9 之後表單「消失」,此按鈕會嘗試重新轉換您的舊表單,以便在 2.9 中顯示。 目前所有表單仍然位於「所有表單」表格中。" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "目前所有表單仍然位於「所有表單」表格中。 在部分情況下,一些表單可能會在此程序期間加以複製。" #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "管理者電郵地址" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "使用者電子郵件" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "Ninja Form 需要升級您的表單通知,按一下%s這裡%s以開始升級。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "Ninja Form 需要更新您的電子郵件設定,按一下%s這裡%s以開始升級。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "Ninja Form 需要升級提交項目表格,按一下%s這裡%s以開始升級。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "感謝您更新為 2.7 版本的 Ninja Form。 請更新所有 Ninja Form 擴充功能 " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "您的 Ninja Form 檔案上傳擴充功能與 2.7 版本的 Ninja Form 不相容。 至少需要 1.3.5 版本。 請在下列位置更新此擴充功能: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "您的 Ninja Form 儲存進度擴充功能與 2.7 版本的 Ninja Form 不相容。 至少需要 1.1.3 版本。 請在下列位置更新此擴充功能: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "更新表單資料庫" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "Ninja Form 需要升級您的表單設定,按一下%s這裡%s以開始升級。" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Form 升級處理" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "請%s聯絡支援中心%s以協助處理出現的錯誤。" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Form 已完成所有可用的更新!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "前往表單" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Form 升級" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "升級" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "升級完成" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "Ninja Form 需要處理 %s 個更新。 此操作可能需要幾分鐘。 %s開始升級%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "步驟 %d,大約有 %d 個正在執行" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Form 系統狀態" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "強度指示器" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "非常弱" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "弱" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "中" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "强" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "不符合" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- 選取一個" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "如果您不是機器人而且看得到此欄位,請留白。" #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "標有 * 為必填欄位。" #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "這是必填欄位。" #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "請檢查所有必填欄位。" #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "計算" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "小數點數目。" #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "文字方塊" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "將計算輸出為" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "標籤" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "停用輸入?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "使用下列短碼插入最終計算: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "您可以在此使用 field_x 輸入計算等式,其中 x 表示您要使用的欄位 ID。 例如,%sfield_53 + field_28 + field_65%s。" #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "您可以新增括弧來建立複雜等式: %s( field_45 * field_2 ) / 2%s。" #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "請使用這些運算子: + - * /。 這是進階功能。 特別注意用 0 相除的項目。" #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "自動加總值" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "指定操作和欄位 (進階)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "使用等式 (進階)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "計算方法" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "欄位操作" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "新增操作" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "進階等式" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "計算名稱" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "這是您欄位的程式設計名稱。 範例為:my_calc、price_total、user-total。" #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "預設值" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "自訂 CSS 類別" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- 選取欄位" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "勾選方塊" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "取消勾選" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "已勾選" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "顯示此項目" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "隱藏此項目" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "變更值" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "阿富汗" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "阿爾巴尼亞" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "阿爾及利亞" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "美屬薩摩亞" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "安道爾" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "安哥拉" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "安圭拉" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "南極洲" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "安提瓜和巴布達" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "阿根廷" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "亞美尼亞" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "阿魯巴" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "澳大利亞" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "奧地利" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "阿塞拜疆" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "巴哈馬" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "巴林" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "孟加拉國" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "巴巴多斯" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "白俄羅斯" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "比利時" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "伯利茲" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "貝寧" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "百慕大" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "不丹" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "玻利維亞" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "波士尼亞與赫塞哥維納" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "博茨瓦納" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "布威島" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "巴西" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "英屬印度洋領地" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "汶萊" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "保加利亞" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "布基納法索" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "布隆迪" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "柬埔寨" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "喀麥隆" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "加拿大" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "佛得角" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "開曼群島" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "中非共和國" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "乍得" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "智利" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "中國" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "聖誕島" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "科科斯群島" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "哥倫比亞" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "科摩羅" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "剛果" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "剛果民主共和國" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "庫克群島" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "哥斯達黎加" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "象牙海岸" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "克羅埃西亞 (本地名稱: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "古巴" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "塞浦路斯" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "捷克共和國" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "丹麥" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "吉布提" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "多米尼加" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "多米尼加共和國" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "東帝汶" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "厄瓜多爾" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "埃及" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "薩爾瓦多" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "赤道幾內亞" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "厄立特里亞" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "愛沙尼亞" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "埃塞俄比亞" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "福克蘭群島" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "法羅群島" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "斐" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "芬蘭" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "法國" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "法國本土" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "法屬圭亞那" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "法屬波利尼西亞" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "法國南部領土" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "加蓬" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "岡比亞" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "喬治亞州" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "德國" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "加納" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "直布羅陀" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "希臘" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "格陵蘭" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "格林納達" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "瓜德羅普島" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "關島" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "危地馬拉" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "幾內亞" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "幾內亞比紹" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "圭亞那" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "海地" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "赫德島和麥克唐納群島" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "教廷 (梵締岡)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "洪都拉斯" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "香港" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "匈牙利" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "冰島" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "印度" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "印尼" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "伊朗 (伊斯蘭共和國 )" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "伊拉克" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "愛爾蘭" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "以色列" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "意大利" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "牙買加" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "日本" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "約旦" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "哈薩克斯坦" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "肯尼亞" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "基里巴斯" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "韓國,朝鮮民主主義人民共和國" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "大韓民國" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "科威特" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "吉爾吉斯斯坦" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "寮人民民主共和國" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "拉脫維亞" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "黎巴嫩" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "萊索托" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "利比里亞" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "利比亞阿拉伯群眾國" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "列支敦士登" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "立陶宛" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "盧森堡" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "澳門" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "馬其頓,前南斯拉夫共和國" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "馬達加斯加" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "馬拉維" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "馬來西亞" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "馬爾代夫" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "馬里" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "馬耳他" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "馬紹爾群島" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "馬提尼克島" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "毛里塔尼亞" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "毛里求斯" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "馬約特島" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "墨西哥" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "克羅尼西亞聯邦" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "摩爾多瓦共和國" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "摩納哥" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "蒙古" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "黑山" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "蒙特塞拉特" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "摩洛哥" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "莫桑比克" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "緬甸" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "納米比亞" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "瑙魯" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "尼泊爾" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "荷蘭" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "荷屬安的列斯" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "新喀裡多尼亞" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "紐西蘭" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "尼加拉瓜" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "尼日爾" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "尼日利亞" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "紐埃" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "諾福克島" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "北馬里亞納群島" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "挪威" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "阿曼" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "巴基斯坦" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "帕勞" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "巴拿馬" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "巴布亞新幾內亞" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "巴拉圭" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "秘魯" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "菲律賓" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "皮特凱恩" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "波蘭" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "葡萄牙" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "波多黎各" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "卡塔爾" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "留尼旺島" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "羅馬尼亞" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "俄羅斯聯邦" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "盧旺達" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "聖基茨和尼維斯" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "聖盧西亞" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "聖文森特和格林納丁斯" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "薩摩亞" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "聖馬力諾" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "聖多美和普林西比" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "沙特阿拉伯" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "塞內加爾" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "塞爾維亞" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "塞舌爾" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "塞拉利昂" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "新加坡" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "斯洛伐克 (斯洛伐克共和國)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "斯洛文尼亞" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "索羅門群島" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "索馬里" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "南非" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "南喬治亞島,南桑威奇群島" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "西班牙" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "斯里蘭卡" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "聖赫勒拿島" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "聖皮埃爾和密克隆" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "蘇丹" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "蘇里南" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "斯瓦巴和揚馬延" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "斯威士蘭" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "瑞典" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "瑞士" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "敘利亞阿拉伯共和國" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "台灣" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "塔吉克斯坦" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "坦尚尼亞聯合共和國" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "泰國" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "多哥" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "托克勞" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "湯加" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "特里尼達和多巴哥" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "突尼斯" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "土耳其" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "土庫曼斯坦" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "特克斯和凱科斯群島" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "圖瓦盧" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "烏干達" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "烏克蘭" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "阿拉伯聯合大公國" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "英國" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "美國" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "美國外島" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "烏拉圭" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "烏茲別克斯坦" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "瓦努阿圖" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "委內瑞拉" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "越南" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "英屬維京群島" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "維爾京群島 (英屬)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "瓦利斯和富圖納群島" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "西撒哈拉" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "也門" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "南斯拉夫" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "贊比亞" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "津巴布韋" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "國家" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "預設國家/地區" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "使用第一個自訂選項" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "第一個自訂選項" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "南蘇丹" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "信用卡" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "卡片號碼標籤" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "卡號" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "卡片號碼描述" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "通常是信用卡前面的 16 位數字。" #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "卡片 CVC 標籤" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "卡片 CVC 描述" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "卡片背面 3 位數或前面 4 位數字。" #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "卡片名稱標籤" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "卡片姓名" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "卡片姓名描述" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "印在信用卡前面的姓名。" #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "卡片到期月份標籤" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "到期月份 (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "卡片到期月份描述" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "信用卡到期月份,通常在卡片前面。" #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "卡片到期年份標籤" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "到期年份 (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "卡片到期年份描述" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "信用卡到期年份,通常在卡片前面。" #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "文字" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "文字元素" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "隱藏欄位" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "使用者 ID (如果已登入)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "使用者名字 (如果已登入)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "使用者姓氏 (如果已登入)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "使用者顯示名稱 (如果已登入)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "使用者電子郵件 (如果已登入)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "文章/頁面 ID (如果有)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "文章/頁面標題 (如果有)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "文章/頁面 URL (如果有)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "今天日期" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "查詢字串變數" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "此關鍵字由 WordPress 保留。 請嘗試其他關鍵字。" #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "這是電子郵件地址嗎?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "如果已勾選此方塊,Ninja Form 會驗證此輸入為電子郵件地址。" #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "寄送表單副本到該地址嗎?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "如果已勾選此方塊,Ninja Form 會寄送表單副本 (以及任何附加的訊息) 到該地址" #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "蜂蜜罐" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "清單" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "這是使用者狀態" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "已選取的值" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "新增值" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "移除值" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "計算" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "下拉" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "收音機" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "勾選方塊" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "複選" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "清單類型" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "複選方塊大小" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "匯入清單項目" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "顯示清單項目值" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "匯入" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "要使用此功能,您可以將 CSV 貼到上方的文字區域。" #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "格式看起來應該像是:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "標籤,值,計算" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "如果您要寄送空值或計算,應該使用 \"。" #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "已選取" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "數字" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "最小值" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "最大值" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "步驟 (增量數)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "組織人員" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "密碼" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "作為註冊密碼欄位" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "如果已勾選此方塊,則會輸出密碼和重新輸入密碼文字區域。" #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "重新輸入密碼標籤" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "重新輸入密碼" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "顯示密碼強度指示器" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "秘訣: 密碼必須至少有 7 個字元長度。 要加強安全性,請使用大小寫字母、數字及符號,例如 ! \" ? $ % ^ & )。" #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "密碼不相符" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "星號評等" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "星號數目" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "確認您不是機器人" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "請完成 captcha 驗證欄位" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "請確定您已正確輸入網站和秘密金鑰" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha 不符。 請在 captcha 欄位中輸入正確的值" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "防垃圾留言" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "垃圾問題" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "垃圾回答" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "送出" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "稅金" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "稅金百分比" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "請輸入百分比數字,例如 8.25%、4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "文字區域" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "顯示 RTF 編輯器" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "顯示媒體上傳按鈕" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "在行動裝置上停用 RTF 編輯器" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "驗證為電子郵件地址? (欄位為必填)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "停用輸入" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "日期挑選器" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "電話 - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "貨幣" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "自訂遮罩定義" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "說明" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "提交逾時" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "逾時之後的提交按鈕文字" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "請稍候 %n 秒鐘" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n 會用來表示秒數" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "倒數秒數" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "這是使用者提交表單時必須等待的時間" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "如果您不是機器人,請別急。" #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "您需要 JavaScript 才能提交此表單。 請啟用並重試。" #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "清單欄位對應" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "興趣群組" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "單一" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "多數" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "列表" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "重新整理" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "中繼方塊" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "提交項目中繼方塊" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "使用者中繼 (如果已登入)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "收集款項" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "找不到表單。" #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "建立的日期" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "標題" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "已更新" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "別老是寫程式碼!" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "父項目:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "所有項目" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "新增項目" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "新項目" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "編輯項目" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "更新項目" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "檢視項目" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "搜尋項目" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "在垃圾筒中找不到" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "表單提交項目" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "提交項目資訊" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "新增表單" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "表格範本匯入錯誤。" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "區塊 " #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "上傳的檔案格式無效。" #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "上傳的表單無效。" #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "匯入表單" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "匯出表單" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "等式 (進階)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "操作和欄位 (進階)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "自動加總欄位" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上傳的檔案超過 php.ini 中的 upload_max_filesize 指示詞。" #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "上傳的檔案超過 HTML 表單中指定的MAX_FILE_SIZE 指示詞。" #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "上傳的檔案不完整。" #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "沒有檔案被上傳。" #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "找不到暫存資料夾。" #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "檔案無法寫入。" #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "檔案上傳已被擴充功能暫停。" #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "發生未知的上傳。" #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "檔案上傳錯誤" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "附加元件授權" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "移轉及模擬資料完成。 " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "檢視表格" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "保存設定" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "伺服器 IP 位址" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "主機名稱" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "附加 Ninja Form" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "模擬表單" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "找不到欄位" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "突然發生錯誤。" #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "預覽不存在。" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "付款金流" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "總款項" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "勾點標記" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "電子郵件地址或搜尋欄位" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "主旨文字或搜尋欄位" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "附加 CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "標籤在此" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "說明文字在此" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "輸入表單欄位標籤。 這是使用者如何識別個別欄位的方法。" #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "表單預設" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "隱藏" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "選取與欄位元素本身相關的標籤位置。" #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "必填欄位" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "在允許提交表單前,請確定此欄位已完成。" #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "數字選項" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "最少" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "最多" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "步驟" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "設定選項" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "一" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "一" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "二" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "二" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "三" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "三" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "計算值" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "限制使用者可以輸入此欄位的值。" #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "无" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "美國電話" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "自訂" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "自訂遮罩" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - 表示字母字元 (A-Z,a-z) - 只能輸入字母。
    • " "\n
    • a - 表示數值字元 (A-Z,a-z) - " "只能輸入數字。
    • \n
    • * - 表示英數字元 (A-Z、a-z、0-9) - " "可輸入字母及數字。
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "限制輸入為此號碼" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "字元" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "字詞" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "在計數器之後出現的文字" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "剩餘字元" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "輸入使用者輸入任何資料前,在欄位中顯示的文字。" #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "自訂類別名稱" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "容器" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "將其他類別新增到欄位包裝函式。" #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "元素" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "將其他類別新增到欄位元素。" #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "2019 年 11 月 18 日星期五" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "預設為目前日期" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "逾時提交的秒數" #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "欄位金鑰" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "建立唯一金鑰,以識別要自訂開發的欄位。" #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "檢視和匯出提交項目時使用的標籤。" #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "在滑鼠暫留時向使用者顯示。" #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "說明" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "依數值排序" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "提交項目中的此欄位會依數字排序。" #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "倒數秒數" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "作為登記密碼欄位。 如果已勾選此方塊,則會輸出密碼和重新輸入密碼文字區域。" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "確認" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "允許 RTF 輸入。" #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "處理標籤" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "勾選的計算值" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "如果勾選方塊,此數字會用來計算。" #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "取消勾選的計算值" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "如果取消勾選方塊,此數字會用來計算。" #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "顯示此計算變數" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- 選取變數" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "定價" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "使用數量" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "允許使用者選擇一個以上的產品。" #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "商品類型" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "單一產品 (預設)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "多個產品 - 下拉式選單" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "多個產品 - 選取許多" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "多個產品 - 選取一個" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "使用者輸入" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "費用" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "成本選項" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "單一成本" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "降低成本" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "成本類型" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "商品" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- 選取產品" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "答案" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "區分大小寫的回答可協助防止提交垃圾表單。" #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "分類法" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "新增條款" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "這是使用者狀態。" #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "用來處理欄位。" #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "已儲存欄位" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "一般欄位" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "使用者資訊欄位" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "價格欄位" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "版面配置欄位" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "雜項欄位" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "您的表格已成功提交。" #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "忍者表單提交" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "儲存提交" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "變數名稱" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "等式" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "預設標籤位置" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "包裝函式" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "表單金鑰" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "可用來參照此表單的程式設計名稱。" #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "新增提交按鈕" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "我們注意到您的表單沒有提交按鈕。 我們可以自動為您新增此按鈕。" #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "登入" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "套用至表單預覽。" #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "提交限制" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "並未套用至表單預覽。" #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "顯示設定" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "計算" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja 表單" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "價格:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "數量:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "新增" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "在新視窗中開啟" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "如果您不是機器人而且看得到此欄位,請留白。" #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "可用" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "請輸入有效的電子郵件地址!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "這些欄位必須相符!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "最小數字錯誤訊息" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "最大數字錯誤訊息" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "請以此數字遞增: " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "插入連結" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "插入媒體" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "請先更正錯誤再提交此表單。" #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot 錯誤訊息" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "正在上傳檔案。" #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "檔案上傳" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "所有欄位" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "子序列" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "博文ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "博文標題" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "文章網址" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP位置" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "使用者 ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "名" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "姓" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "顯示名稱" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "固定樣式" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "淡色系" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "暗" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "使用預設 Ninja Form 樣式慣例。" #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "回復" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "回復為 v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "回復為最近的 2.9.x 版本。" #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha 設定" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA 主題" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "RTF 編輯器 (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "進階設置" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "管理" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "空白表單" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "聯絡我" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "模擬成功訊息動作" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "{field:name},感謝您填寫此表單!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "模擬電子郵件動作" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "這是電子郵件動作。" #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "哈囉,Ninja 表單!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "模擬儲存動作" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "這是測試" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "這是另一個測試。" #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "取得說明" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "您需要什麼協助?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "是否同意?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "最佳的聯絡方法?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "座機" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "蝸牛郵件" #: includes/Database/MockData.php:315 msgid "Send" msgstr "傳送" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "選取清單" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "選項一" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "選項二" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "選項三" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "圓鈕清單" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "浴缸" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "核取方塊清單" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "這些是使用者資訊區段中的所有欄位。" #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "地址" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "市" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "郵遞區號" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "這些是價格區段中的所有欄位。" #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "產品 (包括數量)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "產品 (不包括數量)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "數量" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "總合" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "信用卡全名" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "信用卡卡號" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "信用卡 CVV" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "信用卡到期" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "信用卡郵遞區號" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "這些是各種特殊欄位。" #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "防垃圾郵件問題 (Answer = answer)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "答案" #: includes/Database/MockData.php:805 msgid "processing" msgstr "處理中" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "複雜格式 - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " 欄位" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "欄位編號" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "電子郵件訂閱表單" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "電子郵件地址" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "輸入電子郵件地址" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "訂閱" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "產品表單 (包括數量欄位)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "購買" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "已購買 " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "以下產品給 " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "產品表單 (內含數量)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " 以下產品給 " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "產品表單 (多個產品)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "產品 A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "產品 A 的數量" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "產品 B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "產品 B 的數量" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "個產品 A 以及 " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "個產品 B 價格為" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "可計算表單" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "我的第一筆計算" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "找的第二筆計算" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "計算會以 AJAX 回應 (回應 -> 資料 -> 計算" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "複製" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "儲存表單" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "信用卡壓縮" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "您必須登入才能預覽表單。" #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "找不到欄位。" #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "注意: 使用 Ninja Form 短碼而未指定表單。" #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "使用 Ninja Form 短碼而未指定表單。" #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "地址 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "按鈕" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "單一核取方塊" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "已勾選" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "取消勾選" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "信用卡 CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "選擇" #: includes/Fields/ListState.php:26 msgid "State" msgstr "州" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "請注意您可以在下列附註欄位的進階設定編輯文字。" #: includes/Fields/Note.php:45 msgid "Note" msgstr "註記" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "密碼確認" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "密碼" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "請完成 recaptcha 驗證" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "進階傳送" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "問題" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "問題位置" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "不正確的回答" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "星號數目" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "詞彙清單" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "此分類法沒有可用的詞彙。 %s新增詞彙%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "未選取分類法。" #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "可用詞彙" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "段落文字" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "單一行文字" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "郵政編碼" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "文章" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "查詢字串" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "查詢字串" #: includes/MergeTags/System.php:13 msgid "System" msgstr "系統" #: includes/MergeTags/User.php:13 msgid "User" msgstr "用戶" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " 需要更新。您安裝的是版本 " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " 。目前版本為 " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "編輯欄位" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "標籤名稱" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "上方欄位" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "下方欄位" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "左側欄位" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "右側欄位" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "隱藏標籤" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "類別名稱" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "基本欄位" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "複選" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "新增欄位" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "新增動作" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "展開選單" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "發佈" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "發佈" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "加載中" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "檢視變更" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "新增表單欄位" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "從新增第一個表單欄位開始。" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "新增欄位" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "按一下此處並選取想要的欄位。" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "就是這麼簡單。您也可以..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "從範本開始" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "聯絡我們" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "讓使用者透過簡單的聯絡表格與您聯絡。您可以依需要新增或移除欄位。" #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "報價要求" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "透過此範本,輕鬆從網站管理報價。您可以依需要新增或移除欄位。" #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "活動註冊" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "讓使用者完成表單,輕鬆註冊下次活動。您可以依需要新增或移除欄位。" #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "電子報註冊表單" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "新增訂閱者並透過此電子報註冊表單壯大您的電子郵件清單。您可以依需要新增或移除欄位。" #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "新增表單動作" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "從新增第一個表單欄位開始。只需按一下加號並選取您要的動作。就是這麼簡單。" #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "複製 (^ + C + 點選)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "刪除 (^ + D + 點選)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "操作" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "切換瀏覽選單" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "全螢幕" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "半螢幕" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "復原" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "完成" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "全部復原" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " 全部復原" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "即將完成…" #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "不,不要變更" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " 在新視窗中開啟" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "停用" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "修復它。" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- 選取表單" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "目前日期" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "向支援中心要求協助前,請先查看:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja 表單 3 文件" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "聯絡支援中心前要嘗試的動作" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "我們的支援範圍" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "匯入欄位" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "更新時間: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "提交日期: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "提交人員: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "提交資料" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "查看" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "顯示更多" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "編輯欄位" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "表單欄位" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "預覽變更" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "聯絡表格" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "糟糕了! 該附加元件與 Ninja Form 3 不相容。 %s更多資訊%s。" #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s 已停用。" #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "請協助我們改善 Ninja 表單!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "如果您選擇使用,您安裝 Ninja 表單的部份相關資料會傳送給 NinjaForms.com (不包括提交項目)。" #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "您也可以略過此步驟!Ninja 表單會如常運作。" #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%s允許%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%s不允許%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "您沒有權限。" #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "已拒絕權限" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja 表單開發" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "偵錯:切換至 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "偵錯:切換至 3.0.x" lang/ninja-forms-tr_TR.mo000064400000270725152331132460011312 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8<RMT>iEK3 #,P1`c"6 N\Tyl/   )6<A Q [et  %5D  (17i~    2=EL g t|"YD| 3 &Ah{  /<C LW]f l w$ $ :D LW[ d r N  3?HOdv| &  & .; DR[{   & 5TB  B%.T't!+;>V[ n|   $)< C+P| ` "'JPm ~    G'onu ;[r#  2H Yez && 5#Aek %$dB ,%8-U  +-"8P8'  9F'[ )CRZc s $3CZ"zD7 1Q?eg_y6#8 Q'^ :Wf+~ &FK%b,  #3$Ej{/EVe     F+,r 1"<_ dHq-  ,@ T _iq    .K Q \ j)u%e     #-6s[ez5 ^ r X F F" #i J  Jl Z  #  "%&Ho71ix    #8H`x%%D- r}   Hf zg  5M:^@    " , 9Gd   ' 4 @ KV&\  GY b lv.zz is{* (?^r    (6 Tb~   3    :DJR gs! %@$Y~~5Jw3,}] { zW!y!L"8 #E#J#Q##i###%#=#&$A$`$/}$$$$$$$%.%V2%5%B%&&&5&H& Z& {& &/&&&' 'a'''"' ' ' ' ' ' (("#(F(Z(m(( (((((((( (( ()")9)J)^)n)) ))))) }* *V*>*')+"Q+!t+8++++),*,*,> -?K--3-O-/.;.-/<F/>/>/y0{0(0 00"000!1$(1M1m111 1 11 11112 2%2%92_2f2|222"2!2 2 3B3Y3 b3 m3w3}33333333 4 4"4 (464M4=l4 4 44K45##55G5}5I555556(6$H63m6 66666M7\7t7777 7"77 88$8+808@8S8 h8u88 888888 8 9"939 E9P9c9 s9}999 9%9 9 9%9e:2}::::.:: ;;#;+; >;I; O;+Y;;";;';#; < ,<)M< w<<<< <<<<< = ="===== =*> 3>@>I>d>.}> > >>>>"> ?$?*?,0?]?v?? ???? ???@@,@B@ \@i@Aq@<@ @ @ AA#A6A?APAVA^A }AA AAA A AA AJA1BPBVBeBvBB BB B'B9B C )C6C,>CkC+DDCE:EV FB`FUFF$ H1HR5II7 JEJ]J}JNKU`K7KTKCLM.M6M=M44N$iNNANNOO,OKOeOUO_Oi5PP0P@P/Q^RcR[ SAgSDSST"`UDUUUUUVVVVFWWWoWtW|WWW^WWXX XX7X>XCXHX MXZXaX iXvXXYYYYY5Z9ZVZ gZqZZ#ZZZ ZZ [ [[ 5[ C[>d[Q[[,u\\;J] ]A]]0]^&0^W^*i^ ^^^-^)_-?_*m__ `D```` aa a $a0a 8aEaUasaaaa1abb!1bSbqbybbbbbbccfddde+e Je"Ve>ye.e eRe$Ef jf vfff f f fffofD4gyg03h5dh h,h2h3iZPreview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Alanlar Yeni pencerede aç Tümünü Geri Al kurulu: Mevcut sürüm: ürün(ler): güncelleme yapılmasını gerektiriyor. Sizde şu sürüm #%1$s taslak güncellendi. %3$s önizlemesi%1$s, %2$s tarafından gelen revizyon durumuna geri getirildi.%1$s, şu şekilde planlandı: %2$s. %4$s önizlemesi%1$s gönderildi. %3$s önizlemesi%n, saniye değerini göstermek için kullanılacak%s önce%s yayımlandı.%s kaydedildi.%s güncellendi.%s devre dışı bırakıldı.%sİzin ver%s%sİşaretlenen%s Hesaplama Değeri%sİzin verme%s%sOnay İşareti Kaldırılan%s Hesaplama Değeri* - Alfanumerik bir karakteri temsil eder (A-Z,a-z,0-9) - Hem sayı hem harf girilmesine izin verir- Yok- Bir Seçim Yapın- Bir Alan Seçin- Bir Ürün Seçin- Bir Değişken Seçin- Form seçin- Tüm Türleri Görüntülea - Sayısal bir karakteri temsil eder (0-9) - Sadece sayı girilmesine izin verilir
    • a - Bir alfabe karakterini temsil eder (A-Z,a-z) - Sadece harf girilmesine izin verir.
    • 9 - Sayısal bir karakteri temsil eder (0-9) - Sadece rakam girilmesine izin verir.
    • * - Alfanumerik bir karakteri temsil eder (A-Z,a-z,0-9) - Hem rakam hem de harf girilmesine izin verir.
    Formunuzun istenmeyen posta olarak gönderilmesini önlemek için büyük-küçük harf duyarlı bir yanıt.Ninja Forms'a büyük bir güncelleme geliyor. %sYeni özellikler, geriye uyumluluk ve daha fazlası hakkında Sık Sorulan Sorular üzerinden ayrıntılı bilgi alın.%sDaha güçlü ve kolay bir form yazma deneyimi.Öğenin YukarısıYukarıdaki AlanEylem AdıEylem GüncellendiDavranışlarEtkinleştirEtkinEkleAçıklama EkleForm EkleYeni ekleYeni Alan EkleYeni Form EkleYeni Eleman EkleYeni Gönderim EkleYeni Terim Ekleİşlem EkleGönder Düğmesi EkleDeğer EkleForm eylemi ekleyinForm alanları ekleBu sayfaya form ekleYeni eylem ekleYeni alan ekleBu haber bülteni kayıt formunu kullanarak abone ekleyin ve e-posta listenizi büyütün. Gerektiği şekilde alan ekleyebilir ve kaldırabilirsiniz.Eklenti LisanslarıEklentilerAdresAdres Devam 2Alan öğenize ekstra bir sınıf ekler.Alan sarmalayıcınıza ekstra bir sınıf ekler.Yönetici E-postasıYönetici EtiketiYönetimGeliştirilmişGelişmiş EşitlikGelişmiş AyarlarGelişmiş SevkiyatAfganistanHer Şeyden SonraSonraki FormSonra EtiketiKabul ediyor musunuz?ArnavutlukCezayirTümüFormlar Hakkında Her ŞeyTüm AlanlarTüm FormlarBütün ElemanlarGüncel tüm formlar, "Tüm Formlar" tablosunda kalır. Bu işlem sırasında bazen formlardan bazıları çoğaltılabilir.Kullanıcıların tamamlanması kolay bu formu doldurarak bir sonraki etkinliğinize kaydolmasına izin verin. Gerektiği şekilde alan ekleyebilir ve kaldırabilirsiniz.Kullanıcıların bu kolay iletişim formunu kullanarak sizinle iletişime geçmesine izin verin. Gerektiği şekilde alan ekleyebilir ve kaldırabilirsiniz.Zengin metin girişine izin verir.Kullanıcıların bu üründen çok sayıda seçmelerine izin verin.Bitti sayılır..."Formunuzu Oluşturun" sekmesinin yanında "E-postalar ve Eylemler" için "Bildirimler" bölümünü kaldırdık. Bu sayede bu sekmede neler yapılacağı çok daha rahat bir şekilde görülebilir.Amerikan SamoasıBeklenmedik bir hata oluştu.AndorraAngolaAnguillaCevapAntartikaİstenmeyen Posta Önlemeİstenmeyen Posta Karşıtı Soru (Yanıt = yanıt)İstenmeyen posta önleme hata mesajıAntigua ve Barbuda"Özel maske" kutusuna yerleştirdiğiniz ve aşağıdaki listede yer almayan tüm karakterler, kullanıcılar yazarken girilir ve kaldırılamazNinja Formu EkleNinja Forms EkleSayfaya EkleUygulaArjantinErmenistanArubaCSV EkleEklerAvustralyaAvusturyaOtomatik Toplam AlanlarıOtomatik Toplam Hesaplama DeğerleriKullanılabilirKullanılabilen TerimlerAzerbaycanListeye DönListeye dönYedekle / Geri YükleNinja Forms'u YedekleBahamalarBahreynBangladeşBarBarbadosTemel AlanlarTemel AyarlarLavaboBazBccHer Şeyden ÖnceÖnceki FormÖnce EtiketiDestek ekibimizden yardım formu talebinde bulunmadan önce lütfen inceleyin:Başlangıç TarihiBaşlangıç TarihiBeyaz RusyaBelçikaBelizeÖğenin AşağısıAşağıdaki AlanBeninBermudaEn İyi İletişim Yöntemi?Sektördeki En İyi Destek EkibiDaha İyi Düzenlenmiş Alan AyarlarıÇok daha iyi lisans yönetimiButanFaturalamaBoş FormlarBolivyaBosna HersekBotsvanaBouvet AdasıBrezilyaHint Okyanusu İngiliz BölgesiBrunei SultanlığıFormunuzu OluşturunBulgaristanToplu eylemlerBurkina FasoBurundiDüğmeCVCHesapHesap DeğeriHesaplamaHesaplama YöntemiHesaplama AyarlarıHesaplama adıHesaplamalarHesaplamalar, AJAX yanıtı ile geri döndürülür ( yanıt -> veri -> hesaplamalarKamboçyaKamerunKanadaVazgeçCape VerdeCaptcha eşleşmiyor. Lütfen captcha alanına doğru değer girinKart CVC AçıklamasıKart CVC EtiketiKartın Sona Erdiği Ay AçıklamasıKartın Sona Erdiği Ay EtiketiKartın Sona Erdiği Yıl AçıklamasıKartın Sona Erdiği Yıl EtiketiKart Adı AçıklamasıKart Adı EtiketiKart NumarasıKart Numarası AçıklamasıKart Numarası EtiketiCayman AdalarıCcOrta Afrika CumhuriyetiÇatDeğeri DeğiştirKarakter(ler)Kalan karakterlerKarakterlerHile mi yapıyorsun?Belgelerimize göz atınOnay kutusuOnay Kutusu ListesiOnay kutularıOnaylandıİşaretlenen Hesap DeğeriŞiliÇinChristmas AdalarıİlçeSınıf AdıBaşarıyla tamamlanan form temizlensin mi?Cocos (Keeling) AdalarıÖdeme AlKolombiyaOrtak AlanlarComorosKarmaşık işlemler, parantez eklenerek gerçekleştirilebilir: %s( field_45 * field_2 ) / 2%s.OnaylaBot olmadığınızı doğrulayınKongoKongo, Demokratik Cumhuriyetİletişim FormuBana UlaşınBizimle İletişim KurunKapsayıcıDevam EtCook AdalarıMaliyetMaliyet Açılır MenüsüMaliyet SeçenekleriMaliyet TürüKostarikaCote D'IvoireLisans etkinleştirilemedi. Lütfen lisans anahtarınızı doğrulayınÜlkeÖzel geliştirme için alanınızı belirlemenize ve hedeflemenize yönelik benzersiz bir anahtar oluşturur.Kredi KartıKredi Kartı CVC koduKredi Kartı CVV KoduKredi Kartı Sona Erme TarihiKredi Kartı Üzerinde Yazan AdKredi Kartı NumarasıKredi Kartı Zip KoduKredi Kartı Posta KoduKredilerHırvatistan (Yerel Adı: Hrvatska)KübaPara BirimiPara Birimi SembolüMevcut sayfaÖzelÖzel CSS SınıfıÖzel CSS SınıflarıÖzel Sınıf AdlarıÖzel Alan GrubuÖzel MaskeÖzel Maske TanımıÖzel Alan SilindiÖzel Alan GüncelendiÖzel ilk seçenekK.K.T.C.Çek CumhuriyetiGG-AA-YYYYGG/AA/YYYYHATA AYIKLAMA 2.9.x’e geçiş yapınHATA AYIKLAMA 3.0.x’e geçiş yapınKoyu renkliVeriler başarıyla geri yüklendi!TarihOluşturulma TarihiTarih FormatıTarih AyarlarıGönderildiği TarihGüncelleme TarihiTarih seçiciDevre dışı bırakDevre dışı bırakTüm Lisansları Devre Dışı BırakLisansı Devre Dışı BırakAyarlar sekmesinden tek başına ya da grup olarak Deactivate Ninja Forms uzantısına ait lisanslarVarsayılanVarsayılan ÜlkeVarsayılan Etiket KonumuVarsayılan Zaman DilimiBugünün Tarihine Varsayılan Olarak AyarlaVarsayılan DeğerVarsayılan zaman dilimi: %sVarsayılan zaman dilimi %s - UTC olmalıdırTanımlı AlanlarSilSil (^ + D + tıkla)Kalıcı Olarak SilBu formu silBu öğeyi kalıcı olarak silDanimarkaAçıklamaAçıklama İçeriğiAçıklama KonumuForm dönüştürmesini, büyük formları daha kolay sindirilmiş olan daha küçük parçalara ayırarak artırabileceğinizi biliyor muydunuz?

    Ninja Forms'un Çok Parçalı Form uzantısı, bu süreci hızlı ve kolay bir hale getiriyor.

    Yönetici Bildirimlerini Devre Dışı BırakTarayıcı Otomatik Tamamlamasını Devre Dışı BırakGirişi Devre Dışı BırakZengin Metin Düzenleyiciyi Mobilde Devre Dışı BırakGiriş devre dışı bırakılsın mı?KapatGörünümForm Başlığını GörüntüleGörünen adGörünüm ayarlarıBu Hesaplama Değişkenini GörüntüleGörüntülenecek BaşlıkFormunuzun GörüntülenmesiDividerCibutiBu terimleri göstermeBelgelerBelgeler yakında geliyor.%sSorun Gidermeden%s %sGeliştirici API'mıza%s kadar her konuya yönelik belgelerimize ulaşabilirsiniz. Sürekli Yeni Belgeler eklenmektedir.Form önizlemesine uygulanmaz.Form önizlemesine uygulanır.DominikaDominik CumhuriyetiBittiTüm Gönderimleri İndirAçılır MenüÇoğaltÇoğalt (^ + C + tıkla)Formu ÇoğaltEkvatorDüzenleEylemi DüzenleForm DüzenleEleman DüzenleMenü Öğesini DüzenleGönderimi DüzenleÖğeyi düzenleAlan DüzenlemeAlan düzenlemeMısırEl SalvadorÖgeE-PostaE-posta ve EylemlerE-Posta AdresiE-posta MesajıE-posta Abonelik FormuE-posta adresi ya da alan aramaE-posta adresleri ya da alan aramaE-posta, bu e-posta adresinden gönderilmiş olarak görüntülenir.E-posta, bu addan gönderilmiş olarak görüntülenir.E-postalar ve EylemlerBitiş TarihiFormun gönderilmesine izin vermeden önce alanın tamamlandığından emin olun.Bir kullanıcı herhangi bir veri girmeden önce alanda görüntülenmesini istediğiniz metni girin.Form alanının etiketini girin. Kullanıcıların farklı alanları nasıl belirleyeceğini gösterir.E-posta adresinizi girin.OrtamDenklemEşitlik (Gelişmiş)Ekvator GinesiEritreHataZorunlu alanlar tamamlanmamışsa verilen hata mesajıEstonyaEtiyopyaEtkinlik KaydıMenüyü GenişletSona erdiği ay (AA)Sona erdiği yıl (YYYY)Dışa AktarEn Sevilenler Alanlarını Dışa AktarAlanları Dışa AktarFormu Dışa AktarFormları Dışa AktarBir formu dışa aktarınBu öğeyi dışa aktarNinja Forms'u GenişletDOSYA YÜKLEMEDosya diske yazılamadı.Falkland Adaları (Malvinas)Faroe AdalarıEn Sevilenler AlanlarıEn sevilenler başarıyla içe aktarıldı.AlanAlan NoAlan KimliğiAlan AnahtarıAlan BulunamadıAlan İşlemleriBilgiler* işaretli alanlar zorunludur.%s*%s işareti olan alanlar zorunludurFijiDosya Yükleme HatasıDosya Yükleme İşlemi Devam Ediyor.Dosya yükleme eklenti tarafından durduldu.FinlandiyaAdınızOnar.FooFoo BarÖrneğin A4B51.989.B.43C şeklinde bir ürün anahtarınız varsa, bunu a9a99.999.a.99a ile maskeleyebilirsiniz. Böylece tüm a'lar harf haline; 9'lar ise sayı haline getirilir FormForm VarsayılanıForm SilindiForm AlanlarıForm Başarıyla İçe Aktarıldı.Form AnahtarıForm BulunamadıForm ÖnizlemesiForm Ayarları KaydedildiForm GönderileriForm Şablonu İçe Aktarma Hatası.Form BaşlığıHesaplamaların Olduğu FormFormatFormlarFormlar SilindiSayfa Başına FormlarFransaFransa, MetropolitanFransız GuyanasıFransız PoliznezyasıFransız Güney BölgeleriCuma, 18 Kasım, 2019Gönderen AdresiGönderen AdıTam Değişim GünlüğüTam ekranGabonGambiyaGenelGenel AyarlarGürcistanAlmanyaYardım lazım mı?Daha Fazla Eylem EdininDaha Fazla Tür EdininYardım AlınYardım AlSistem Raporu Al%sBuradan%s kayıt olarak alan adınız için bir site anahtarı alınİlk form alanınızı ekleyerek başlayın.İlk form alanınızı ekleyerek başlayın. Sadece artı işaretini tıklamanız ve istediğiniz formları seçmeniz yeterlidir. Bu kadar kolay.BaşlarkenNinja Forms'a hızlı başlangıçGanaCebelitarıkFormunuza bir isim verin. Formunuzu daha sonra bu isimle bulabilirsiniz.GitKüçük komut dosyaları, bir uğraş edininFormlara GitNinja Forms'a Gitİlk sayfaya gitSon sayfaya gitSonraki sayfaya gitÖnceki sayfaya gitYunanistanGrönlandGrenadaDaha Çok Bilgilendirici BelgeGuadeloupeGuamGuatemalaGineGine-Bissau CumhuriyetiGuyanaHTMLHaitiYarım ekranHeard ve Mc Donald AdalarıMerhaba, Ninja Forms!YardımYardım MetniBuraya Yardım Metni GelecekGizliGizli AlanEtiketi GizleBunu GizleBaşarıyla tamamlanan form gizlensin mi?İpucu: Şifre, en az yedi karakter uzunluğunda olmalıdır. Güçlü bir şifre için, büyük ve küçük harfleri, sayıları ve ! " ? $ % ^ & ) gibi özel karakterleri bir arada kullanın.Kutsal Makam (Vatikan Şehir Devleti)Anasayfa BağlantısıHondurasHoney PotHoneypot HatasıHoneypot hata mesajıHong KongKanca EtiketiAna Bilgisayar AdıNasıl gidiyor?MacaristanIP adresiİzlanda"açıklama metni" etkinleştirilirse, giriş alanının yanına konmak üzere bir soru işareti %s olacaktır. Bu soru işaretinin üzerine gelindiğinde açıklama metni görüntülenir."yardım metni" etkinleştirilirse, giriş alanının yanına konmak üzere bir soru işareti %s olacaktır. Bu soru işaretinin üzerine gelindiğinde yardım metni görüntülenir.Bu kutu işaretlenirse, silme işlemi sonrasında TÜM Ninja Forms verileri veritabanından kaldırılır. %sTüm form ve gönderim verileri kurtarılamaz durumda olacaktır.%sNinja Forms, bu kutunun işareti kaldırılırsa form başarıyla gönderildikten sonra form değerlerini temizler.Ninja Forms, bu kutunun işareti kaldırılırsa form başarıyla gönderildikten sonra formu gizler.Bu kutuya onay işareti konulursa, Ninja Forms bu formun bir kopyasını (ve eklenen tüm mesajları) bu adrese gönderir.Bu kutuya onay işareti konulursa, Ninja Forms bu girişi bir e-posta adresi olarak doğrular.Bu kutuya onay işareti konulursa, hem şifre alanı hem de şifrenin yeniden girileceği metin kutuları verilir.Bu kutu işaretlenirse, gönderimler tablosundaki bu sütun sayılara göre sıralanır.Bir insan olarak bu alanı görebiliyorsanız, lütfen boş bırakın.Bir insan olarak bu alanı görebiliyorsanız, lütfen boş bırakın.İnsansanız, lütfen yavaşlayın.Kutuyu boş bırakırsanız, herhangi bir sınırlama kullanılmayacaktırOnay verirseniz, Ninja Forms kurulumunuzla ilgili bazı veriler NinjaForms.com adresine gönderilecektir (buna gönderimleriniz dahil DEĞİLDİR).Bunu atlamanızın sakıncası yok! Ninja Forms sorunsuz çalışacaktır.Boş bir değer ya da hesap göndermek istiyorsanız, bunlar için " kullanmanız gerekir.Bir kullanıcı, gönder seçeneğini tıkladığında formunuzla ilgili size e-posta gelmesini istiyorsanız, buna yönelik ayarları bu sekmeden yapabilirsiniz. Formunuzu dolduran kullanıcıya gönderilen e-postalar gibi sınırsız sayıda e-posta oluşturabilirsiniz.2.9'a güncelleme yaptıktan sonra formlarınız "yoksa" bu düğme, eski formlarınızı 2.9'da görüntülenecek şekilde yeniden dönüştürmeyi deneyebilir. Güncel tüm formlar, "Tüm Formlar" tablosunda kalır.İçe Aktarİçe Aktar / Dışa AktarGönderimleri İçe / Dışa AktarEn Sevilenler Alanlarını İçe AktarEn Sevilenleri İçe AktarAlanları İçe AktarFormu İçe AktarFormları İçe AktarListe Öğelerini İçe AktarBir formu içe aktarınİçe Aktar/Dışa AktarÇok daha kolay kullanımOtomatik toplama dahil edilsin mi? (Etkinleştirilirse)Hatalı YanıtDönüştürmeleri ArtırHindistanEndonezyaGirdi MaskesiEkleTüm Alanları YerleştirAlanı YerleştirBağlantı YerleştirMedya YerleştirÖğenin İçiKurulduYüklenen Eklentilerİlgi GruplarıGeçersiz form kimliğiGeçersiz form kimliğiİran (İslam Cumhuriyeti)IrakİrlandaBu bir e-posta adresi midir?İsrailBu kadar kolay. Veya...İtalyaJamaikaJaponyaJavaScript devre dışı hata mesajıJohn DoeÜrdünBurayı tıklamanız ve istediğiniz alanları seçmeniz yeterlidir.KazakistanKenyaAnahtarKiribatiMutfak LavabosuKore, Demokratik CumhuriyetKore, CumhuriyetKuveytKırgızistanEtiketBuraya Etiket GelecekEtiket AdıEtiket KonumuGönderimleri görüntülerken ve dışa aktarırken kullanılan etiket.Etiket,Değer,HesapEtiketlerreCAPTCHA tarafından kullanılan dil. Diliniz için bir kod almak istiyorsanız %sburayı%s tıklayınLaos Demokratik Halk CumhuriyetiSoyadıLetonyaSayfa Düzeni ÖğeleriSayfa Düzeni AlanlarıDaha Fazla BilgiÇok Parçalı Formlarla İlgili Ayrıntılı Bilgi EdininKaydetme İlerleme Durumu İle İlgili Ayrıntılı Bilgi EdininLübnanÖğenin SoluAlanın SoluLesotoLiberyaLibya Arap JamahiriyaLisanslarLihtenştaynAçık renkliGirdiyi Bu Rakamla SınırlaSınıra Ulaşıldı MesajıGönderimleri SınırlaGirdiyi bu rakamla sınırlaListeListe Alanı EşleştirmeListe TürüListelerLitvanyaYükleniyorYükleniyor...KonumGiriş YapıldıUzun Form - LüksemburgAA-GG-YYYYAA/GG/YYYYMakaoMakedonya, Eski Yugoslavya CumhuriyetiMadagaskarMalaviMalezyaMaldivlerMaliMaltaWeb sitenizden gelen fiyat teklifi taleplerini bu şablonla kolay bir şeklide yönetin. Gerektiği şekilde alan ekleyebilir ve kaldırabilirsiniz.Marshall AdalarıMartinikMoritanyaMauritiusMaxMaksimum Girdi İç İçe Yerleştirme DüzeyiMaksimum DeğerBelki Daha SonraMayotteOrtaMesajMesaj EtiketleriYukarıdaki "oturum açık" onay kutusu işaretliyse ve kullanıcı oturum açmamışsa kullanıcılara gösterilen mesaj.Meta kutuMeksikaMikronezya, Federal DevletlerGeçişler ve Örnek Veriler tamamlandı. MinMinimum DeğerÇeşitli AlanlarEşleşme yokGeçiçi klasör kayboldu.Örnek E-posta EylemiÖrnek Kaydetme EylemiÖrnek Başarı Mesajı EylemiDeğiştirme tarihiMoldova, CumhuriyetMonakoMoğolistanKaradağMontserratDahası varFasBu öğeyi çöpe taşıMozambikÇoklu SeçimÇok Ürün - Birden Fazla Ürün SeçinÇok Ürün - Bir Ürün SeçinÇok Ürün - Açılır MenüÇoklu SeçimÇoklu Seçim Kutusu BoyutuÇokluİlk Hesaplamamİkinci HesaplamamMySQL SürümüMyanmarİsimKarttaki adAd veya alanlarNamibyaNauruYardıma mı İhtiyacınız Var?NepalHollandaHollanda AntilleriPanoda Ninja Forms'tan gelen yönetici bildirimlerini asla görüntülemeyebilirsiniz. Tekrar görüntülemek için onay işaretini kaldırın.Yeni EylemYeni Oluşturucu SekmesiYeni KaledonyaYeni ElemanYeni GönderimYeni ZelandaHaber Bülteni Kayıt FormuNikaraguaNijerNijeryaNinja Form AyarlarıNinja FormsNinja Forms - İşleniyorNinja Forms Değişim GünlüğüNinja Forms GeliştirmeNinja Forms BelgeleriNinja Forms İşleniyorNinja Formu GöndermeNinja Forms Sistem DurumuNinja Forms ÜÇ belgeleriNinja Forms YükseltmesiNinja Forms Yükseltmesi İşleniyorNinja Forms YükseltmeleriNinja Forms SürümüNinja Forms Pencere ÖğesiNinja Forms, ayrıca bir php şablon dosyasına doğrudan yerleştirilebilecek basit bir şablon işleviyle birlikte gelir. %sNinja Forms temel yardım bölümü burada yer alır.Ninja Forms, ağ ile etkinleştirilemez. Eklentiyi etkinleştirmek için lütfen her bir sitenin panosunu ziyaret edin.Ninja Forms, mevcut tüm yükseltmeleri tamamladı!Ninja Forms, 1 numaralı WordPress form oluşturma eklentisini birlikte sunma amacını taşıyan, dünyanın dört bir yanındaki geliştiricilerden oluşan bir ekiptir.Ninja Forms'un %s yükseltmelerini işlemesi gerekiyor. Bu işlemin tamamlanması birkaç dakika sürebilir. %sYükseltmeyi Başlat%sNinja Forms'un e-posta ayarlarınızı güncellemesi gerekiyor; yükseltmeyi başlatmak için lütfen %sburayı%s tıklayın.Ninja Forms'un gönderimler tablonuzu yükseltmesi gerekiyor; yükseltmeyi başlatmak için lütfen %sburayı%s tıklayın.Ninja Forms'un form bildirimlerinizi yükseltmesi gerekiyor; yükseltmeyi başlatmak için lütfen %sburayı%s tıklayın.Ninja Forms'un form ayarlarınızı yükseltmesi gerekiyor; yükseltmeyi başlatmak için lütfen %sburayı%s tıklayın.Ninja Forms, sitenizin pencere öğesi eklenebilecek her alanına yerleştirebileceğiniz bir pencere öğesi sunar ve tam olarak burada gösterilmesini istediğiniz formu da seçebilirsiniz.Bir form belirtmeden kullanılan Ninja Forms kısa kodu.NiueHayırEylem Belirtilmemiş...En Sevilenler Alanları BulunamadıHerhangi Bir Alan Bulunamadı.Gönderim BulunamadıÇöp Kutusunda Gönderim BulunamadıBu sınıflandırma için uygun bir terim yok. %sTerim ekle%sHiçbir dosya yüklenmedi.Herhangi bir form bulunamadı.Sınıflandırma seçilmedi.Geçerli bir değişim günlüğü bulunamadı.YokNorfolk AdasıKuzey Mariana AdalarıNorveçOturum Açık Değil MesajıHayır, Henüz DeğilÇöp Kutusunda bulunamadıNotNot metni, not metninin aşağıdaki gelişmiş ayarlar bölümünden düzenlenebilir.Bildirim: Bu içerik için bir JavaScript gereklidir.Bildirim: Bir form belirtmeden kullanılan Ninja Forms kısa kodu.SayıMaksimum Sayı HatasıMinimum Sayı HatasıSayı SeçenekleriYıldız sayısıOndalık basamakların sayısı.Geri sayım için saniye değeriGeri sayım için saniye değeriSüreli gönderim için verilen saniye değeri.Yıldız sayısıUmmanBirBir e-posta adresi ya da alanÜzgünüz! Bu eklenti, henüz Ninja Forms ÜÇ ile uyumlu değil. %sAyrıntılı Bilgi Edinin%s.Yeni pencerede açİşlemler ve Alanlar (Gelişmiş)Sabit StillerSeçenek BirSeçenek ÜçSeçenek İkiSeçeneklerDüzenleyiciDestek KapsamımızHesaplamayı şu şekilde çıkar:PHP Yerel AyarlarıPHP Max Input VarsPHP Post Max BoyutuPHP Zaman LimitiPHP SürümüYAYINLAPakistanPalauPanamaPapua Yeni GineParagraf MetniParaguayAna Öğe:ŞifreŞifre OnayıŞifre Eşleşmiyor EtiketiŞifreler eşleşmiyorÖdeme AlanlarıÖdeme SeçenekleriÖdeme Toplamıİzin EngellendiPeruFilipinlerTelefonTelefon - (555) 555-5555Pitcairn AdasıFormunuzun istediğiniz yerde görüntülenmesi için kısa kod kabul eden herhangi bir alana %s öğesini getirin. Bu alan, sayfanın ya da gönderi içeriklerinin ortası bile olabilir. Yer TutucuDüz MetinLütfen yukarıda görülen hatayı belirterek %sdestek ekibi ile iletişime geçin%s.İstenmeyen posta sorusunu lütfen doğru olarak yanıtlayın.Lütfen zorunlu alanları kontrol edin.Lütfen captcha alanını doldurunLütfen recaptcha'yı tamamlayınLütfen bu formu göndermeden önce hataları düzeltin.Lütfen tüm zorunlu alanları tamamlayın.Lütfen bu form, gönderim sınırına ulaştığında ve yeni gönderimler kabul edilmeyeceğinde gösterilmesini istediğiniz bir mesaj girin.Lütfen geçerli bir e-posta adresi girinLütfen geçerli bir e-posta adresi girin!Lütfen geçerli bir e-posta adresi girin.Lütfen Ninja Forms’u geliştirmemizde bize yardımcı olun!Lütfen destek talebinde bulunurken bu bilgileri de dahil edin:Lütfen şuna göre artırın: İstenmeyen posta alanını lütfen boş bırakın.Lütfen Site ve Gizli anahtarlarınızı doğru olarak girdiğinizden emin olunBu eklentiyi ücretsiz olarak sunmaya devam etmemizde yardımcı olmak için lütfen %sWordPress.org%s sayfasından %sNinja Forms%s %s için puan verin. WP Ninjas ekibinden teşekkür mesajı!Lütfen gönderimleri görüntülemek için bir form seçinLütfen bir form seçin.Lütfen geçerli bir dışa aktarılan form dosyası seçin.Lütfen geçerli bir en sevilenleri alanları dosyası seçin.Lütfen dışa aktarılacak en sevilenler alanlarını seçin.Lütfen bu işleçleri kullanın: + - * /. Bu, gelişmiş bir özelliktir. 0'a bölme işlemi gibi durumlara dikkat edin.Lütfen %n saniye bekleyinFormu göndermek için lütfen bekleyin.EklentilerPolonyaBurayı sınıflandırmayla doldurPortekizPostalaGönderi / Sayfa Kimliği (Varsa)Gönderi / Sayfa Başlığı (Varsa)Gönderi / Sayfa URL'si (Varsa)Gönderi OluşturmaYazı IDYazı başlığıYazı AdresiÖnizlemeDeğişiklikleri ÖnizleFormu ÖnizleÖnizleme mevcut değil.PriceFiyat:Fiyatlandırma Alanlarıİşleniyorİşleniyor EtiketiGönderim İşleme Alınıyor EtiketiÜrünÜrün (miktar dahil)Ürün (ayrı miktar)Ürün AÜrün BÜrün Formu (Satır İçi Miktar)Ürün Formu (Birden Çok Ürün)Ürün Formu (Miktar Alanı ile)Ürün TipiBu formu referans vermek için kullanılabilen programlanmış ad.YayınlaPorto RikoSatın AlKatarİçerikÜrün A’nın MiktarıÜrün B’nin MiktarıMiktar:Sorgulama DizesiSorgulama DizeleriSorgu Dizesi DeğişkeniSoruSoru KonumuFiyat Teklifi TalebiRadyoRadyo ListesiŞifreyi Yeniden GirinŞifreyi Yeniden Girin EtiketiTüm lisanslar gerçekten de devre dışı bırakılsın mı?RecaptchaYönlendirKaldırKaldırma işlemi sonrasında TÜM Ninja Forms verileri kaldırılsın mı?Değeri KaldırTüm Ninja Forms verilerini kaldırBu alan silinsin mi? Kaydetmeseniz bile silinecektir.YanıtlaKullanıcının formu göndermesi için oturum açması gerekli olsun mu?GerekliAlan ZorunludurZorunlu Alan HatasıZorunlu Alan EtiketiZorunlu alan sembolüForm Dönüştürmeyi SıfırlaFormları Dönüştürmeyi Sıfırlav2.9+ için form dönüştürme sürecini sıfırlaGeri YüklemeNinja Forms'u Geri YükleBu öğeyi çöpten geri yükleSınırlama AyarlarıKısıtlamalarKullanıcılarınızın bu alana girebileceğini giriş türünü sınırlar.Ninja Forms'a Geri DönReunion AdasıZengin Metin Düzenleyici (RTE)Öğenin SağıAlanın SağıGeri AlmaEn yeni 2.9.x sürümüne geri al.v2.9.x sürümüne geri alRomanyaRusya FederasyonuRuandaSMTPSOAP İstemcisiSUHOSIN YüklemesiSaint Kitts ve NevisSanta LuçiaSaint Vincent ve GrenadinlerSamoaSan MarinoSao Tome ve PrincipeSuudi ArabistanKaydetKaydet ve EtkinleştirAlan Ayarlarını KaydetFormu KaydetKaydetme SeçenekleriAyarları KaydetGönderiyi KaydetKaydedildiKaydedilen AlanlarKaydediliyor...Öğe AraGönderimleri AraSeçinizTümünü SeçListe SeçAramak için alan seçin ya da yazınDosya seçinForm seçinAramak için form seçin ya da yazınBu formun kabul edeceği gönderim sayısını seçin. Sınır koymak istemiyorsanız boş bırakın.Alan öğesine göre etiketinizin konumunu seçin.SeçilenSeçili DeğerGönderBu adrese formun bir kopyası gönderilsin mi?SenegalSırbistanSunucu IP AdresiAyarlarAyarlar KaydedildiSeyşellerKargoKısa kodYüzde olarak girilmelidir. Örn: %8,25, %4Yardım Metnini GösterMedya Yükleme Düğmesini GösterDaha Fazla GösterŞifre Güç Göstergesini GörüntüleZengin Metin Düzenleyiciyi GösterBunu GösterListe öğe değerlerini gösterKullanıcılara vurgu olarak gösterilir.Sierra LeoneSingapurTekTek Onay KutusuTek MaliyetTek Satırlık YazıTek Ürün (varsayılan)Site BağlantısıSlovakya (Slovak Cumhuriyeti)SlovenyaNormal PostaDolayısıyla örneğin bir Amerika Sosyal Güvenlik Numarası için bir maske oluşturmak istiyorsanız, kutuya 999-99-9999 yazmanız gerekirSolomon AdalarıSomaliSayılara göre sıralaSayılara göre sıralaGüney AfrikaGüney Georgia ve Güney Sandviç AdalarıGüney Sudanİspanyaİstenmeyen Posta Yanıtıİstenmeyen Posta Sorusuİşlemleri ve Alanları Belirtin (Gelişmiş)Sri LankaSt. HelenaSaint Pierre ve MiquelonStandart AlanlarYıldız DerecesiBir şablondan başlayabilirsiniz.İlDurumAdımÇalışan yaklaşık %d öğenin %d adımıAdım (artış miktarı)Güç göstergesiGüçlüAlt SıraKonuKonu Metni ya da alan aramaKonu Metni ya da alan aramaGönderimCSV GönderimiGönderim VerileriGönderim BilgileriGönderim SınırıGönderim Meta KutusuGönderim İstatistikleriGönderimlerGönderZamanlayıcının süresi dolduktan sonra gönder düğmesi metniAJAX (yeniden sayfa yüklemesi olmadan) ile gönderilsin mi?GönderildiGönderenGönderen: Gönderme tarihiGönderme tarihi: Abone OlBaşarı MesajıSudanSurinamSvalbard ve Jan Mayen AdalarıSvazilandİsveçİsviçreSuriye Arap CumhuriyetiSistemSistem DurumuÜÇ geliyor!TayvanTacikistanGeniş kapsamlı Ninja Forms belgelerimize aşağıdan göz atabilirsiniz.Tanzanya, Birleşik CumhuriyetVergiVergi YüzdesiSınıflandırmaŞablon AlanlarıŞablon İşleviTerim ListesiMetinMetin ÖğesiSayaçtan Sonra Görüntülenecek MetinKarakter/kelime sayacından sonra görüntülenecek metinMetinalanıMetin KutusuTaylandBu formu doldurduğunuz için teşekkürler.En yeni sürüme güncelleme yaptığınız için teşekkürler! Ninja Forms, %s gönderi yönetimini eğlenceli bir hale getirerek, deneyiminizi mükemmel hale getirmek üzere geliştirildi!Ninja Forms'un 2.7 sürümüne güncelleme yaptığınız için teşekkürler. Lütfen her türlü Ninja Forms uzantısını şuradan güncelleyin: Güncellediğiniz için teşekkür ederiz! Ninja Forms, %s form oluşturma işini hiç olmadığı kadar kolay bir hale getiriyor!Ninja Forms'u kullandığınız için teşekkürler! İhtiyacınız olan her şeyi bulduğunuz umuyoruz ancak herhangi bir sorunuz olursa:Bu formu doldurduğunuz için teşekkürler, {field:name}!Kredi kartınızın ön yüzünde bulunan, (genellikle) 16 haneden oluşan numaradır.Kartınızdaki 3 haneli (arkada) ya da 4 haneli (önde) değerdir.9'lar, her türlü sayıyı ifade edebilir; - işaretleri ise otomatik olarak eklenirFormlar menüsü, Ninja Forms ile ilgili her türlü konuda bilgi sunan erişim noktanızdır. Elinizde bir örnek bulunması için %siletişim formunuzu%s sizin için oluşturduk bile. Ayrıca %sYeni Form Ekle%s seçeneğini tıklayarak kendi formunuzu oluşturabilirsiniz.Format, şu şekilde görünmelidir:Bu sürümdeki arayüz güncellemeleri, ileride yapılacak bazı harika iyileştirmelerin temelini atabilir. Sürüm 3.0, Ninja Forms'u daha sağlam, güçlü ve kullanıcı dostu bir form oluşturma aracı haline getirmek için bu değişiklikleri taşıyor.Genellikle kartın ön yüzünde bulunan, kredi kartınızın sona erdiği aydır.En önemli ayarlar hemen görüntülenirken; temel düzeyde olmayan diğer ayarlar, genişletilebilir bölümlerin altında tutulur.Kredi kartınızın ön yüzünde yazılı olan addır.Şifreler eşleşmiyor.Ninja Forms oluşturan kişilerİşlem başladı; lütfen sabırlı olun. Bu işlem, birkaç dakika sürebilir. İşlem bittiğinde otomatik olarak yeniden yönlendirileceksiniz.Yüklenen dosya, HTML formunda belirtilen MAX_FILE_SIZE yönergesini aşıyor.Yüklenen dosya, php.ini konumunda bulunan upload_max_filesize yönergesini aşıyor.Yüklenen dosya içerisindekilerin bir kismi yüklendi.Genellikle kartın ön yüzünde bulunan, kredi kartınızın sona erdiği yıldır.Yeni %1$s sürümü çıktı. %3$s sürümüne yönelik ayrıntıları görüntüleyin ya da şimdi güncelleme yapın.Yeni %1$s sürümü çıktı. %3$s sürümüne yönelik ayrıntıları görüntüleyin .Yüklenen dosya, geçerli bir formatta değil.Fiyatlandırma bölümündeki tüm alanlar bunlardır.Kullanıcı Bilgileri bölümündeki tüm alanlar bunlardır.Bunlar, önceden tanımlı maskeleme karakterleridirBunlar, çeşitli özel alanlardır.Bu alanlar eşleşmelidir!Gönderimler tablosundaki bu sütun, sayılara göre sıralanır.Bu zorunlu bir alandırBu zorunlu bir alandır.Bu bir testtir.Bu, kullanıcının durumudur.Bu bir e-posta eylemidir.Bu da başka bir testtir.Bu, kullanıcının formu göndermek için ne kadar beklemesi gerektiğini gösterir Bu, gönderimler görüntülenirken/düzenlenirken/dışa aktarılırken kullanılan etikettir.Bu, alanınızın programlanmış adıdır. Örnekler, şu şekildedir: my_calc, price_total, user-total.Bu, kullanıcının durumudur%sİşaretlendiğinde%s kullanılacak değerdir.%sOnay İşareti Kaldırıldığında%s kullanılacak değerdir.Burada alan ekleyerek ve alanları istediğiniz görünüme kavuşacak şekilde sürükleyerek form oluşturabilirsiniz. Her bir alanda etiket, etiket konumu ve yer tutucu gibi çok çeşitli seçeneklerimiz var.Bu anahtar kelime, WordPress tarafından ayrılmıştır. Lütfen başka bir seçenek deneyin.Bu mesaj, bir kullanıcı "gönder" düğmesine her tıklandığında kullanıcıya işlem yapıldığını bildirmek için gönderme düğmesinin içinde gösterilir.Bu mesaj, şifre alanına eşleşmeyen değerler getirildiğinde kullanıcıya gösterilir.Kutu işaretlenmişse, hesaplamalarda bu sayı kullanılacaktır.Kutu işaretleşmemişse, hesaplamalarda bu sayı kullanılacaktır.Bu ayar, eklentinin silinmesi üzerinde Ninja Forms ile bağlantılı her türlü veriyi TAMAMEN kaldırır. Buna GÖNDERİMLER ve FORMLAR da dahildir. İşlem geri alınamaz.Başlık ve gönderme yöntemi ve form başarılı bir şekilde tamamlandığında formun saklanması gibi görüntü ayarları da dahil olmak üzere genel form ayarları, bu sekmede yer alır.Bu, e-postanın konusu olacaktır.Bu, kullanıcının rakam dışında bir giriş yapmasını engellerÜçSüreli GönderiZamanlayıcı hata mesajıTimor-Leste (Doğu Timor)AlıcıNinja Forms uzantıları için tüm lisansları etkinleştirmek istiyorsanız, öncelikle seçilen uzantıyı %syüklemeniz ve etkinleştirmeniz%s gerekir. Ardından lisans ayarları, aşağıda görüntülenir.Bu özelliği kullanmak için CSV'nizi yukarıdaki metin alanına kopyalayabilirsiniz.Bugünün TarihiDeğişiklik ÇekmecesiTogoTokelauTongaToplamÇöp %sPHP date() işlevi%s özelliklerini izlemeye çalışır ancak tüm formatlar desteklenmez.Trinidad ve TobagoTunusTürkiyeTürkmenistanTurks ve Caicos AdalarıTuvaluİkiTürLinkABD TelefonuUgandaUkraynaOnaylanmadıİşaretlenmemiş Hesap DeğeriForm Ayarları bölümünde Temel Form Davranışı alanının altından formun sayfa içeriğine otomatik olarak eklemesini istediğiniz bir sayfayı kolaylıkla seçebilirsiniz. Buna benzer bir seçenek, yan çubuktaki tüm içerik düzenleme ekranlarında da mevcuttur.Geri AlTümünü Geri AlBirleşik Arap EmirlikleriBirleşik KrallıkBirleşik DevletlerAmerika Birleşik Devletleri Küçük Dış Adaları Bilinmeyen yükleme hatası.YayımlanmamışGüncelleÖğe GüncelleGüncelleme tarihi: Form Veritabanının GüncellenmesiYükseltNinja Forms ÜÇ'e YükseltinYükseltmelerYükseltmeler TamamlandıUrlUruguayEşitlik Kullanın (Gelişmiş)Miktar KullanÖzel bir ilk seçenek kullanınVarsayılan Ninja Forms stillendirme özelliklerini kullanın.Son hesaplamayı yerleştirmek için şu kısa kodu kullanın: [ninja_forms_calc]Ninja Forms'u kullanmaya başlamak için aşağıdaki ipuçlarından yararlanın. Göz açıp kapayıncaya kadar hazırsınız!Bunu kayıt şifresi alanı olarak kullanınBunu kayıt şifresi alanı olarak kullanın. Bu kutuya onay işareti konulursa, hem şifre alanı hem de şifrenin yeniden girileceği metin kutuları verilirİşleme için bir alan işaretleme amacıyla kullanılır.KullanıcıKullanıcının Görüntülenecek Olan Adı (Oturum açıldıysa)Kullanıcı E-postasıKullanıcının E-postası (Oturum açıldıysa)Kullanıcı GirişiKullanıcı Adı (Oturum açıldıysa)Kullanıcı ID'siKullanıcı Kimliği (Oturum açıldıysa)Kullanıcı Bilgileri Alan GrubuKullanıcı BilgileriKullanıcı Bilgi AlanlarıKullanıcının Soyadı (Oturum açıldıysa)Kullanıcı Metası (oturum açıldıysa)Kullanıcı Tarafından Gönderilen DeğerlerKullanıcı Tarafından Verilen Değerler:Kullanıcılar, gönderimlerini daha sonra tamamlamak için kaydetme ve geri dönme seçenekleri olduğunda uzun formları doldurmayı isteyebilir.

    Ninja Forms'un Kaydetme İlerleme Durumu uzantısı, bu süreci hızlı ve kolay bir hale getiriyor.

    ÖzbekistanE-posta adresi olarak doğrulansın mı? (Alan, zorunlu olmalıdır)DeğerVanuatuDeğişken AdıVenezuelaSürümSürüm %sÇok zayıfVietnamGörüntüle%s görüntüleDeğişiklikleri GörüntüleFormları GörüntüleElemanı GösterGönderimi GörüntüleGönderimleri GörüntüleDeğişim Günlüğünün Tamamını GörüntüleVirgin Adaları (Britanya)Virgin Adaları (ABD)Eklenti anasayfasını ziyaret etWordPress Hata Ayıklama ModuWP DiliWP Maksimum Yükleme BoyutuWordPress Hafıza LimitiWP Multisite EtkinWP Uzaktan GönderiWordPress SürümüWallis ve Futuna AdalarıTüm Ninja Forms kullanıcılarına mümkün olan en iyi şekilde destek olmak için elimizden geleni yapıyoruz. Herhangi bir sorunla karşılaşırsanız ya da bir sorunuz olursa, %slütfen bizimle iletişime geçin%s.Eklentiyi sildiğinizde tüm Ninja Forms verilerini (gönderimler, formlar, alanlar, seçenekler) kaldırma seçeneğini de ekledik. Biz buna nükleer seçenek diyoruz.Formunuzda bir gönder düğmesi olmadığını fark ettik. Sizin için otomatik olarak ekleyebiliriz.ZayıfWeb Sunucusu BilgileriNinja Forms'a Hoş Geldiniz Ninja Forms'a Hoş Geldiniz %sBatı SahraSize Nasıl Yardımcı Olabiliriz?Destek ekibi ile iletişime geçmeden önce neler denenebilir?Bu en sevilen öğeye ne ad vermek istersiniz?YeniliklerFormları oluştururken ve düzenlerken, doğrudan en önemli olan bölüme gidin.Bu e-postayı kime göndermelisiniz?Kelime(ler)KelimelerSarmalayıcı Y-a-gd.m.Y - H:i:sGG-AA-YYYYYYYY/AA/GGYemenEvetNinja Forms ÜÇ Sürüm Adayına yükseltme yapmak için koşulları karşılıyorsunuz! %sŞimdi Yükseltin%sBunları ayrıca spesifik uygulamalar için de birleştirebilirsinizKimlik numarasını kullanmak istediğiniz alanın x ile gösterildiği field_x öğesini kullanarak hesaplama eşitliklerini girebilirsiniz. Örnek: %sfield_53 + field_28 + field_65%s.Javascript etkin olmadan formu gönderemezsiniz.Eklenti güncellemelerini yüklemek için izniniz yokİzniniz yok.Formunuza bir gönder düğmesi eklemediniz.Bir formu önizlemek için oturum açmalısınız.Bu en sevilen öğe için bir ad sunmanız gerekir.Bu formu göndermek için JavaScript gereklidir. Lütfen etkinleştirin ve tekrar deneyin.Satın aldığınız Bunu, satın aldığınız e-postaya dahil olarak bulacaksınız.Bildiriminiz başarıyla gönderildi.Sunucunuzda fsockopen yok veya cURL etkin değil - PayPal IPN ile başka sunucularla iletişim halinde olan diğer komut dizileri çalışmayacaktır. Lütfen barındırma hizmeti sağlayıcınızla iletişime geçin.Sunucunuzda %sSOAP İstemci%s sınıfı etkinleştirilmiş durumda değil; SOAP kullanan bazı ağ geçidi eklentileri, beklendiği şekilde çalışmayabilir.Sunucunuzda cURL etkinleştirilmiş; fsockopen devre dışı durumda.Sunucunuzda fsockopen ve cURL etkinleştirilmiş durumda.Sunucunuzda fsockopen etkinleştirilmiş; cURL devre dışı durumda.Sunucunuzda SOAP İstemci sınıfı etkinleştirilmiş durumda.Ninja Forms File Upload uzantısı sürümünüz, Ninja Forms 2.7 sürümüyle uyumlu değildir. En azından 1.3.5 sürümünün olması gerekir. Bu uzantıyı lütfen şuradan güncelleyin: Ninja Forms Save Progress uzantısı sürümünüz, Ninja Forms 2.7 sürümüyle uyumlu değildir. En azından 1.1.3 sürümünün olması gerekir. Bu uzantıyı lütfen şuradan güncelleyin: YugoslavyaZambiaZimbabveAlan KoduPosta Kodua - Bir alfabetik karakteri temsil eder (A-Z,a-z) - Sadece harf girilmesine izin veriliryanıtbutton-secondary nf-download-all- İade işlemini yapan:kalan karakter(ler)onaylandıKopyalaözelleştirilmişg-a-Ydashicons dashicons-updateçoğaltfoo@wpninjas.comsajs-newsletter-list-update extral, F g Ya-g-Ya/g/Yyok/Ürün A ve Ürün B, ABD Dolarıbirone_week_supportşifrei̇şleniyorürün(ler): reCAPTCHAreCAPTCHA DilireCAPTCHA Gizli AnahtarreCAPTCHA AyarlarıreCAPTCHA Site AnahtarıreCAPTCHA TemasıreCaptcha Ayarlarıenilesmtp_portüçbaşlıkikionaylanmadıgüncellendiuser@gmail.comsürümwp_remote_post() başarısız oldu. PayPal IPN, sunucunuzla çalışamayabilir.wp_remote_post() başarısız oldu. PayPal IPN, sunucunuzla çalışmıyor. Hosting sağlayıcınız ile iletişime geçin. Hata:wp_remote_post() başarılı oldu - PayPal IPN çalışıyor.lang/ninja-forms-tl.mo000064400000254517152331132460010700 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 #&>C@$Z?0Du |  k y L3F58   - :E LVfo   + :sH  **? NZir    w(ogx5 {& $ "6 !) / : FPX&j    ) 8FJN ` l;y   <\v }   .;CJN S ^j} L  !A,n"1I[jm   #=CIZ b"m W /;Z%`     :*eNk &6 KWv{ 5K_f u   ! . 9 ERj[} 1?)V , %"3V eow !  $? (A JXr     * 8F#^%0'M&OtU 9ENbt|< % < J V cq    ( 1;K\$c(! %)1  6? N[o   &B \i~   '79,qq  = C?M  ! (2: P[ `j q    !< ' >H Q[k s~hH`nQOQ#Du<%1OEHgE0G X f r  '   '. @ M Yf u  ( . 6 !< ^ g /n      &        & 1 2@ s  L       ' !; ] |            1 L U  h  r            &    " + 4 9 k?        $,3;_J# $-I[l      3N gt  $ *6WK      4@Yo4I]op!c1f|fU|XZ+U5w!40e{ $D)0n=%?#_#N* =^ q |    "+4:ARa jw  5>  54G!e21 "#,# 8& _ t C y (R!{!)!+!(!j"{"!""""""" #0# O#]# e#p# y## ##### ###$$5$ Q$ [$e$ $"$ $:$ % %&%-%3%8%O%f% l% y%%%% %% %%%% & (&3&+:& f&s&>&&*& ' '!'6'K'a'w'+' '' ''(?(^(t(|((((*((())) !)-)?) U) a)) )) ))))) ))* )* 4* A* O*[*n* u* * * * **V*GB++++(++++ ++ ,, !,1+,],l,, ,, ,,, - -!-%- 5-A-R-k-t-- -r-.&...>. N.%[. .. . .(. . ../ //5/3<>5p>>:t?q?Z!@?|@A@@A&+BGRBB BBB BBD}C C CCCCCC^C]DqDyD DDDDDDDDD DDDEEE FF$+FPF fFrF {F FF FF FFFFF G&G,@GOmG[G)HCH(HH I !I,I FIQIoIwIIIIIIJJ0J J6J.K4K Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedMga PagkilosI-activateAktiboMagdagdagAdd DescriptionAdd FormMagdagdag ng BagoAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesMga Add-OnAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Email ng AdminAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaLahatAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Malapit na...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaMay nangyaring hindi inaasahang error.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageIlapatArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanPagsingilBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaMaramihang PagkilosBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaKanselahinCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelNumero ng cardCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Natitirang characterMga KarakterCheatin’ huh?Check out our documentationCheckboxCheckbox ListMga checkboxCheckedChecked Calculation ValueChileChinaChristmas IslandLungsodClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.KumpirmahinConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormMakipag-ugnayan sa akinMakipag-ugnayan Sa AminContainerMagpatuloyCook IslandsHalagaCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyBansaCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeMga kreditoCroatia (Local Name: Hrvatska)CubaPeraCurrency SymbolKasalukuyang pageHindi sumusunodCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xMadilimData restored successfully!PetsaPesta ng PagkakagawaDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateI-deactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsAlisinDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkPaglalarawanDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?I-dismissIpakitaDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDokumentasyonDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicTapos naDownload All SubmissionsDropdownMag-duplicateDuplicate (^ + C + click)Duplicate FormEcuadorI-editEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsPetsa ng PagtataposEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Ipasok ang iyong email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)I-exportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiError sa Pag-uload ng FileFile Upload in Progress.File upload stopped by extension.FinlandPangalanFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatMga FormForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressPangalan sa Mula KayFull ChangelogFull screenGabonGambiaKaraniwanMga Pangkalahatang SettingGeorgiaGermanyHumingi ng TulongGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.PagsisimulaGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!TulongHelp TextHelp Text HereHiddenNakatagong FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.I-importImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskIlagayInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementNaka-installInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicApelyidoLatviaLayout ElementsLayout FieldsAlamin ang Higit PaLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaMga lisensyaLiechtensteinMaliwanagLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListahanList Field MappingList TypeMga ListahanLithuaniaNaglo-loadNaglo-load...LokasyonLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaaaring sa Ibang PagkakataonMayotteMediumMensaheMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMaramiMy First CalculationMy Second CalculationMySQL VersionMyanmarPangalanName on the cardName or fieldsNamibiaNauruKailangan mo ba ng Tulong?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueHindiNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.WalaNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanIsaOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoMga OpsyonOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitBersyon ng PHPILATHALAPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelHindi tugma ang mga passwordPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPilipinasTeleponoPhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Pakisagutan nang wasto ang tanong para sa anti-spam.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Pakisigurong kumpleto ang lahat kailangang field.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Mangyaring magpasok ng tamang email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Hayaang blangko ang spam field.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPakihintay na maipadala ang form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLI-previewPreview ChangesPreview FormPreview does not exist.PresyoPresyo:Pricing FieldsPinoprosesoProcessing LabelProcessing Submission LabelProduktoProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.I-publishPuerto RicoBilhinQatarDamiQuantity for Product AQuantity for Product BDami:Query StringQuery StringsQuerystring VariableTanongQuestion PositionQuote RequestRadyoRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaI-redirectAlisinRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?KailanganKinakailangang FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+I-restoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsMga PaghihigpitRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsI-save ang FormSave OptionsI-save ang Mga SettingI-save ang SubmissionNa-save naSaved FieldsNagse-save...Search ItemSearch SubmissionsPumiliPiliin LahatSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.NapiliSelected ValueIpadalaSend a copy of the form to this address?SenegalSerbiaServer IP AddressMga SettingSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonIpakita ang Iba PaShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeIsaSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateEstadoStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorMatatagSub SequencePaksaSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsI-submitSubmit button text after timer expiresSubmit via AJAX (without page reload)?NaisumiteSubmitted BySubmitted by: Submitted onSubmitted on: Mag-subscribeMensahe ng TagumpaySudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemStatus ng SystemTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfBuwisTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.Hindi magkatulad ang mga password na ibinigay.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.Kailangang punan ang field na itoIsa itong kailangang field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersTatloTimed SubmitTimer error messageTimor-Leste (East Timor)Para sa/kayTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaKabuuanTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluDalawaUriURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.I-undoUndo AllUnited Arab EmiratesUnited KingdomEstados UnidosUnited States Minor Outlying IslandsUnknown upload error.UnpublishedI-updateUpdate ItemUpdated on: Updating Form DatabaseMag-upgradeUpgrade to Ninja Forms THREEMga UpgradeUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaBersyonVersion %sVery weakViet NamTingnanView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.MahinaWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenOoYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.Hindi mo maaaring isumite ang form kung naka-disable ang Javascript.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Matagumpay nang naisumite ang iyong form.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ywalangof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.lang/ninja-forms.pot000064400000665225152331132460010454 0ustar00#, fuzzy msgid "" msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" "Project-Id-Version: Ninja Forms\n" "POT-Creation-Date: 2021-02-09 16:40+0100\n" "PO-Revision-Date: 2021-02-09 16:39+0100\n" "Last-Translator: \n" "Language-Team: WP Ninjas \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.4.2\n" "X-Poedit-Basepath: ..\n" "X-Poedit-Flags-xgettext: --add-comments=translators:\n" "X-Poedit-WPHeader: ninja-forms.php\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.min.js\n" "X-Poedit-SearchPathExcluded-1: vendor\n" "X-Poedit-SearchPathExcluded-2: node_modules\n" #: blocks/bootstrap.php:22 blocks/form/index.js:14 msgid "Ninja Form" msgstr "" #: blocks/bootstrap.php:138 blocks/bootstrap.php:157 msgid "Unique identifier for the object." msgstr "" #: blocks/bootstrap.php:162 msgid "Maximum number of items to be returned in result set." msgstr "" #: blocks/bootstrap.php:170 msgid "Current page of the collection." msgstr "" #: blocks/bootstrap.php:198 msgid "Preview token failed validation" msgstr "" #: blocks/ninja-forms-blocks.php:14 msgid "" "Autoloader not found for Ninja Forms Blocks - try running composer " "install" msgstr "" #: blocks/ninja-forms-blocks.php:19 msgid "Ninja Forms Blocks was unable to load." msgstr "" #: blocks/views/src/components/table-view/index.js:115 msgid "No columns selected. Please choose fields using the block settings ->" msgstr "" #: blocks/views/src/sub-table-block.js:31 msgid "Ninja Forms Submissions Table" msgstr "" #: blocks/views/src/sub-table-block.js:62 msgid "Loading Form Data" msgstr "" #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:46 msgid "Add Form" msgstr "" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:109 msgid "Select a form or type to search" msgstr "" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Admin/Menus/ImportExport.php:176 #: includes/Admin/Menus/Settings.php:174 includes/Admin/Menus/Settings.php:177 #: includes/Admin/Menus/Settings.php:200 includes/Admin/Menus/Settings.php:203 #: includes/Config/i18nBuilder.php:76 includes/Config/i18nDashboard.php:68 #: includes/Config/i18nDashboard.php:79 #: includes/Templates/admin-menu-dashboard.html.php:165 #: includes/Templates/admin-menu-new-form.html.php:599 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "" #: deprecated/classes/add-form-modal.php:92 includes/Admin/AddFormModal.php:77 msgid "Insert" msgstr "" #: deprecated/classes/download-all-subs.php:39 #: includes/Admin/CPT/DownloadAllSubmissions.php:48 msgid "Invalid form id" msgstr "" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:91 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/ActionAkismetSettings.php:19 #: includes/Config/ActionDeleteDataRequestSettings.php:19 #: includes/Config/ActionExportDataRequestSettings.php:19 #: includes/Database/MockData.php:81 includes/Database/MockData.php:262 #: includes/Database/MockData.php:294 includes/Database/MockData.php:663 #: includes/Fields/Email.php:28 msgid "Email" msgstr "" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:106 msgid "From Name" msgstr "" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:107 msgid "Name or fields" msgstr "" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "" #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:121 msgid "From Address" msgstr "" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:122 msgid "One email address or field" msgstr "" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "" #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:49 msgid "Subject" msgstr "" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "" #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:64 #: includes/Config/ActionEmailSettings.php:82 msgid "Email Message" msgstr "" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:139 #: includes/Config/FieldSettings.php:514 msgid "Format" msgstr "" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:135 includes/Fields/HTML.php:41 #: includes/Fields/Note.php:33 msgid "HTML" msgstr "" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:136 msgid "Plain Text" msgstr "" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:34 msgid "Reply To" msgstr "" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:152 msgid "Cc" msgstr "" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:166 msgid "Bcc" msgstr "" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionAkismetSettings.php:37 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-dashboard.html.php:203 #: includes/Templates/admin-menu-new-form.html.php:245 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:222 includes/Admin/Menus/Settings.php:132 #: includes/Config/i18nBuilder.php:75 includes/Config/i18nDashboard.php:67 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/admin-menu-dashboard.html.php:217 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/admin-menu-dashboard.html.php:204 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "" #: deprecated/classes/notifications-table.php:175 #: includes/Config/ActionAkismetSettings.php:10 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:255 msgid "Name" msgstr "" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:882 includes/Config/i18nDashboard.php:65 #: includes/Templates/admin-menu-new-form.html.php:256 msgid "Type" msgstr "" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "" #: deprecated/classes/notifications.php:219 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:61 #: includes/Admin/Menus/AddNew.php:33 includes/Config/ActionSaveSettings.php:40 #: includes/Config/FieldSettings.php:235 includes/Config/FieldSettings.php:273 #: includes/Config/FieldSettings.php:1087 #: includes/Config/FormCalculationSettings.php:12 #: includes/Templates/admin-menu-dashboard.html.php:164 msgid "Add New" msgstr "" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:478 msgid "Please select a form to view submissions" msgstr "" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:480 msgid "No Submissions Found" msgstr "" #: deprecated/classes/subs-cpt.php:108 msgctxt "post type general name" msgid "Submissions" msgstr "" #: deprecated/classes/subs-cpt.php:117 msgctxt "post type singular name" msgid "Submission" msgstr "" #: deprecated/classes/subs-cpt.php:118 msgctxt "nf_sub" msgid "Add New" msgstr "" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "" #: deprecated/classes/subs-cpt.php:195 deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:56 includes/Admin/CPT/Submission.php:57 #: includes/Admin/Menus/Submissions.php:130 msgid "Submissions" msgstr "" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:997 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:160 #: includes/Admin/Menus/Submissions.php:176 msgid "#" msgstr "" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:192 #: includes/Admin/Menus/Submissions.php:197 #: includes/Config/FieldSettings.php:333 #: includes/Config/MergeTagsDeprecated.php:183 #: includes/Config/MergeTagsOther.php:25 includes/Database/MockData.php:620 #: includes/Fields/Date.php:30 msgid "Date" msgstr "" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:695 #: deprecated/classes/subs-cpt.php:696 includes/Admin/CPT/Submission.php:142 #: includes/Admin/Menus/Submissions.php:369 #: includes/Admin/Menus/Submissions.php:370 msgid "Export" msgstr "" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "" #: deprecated/classes/subs-cpt.php:396 #: includes/Admin/Menus/ImportExport.php:175 #: includes/Admin/Menus/Settings.php:176 includes/Admin/Menus/Settings.php:202 msgid "Trash" msgstr "" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:1002 msgid "Submitted" msgstr "" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "" #: deprecated/classes/subs-cpt.php:501 #: includes/Templates/admin-menu-subs-filter.html.php:27 msgid "Begin Date" msgstr "" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:29 msgid "End Date" msgstr "" #: deprecated/classes/subs-cpt.php:623 #, php-format msgid "%s submission updated." msgid_plural "%s submissions updated." msgstr[0] "" msgstr[1] "" #: deprecated/classes/subs-cpt.php:624 #, php-format msgid "%s submission not updated, somebody is editing it." msgid_plural "%s submissions not updated, somebody is editing them." msgstr[0] "" msgstr[1] "" #: deprecated/classes/subs-cpt.php:625 #, php-format msgid "%s submission permanently deleted." msgid_plural "%s submissions permanently deleted." msgstr[0] "" msgstr[1] "" #: deprecated/classes/subs-cpt.php:626 #, php-format msgid "%s submission moved to the Trash." msgid_plural "%s submissions moved to the Trash." msgstr[0] "" msgstr[1] "" #: deprecated/classes/subs-cpt.php:627 #, php-format msgid "%s submission restored from the Trash." msgid_plural "%s submissions restored from the Trash." msgstr[0] "" msgstr[1] "" #: deprecated/classes/subs-cpt.php:650 deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s updated." msgstr "" #: deprecated/classes/subs-cpt.php:651 msgid "Custom field updated." msgstr "" #: deprecated/classes/subs-cpt.php:652 msgid "Custom field deleted." msgstr "" #. translators: %s: date and time of the revision #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%s published." msgstr "" #: deprecated/classes/subs-cpt.php:657 #, php-format msgid "%s saved." msgstr "" #: deprecated/classes/subs-cpt.php:658 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "" #: deprecated/classes/subs-cpt.php:659 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" #: deprecated/classes/subs-cpt.php:660 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "" #: deprecated/classes/subs-cpt.php:713 #: includes/Admin/CPT/DownloadAllSubmissions.php:163 #: includes/Admin/Menus/Submissions.php:387 msgid "Download All Submissions" msgstr "" #: deprecated/classes/subs-cpt.php:811 msgid "Back to list" msgstr "" #: deprecated/classes/subs-cpt.php:869 includes/Admin/CPT/Submission.php:300 msgid "User Submitted Values" msgstr "" #: deprecated/classes/subs-cpt.php:871 msgid "Submission Stats" msgstr "" #: deprecated/classes/subs-cpt.php:901 #: includes/Config/ActionCollectPaymentSettings.php:42 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "" #: deprecated/classes/subs-cpt.php:902 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:251 includes/Config/FieldSettings.php:288 #: includes/Config/FieldSettings.php:1102 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "" #: deprecated/classes/subs-cpt.php:1001 msgid "Status" msgstr "" #: deprecated/classes/subs-cpt.php:1006 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 #: includes/Admin/Menus/ImportExport.php:147 includes/MergeTags/Form.php:19 msgid "Form" msgstr "" #: deprecated/classes/subs-cpt.php:1011 msgid "Submitted on" msgstr "" #: deprecated/classes/subs-cpt.php:1017 msgid "Modified on" msgstr "" #: deprecated/classes/subs-cpt.php:1025 msgid "Submitted By" msgstr "" #: deprecated/classes/subs-cpt.php:1039 deprecated/classes/subs-cpt.php:1040 #: deprecated/upgrade/class-submenu.php:56 #: includes/Templates/admin-metabox-sub-info.html.php:35 msgid "Update" msgstr "" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:388 msgid "Date Submitted" msgstr "" #: deprecated/includes/EDD_SL_Plugin_Updater.php:143 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:219 #, php-format msgid "" "There is a new version of %1$s available. %2$sView version %3$s details%4$s." msgstr "" #: deprecated/includes/EDD_SL_Plugin_Updater.php:151 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:227 #, php-format msgid "" "There is a new version of %1$s available. %2$sView version %3$s details%4$s " "or %5$supdate now%6$s." msgstr "" #: deprecated/includes/EDD_SL_Plugin_Updater.php:269 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:465 msgid "You do not have permission to install plugin updates" msgstr "" #: deprecated/includes/EDD_SL_Plugin_Updater.php:269 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:465 msgid "Error" msgstr "" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:21 includes/Config/DashboardMenuItems.php:7 msgid "Forms" msgstr "" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "" #: deprecated/includes/admin/admin.php:29 #: includes/Admin/Menus/ImportExport.php:47 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: deprecated/includes/admin/welcome.php:335 #: includes/Admin/Menus/Settings.php:66 includes/Admin/Menus/Settings.php:77 #: includes/Config/FieldSettings.php:891 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "" #: deprecated/includes/admin/admin.php:32 includes/Admin/Menus/Addons.php:34 msgid "Add-Ons" msgstr "" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:41 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: deprecated/includes/admin/scripts.php:75 msgid "Save" msgstr "" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:832 msgid "Disable Browser Autocomplete" msgstr "" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "" #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "" #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 deprecated/includes/widget.php:96 #: includes/Admin/Metaboxes/AppendAForm.php:62 #: includes/Config/PluginSettingsAdvanced.php:83 includes/Widget.php:89 msgid "None" msgstr "" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:653 msgid "Help Text" msgstr "" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 #: includes/Config/i18nFrontEnd.php:32 msgid "of" msgstr "" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:117 msgid "Left of Element" msgstr "" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:109 msgid "Above Element" msgstr "" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:113 msgid "Below Element" msgstr "" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:121 msgid "Right of Element" msgstr "" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "" #: deprecated/includes/admin/edit-field/li.php:109 #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:447 msgid "Placeholder" msgstr "" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:639 msgid "Admin Label" msgstr "" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "" #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 #: includes/Config/FieldSettings.php:341 msgid "Custom" msgstr "" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 #: includes/Templates/admin-menu-dashboard.html.php:205 msgid "Preview Form" msgstr "" #: deprecated/includes/admin/notices.php:23 msgid "Upgrade to Ninja Forms THREE" msgstr "" #: deprecated/includes/admin/notices.php:29 #, php-format msgid "You are eligible to upgrade to Ninja Forms THREE! %sUpgrade Now%s" msgstr "" #: deprecated/includes/admin/notices.php:55 #, php-format msgid "" "You are eligible to upgrade to Ninja Forms THREE! However, the following " "plugins are not compatible with Ninja Forms THREE and could lead to issues " "with the upgrade process.%sPlease deactivate and remove the following before " "attempting to upgrade:%s" msgstr "" #: deprecated/includes/admin/notices.php:72 msgid "THREE is coming!" msgstr "" #: deprecated/includes/admin/notices.php:73 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" #: deprecated/includes/admin/notices.php:87 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "" #: deprecated/includes/admin/notices.php:88 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" #: deprecated/includes/admin/notices.php:89 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "" #: deprecated/includes/admin/notices.php:90 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: deprecated/includes/admin/welcome.php:250 msgid "Documentation" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:56 msgid "Documentation coming soon." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:64 msgid "Active" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:68 msgid "Installed" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:72 #: includes/Templates/admin-menu-addons.html.php:78 #: lib/NF_VersionSwitcher.php:274 msgid "Learn More" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: includes/Admin/Menus/ImportExport.php:148 #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:216 msgid "Import Favorite Fields" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:18 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:14 msgid "Select a file" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:223 msgid "Export Favorite Fields" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:26 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:29 msgid "Import Form" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Config/i18nDashboard.php:70 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:61 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:64 msgid "Export Form" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 msgid "Currency Symbol" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: deprecated/includes/admin/scripts.php:54 #: includes/Config/PluginSettingsAdvanced.php:16 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:41 msgid "Disable Admin Notices" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:29 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:78 msgid "Licenses" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 #: deprecated/includes/admin/welcome.php:329 msgid "Build Your Form" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:319 msgid "Input Mask" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 #: deprecated/includes/field-type-groups.php:10 msgid "Layout Elements" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:74 #: includes/Config/FormDisplaySettings.php:12 #: includes/Config/MergeTagsForm.php:27 msgid "Form Title" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: deprecated/includes/admin/welcome.php:355 #: includes/Admin/AllFormsTable.php:75 #: includes/Templates/admin-menu-dashboard.html.php:181 msgid "Shortcode" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 #: deprecated/includes/admin/welcome.php:369 msgid "Template Function" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: deprecated/includes/admin/sidebar.php:155 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 #: includes/Templates/admin-menu-dashboard.html.php:216 msgid "View Submissions" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:76 msgid "Clear successfully completed form?" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:80 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:90 msgid "Hide successfully completed form?" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:94 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:67 msgid "Require user to be logged in to view form?" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:81 msgid "Not Logged-In Message" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:92 msgid "Limit Submissions" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:121 msgid "Limit Reached Message" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:3 msgid "Please include this information when requesting support:" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:4 msgid "Get System Report" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:38 msgid "Environment" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:174 msgid "Home URL" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:175 #: includes/Config/MergeTagsDeprecated.php:157 #: includes/Config/MergeTagsWP.php:209 msgid "Site URL" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:176 msgid "Ninja Forms Version" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:29 msgid "Ninja Forms Codebase" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:180 msgid "WP Version" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:181 msgid "WP Multisite Enabled" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:38 #: deprecated/includes/admin/pages/system-status-html.php:77 #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:41 #: includes/Admin/Menus/SystemStatus.php:58 #: includes/Admin/Menus/SystemStatus.php:78 msgid "Yes" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:38 #: deprecated/includes/admin/pages/system-status-html.php:77 #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:43 #: includes/Admin/Menus/SystemStatus.php:60 #: includes/Admin/Menus/SystemStatus.php:80 msgid "No" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:182 msgid "Web Server Info" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:183 msgid "PHP Version" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:49 #: includes/Admin/Menus/SystemStatus.php:185 msgid "MySQL Version" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:59 #: includes/Admin/Menus/SystemStatus.php:187 msgid "PHP Locale" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:68 #: includes/Admin/Menus/SystemStatus.php:189 msgid "WP Memory Limit" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:190 msgid "WP Debug Mode" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:191 msgid "WP Language" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:81 #: includes/Admin/Menus/SystemStatus.php:67 #: includes/Config/FieldSettings.php:519 msgid "Default" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:84 #: includes/Admin/Menus/SystemStatus.php:192 msgid "WP Max Upload Size" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:193 msgid "PHP Post Max Size" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:194 msgid "Max Input Nesting Level" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:97 #: deprecated/includes/admin/pages/system-status-html.php:109 #: includes/Admin/Menus/SystemStatus.php:87 #: includes/Admin/Menus/SystemStatus.php:94 includes/Fields/Unknown.php:28 msgid "Unknown" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:195 msgid "PHP Time Limit" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:196 msgid "PHP Max Input Vars" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:113 #: includes/Admin/Menus/SystemStatus.php:197 msgid "SUHOSIN Installed" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:117 #: includes/Admin/Menus/SystemStatus.php:200 msgid "SMTP" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:126 #: includes/Admin/Menus/SystemStatus.php:202 msgid "Default Timezone" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:130 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:132 #, php-format msgid "Default timezone is %s" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:143 msgid "Your server has fsockopen and cURL enabled." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:145 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:147 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:151 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:156 msgid "SOAP Client" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:158 msgid "Your server has the SOAP Client class enabled." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:161 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:166 msgid "WP Remote Post" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:177 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:180 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:183 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:190 #: includes/Templates/admin-menu-system-status.html.php:51 msgid "Plugins" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:195 msgid "Installed Plugins" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:215 #: includes/Admin/Menus/SystemStatus.php:121 msgid "Visit plugin homepage" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:218 #: includes/Admin/Menus/SystemStatus.php:124 msgid "by" msgstr "" #: deprecated/includes/admin/pages/system-status-html.php:218 #: includes/Admin/Menus/SystemStatus.php:124 msgid "version" msgstr "" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "" #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:354 msgid "Edit Form" msgstr "" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "" #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "" #: deprecated/includes/admin/step-processing.php:11 #: lib/StepProcessing/menu.php:11 msgid "Ninja Forms Processing" msgstr "" #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: deprecated/ninja-forms.php:683 includes/Config/FieldSettings.php:957 #: lib/StepProcessing/menu.php:11 msgid "Processing" msgstr "" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 #: lib/StepProcessing/menu.php:72 msgid "Ninja Forms - Processing" msgstr "" #: deprecated/includes/admin/step-processing.php:111 #: lib/StepProcessing/menu.php:105 msgid "Loading..." msgstr "" #: deprecated/includes/admin/step-processing.php:116 #: lib/StepProcessing/menu.php:110 msgid "No Action Specified..." msgstr "" #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 #: lib/StepProcessing/menu.php:135 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsDeprecated.php:170 #: includes/Config/MergeTagsWP.php:222 msgid "Admin Email" msgstr "" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 #: includes/Config/MergeTagsDeprecated.php:131 #: includes/Config/MergeTagsWP.php:157 msgid "User Email" msgstr "" #: deprecated/includes/admin/upgrades/upgrade-functions.php:41 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" #: deprecated/includes/admin/upgrades/upgrade-functions.php:50 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" #: deprecated/includes/admin/upgrades/upgrade-functions.php:65 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" #: deprecated/includes/admin/upgrades/upgrade-functions.php:84 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" #: deprecated/includes/admin/upgrades/upgrade-functions.php:90 msgid "Updating Form Database" msgstr "" #: deprecated/includes/admin/upgrades/upgrade-functions.php:92 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 msgid "Upgrade" msgstr "" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "" #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "" #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "" #: deprecated/includes/admin/welcome.php:253 #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms Documentation" msgstr "" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" #: deprecated/includes/admin/welcome.php:332 includes/Config/i18nBuilder.php:14 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" #: deprecated/includes/admin/welcome.php:364 deprecated/includes/widget.php:14 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "" #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "" #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "" #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "" #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:90 msgid "Could not activate license. Please verify your license key" msgstr "" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 #: includes/Config/ActionCollectPaymentSettings.php:40 #: includes/Config/ActionCollectPaymentSettings.php:59 #: includes/Config/ActionCollectPaymentSettings.php:77 msgid "- Select One" msgstr "" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "" #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "" #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/FormDisplaySettings.php:248 #: includes/Config/i18nFrontEnd.php:21 msgid "This is a required field." msgstr "" #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "" #. translators: password strength #: deprecated/includes/display/scripts.php:278 msgctxt "password strength" msgid "Medium" msgstr "" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "" #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 #: includes/Config/ActionCollectPaymentSettings.php:41 msgid "Calculation" msgstr "" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "" #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:246 #: includes/Config/FieldSettings.php:284 includes/Config/FieldSettings.php:755 #: includes/Config/FieldSettings.php:771 includes/Config/FieldSettings.php:1097 msgid "Label" msgstr "" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:462 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 includes/Config/FieldSettings.php:167 #: includes/Fields/Checkbox.php:87 includes/Fields/Repeater.php:183 msgid "Unchecked" msgstr "" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 includes/Config/FieldSettings.php:160 #: includes/Fields/Checkbox.php:85 includes/Fields/Repeater.php:182 msgid "Checked" msgstr "" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:858 msgid "Use a custom first option" msgstr "" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:871 msgid "Custom first option" msgstr "" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "" #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "" #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "" #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "" #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "" #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "" #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "" #: deprecated/includes/fields/list.php:112 msgid "Calc" msgstr "" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:26 msgid "Multi-Select" msgstr "" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "" #: deprecated/includes/fields/list.php:145 #: includes/Config/FieldSettings.php:731 msgid "Multi-Select Box Size" msgstr "" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "" #: deprecated/includes/fields/list.php:175 #: includes/Config/FieldSettings.php:235 #: includes/Templates/admin-menu-new-form.html.php:547 #: includes/Templates/admin-menu-new-form.html.php:562 msgid "Import" msgstr "" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "" #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "" #: deprecated/includes/fields/list.php:181 msgctxt "Example for list importing. Leave puncation in place." msgid "Label,Value,Calc" msgstr "" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" #: deprecated/includes/fields/list.php:591 msgctxt "Short for calculation" msgid "Calc" msgstr "" #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:81 msgid "Passwords do not match" msgstr "" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:30 msgid "Star Rating" msgstr "" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:819 msgid "Number of stars" msgstr "" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:73 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:75 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:914 msgid "Show Rich Text Editor" msgstr "" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:924 msgid "Show Media Upload Button" msgstr "" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:936 msgid "Disable Rich Text Editor on Mobile" msgstr "" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:844 msgid "Disable Input" msgstr "" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "" #: deprecated/includes/fields/textbox.php:176 #: includes/Config/FieldSettings.php:337 #: includes/Config/FormDisplaySettings.php:274 #: includes/Config/PluginSettingsGeneral.php:41 msgid "Currency" msgstr "" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "" #: deprecated/includes/fields/textbox.php:294 deprecated/ninja-forms.php:682 #: includes/Fields/Email.php:37 msgid "Please enter a valid email address." msgstr "" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 msgid "Please wait %n seconds" msgstr "" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "" #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" #: deprecated/includes/functions.php:529 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "" #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "" #: deprecated/ninja-forms.php:674 includes/Config/FormDisplaySettings.php:260 #: includes/Config/i18nFrontEnd.php:26 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "" #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "" #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "" #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "" #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "" #: deprecated/upgrade/class-submenu.php:57 msgid "Update to Ninja Forms THREE" msgstr "" #: deprecated/upgrade/class-submenu.php:167 msgid "Ninja Forms THREE" msgstr "" #: deprecated/upgrade/class-submenu.php:169 msgid "Upgrade to the Ninja Forms THREE." msgstr "" #: deprecated/upgrade/tmpl-settings-upgrade-button.html.php:4 msgid "Please update your add-ons before upgrading." msgstr "" #: includes/AJAX/Controllers/DeleteAllData.php:15 #: includes/AJAX/Controllers/Fields.php:23 #: includes/AJAX/Controllers/Preview.php:19 #: includes/AJAX/REST/RequiredUpdate.php:25 msgid "Access denied. You must have admin privileges to perform this action." msgstr "" #: includes/AJAX/Controllers/DeleteAllData.php:23 #: includes/AJAX/Controllers/Fields.php:31 #: includes/AJAX/REST/BatchProcess.php:22 #: includes/AJAX/REST/BatchProcess.php:30 includes/AJAX/REST/Forms.php:30 #: includes/AJAX/REST/Forms.php:55 includes/AJAX/REST/Forms.php:78 #: includes/AJAX/REST/NewFormTemplates.php:22 #: includes/AJAX/REST/RequiredUpdate.php:33 msgid "Request forbidden." msgstr "" #: includes/AJAX/Controllers/Form.php:28 includes/AJAX/Controllers/Form.php:149 #: includes/AJAX/Controllers/Form.php:168 #: includes/AJAX/Controllers/SavedFields.php:20 #: includes/AJAX/Controllers/SavedFields.php:47 #: includes/AJAX/Controllers/SavedFields.php:65 includes/AJAX/REST/Forms.php:22 #: includes/AJAX/REST/Forms.php:48 includes/AJAX/REST/Forms.php:71 #: includes/AJAX/REST/NewFormTemplates.php:15 msgid "Access denied. You must have admin privileges to view this data." msgstr "" #: includes/AJAX/Controllers/Form.php:35 msgid "Form Not Found" msgstr "" #: includes/AJAX/Controllers/FormEndpoints.php:69 #: includes/Database/Models/Form.php:283 msgid "copy" msgstr "" #: includes/AJAX/Controllers/SavedFields.php:27 #: includes/AJAX/Controllers/SavedFields.php:54 #: includes/AJAX/Controllers/SavedFields.php:72 msgid "Field Not Found" msgstr "" #: includes/AJAX/Controllers/Submission.php:91 msgid "Form does not exist." msgstr "" #: includes/AJAX/Controllers/Submission.php:103 msgid "This form is currently undergoing maintenance. Please " msgstr "" #: includes/AJAX/Controllers/Submission.php:104 msgid "click here " msgstr "" #: includes/AJAX/Controllers/Submission.php:104 msgid "to reload the form and try again." msgstr "" #: includes/AJAX/Controllers/Submission.php:113 msgid "Preview does not exist." msgstr "" #: includes/AJAX/Controllers/Submission.php:561 #: includes/AJAX/REST/Controller.php:99 msgid "The server encountered an error during processing." msgstr "" #: includes/AJAX/Controllers/Submission.php:582 msgid "An unexpected error occurred." msgstr "" #: includes/AJAX/REST/BatchProcess.php:43 #: includes/AJAX/REST/BatchProcess.php:48 msgid "Invalid request." msgstr "" #: includes/AJAX/REST/Controller.php:55 msgid "Endpoint does not exist." msgstr "" #: includes/AJAX/REST/NewFormTemplates.php:30 msgid "Blank Form" msgstr "" #: includes/AJAX/REST/NewFormTemplates.php:31 msgid "" "The blank form allows you to create any type of form using our drag & drop " "builder." msgstr "" #: includes/Abstracts/ActionNewsletter.php:150 msgid "List Field Mapping" msgstr "" #: includes/Abstracts/ActionNewsletter.php:158 msgid "Interest Groups" msgstr "" #: includes/Abstracts/Field.php:153 msgid "This field is required." msgstr "" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "" #: includes/Abstracts/UserInfo.php:37 msgid "User Meta (if logged in)" msgstr "" #: includes/Actions/Akismet.php:38 msgid "Akismet Anti-Spam" msgstr "" #: includes/Actions/Akismet.php:95 msgid "There was an error trying to send your message. Please try again later" msgstr "" #: includes/Actions/CollectPayment.php:46 msgid "Collect Payment" msgstr "" #: includes/Actions/Custom.php:35 msgid "WP Hook" msgstr "" #: includes/Actions/DeleteDataRequest.php:35 #: includes/Config/NewFormTemplates.php:61 msgid "Delete Data Request" msgstr "" #: includes/Actions/Email.php:183 #, php-format msgid "" "Your email action \"%s\" has an invalid value for the \"%s\" setting. Please " "check this setting and try again." msgstr "" #: includes/Actions/ExportDataRequest.php:35 #: includes/Config/NewFormTemplates.php:67 msgid "Export Data Request" msgstr "" #: includes/Actions/Save.php:35 includes/Config/FormActionDefaults.php:24 msgid "Store Submission" msgstr "" #: includes/Actions/SuccessMessage.php:66 #, php-format msgid "Shortcodes should return and not echo, see: %s" msgstr "" #: includes/Admin/AddFormModal.php:97 msgid "Insert Form" msgstr "" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "" #: includes/Admin/AllFormsTable.php:40 msgid "" "Really Delete This Form? This will remove all fields and submission data. " "Recovery is not possible." msgstr "" #: includes/Admin/AllFormsTable.php:76 msgid "Created" msgstr "" #: includes/Admin/AllFormsTable.php:100 msgid "title" msgstr "" #: includes/Admin/AllFormsTable.php:101 msgid "date" msgstr "" #: includes/Admin/AllFormsTable.php:238 includes/Admin/AllFormsTable.php:254 #: includes/Admin/AllFormsTable.php:273 msgid "Go get a life, script kiddies" msgstr "" #: includes/Admin/CPT/Submission.php:54 msgctxt "Post Type General Name" msgid "Submissions" msgstr "" #: includes/Admin/CPT/Submission.php:55 msgctxt "Post Type Singular Name" msgid "Submission" msgstr "" #: includes/Admin/CPT/Submission.php:58 msgid "Parent Item:" msgstr "" #: includes/Admin/CPT/Submission.php:59 msgid "All Items" msgstr "" #: includes/Admin/CPT/Submission.php:60 msgid "Add New Item" msgstr "" #: includes/Admin/CPT/Submission.php:62 msgid "New Item" msgstr "" #: includes/Admin/CPT/Submission.php:63 msgid "Edit Item" msgstr "" #: includes/Admin/CPT/Submission.php:64 msgid "Update Item" msgstr "" #: includes/Admin/CPT/Submission.php:65 msgid "View Item" msgstr "" #: includes/Admin/CPT/Submission.php:66 msgid "Search Item" msgstr "" #: includes/Admin/CPT/Submission.php:68 msgid "Not found in Trash" msgstr "" #: includes/Admin/CPT/Submission.php:71 msgid "Submission" msgstr "" #: includes/Admin/CPT/Submission.php:72 msgid "Form Submissions" msgstr "" #: includes/Admin/CPT/Submission.php:309 msgid "Submission Info" msgstr "" #: includes/Admin/CPT/Submission.php:359 msgid "Anonymous" msgstr "" #: includes/Admin/Menus/Addons.php:86 msgid "You Can Build Smart, Beautiful WordPress Forms!" msgstr "" #: includes/Admin/Menus/Addons.php:90 msgid "Better Document Sharing will Take Your Business Further" msgstr "" #: includes/Admin/Menus/Addons.php:94 msgid "Accept Payments & Donations Without Breaking the Bank" msgstr "" #: includes/Admin/Menus/Addons.php:98 msgid "Want to Attract More Subscribers to Your Mailing Lists?" msgstr "" #: includes/Admin/Menus/Addons.php:102 msgid "Let Your Users Do More, and Do More for Your Users" msgstr "" #: includes/Admin/Menus/Addons.php:106 msgid "Generate More Leads Than You Ever Thought Possible" msgstr "" #: includes/Admin/Menus/Addons.php:110 msgid "Never Miss an Important Submission or Lead Again!" msgstr "" #: includes/Admin/Menus/Addons.php:114 msgid "Don’t See Your Favorite Service Above? We Can Likely Still Help." msgstr "" #: includes/Admin/Menus/Dashboard.php:21 msgid "Form Builder" msgstr "" #: includes/Admin/Menus/Dashboard.php:23 msgid "Dashboard" msgstr "" #. Plugin Name of the plugin/theme #: includes/Admin/Menus/Forms.php:59 includes/Config/i18nBuilder.php:5 #: includes/Config/i18nFrontEnd.php:9 ninja-forms.php:578 msgid "Ninja Forms" msgstr "" #: includes/Admin/Menus/Forms.php:272 msgid "Form Template Import Error." msgstr "" #: includes/Admin/Menus/Forms.php:364 includes/Display/Render.php:633 msgid "Add " msgstr "" #: includes/Admin/Menus/Forms.php:725 includes/Config/ActionSaveSettings.php:27 #: includes/MergeTags/Fields.php:14 msgid "Fields" msgstr "" #: includes/Admin/Menus/ImportExport.php:82 msgid "There uploaded file is not a valid format." msgstr "" #: includes/Admin/Menus/ImportExport.php:83 msgid "Invalid Form Upload." msgstr "" #: includes/Admin/Menus/ImportExport.php:174 #: includes/Admin/Menus/Settings.php:175 includes/Admin/Menus/Settings.php:201 msgid "Are you sure you want to trash all expired submissions?" msgstr "" #: includes/Admin/Menus/ImportExport.php:199 msgid "Import Forms" msgstr "" #: includes/Admin/Menus/ImportExport.php:206 msgid "Export Forms" msgstr "" #: includes/Admin/Menus/ImportExport.php:309 msgid "Equation (Advanced)" msgstr "" #: includes/Admin/Menus/ImportExport.php:312 msgid "Operations and Fields (Advanced)" msgstr "" #: includes/Admin/Menus/ImportExport.php:315 msgid "Auto-Total Fields" msgstr "" #: includes/Admin/Menus/ImportExport.php:433 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" #: includes/Admin/Menus/ImportExport.php:436 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" #: includes/Admin/Menus/ImportExport.php:439 msgid "The uploaded file was only partially uploaded." msgstr "" #: includes/Admin/Menus/ImportExport.php:442 msgid "No file was uploaded." msgstr "" #: includes/Admin/Menus/ImportExport.php:445 msgid "Missing a temporary folder." msgstr "" #: includes/Admin/Menus/ImportExport.php:448 msgid "Failed to write file to disk." msgstr "" #: includes/Admin/Menus/ImportExport.php:451 msgid "File upload stopped by extension." msgstr "" #: includes/Admin/Menus/ImportExport.php:454 msgid "Unknown upload error." msgstr "" #: includes/Admin/Menus/ImportExport.php:459 msgid "File Upload Error" msgstr "" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "" #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "" #: includes/Admin/Menus/Settings.php:56 msgid "Contact Form 7 is currently activated." msgstr "" #: includes/Admin/Menus/Settings.php:57 #, php-format msgid "" "Please be aware that there is an issue with Contact Form 7 that breaks " "reCAPTCHA in other plugins.%sIf you need to use reCAPTCHA on any of your " "Ninja Forms, you will need to disable Contact Form 7." msgstr "" #: includes/Admin/Menus/Settings.php:91 msgid "Save Settings" msgstr "" #: includes/Admin/Menus/Settings.php:166 includes/Admin/Menus/Settings.php:192 msgid "Remove ALL Ninja Forms data and uninstall?" msgstr "" #: includes/Admin/Menus/Settings.php:170 includes/Admin/Menus/Settings.php:196 msgid "Are you sure you want to downgrade?" msgstr "" #: includes/Admin/Menus/Settings.php:171 includes/Admin/Menus/Settings.php:197 msgid "" "You WILL lose any forms or submissions created on this version of Ninja " "Forms." msgstr "" #: includes/Admin/Menus/Settings.php:172 includes/Admin/Menus/Settings.php:198 msgid "Type " msgstr "" #: includes/Admin/Menus/Settings.php:172 includes/Admin/Menus/Settings.php:198 msgid " to confirm." msgstr "" #: includes/Admin/Menus/Settings.php:173 includes/Admin/Menus/Settings.php:199 #: includes/Config/PluginSettingsAdvanced.php:108 msgid "Downgrade" msgstr "" #: includes/Admin/Menus/Settings.php:221 msgid "Your request could not be verified. Please try again." msgstr "" #: includes/Admin/Menus/Submissions.php:110 #: includes/Admin/Menus/Submissions.php:119 msgid "Completed" msgstr "" #: includes/Admin/Menus/Submissions.php:113 #: includes/Admin/Menus/Submissions.php:121 msgid "Trashed" msgstr "" #: includes/Admin/Menus/SystemStatus.php:18 includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "" #: includes/Admin/Menus/SystemStatus.php:142 msgid "Supported" msgstr "" #: includes/Admin/Menus/SystemStatus.php:142 msgid "Not Supported" msgstr "" #: includes/Admin/Menus/SystemStatus.php:160 msgid "None Logged" msgstr "" #: includes/Admin/Menus/SystemStatus.php:177 msgid "Ninja Forms DB Version" msgstr "" #: includes/Admin/Menus/SystemStatus.php:178 msgid "Ninja Forms Gatekeeper" msgstr "" #: includes/Admin/Menus/SystemStatus.php:179 msgid "Ninja Forms \"Dev Mode\"" msgstr "" #: includes/Admin/Menus/SystemStatus.php:179 msgid "Enabled" msgstr "" #: includes/Admin/Menus/SystemStatus.php:179 msgid "Disabled" msgstr "" #: includes/Admin/Menus/SystemStatus.php:186 msgid "SQL Version Variable" msgstr "" #: includes/Admin/Menus/SystemStatus.php:198 msgid "Server IP Address" msgstr "" #: includes/Admin/Menus/SystemStatus.php:199 msgid "Host Name" msgstr "" #: includes/Admin/Menus/SystemStatus.php:201 msgid "smtp_port" msgstr "" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Form" msgstr "" #: includes/Admin/Metaboxes/Calculations.php:12 #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "" #: includes/Admin/Processes/ImportForm.php:71 msgid "No export provided." msgstr "" #: includes/Admin/Processes/ImportForm.php:106 msgid "Failed to read export. Please try again." msgstr "" #: includes/Admin/Processes/ImportForm.php:258 msgid "Failed to insert new form." msgstr "" #: includes/Admin/Processes/ImportForm.php:414 msgid "Some fields might not have been imported properly." msgstr "" #: includes/Admin/Processes/ImportForm.php:603 #: includes/Database/Models/Form.php:667 msgid "Save Form" msgstr "" #: includes/Admin/Processes/ImportForm.php:872 #: includes/Config/FieldSettings.php:900 includes/Database/Models/Form.php:936 #: includes/Fields/Confirm.php:26 msgid "Confirm" msgstr "" #: includes/Admin/Processes/ImportForm.php:896 #: includes/Database/Models/Form.php:960 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "" #: includes/Admin/UserDataRequests.php:50 #: includes/Admin/UserDataRequests.php:95 msgid "Ninja Forms Submission Data" msgstr "" #: includes/Admin/UserDataRequests.php:65 msgid "Ninja Forms Submissions Data" msgstr "" #: includes/Config/ActionAkismetSettings.php:11 msgid "Name field" msgstr "" #: includes/Config/ActionAkismetSettings.php:20 #: includes/Config/ActionDeleteDataRequestSettings.php:20 #: includes/Config/ActionExportDataRequestSettings.php:20 msgid "Email address field" msgstr "" #: includes/Config/ActionAkismetSettings.php:28 #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "" #: includes/Config/ActionAkismetSettings.php:29 msgid "Field for a URL" msgstr "" #: includes/Config/ActionAkismetSettings.php:38 msgid "Field for the message" msgstr "" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "" #: includes/Config/ActionCollectPaymentSettings.php:36 msgid "Get Total From" msgstr "" #: includes/Config/ActionCollectPaymentSettings.php:43 msgid "Fixed Amount" msgstr "" #: includes/Config/ActionCollectPaymentSettings.php:52 msgid "Select Calculation" msgstr "" #: includes/Config/ActionCollectPaymentSettings.php:70 msgid "Select Field" msgstr "" #: includes/Config/ActionCollectPaymentSettings.php:88 msgid "Enter Amount" msgstr "" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "" #: includes/Config/ActionDeleteDataRequestSettings.php:10 #: includes/Config/ActionExportDataRequestSettings.php:10 msgid "This is a message" msgstr "" #: includes/Config/ActionDeleteDataRequestSettings.php:11 msgid "" "This action adds users to WordPress' personal data delete tool, allowing " "admins to comply with the GDPR and other privacy regulations from the site's " "front end." msgstr "" #: includes/Config/ActionDeleteDataRequestSettings.php:28 msgid "Anonymize Data" msgstr "" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "" #: includes/Config/ActionEmailSettings.php:50 msgid "Subject Text or seach for a field" msgstr "" #: includes/Config/ActionEmailSettings.php:51 msgid "Ninja Forms Submission" msgstr "" #: includes/Config/ActionEmailSettings.php:180 msgid "Attach CSV" msgstr "" #: includes/Config/ActionEmailSettings.php:191 msgid "Add Attachment" msgstr "" #: includes/Config/ActionExportDataRequestSettings.php:11 msgid "" "This action adds users to WordPress' personal data export tool, allowing " "admins to comply with the GDPR and other privacy regulations from the site's " "front end." msgstr "" #: includes/Config/ActionSaveSettings.php:13 msgid "Designated Submitter's Email Address" msgstr "" #: includes/Config/ActionSaveSettings.php:15 msgid "" "The email address used in this field will be allowed to make data export and " "delete requests on behalf of their form submission." msgstr "" #: includes/Config/ActionSaveSettings.php:23 msgid "Save All" msgstr "" #: includes/Config/ActionSaveSettings.php:24 msgid "Save None" msgstr "" #: includes/Config/ActionSaveSettings.php:39 msgid "Except" msgstr "" #: includes/Config/ActionSaveSettings.php:47 msgid "Form Field" msgstr "" #: includes/Config/ActionSaveSettings.php:61 msgid "Set Submissions to expire?" msgstr "" #: includes/Config/ActionSaveSettings.php:63 msgid "" "Sets submissions to be trashes after a certain number of days, it affects " "all existing and new submissions" msgstr "" #: includes/Config/ActionSaveSettings.php:74 msgid "How long in days until subs expire?" msgstr "" #: includes/Config/ActionSuccessMessageSettings.php:16 #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "" #: includes/Config/Currency.php:5 msgid "Australian Dollars" msgstr "" #: includes/Config/Currency.php:9 msgid "Canadian Dollars" msgstr "" #: includes/Config/Currency.php:13 msgid "Czech Koruna" msgstr "" #: includes/Config/Currency.php:17 msgid "Danish Krone" msgstr "" #: includes/Config/Currency.php:21 msgid "Euros" msgstr "" #: includes/Config/Currency.php:25 msgid "Hong Kong Dollars" msgstr "" #: includes/Config/Currency.php:29 msgid "Hungarian Forints" msgstr "" #: includes/Config/Currency.php:33 msgid "Israeli New Sheqels" msgstr "" #: includes/Config/Currency.php:37 msgid "Japanese Yen" msgstr "" #: includes/Config/Currency.php:41 msgid "Mexican Pesos" msgstr "" #: includes/Config/Currency.php:45 msgid "Malaysian Ringgit" msgstr "" #: includes/Config/Currency.php:49 msgid "Norwegian Krone" msgstr "" #: includes/Config/Currency.php:53 msgid "New Zealand Dollars" msgstr "" #: includes/Config/Currency.php:57 msgid "Philippine Pesos" msgstr "" #: includes/Config/Currency.php:61 msgid "Polish Zloty" msgstr "" #: includes/Config/Currency.php:65 msgid "British Pounds Sterling" msgstr "" #: includes/Config/Currency.php:69 msgid "Singapore Dollars" msgstr "" #: includes/Config/Currency.php:73 msgid "Swedish Krona" msgstr "" #: includes/Config/Currency.php:77 msgid "Swiss Franc" msgstr "" #: includes/Config/Currency.php:81 msgid "Taiwan New Dollars" msgstr "" #: includes/Config/Currency.php:85 msgid "Thai Baht" msgstr "" #: includes/Config/Currency.php:89 msgid "U.S. Dollars" msgstr "" #: includes/Config/Currency.php:93 msgid "South African Rand" msgstr "" #: includes/Config/Currency.php:97 msgid "Indian Rupee" msgstr "" #: includes/Config/Currency.php:101 msgid "Russian Ruble" msgstr "" #: includes/Config/Currency.php:105 msgid "Chinese Yuan" msgstr "" #: includes/Config/DashboardMenuItems.php:11 msgid "Services" msgstr "" #: includes/Config/DashboardMenuItems.php:15 msgid "Apps & Integrations" msgstr "" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:1060 #: includes/Config/FormDisplaySettings.php:125 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "" #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "" #: includes/Config/FieldSettings.php:152 msgid "Checkbox Values" msgstr "" #: includes/Config/FieldSettings.php:159 msgid "Checked Value" msgstr "" #: includes/Config/FieldSettings.php:166 msgid "Unchecked Value" msgstr "" #: includes/Config/FieldSettings.php:182 msgid "Horizontal" msgstr "" #: includes/Config/FieldSettings.php:183 msgid "Vertical" msgstr "" #: includes/Config/FieldSettings.php:185 msgid "List Orientation" msgstr "" #: includes/Config/FieldSettings.php:195 msgid "Number of Columns" msgstr "" #: includes/Config/FieldSettings.php:210 msgid "Allow Multiple Selections" msgstr "" #: includes/Config/FieldSettings.php:222 msgid "Show Labels" msgstr "" #: includes/Config/FieldSettings.php:235 msgid "Options" msgstr "" #: includes/Config/FieldSettings.php:240 includes/Config/FieldSettings.php:1091 #: includes/Database/MockData.php:127 msgid "One" msgstr "" #: includes/Config/FieldSettings.php:240 msgid "one" msgstr "" #: includes/Config/FieldSettings.php:241 includes/Config/FieldSettings.php:1092 #: includes/Database/MockData.php:134 msgid "Two" msgstr "" #: includes/Config/FieldSettings.php:241 msgid "two" msgstr "" #: includes/Config/FieldSettings.php:242 includes/Config/FieldSettings.php:1093 #: includes/Database/MockData.php:141 msgid "Three" msgstr "" #: includes/Config/FieldSettings.php:242 msgid "three" msgstr "" #: includes/Config/FieldSettings.php:255 includes/Config/FieldSettings.php:292 msgid "Calc Value" msgstr "" #: includes/Config/FieldSettings.php:273 msgid "Image Options" msgstr "" #: includes/Config/FieldSettings.php:322 msgid "Restricts the kind of input your users can put into this field." msgstr "" #: includes/Config/FieldSettings.php:325 msgid "none" msgstr "" #: includes/Config/FieldSettings.php:329 msgid "US Phone" msgstr "" #: includes/Config/FieldSettings.php:354 msgid "Custom Mask" msgstr "" #: includes/Config/FieldSettings.php:363 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered." msgstr "" #: includes/Config/FieldSettings.php:364 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered." msgstr "" #: includes/Config/FieldSettings.php:365 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered." msgstr "" #: includes/Config/FieldSettings.php:376 msgid "Limit Input to this Number" msgstr "" #: includes/Config/FieldSettings.php:392 msgid "Character(s)" msgstr "" #: includes/Config/FieldSettings.php:396 msgid "Word(s)" msgstr "" #: includes/Config/FieldSettings.php:406 msgid "Text to Appear After Counter" msgstr "" #: includes/Config/FieldSettings.php:407 includes/Config/FieldSettings.php:409 msgid "Character(s) left" msgstr "" #: includes/Config/FieldSettings.php:432 msgid "Custom Name Attribute" msgstr "" #: includes/Config/FieldSettings.php:436 msgid "This value will be used as the HTML input \"name\" attribute." msgstr "" #: includes/Config/FieldSettings.php:451 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" #: includes/Config/FieldSettings.php:480 #: includes/Config/FormDisplaySettings.php:139 msgid "Custom Class Names" msgstr "" #: includes/Config/FieldSettings.php:488 msgid "Container" msgstr "" #: includes/Config/FieldSettings.php:492 msgid "Adds an extra class to your field wrapper." msgstr "" #: includes/Config/FieldSettings.php:497 #: includes/Config/FormDisplaySettings.php:155 msgid "Element" msgstr "" #: includes/Config/FieldSettings.php:502 msgid "Adds an extra class to your field element." msgstr "" #: includes/Config/FieldSettings.php:523 msgid "DD/MM/YYYY" msgstr "" #: includes/Config/FieldSettings.php:527 msgid "DD-MM-YYYY" msgstr "" #: includes/Config/FieldSettings.php:531 msgid "DD.MM.YYYY" msgstr "" #: includes/Config/FieldSettings.php:535 msgid "MM/DD/YYYY" msgstr "" #: includes/Config/FieldSettings.php:539 msgid "MM-DD-YYYY" msgstr "" #: includes/Config/FieldSettings.php:543 msgid "MM.DD.YYYY" msgstr "" #: includes/Config/FieldSettings.php:547 msgid "YYYY-MM-DD" msgstr "" #: includes/Config/FieldSettings.php:551 msgid "YYYY/MM/DD" msgstr "" #: includes/Config/FieldSettings.php:555 msgid "YYYY.MM.DD" msgstr "" #: includes/Config/FieldSettings.php:559 msgid "Friday, November 18, 2019" msgstr "" #: includes/Config/FieldSettings.php:573 msgid "Default To Current Date" msgstr "" #: includes/Config/FieldSettings.php:585 msgid "Year Range" msgstr "" #: includes/Config/FieldSettings.php:592 msgid "Start Year" msgstr "" #: includes/Config/FieldSettings.php:598 msgid "End Year" msgstr "" #: includes/Config/FieldSettings.php:611 msgid "Number of seconds for timed submit." msgstr "" #: includes/Config/FieldSettings.php:625 msgid "Field Key" msgstr "" #: includes/Config/FieldSettings.php:629 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" #: includes/Config/FieldSettings.php:643 msgid "Label used when viewing and exporting submissions." msgstr "" #: includes/Config/FieldSettings.php:655 msgid "Shown to users as a hover." msgstr "" #: includes/Config/FieldSettings.php:680 msgid "Description" msgstr "" #: includes/Config/FieldSettings.php:704 msgid "Sort as Numeric" msgstr "" #: includes/Config/FieldSettings.php:708 msgid "This column in the submissions table will sort by number." msgstr "" #: includes/Config/FieldSettings.php:715 msgid "This Field Is Personally Identifiable Data" msgstr "" #: includes/Config/FieldSettings.php:718 msgid "This option helps with privacy regulation compliance" msgstr "" #: includes/Config/FieldSettings.php:773 #, php-format msgid "Please wait %s seconds" msgstr "" #: includes/Config/FieldSettings.php:786 msgid "Number of seconds for the countdown" msgstr "" #: includes/Config/FieldSettings.php:803 msgid "" "Use this as a registration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" #: includes/Config/FieldSettings.php:918 msgid "Allows rich text input." msgstr "" #: includes/Config/FieldSettings.php:954 msgid "Processing Label" msgstr "" #: includes/Config/FieldSettings.php:969 msgid "Checked Calculation Value" msgstr "" #: includes/Config/FieldSettings.php:972 msgid "This number will be used in calculations if the box is checked." msgstr "" #: includes/Config/FieldSettings.php:978 msgid "Unchecked Calculation Value" msgstr "" #: includes/Config/FieldSettings.php:981 msgid "This number will be used in calculations if the box is unchecked." msgstr "" #: includes/Config/FieldSettings.php:992 msgid "Display This Calculation Variable" msgstr "" #: includes/Config/FieldSettings.php:998 msgid "- Select a Variable" msgstr "" #: includes/Config/FieldSettings.php:1011 msgid "Price" msgstr "" #: includes/Config/FieldSettings.php:1024 msgid "Use Inline Quantity" msgstr "" #: includes/Config/FieldSettings.php:1028 msgid "Allows users to choose more than one of this product." msgstr "" #: includes/Config/FieldSettings.php:1035 msgid "Product Type" msgstr "" #: includes/Config/FieldSettings.php:1040 msgid "Single Product (default)" msgstr "" #: includes/Config/FieldSettings.php:1044 msgid "Multi Product - Dropdown" msgstr "" #: includes/Config/FieldSettings.php:1048 msgid "Multi Product - Choose Many" msgstr "" #: includes/Config/FieldSettings.php:1052 msgid "Multi Product - Choose One" msgstr "" #: includes/Config/FieldSettings.php:1056 msgid "User Entry" msgstr "" #: includes/Config/FieldSettings.php:1071 msgid "Cost" msgstr "" #: includes/Config/FieldSettings.php:1087 msgid "Cost Options" msgstr "" #: includes/Config/FieldSettings.php:1116 msgid "Single Cost" msgstr "" #: includes/Config/FieldSettings.php:1120 msgid "Cost Dropdown" msgstr "" #: includes/Config/FieldSettings.php:1124 msgid "Cost Type" msgstr "" #: includes/Config/FieldSettings.php:1133 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "" #: includes/Config/FieldSettings.php:1139 msgid "- Select a Product" msgstr "" #: includes/Config/FieldSettings.php:1156 msgid "Answer" msgstr "" #: includes/Config/FieldSettings.php:1160 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "" #: includes/Config/FieldSettings.php:1176 msgid "Taxonomy" msgstr "" #: includes/Config/FieldSettings.php:1194 msgid "Add New Terms" msgstr "" #: includes/Config/FieldSettings.php:1208 msgid "This is a user's state." msgstr "" #: includes/Config/FieldSettings.php:1212 msgid "Used for marking a field for processing." msgstr "" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "" #: includes/Config/FieldTypeSections.php:50 msgid "Layout Fields" msgstr "" #: includes/Config/FieldTypeSections.php:62 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "" #: includes/Config/FormCalculationSettings.php:26 msgid "Precision" msgstr "" #: includes/Config/FormDisplaySettings.php:40 msgid "Allow a public link?" msgstr "" #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will create a public link to access the " "form." msgstr "" #: includes/Config/FormDisplaySettings.php:50 msgid "Link To Your Form" msgstr "" #: includes/Config/FormDisplaySettings.php:53 msgid "A public link to access the form." msgstr "" #: includes/Config/FormDisplaySettings.php:62 msgid "Embed Your Form" msgstr "" #: includes/Config/FormDisplaySettings.php:66 msgid "The shortcode you can use to embed this form on a page or post." msgstr "" #: includes/Config/FormDisplaySettings.php:104 msgid "Default Label Position" msgstr "" #: includes/Config/FormDisplaySettings.php:147 msgid "Wrapper" msgstr "" #: includes/Config/FormDisplaySettings.php:171 msgid "Form Key" msgstr "" #: includes/Config/FormDisplaySettings.php:175 msgid "Programmatic name that can be used to reference this form." msgstr "" #: includes/Config/FormDisplaySettings.php:185 msgid "Add Submit Button" msgstr "" #: includes/Config/FormDisplaySettings.php:189 msgid "" "We have noticed that you do not have a submit button on your form. We can " "add one for you automatically." msgstr "" #: includes/Config/FormDisplaySettings.php:199 msgid "Custom Labels" msgstr "" #: includes/Config/FormDisplaySettings.php:206 #: includes/Config/i18nFrontEnd.php:10 msgid "Please enter a valid email address!" msgstr "" #: includes/Config/FormDisplaySettings.php:212 #: includes/Config/i18nFrontEnd.php:11 msgid "Please enter a valid date!" msgstr "" #: includes/Config/FormDisplaySettings.php:218 #: includes/Config/i18nFrontEnd.php:12 msgid "These fields must match!" msgstr "" #: includes/Config/FormDisplaySettings.php:224 #: includes/Config/i18nFrontEnd.php:13 msgid "Number Min Error" msgstr "" #: includes/Config/FormDisplaySettings.php:230 #: includes/Config/i18nFrontEnd.php:14 msgid "Number Max Error" msgstr "" #: includes/Config/FormDisplaySettings.php:236 #: includes/Config/i18nFrontEnd.php:15 msgid "Please increment by " msgstr "" #: includes/Config/FormDisplaySettings.php:242 #: includes/Config/i18nFrontEnd.php:19 msgid "Please correct errors before submitting this form." msgstr "" #: includes/Config/FormDisplaySettings.php:254 #: includes/Config/i18nFrontEnd.php:22 msgid "Honeypot Error" msgstr "" #: includes/Config/FormDisplaySettings.php:273 msgid "Plugin Default" msgstr "" #: includes/Config/FormDisplaySettings.php:287 msgid "Repeatable fieldsets" msgstr "" #: includes/Config/FormRestrictionSettings.php:12 msgid "Unique Field" msgstr "" #: includes/Config/FormRestrictionSettings.php:44 msgid "Unique Field Error Message" msgstr "" #: includes/Config/FormRestrictionSettings.php:47 msgid "A form with this value has already been submitted." msgstr "" #: includes/Config/FormRestrictionSettings.php:55 msgid "Logged In" msgstr "" #: includes/Config/FormRestrictionSettings.php:71 msgid "Does apply to form preview." msgstr "" #: includes/Config/FormRestrictionSettings.php:104 msgid "Submission Limit" msgstr "" #: includes/Config/FormRestrictionSettings.php:108 msgid "Does NOT apply to form preview." msgstr "" #: includes/Config/FormRestrictionSettings.php:124 msgid "The form has reached its submission limit." msgstr "" #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "" #: includes/Config/MergeTagsDeprecated.php:14 #: includes/Config/MergeTagsWP.php:14 msgid "Post ID" msgstr "" #: includes/Config/MergeTagsDeprecated.php:27 #: includes/Config/MergeTagsWP.php:27 msgid "Post Title" msgstr "" #: includes/Config/MergeTagsDeprecated.php:40 #: includes/Config/MergeTagsWP.php:40 msgid "Post URL" msgstr "" #: includes/Config/MergeTagsDeprecated.php:53 #: includes/Config/MergeTagsWP.php:53 msgid "Post Author" msgstr "" #: includes/Config/MergeTagsDeprecated.php:66 #: includes/Config/MergeTagsWP.php:66 msgid "Post Author Email" msgstr "" #: includes/Config/MergeTagsDeprecated.php:79 #: includes/Config/MergeTagsWP.php:92 msgid "User ID" msgstr "" #: includes/Config/MergeTagsDeprecated.php:92 #: includes/Config/MergeTagsWP.php:105 msgid "User First Name" msgstr "" #: includes/Config/MergeTagsDeprecated.php:105 #: includes/Config/MergeTagsWP.php:118 msgid "User Last Name" msgstr "" #: includes/Config/MergeTagsDeprecated.php:118 #: includes/Config/MergeTagsWP.php:131 msgid "User Display Name" msgstr "" #: includes/Config/MergeTagsDeprecated.php:144 #: includes/Config/MergeTagsWP.php:196 msgid "Site Title" msgstr "" #: includes/Config/MergeTagsDeprecated.php:196 msgid "IP Address" msgstr "" #: includes/Config/MergeTagsDeprecated.php:202 #: includes/Config/MergeTagsOther.php:12 msgid "Query String" msgstr "" #: includes/Config/MergeTagsFieldsAJAX.php:8 #: includes/Config/MergeTagsForm.php:67 msgid "All Fields Table" msgstr "" #: includes/Config/MergeTagsFieldsAJAX.php:16 #: includes/Config/MergeTagsForm.php:74 msgid "Fields Table" msgstr "" #: includes/Config/MergeTagsFieldsAJAX.php:30 msgid "All Fields" msgstr "" #: includes/Config/MergeTagsForm.php:14 msgid "Form ID" msgstr "" #: includes/Config/MergeTagsForm.php:40 msgid "Sub Sequence" msgstr "" #: includes/Config/MergeTagsForm.php:53 msgid "Submission Count" msgstr "" #: includes/Config/MergeTagsOther.php:38 msgid "Time" msgstr "" #: includes/Config/MergeTagsOther.php:51 msgid "User IP Address" msgstr "" #: includes/Config/MergeTagsWP.php:79 msgid "Post Meta" msgstr "" #: includes/Config/MergeTagsWP.php:144 msgid "User Username" msgstr "" #: includes/Config/MergeTagsWP.php:170 msgid "User URL" msgstr "" #: includes/Config/MergeTagsWP.php:183 msgid "User Meta" msgstr "" #: includes/Config/NewFormTemplates.php:19 msgid "Contact Us" msgstr "" #: includes/Config/NewFormTemplates.php:20 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" #: includes/Config/NewFormTemplates.php:25 msgid "Quote Request" msgstr "" #: includes/Config/NewFormTemplates.php:26 msgid "" "Manage quote requests from your website easily with this template. You can " "add and remove fields as needed." msgstr "" #: includes/Config/NewFormTemplates.php:31 msgid "Event Registration" msgstr "" #: includes/Config/NewFormTemplates.php:32 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" #: includes/Config/NewFormTemplates.php:37 msgid "General Enquiry" msgstr "" #: includes/Config/NewFormTemplates.php:38 msgid "" "Collect user enquiries with this simple, generic form. You can add and " "remove fields as needed." msgstr "" #: includes/Config/NewFormTemplates.php:43 msgid "Collect feedback" msgstr "" #: includes/Config/NewFormTemplates.php:44 msgid "" "Collect feedback for an event, blog post, or anything else. You can add and " "remove fields as needed." msgstr "" #: includes/Config/NewFormTemplates.php:49 msgid "Questionnaire" msgstr "" #: includes/Config/NewFormTemplates.php:50 msgid "" "Collect information about your users. You can add and remove fields as " "needed." msgstr "" #: includes/Config/NewFormTemplates.php:55 msgid "Job Application" msgstr "" #: includes/Config/NewFormTemplates.php:56 msgid "" "Allow users to apply for a job. You can add and remove fields as needed." msgstr "" #: includes/Config/NewFormTemplates.php:62 msgid "" "Includes action to add users to WordPress' personal data delete tool, " "allowing admins to comply with the GDPR and other privacy regulations from " "the site's front end." msgstr "" #: includes/Config/NewFormTemplates.php:68 msgid "" "Includes action to add users to WordPress' personal data export tool, " "allowing admins to comply with the GDPR and other privacy regulations from " "the site's front end." msgstr "" #: includes/Config/NewFormTemplates.php:79 msgid "MailChimp Signup" msgstr "" #: includes/Config/NewFormTemplates.php:80 msgid "" "Add a user to a list in MailChimp. You can add and remove fields as needed." msgstr "" #: includes/Config/NewFormTemplates.php:95 msgid "Stripe Payment" msgstr "" #: includes/Config/NewFormTemplates.php:96 msgid "" "Collect a payment using Stripe. You can add and remove fields as needed." msgstr "" #: includes/Config/NewFormTemplates.php:111 msgid "File Upload" msgstr "" #: includes/Config/NewFormTemplates.php:112 msgid "" "Allow users to upload files with their forms. You can add and remove fields " "as needed." msgstr "" #: includes/Config/NewFormTemplates.php:129 msgid "PayPal Payment" msgstr "" #: includes/Config/NewFormTemplates.php:130 msgid "" "Collect a payment using PayPal Express. You can add and remove fields as " "needed." msgstr "" #: includes/Config/NewFormTemplates.php:146 msgid "Create a Post" msgstr "" #: includes/Config/NewFormTemplates.php:147 msgid "" "Allow users to create posts from the front-end using a form, including " "custom post meta!" msgstr "" #: includes/Config/NewFormTemplates.php:163 msgid "Register a User" msgstr "" #: includes/Config/NewFormTemplates.php:164 msgid "Register a WordPress User" msgstr "" #: includes/Config/NewFormTemplates.php:179 msgid "Edit User Profile" msgstr "" #: includes/Config/NewFormTemplates.php:180 msgid "" "Allow WordPress users to edit their profiles from the front-end, including " "custom user meta!" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:15 msgid "Delete All Data" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:17 #, php-format msgid "" "ALL Ninja Forms data will be removed from the database and the Ninja Forms " "plug-in will be deactivated. %sAll form and submission data will be " "unrecoverable.%s" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:54 msgid "Form Builder \"Dev Mode\"" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:66 msgid "Opt-in" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:66 msgid "Opt-out" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:67 msgid "Allow Telemetry" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:68 msgid "" "Opt-in to allow Ninja Forms to collect anonymous usage statistics from your " "site, such as PHP version, installed plugins, and other non-personally " "idetifiable informations." msgstr "" #: includes/Config/PluginSettingsAdvanced.php:80 msgid "Opinionated Styles" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:87 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:91 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:95 msgid "Use default Ninja Forms styling conventions." msgstr "" #: includes/Config/PluginSettingsAdvanced.php:109 msgid "Downgrade to v2.9.x" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:110 msgid "Downgrade to the most recent 2.9.x release." msgstr "" #: includes/Config/PluginSettingsAdvanced.php:110 msgid "IMPORTANT: All 3.0 data will be removed." msgstr "" #: includes/Config/PluginSettingsAdvanced.php:110 msgid "" "Please export any forms or submissions you do not want to be lost during " "this process." msgstr "" #: includes/Config/PluginSettingsAdvanced.php:116 msgid "Move To Trash" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:117 msgid "Trash Expired Submissions" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:118 msgid "" "This setting maybe helpful if your WordPress installation is not moving " "expired submissions to the trash properly." msgstr "" #: includes/Config/PluginSettingsAdvanced.php:125 #: includes/Config/PluginSettingsAdvanced.php:126 msgid "Remove Maintenance Mode" msgstr "" #: includes/Config/PluginSettingsAdvanced.php:127 msgid "" "Click this button if any of your forms are still in 'Maintenance Mode' after " "performing any required updates." msgstr "" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "" #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "" #: includes/Config/RequiredUpdates.php:8 msgid "Update Actions Tables" msgstr "" #: includes/Config/RequiredUpdates.php:13 msgid "Update Forms Tables" msgstr "" #: includes/Config/RequiredUpdates.php:18 msgid "Update Fields Tables" msgstr "" #: includes/Config/RequiredUpdates.php:23 msgid "Update Objects Tables" msgstr "" #: includes/Config/RequiredUpdates.php:28 msgid "Cleanup Orphan Records" msgstr "" #: includes/Config/RequiredUpdates.php:33 msgid "Field Meta Cleanup." msgstr "" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "" #: includes/Config/SettingsGroups.php:30 includes/Config/i18nBuilder.php:15 msgid "Advanced" msgstr "" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:384 msgid "Add" msgstr "" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "" #: includes/Config/i18nBuilder.php:10 includes/Config/i18nFrontEnd.php:20 msgid "If you are a human seeing this field, please leave it empty." msgstr "" #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "" #: includes/Config/i18nBuilder.php:13 #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "" #: includes/Config/i18nBuilder.php:16 #, php-format msgid "Possible issue detected. %sLearn More%s" msgstr "" #: includes/Config/i18nBuilder.php:17 includes/Config/i18nDashboard.php:5 #: includes/Config/i18nFrontEnd.php:33 msgid "Previous Month" msgstr "" #: includes/Config/i18nBuilder.php:18 includes/Config/i18nDashboard.php:6 #: includes/Config/i18nFrontEnd.php:34 msgid "Next Month" msgstr "" #: includes/Config/i18nBuilder.php:20 includes/Config/i18nDashboard.php:8 #: includes/Config/i18nFrontEnd.php:36 msgid "January" msgstr "" #: includes/Config/i18nBuilder.php:21 includes/Config/i18nDashboard.php:9 #: includes/Config/i18nFrontEnd.php:37 msgid "February" msgstr "" #: includes/Config/i18nBuilder.php:22 includes/Config/i18nDashboard.php:10 #: includes/Config/i18nFrontEnd.php:38 msgid "March" msgstr "" #: includes/Config/i18nBuilder.php:23 includes/Config/i18nDashboard.php:11 #: includes/Config/i18nFrontEnd.php:39 msgid "April" msgstr "" #: includes/Config/i18nBuilder.php:24 includes/Config/i18nBuilder.php:38 #: includes/Config/i18nDashboard.php:12 includes/Config/i18nDashboard.php:26 #: includes/Config/i18nFrontEnd.php:40 includes/Config/i18nFrontEnd.php:54 msgid "May" msgstr "" #: includes/Config/i18nBuilder.php:25 includes/Config/i18nDashboard.php:13 #: includes/Config/i18nFrontEnd.php:41 msgid "June" msgstr "" #: includes/Config/i18nBuilder.php:26 includes/Config/i18nDashboard.php:14 #: includes/Config/i18nFrontEnd.php:42 msgid "July" msgstr "" #: includes/Config/i18nBuilder.php:27 includes/Config/i18nDashboard.php:15 #: includes/Config/i18nFrontEnd.php:43 msgid "August" msgstr "" #: includes/Config/i18nBuilder.php:28 includes/Config/i18nDashboard.php:16 #: includes/Config/i18nFrontEnd.php:44 msgid "September" msgstr "" #: includes/Config/i18nBuilder.php:29 includes/Config/i18nDashboard.php:17 #: includes/Config/i18nFrontEnd.php:45 msgid "October" msgstr "" #: includes/Config/i18nBuilder.php:30 includes/Config/i18nDashboard.php:18 #: includes/Config/i18nFrontEnd.php:46 msgid "November" msgstr "" #: includes/Config/i18nBuilder.php:31 includes/Config/i18nDashboard.php:19 #: includes/Config/i18nFrontEnd.php:47 msgid "December" msgstr "" #: includes/Config/i18nBuilder.php:34 includes/Config/i18nDashboard.php:22 #: includes/Config/i18nFrontEnd.php:50 msgid "Jan" msgstr "" #: includes/Config/i18nBuilder.php:35 includes/Config/i18nDashboard.php:23 #: includes/Config/i18nFrontEnd.php:51 msgid "Feb" msgstr "" #: includes/Config/i18nBuilder.php:36 includes/Config/i18nDashboard.php:24 #: includes/Config/i18nFrontEnd.php:52 msgid "Mar" msgstr "" #: includes/Config/i18nBuilder.php:37 includes/Config/i18nDashboard.php:25 #: includes/Config/i18nFrontEnd.php:53 msgid "Apr" msgstr "" #: includes/Config/i18nBuilder.php:39 includes/Config/i18nDashboard.php:27 #: includes/Config/i18nFrontEnd.php:55 msgid "Jun" msgstr "" #: includes/Config/i18nBuilder.php:40 includes/Config/i18nDashboard.php:28 #: includes/Config/i18nFrontEnd.php:56 msgid "Jul" msgstr "" #: includes/Config/i18nBuilder.php:41 includes/Config/i18nDashboard.php:29 #: includes/Config/i18nFrontEnd.php:57 msgid "Aug" msgstr "" #: includes/Config/i18nBuilder.php:42 includes/Config/i18nDashboard.php:30 #: includes/Config/i18nFrontEnd.php:58 msgid "Sep" msgstr "" #: includes/Config/i18nBuilder.php:43 includes/Config/i18nDashboard.php:31 #: includes/Config/i18nFrontEnd.php:59 msgid "Oct" msgstr "" #: includes/Config/i18nBuilder.php:44 includes/Config/i18nDashboard.php:32 #: includes/Config/i18nFrontEnd.php:60 msgid "Nov" msgstr "" #: includes/Config/i18nBuilder.php:45 includes/Config/i18nDashboard.php:33 #: includes/Config/i18nFrontEnd.php:61 msgid "Dec" msgstr "" #: includes/Config/i18nBuilder.php:48 includes/Config/i18nDashboard.php:36 #: includes/Config/i18nFrontEnd.php:64 msgid "Sunday" msgstr "" #: includes/Config/i18nBuilder.php:49 includes/Config/i18nDashboard.php:37 #: includes/Config/i18nFrontEnd.php:65 msgid "Monday" msgstr "" #: includes/Config/i18nBuilder.php:50 includes/Config/i18nDashboard.php:38 #: includes/Config/i18nFrontEnd.php:66 msgid "Tuesday" msgstr "" #: includes/Config/i18nBuilder.php:51 includes/Config/i18nDashboard.php:39 #: includes/Config/i18nFrontEnd.php:67 msgid "Wednesday" msgstr "" #: includes/Config/i18nBuilder.php:52 includes/Config/i18nDashboard.php:40 #: includes/Config/i18nFrontEnd.php:68 msgid "Thursday" msgstr "" #: includes/Config/i18nBuilder.php:53 includes/Config/i18nDashboard.php:41 #: includes/Config/i18nFrontEnd.php:69 msgid "Friday" msgstr "" #: includes/Config/i18nBuilder.php:54 includes/Config/i18nDashboard.php:42 #: includes/Config/i18nFrontEnd.php:70 msgid "Saturday" msgstr "" #: includes/Config/i18nBuilder.php:57 includes/Config/i18nDashboard.php:45 #: includes/Config/i18nFrontEnd.php:73 msgid "Sun" msgstr "" #: includes/Config/i18nBuilder.php:58 includes/Config/i18nDashboard.php:46 #: includes/Config/i18nFrontEnd.php:74 msgid "Mon" msgstr "" #: includes/Config/i18nBuilder.php:59 includes/Config/i18nDashboard.php:47 #: includes/Config/i18nFrontEnd.php:75 msgid "Tue" msgstr "" #: includes/Config/i18nBuilder.php:60 includes/Config/i18nDashboard.php:48 #: includes/Config/i18nFrontEnd.php:76 msgid "Wed" msgstr "" #: includes/Config/i18nBuilder.php:61 includes/Config/i18nDashboard.php:49 #: includes/Config/i18nFrontEnd.php:77 msgid "Thu" msgstr "" #: includes/Config/i18nBuilder.php:62 includes/Config/i18nDashboard.php:50 #: includes/Config/i18nFrontEnd.php:78 msgid "Fri" msgstr "" #: includes/Config/i18nBuilder.php:63 includes/Config/i18nDashboard.php:51 #: includes/Config/i18nFrontEnd.php:79 msgid "Sat" msgstr "" #: includes/Config/i18nBuilder.php:66 includes/Config/i18nDashboard.php:54 #: includes/Config/i18nFrontEnd.php:82 msgid "Su" msgstr "" #: includes/Config/i18nBuilder.php:67 includes/Config/i18nDashboard.php:55 #: includes/Config/i18nFrontEnd.php:83 msgid "Mo" msgstr "" #: includes/Config/i18nBuilder.php:68 includes/Config/i18nDashboard.php:56 #: includes/Config/i18nFrontEnd.php:84 msgid "Tu" msgstr "" #: includes/Config/i18nBuilder.php:69 includes/Config/i18nDashboard.php:57 #: includes/Config/i18nFrontEnd.php:85 msgid "We" msgstr "" #: includes/Config/i18nBuilder.php:70 includes/Config/i18nDashboard.php:58 #: includes/Config/i18nFrontEnd.php:86 msgid "Th" msgstr "" #: includes/Config/i18nBuilder.php:71 includes/Config/i18nDashboard.php:59 #: includes/Config/i18nFrontEnd.php:87 msgid "Fr" msgstr "" #: includes/Config/i18nBuilder.php:72 includes/Config/i18nDashboard.php:60 #: includes/Config/i18nFrontEnd.php:88 msgid "Sa" msgstr "" #: includes/Config/i18nBuilder.php:74 #, php-format msgid "" "%sThis will also DELETE all submission data associated with this field.%sYou " "will not be able to retrieve this data later!%s" msgstr "" #: includes/Config/i18nBuilder.php:77 msgid "Min Value" msgstr "" #: includes/Config/i18nBuilder.php:78 msgid "Max Value" msgstr "" #: includes/Config/i18nBuilder.php:79 msgid "" "In order to prevent errors, values may only contain a specific subset of " "characters ( a-z, 0-9, -, _, @, space ). You can use the option label in " "your success message(s) or email action(s) by adding the :label attribute to " "your list field merge tags. For example: {field:key:label}" msgstr "" #: includes/Config/i18nBuilder.php:85 msgid "Accept Payments & Donations" msgstr "" #: includes/Config/i18nBuilder.php:86 msgid "Connect to Your Email Marketing or CRM Account" msgstr "" #: includes/Config/i18nBuilder.php:87 msgid "Manage Your Users Better" msgstr "" #: includes/Config/i18nBuilder.php:88 msgid "Document & Workflow Management" msgstr "" #: includes/Config/i18nBuilder.php:89 msgid "Send SMS Form Notifications" msgstr "" #: includes/Config/i18nBuilder.php:90 msgid "Integrate with 1000+ More Services" msgstr "" #: includes/Config/i18nDashboard.php:62 msgid "You are about to delete the form" msgstr "" #: includes/Config/i18nDashboard.php:63 msgid "" "Once deleted, it's fields and submissions cannot be recovered. Proceed with " "caution." msgstr "" #: includes/Config/i18nDashboard.php:66 msgid "to confirm" msgstr "" #: includes/Config/i18nDashboard.php:69 msgid "Confirm Delete" msgstr "" #: includes/Config/i18nDashboard.php:71 msgid "Export Submissions" msgstr "" #: includes/Config/i18nDashboard.php:72 #, php-format msgid "" "%sWe would like to collect data about how Ninja Forms is used so that we can " "improve the experience for everyone. This data will not include ANY " "submission data or personally identifiable information.%sPlease check out " "our %sprivacy policy%s for additional clarification.%s" msgstr "" #: includes/Config/i18nDashboard.php:73 msgid "Yes, please send me occasional emails about Ninja Forms." msgstr "" #: includes/Config/i18nDashboard.php:74 msgid "Not Now" msgstr "" #: includes/Config/i18nDashboard.php:75 msgid "Yes, I agree!" msgstr "" #: includes/Config/i18nDashboard.php:76 msgid "Keep being awesome!" msgstr "" #: includes/Config/i18nDashboard.php:77 msgid "Thank you for opting in!" msgstr "" #: includes/Config/i18nDashboard.php:78 #, php-format msgid "" "%sOnce we begin this process, it might take several minutes to complete." "%sNavigating away from this page before it is finished could lead to " "unexpected results.%sPlease confirm when you are ready to begin.%s" msgstr "" #: includes/Config/i18nDashboard.php:80 msgid "Clean up my data" msgstr "" #: includes/Config/i18nDashboard.php:81 msgid "Processing..." msgstr "" #: includes/Config/i18nDashboard.php:82 msgid "No Results Found." msgstr "" #: includes/Config/i18nDashboard.php:89 #, php-format msgid "" "Disconnecting from my.ninjaforms.com will disrupt the functionality of all " "services. To manage your service subscriptions please visit %smy.ninjaforms." "com%s" msgstr "" #: includes/Config/i18nDashboard.php:90 msgid "Disconnect" msgstr "" #: includes/Config/i18nDashboard.php:91 msgid "Stay Connected" msgstr "" #: includes/Config/i18nDashboard.php:92 #, php-format msgid "" "%sSince you’re using one of our Ninja Forms services, like Ninja Mail or our " "Add-on Manager, your site is connected to my.ninjaforms.com. This allows us " "to send data between your site and my.ninjaforms.com. For details about what " "is being shared, you can see our %sPrivacy Policy%s.%s" msgstr "" #: includes/Config/i18nDashboard.php:95 #, php-format msgid "%sRedirecting to NinjaForms.com%s" msgstr "" #: includes/Config/i18nDashboard.php:96 msgid "Unable to update the service." msgstr "" #: includes/Config/i18nFrontEnd.php:16 msgid "Insert Link" msgstr "" #: includes/Config/i18nFrontEnd.php:17 msgid "Insert Media" msgstr "" #: includes/Config/i18nFrontEnd.php:23 msgid "File Upload in Progress." msgstr "" #: includes/Config/i18nFrontEnd.php:24 msgid "FILE UPLOAD" msgstr "" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "" #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "" #: includes/Database/MockData.php:315 msgid "Send" msgstr "" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "" #: includes/Database/MockData.php:366 includes/Database/MockData.php:653 #: includes/Fields/FirstName.php:25 msgid "First Name" msgstr "" #: includes/Database/MockData.php:371 includes/Database/MockData.php:658 #: includes/Fields/LastName.php:25 msgid "Last Name" msgstr "" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "" #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "" #: includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "" #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "" #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "" #: includes/Database/MockData.php:776 msgid "answer" msgstr "" #: includes/Database/MockData.php:805 msgid "processing" msgstr "" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "" #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:495 msgid " Fields" msgstr "" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "" #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "" #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr "" #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "" #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" #: includes/Display/Preview.php:49 msgid "You must be logged in to preview a form." msgstr "" #: includes/Display/Preview.php:56 includes/Display/Preview.php:62 msgid "You must provide a valid form ID." msgstr "" #: includes/Display/Render.php:120 msgid "This form is currently undergoing maintenance. Please try again later." msgstr "" #: includes/Display/Render.php:153 includes/Display/Render.php:437 msgid "No Fields Found." msgstr "" #: includes/Display/Shortcodes.php:37 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "" #: includes/Display/Shortcodes.php:44 msgid "Ninja Forms shortcode used without specifying a form." msgstr "" #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "" #: includes/Fields/Checkbox.php:34 msgid "Single Checkbox" msgstr "" #: includes/Fields/Checkbox.php:155 includes/Fields/Checkbox.php:179 msgid "checked" msgstr "" #: includes/Fields/Checkbox.php:156 includes/Fields/Checkbox.php:181 msgid "unchecked" msgstr "" #: includes/Fields/Confirm.php:41 msgid "Fields do not match." msgstr "" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "" #: includes/Fields/Date.php:41 includes/Fields/Date.php:44 msgid "m/d/Y" msgstr "" #: includes/Fields/Date.php:42 msgid "m-d-Y" msgstr "" #: includes/Fields/Date.php:43 msgid "m.d.Y" msgstr "" #: includes/Fields/Date.php:45 msgid "d-m-Y" msgstr "" #: includes/Fields/Date.php:46 msgid "d.m.Y" msgstr "" #: includes/Fields/Date.php:47 msgid "Y-m-d" msgstr "" #: includes/Fields/Date.php:48 msgid "Y/m/d" msgstr "" #: includes/Fields/Date.php:49 msgid "Y.m.d" msgstr "" #: includes/Fields/Date.php:50 msgid "l, F d Y" msgstr "" #: includes/Fields/ListCountry.php:108 includes/Fields/ListCountry.php:127 msgid "Select Country" msgstr "" #: includes/Fields/ListImage.php:32 msgid "Select Image" msgstr "" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "" #: includes/Fields/ListState.php:26 msgid "US States" msgstr "" #: includes/Fields/ListState.php:37 msgid "Select State" msgstr "" #: includes/Fields/Note.php:45 msgid "Note text can be edited in the note field's advanced settings below." msgstr "" #: includes/Fields/Note.php:47 msgid "Note" msgstr "" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "" #: includes/Fields/Recaptcha.php:26 msgid "Recaptcha" msgstr "" #: includes/Fields/Recaptcha.php:31 msgid "Visibility" msgstr "" #: includes/Fields/Recaptcha.php:34 msgid "Visible" msgstr "" #: includes/Fields/Recaptcha.php:38 msgid "Invisible" msgstr "" #: includes/Fields/Recaptcha.php:45 msgid "" "Select whether to display a \"I'm not a robot\" field or to detect if the " "user is a robot in the background." msgstr "" #: includes/Fields/Recaptcha.php:61 msgid "Please complete the recaptcha" msgstr "" #: includes/Fields/Repeater.php:28 msgid "Repeatable Fieldset" msgstr "" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "" #: includes/Fields/Terms.php:95 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "" #: includes/Fields/Terms.php:110 msgid "No taxonomy selected." msgstr "" #: includes/Fields/Terms.php:119 msgid "Available Terms" msgstr "" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "" #: includes/Fields/Textbox.php:34 msgid "Single Line Text" msgstr "" #: includes/Fields/Unknown.php:66 includes/Fields/Unknown.php:75 #: includes/Fields/Unknown.php:84 #, php-format msgid "Field type \"%s\" not found." msgstr "" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "" #: includes/Integrations/EDD/class-extension-updater.php:111 msgid "License Activation Error" msgstr "" #: includes/Integrations/EDD/class-extension-updater.php:203 #: includes/Integrations/EDD/class-extension-updater.php:234 #, php-format msgid "The new version requires at least PHP %s, and your PHP version is %s." msgstr "" #: includes/Integrations/EDD/class-extension-updater.php:203 msgid "Please contact your host to upgrade your site's PHP version." msgstr "" #: includes/Integrations/EDD/class-extension-updater.php:232 #, php-format msgid "" "An update is available for %s, however, you are not able to update at this " "time." msgstr "" #: includes/Integrations/EDD/class-extension-updater.php:236 #, php-format msgid "" "Please contact your host to upgrade your site's PHP version. %sRead more " "about updating your PHP version and WordPress%s." msgstr "" #: includes/Integrations/sendwp.php:9 includes/Integrations/sendwp.php:67 msgid "Something went wrong. SendWP was not installed correctly." msgstr "" #: includes/Libraries/BackgroundProcessing/classes/wp-background-process.php:425 #, php-format msgid "Every %d Minutes" msgstr "" #: includes/Libraries/Whip/NF_Php_Version_Whip.php:41 #, php-format msgid "%sDismiss this for 4 weeks.%s" msgstr "" #: includes/Libraries/Whip/NF_Php_Version_Whip.php:45 #, php-format msgid "" "We have detected that your website is currently running an older version of " "PHP than is %srecommended by WordPress%s. This may cause security " "vulnerabilities, performance issues, and compatibility problems with many " "modern plugins including Ninja Forms." msgstr "" #: includes/Libraries/Whip/NF_Php_Version_Whip.php:47 msgid "" "Please contact your hosting provider to upgrade your PHP version and prevent " "these issues. You should also make sure that your plugins and theme are " "tested with and support PHP version 7.2 or higher." msgstr "" #: includes/MergeTags/Other.php:13 msgid "Other" msgstr "" #: includes/MergeTags/System.php:13 msgid "System" msgstr "" #: includes/MergeTags/WP.php:13 msgid "WordPress" msgstr "" #: includes/Templates/admin-menu-addons.html.php:7 msgid " requires an update. You have version " msgstr "" #: includes/Templates/admin-menu-addons.html.php:7 msgid " installed. The current version is " msgstr "" #: includes/Templates/admin-menu-addons.html.php:53 msgid "Docs" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:10 msgid "Ninja Forms Dashboard" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:98 msgid "Setup" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:130 msgid "Required Updates" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:133 msgid "" "Ninja Forms needs to run some updates on your installation before you can " "continue. You'll be able to create and edit forms after the updates listed " "below have completed." msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:136 msgid "" "Normally, users will still be able to view and submit forms while these " "updates take place. If an update needs to modify database information, we'll " "put the affected form in maintenance mode until we get done with that update." msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:139 msgid "" "It's always a good idea to have an up to date backup of your WordPress site " "on hand. That's especially true when you run plugin and theme updates. " "Luckily, there are plenty of good backup plugins available." msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:142 msgid "" "When you're ready, just click the \"Do Required Updates\" button below to " "get started. You'll be able to create and edit forms in no time." msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:154 msgid "Do Required Updates" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:174 msgid "Search Forms" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:180 msgid "Title" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:182 msgid "Date Created" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:186 msgid "Loading Forms..." msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:191 msgid "More" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:192 msgid "Less" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:214 #: includes/Templates/admin-menu-new-form.html.php:172 msgid "Public Link" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:231 msgid "No Forms" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:234 msgid "Loading Forms" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:240 msgid "Available Templates" msgstr "" #: includes/Templates/admin-menu-dashboard.html.php:245 msgid "Additional Templates" msgstr "" #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:25 msgid "" "Drag & drop rows and columns, custom backgrounds, borders, & more without " "writing a single line of code." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:33 msgid "" "Show & hide fields and pages, selectively send email, & much more! Build " "professional forms easily." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:41 msgid "" "Create multiple page forms with drag-and-drop. You don't need to code to " "build complex forms!" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:49 msgid "" "Let users upload files to your site! Restrict file type and size. Upload to " "server, media library, or cloud service." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:57 msgid "" "Accept credit card payments or donations from any form. Single payments, " "subscriptions, and more!" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:118 #: includes/Templates/admin-menu-new-form.html.php:120 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:125 #: includes/Templates/admin-menu-new-form.html.php:127 msgid "Add new action" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:149 msgid "Expand Menu" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:153 #: includes/Templates/admin-menu-new-form.html.php:280 #: includes/Templates/admin-menu-new-form.html.php:486 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:153 msgid "PUBLISH" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:157 msgid "Loading" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:169 msgid "View Changes" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:197 msgid "Add form fields" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:198 msgid "Get started by adding your first form field." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:198 msgid "It's that easy." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:204 msgid "" "Drag and drop new fields from the right to create a repeatable set of fields." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:211 msgid "Add form actions" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:212 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:246 msgid "Duplicate (^ + C + click)" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:247 msgid "Delete (^ + D + click)" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:257 msgid "Actions" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:292 msgid "Toggle Drawer" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:293 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:293 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Undo" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:358 msgid "Display Your Form" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:449 #: includes/Templates/admin-menu-new-form.html.php:455 #: includes/Templates/admin-menu-new-form.html.php:464 #: includes/Templates/admin-menu-new-form.html.php:470 msgid "Done" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:462 msgid "Undo All" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:462 msgid " Undo All" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:476 msgid "Almost there..." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:484 msgid "Not Yet" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:532 msgid "Please use the following format" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:535 msgid "Label, Value, Calc Value" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:550 msgid "Please place one label on each line, separated by commas." msgstr "" #: includes/Templates/admin-menu-new-form.html.php:588 #: includes/Templates/admin-menu-new-form.html.php:596 msgid "Copy" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:597 msgid "Reset" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:598 msgid "Confirm Reset" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:900 msgid "Image" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:935 msgid "Decimals" msgstr "" #: includes/Templates/admin-menu-new-form.html.php:975 msgid " Open in new window" msgstr "" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "Ninja Forms Email troubleshooting" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "What to try before contacting support" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:9 msgid "Our Scope of Support" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:17 msgid "Copy your System Report first with the button below" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:18 msgid "Click \"Submit a Support Request\" to be directed to our site." msgstr "" #: includes/Templates/admin-menu-system-status.html.php:19 msgid "" "Include this information in your support request by pasting in the \"System " "Status\" portion of the form. (right click, choose \"Paste\" or use Ctrl+V)" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:21 msgid "This information is vital for addressing your issue in a timely manner." msgstr "" #: includes/Templates/admin-menu-system-status.html.php:22 msgid "Copy System Report" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:23 msgid "Submit a Support Request" msgstr "" #: includes/Templates/admin-menu-system-status.html.php:25 msgid "" "For your security, do not post this information in public places, such as " "the WordPress.org support forums." msgstr "" #: includes/Templates/admin-menu-system-status.html.php:56 msgid "Activated Plugins" msgstr "" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "" #: includes/Templates/admin-metabox-import-export-forms-export.html.php:46 msgid "Disable UTF-8 Encoding" msgstr "" #: includes/Templates/admin-metabox-import-export-forms-import.html.php:6 #, php-format msgid "Form Imported Successfully. %sView Form%s" msgstr "" #: includes/Templates/admin-metabox-import-export-forms-import.html.php:22 #, php-format msgid "Please select a Ninja Forms export. %sMust be in .nff format%s." msgstr "" #: includes/Templates/admin-metabox-sub-info.html.php:19 msgid "Updated on: " msgstr "" #: includes/Templates/admin-metabox-sub-info.html.php:23 msgid "Submitted on: " msgstr "" #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Submitted by: " msgstr "" #: includes/Templates/admin-metabox-sub-info.html.php:34 msgid "Move to Trash" msgstr "" #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "" #: lib/NF_VersionSwitcher.php:26 lib/NF_VersionSwitcher.php:42 msgid "You do not have permission." msgstr "" #: lib/NF_VersionSwitcher.php:27 lib/NF_VersionSwitcher.php:43 msgid "Permission Denied" msgstr "" #: lib/NF_VersionSwitcher.php:83 msgid "Ninja Forms Dev" msgstr "" #: lib/NF_VersionSwitcher.php:93 msgid "DEBUG: Switch to 2.9.x" msgstr "" #: lib/NF_VersionSwitcher.php:97 msgid "DEBUG: Switch to 3.0.x" msgstr "" #: lib/NF_VersionSwitcher.php:272 msgid "How do I look?" msgstr "" #: lib/NF_VersionSwitcher.php:273 msgid "" "Your forms were upgraded. Take a look around and make sure everything looks " "right." msgstr "" #: lib/NF_VersionSwitcher.php:275 msgid "Something is wrong..." msgstr "" #: lib/NF_VersionSwitcher.php:276 msgid "upgrade_compelte_notice" msgstr "" #: lib/NF_VersionSwitcher.php:276 msgid "Looks Good!" msgstr "" #: ninja-forms.php:591 msgid "Ninja Forms allows you to collect personal information" msgstr "" #: ninja-forms.php:592 msgid "" "If you are using Ninja Forms to collect personal information, you should " "consult a legal professional for your use case." msgstr "" #: ninja-forms.php:938 msgid "Notice: JavaScript is required for this content." msgstr "" #: ninja-forms.php:1082 #, php-format msgid "" "%1$s is deprecated since Ninja Forms version %2$s! Use %3$s " "instead." msgstr "" #: ninja-forms.php:1086 #, php-format msgid "%1$s is deprecated since Ninja Forms version %2$s." msgstr "" #: ninja-forms.php:1275 msgid "Once per month" msgstr "" #: ninja-forms.php:1279 msgid "Once per week" msgstr "" #: services/bootstrap.php:16 msgid "Add-on Manager (Beta)" msgstr "" #: services/bootstrap.php:42 msgid "SendWP - Transactional Email" msgstr "" #: services/bootstrap.php:73 services/bootstrap.php:83 msgid "Sorry, you are not allowed to install plugins on this site." msgstr "" #: services/bootstrap.php:76 msgid "Invalid nonce." msgstr "" #. Plugin URI of the plugin/theme msgid "http://ninjaforms.com/?utm_source=Ninja+Forms+Plugin&utm_medium=readme" msgstr "" #. Description of the plugin/theme msgid "" "Ninja Forms is a webform builder with unparalleled ease of use and features." msgstr "" #. Author of the plugin/theme msgid "Saturday Drive" msgstr "" #. Author URI of the plugin/theme msgid "" "http://ninjaforms.com/?utm_source=Ninja+Forms+Plugin&utm_medium=Plugins+WP" "+Dashboard" msgstr "" lang/ninja-forms-th.po000064400000770003152331132460010670 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "โปรดทราบ: ต้องมี JavaScript สำหรับเนื้อหานี้" #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "คุณกำลังจะโกงอยู่หรือ?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "ต้องกรอกฟิลด์ที่มีเครื่องหมาย %s*%s" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "โปรดแน่ใจว่าได้กรอกข้อมูลลงในทุกช่องที่จำเป็นแล้ว" #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "นี่เป็นช่องที่จำเป็นต้องกรอกข้อมูล" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "โปรดตอบคำถามป้องกันการสแปมให้ถูกต้อง" #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "โปรดเว้นว่างช่องสแปม" #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "โปรดรอเพื่อส่งแบบฟอร์ม" #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "คุณไม่สามารถส่งแบบฟอร์มโดยที่ไม่เปิดใช้งาน Javascript ได้" #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "โปรดป้อนที่อยู่อีเมลที่ถูกต้อง" #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "กำลังดำเนินการ" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "รหัสผ่านที่ป้อนไว้ไม่ตรงกัน" #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "เพิ่มแบบฟอร์ม" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "เลือกแบบฟอร์มหรือประเภทเพื่อค้นหา" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "ยกเลิก" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "ใส่" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "หมายเลขแบบฟอร์มไม่ถูกต้อง" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "เพิ่มการแปลง" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "คุณรู้หรือไม่ว่าคุณสามารถเพิ่มการแปลงแบบฟอร์มได้ด้วยการแบ่งแบบฟอร์มออกเป็นส่วนๆ " "ที่เล็กกว่าและง่ายต่อการกรอกข้อมูล

    ส่วนขยาย Multi-Part Forms สำหรับ Ninja " "Forms จะทำให้วิธีนี้เป็นไปอย่างรวดเร็วและง่ายดาย

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับ Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "อาจทำทีหลัง" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "ยกเลิก" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "ผู้ใช้น่าจะกรอกแบบฟอร์มชนิดยาวจนเสร็จสมบูรณ์เมื่อพวกเขาสามารถบันทึกแล้วกลับมาทำการส่งในภายหลังจนเสร็จ

    ส่วนขยาย " "Save Progress สำหรับ Ninja Forms จะทำให้วิธีนี้เป็นไปอย่างรวดเร็วและง่ายดาย

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับ Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "อีเมล" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "ชื่อผู้ส่ง" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "ชื่อหรือฟิลด์" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "อีเมลจะปรากฎว่ามาจากชื่อนี้" #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "ที่อยู่ผู้ส่ง" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "ที่อยู่อีเมลเดียวหรือฟิลด์เดียว" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "อีเมลจะปรากฎว่ามาจากที่อยู่อีเมลนี้" #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "ถึง" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "ที่อยู่อีเมลหรือการค้นหาสำหรับฟิลด์" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "ควรส่งอีเมลนี้ถึงใคร" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "หัวข้อเรื่อง" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "ข้อความหัวเรื่องหรือการค้นหาสำหรับฟิลด์" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "ส่วนนี้จะเป็นหัวเรื่องของอีเมล" #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "ข้อความอีเมล" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "สิ่งที่แนบมา" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "การส่ง CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "การตั้งค่าขั้นสูง" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "รูปแบบ" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "ข้อความธรรมดา" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "ตอบกลับถึง" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "ส่งสำเนาถึง" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "ส่งสำเนาลับถึง" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "เปลี่ยนเส้นทาง" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "URL" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "ข้อความที่สำเร็จ" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "ก่อนแบบฟอร์ม" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "หลังแบบฟอร์ม" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "ที่ตั้ง" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "ข้อความ" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "ทำซ้ำ" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Deactivate (ปิดใช้งาน)" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "เปิดใช้งาน" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "แก้ไข" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "ลบ" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "ทำซ้ำ" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "ชื่อ" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "ชนิด" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "อัพเดทวันที่แล้ว" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- ดูประเภททั้งหมด" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "รับประเภทเพิ่มเติม" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "อีเมล & การดำเนินการ" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "เพิ่มใหม่" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "การดำเนินการใหม่" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "แก้ไขการดำเนินการ" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "กลับไปยังรายการ" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "ชื่อการดำเนินการ" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "รับการดำเนินการเพิ่มเติม" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "อัพเดทการดำเนินการแล้ว" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "เลือกฟิลด์หรือประเภทเพื่อค้นหา" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "แทรกฟิลด์" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "แทรกฟิลด์ทั้งหมด" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "โปรดเลือกแบบฟอร์มเพื่อดูการส่ง" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "ไม่พบการส่ง" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "การส่ง" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "การส่ง" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "เพิ่มการส่งใหม่" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "แก้ไขการส่ง" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "การส่งใหม่" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "ดูการส่ง" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "ค้นหาการส่ง" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "ไม่พบการส่งในถังขยะ" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "วันที่" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "แก้ไขไอเทมนี้" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "ส่งออกรายการนี้" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "ส่งออก" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "ย้ายไปถังขยะ" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "ถังขยะ" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "เรียกคืนรายการจากถังขยะ" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "เรียกคืน" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "ลบรายการถาวร" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "ลบถาวร" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "ไม่เผยแพร่" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s ที่ผ่านมา" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "ส่งแล้ว" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "เลือกแบบฟอร์ม" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "วันที่เริ่มต้น" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "วันที่สิ้นสุด" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s อัพเดทแล้ว" #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "อัปเดตช่องปรับแต่งแล้ว" #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "ลบช่องปรับแต่งแล้ว" #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "ได้กู้คืน %1$s กลับเพื่อการแก้ไขจาก %2$s" #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "เผยแพร่ %s แล้ว" #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s บันทึกเรียบร้อย" #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "ส่ง %1$s แล้ว ตัวอย่าง %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "ได้จัดตารางเวลา %1$s สำหรับ: %2$s. ตัวอย่าง %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "อัพเดทร่าง %1$s แล้่ว ตัวอย่าง %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "ดาวน์โหลดการส่งทั้งหมด" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "กลับไปยังรายการ" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "ค่าที่ผู้ใช้ส่ง" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "สถานะการส่ง" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "ฟิลด์" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "ค่า" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "สถานะ" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "ฟอร์ม" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "ส่งเมื่อ" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "แก้ไขเมื่อ" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "ส่งโดย" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "อัปเดท" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "วันที่ส่ง" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "ไม่สามารถเปิดใช้งาน Ninja ทางเครือข่ายได้ โปรดไปที่แดชบอร์ดของแต่ละเว็บไซต์เพื่อเปิดใช้งานปลั๊กอิน" #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "คุณจะพบว่ามีมาพร้อมกับอีเมลการซื้อของคุณ" #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "คีย์" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "ไม่สามารถเปิดใช้ใบอนุญาตใช้งาน โปรดตรวจยืนยันคีย์ใบอนุญาตใช้งาน" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "ปิดใช้ใบอนุญาตใช้งาน" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "ค่าที่ผู้ใช้ส่ง:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "ขอบคุณที่กรอกข้อมูลในแบบฟอร์มนี้" #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "มี %1$s เวอร์ชันใหม่ ดูรายละเอียดเวอร์ชัน %3$s " #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "มี %1$s เวอร์ชันใหม่ ดูรายละเอียดเวอร์ชัน %3$s หรือ อัพเดทตอนนี้" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "คุณไม่มีสิทธิ์ติดตั้งการอัพเดทปลั๊กอิน" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "มีข้อผิดพลาดเกิดขึ้น" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "ฟิลด์มาตรฐาน" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "ส่วนประกอบรูปแบบ" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "การสร้างโพสต์" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "โปรดจัดอันดับ %sNinja Forms%s %s บน %sWordPress.org%s " "เพื่อช่วยเราทำให้ปลั๊กอินนี้ฟรี ด้วยความขอบคุณจากทีม WP Ninjas!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "วิดเจ็ท Ninja Forms" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "แสดงชื่อ" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "ไม่มี" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Forms" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "แบบฟอร์มทั้งหมด" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "การอัพเกรด Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "อัพเกรด" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "การนำเข้า/การส่งออก" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "การนำเข้า / การส่งออก" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "การตั้งค่าแบบฟอร์ม Ninja" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "การตั้งค่า" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "สถานะระบบ" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "ส่วนเสริม" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "ดูตัวอย่าง" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "บันทึก" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "อักขระที่เหลือ" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "อย่าแสดงคำเหล่านี้" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "ตัวเลือกการบันทึก" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "ดูตัวอย่างแบบฟอร์ม" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "อัพเกรดเป็น Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "คุณมีคุณสมบัติที่จะอัพเกรด Ninja Forms THREE " "เป็นรุ่นขั้นสุดท้ายก่อนใช้งานจริง %sอัพเกรดตอนนี้%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "เวอร์ชัน THREE กำลังจะเปิดตัวแล้ว!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Ninja Forms กำลังจะมีการอัพเดทครั้งใหญ่ " "%sเรียนรู้เพิ่มเติมเกี่ยวกับคุณสมบัติใหม่ๆ ความสามารถใช้งานร่วมกันแบบย้อนกลับ และคำถามที่พบบ่อยอีกมากมาย%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "เป็นอย่างไรบ้าง" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "ขอบคุณที่ใช้ Ninja Forms! เราหวังว่าคุณมีทุกสิ่งที่คุณต้องการ แต่หากคุณยังมีคำถามใดๆ:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "ดูเอกสารของเรา" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "ขอรับความช่วยเหลือ" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "แก้ไขรายการเมนู" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "เลือกทั้งหมด" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "เพิ่มเติมแบบฟอร์ม Ninja" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "คุณต้องการตั้งชื่อรายการยอดนิยมนี้เป็นชื่ออะไร" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "คุณต้องตั้งชื่อให้กับรายการยอดนิยมนี้" #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "ปิดการใช้ใบอนุญาตใช้งานทั้งหมดจริงหรือไม่" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "รีเซ็ตกระบวนการแปลงแบบฟอร์มสำหรับ v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "นำข้อมูล Ninja Forms ทั้งหมดออกเมื่อยกเลิกการติดตั้งหรือไม่" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "แก้ไขแบบฟอร์ม" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "บันทึกแล้ว" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "กำลังบันทึก..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "นำฟิลด์นี้ออกหรือไม่ แบบฟอร์มจะถูกนำออกแม้ว่าคุณจะไม่ได้บันทึก" #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "ดูการส่ง" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "การดำเนินการ Ninja Forms" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - การดำเนินการ" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "กำลังโหลด..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "ไม่ได้ระบุการดำเนินการ..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "การดำเนินการได้เริ่มต้นแล้ว โปรดรอสักครู่ อาจใช้เวลาหลายนาที คุณจะถูกเปลี่ยนทิศทางโดยอัตโนมัติเมื่อการดำเนินการนี้เสร็จสิ้นแล้ว" #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "ยินดีต้อนรับสู่ Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "ขอบคุณที่อัพเดท! Ninja Forms %s ทำให้การสร้างแบบฟอร์มง่ายดายขึ้นกว่าที่เคยมีมาก่อน!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "ยินดีต้อนรับสู่ Ninja Forms " #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "บันทึกการเปลี่ยนแปลง Ninja Forms" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "เริ่มต้นใช้งานกับ Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "ผู้ที่สร้าง Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "มีอะไรใหม่ๆ บ้าง" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "การเริ่มต้น" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "เครดิต" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "เวอร์ชัน %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "ประสบการณ์การสร้างแบบฟอร์มที่ง่ายดายและทรงพลัง" #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "แถบโปรแกรมสร้างใหม่" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "เมื่อสร้างและแก้ไขแบบฟอร์ม ให้ไปที่ส่วนที่สำคัญี่สุดได้โดยตรง" #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "การตั้งค่าฟิลด์ที่เป็นระเบียบมากขึ้น" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "การตั้งค่าที่ใช้มากที่สุดจะถูกแสดงทันที ในขณะที่การตั้งค่าอื่นๆ ที่ไม่สำคัญมากนักจะถูกซ่อนเอาไวภายในส่วนที่สามารถขยายได้" #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "ความชัดเจนที่ปรับปรุงให้ดีขึ้น" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "พร้อมกับแถบ “สร้างแบบฟอร์มของคุณ” เราได้นำ “การแจ้ง” ออกเพื่อใช้ " "“อีเมลและการดำเนินการ” แทน วิธีนี้จะเป็นการระบุสิ่งที่สามารถทำได้ในแถบนี้ได้ชัดเจนขึ้น" #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "นำข้อมูล Ninja Forms ทั้งหมดออก" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "เราได้เพิ่มตัวเลือกเพื่อนำข้อมูล Ninja Forms ออกทั้งหมด (การส่ง แบบฟอร์ม " "ฟิลด์ ตัวเลือก) เมื่อคุณลบปลั๊กอิน เราเรียกตัวเลือกนี้ว่าตัวเลือกนิวเคลียร์" #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "การบริหารใบอนุญาตใช้งานที่ดีขึ้น" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "ปิดการใช้ใบอนุญาตใช้งานส่วนขยาย Ninja Forms เป็นรายๆ ไป หรือเป็นกลุ่มจากแถบการตั้งค่า" #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "มีคุณสมบัติอีกมากที่จะมีตามมา" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "การอัพเดทอินเตอร์เฟซในเวอร์ชันนี้จะวางรากฐานสำหรับการปรับปรุงที่ยอดเยี่ยมในอนาคต " "เวอร์ัชัน 3.0 จะสร้างขึ้นบนการเปลี่ยนแปลงเหล่านี้เพื่อทำให้ Ninja Forms " "เป็นโปรแกรมสร้างแบบฟอร์มที่เสถียร ทรงพลัง และเป็นมิตรกับผู้ใช้มากขึ้นไปอีก" #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "เอกสารกำกับ" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "มาดูที่เอกสาร Ninja Forms เชิงลึกของเราด้านล่าง" #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "เอกสาร Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "รับการสนับสนุน" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "กลับไปยัง Ninja Forms " #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "ดูบันทึกการเปลี่ยนแปลงฉบับเต็ม" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "บันทึกการเปลี่ยนแปลงฉบับเต็ม" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "ไปที่ Ninja Forms " #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "ใช้เคล็ดลับด้านล่างเพื่อเริ่มต้นใช้ Ninja Forms คุณจะสามารถใช้งานได้อย่างรวดเร็ว!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "เกี่ยวกับแบบฟอร์ม" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "เมนูแบบฟอร์มคือจุดเข้าาถึงการทำงานทั้งหมดของ Ninja Forms เราได้สร้าง " "%sแบบฟอร์มติดต่อ%s ของคุณไว้ให้แล้วเพื่อให้คุณมีตัวอย่าง " "คุณยังสามารถสร้างแบบฟอร์มติดต่อของคุณเองได้ด้วยการคลิก %sเพิ่มใหม่%s" #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "สร้างแบบฟอร์มของคุณ" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "ที่นี่คือที่ที่คุณจะสร้างแบบฟอร์มด้วยการเพิ่มฟิลด์และลากลงในลำดับที่คุณต้องการให้ฟิลด์ปรากฎ " "แต่ละฟิลด์จะมีตัวเลือกต่างๆ เช่น ฉลาก ตำแหน่งฉลาก และตัวรองรับ" #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "อีเมล & การดำเนินการ" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "หากคุณต้องการให้แบบฟอร์มแจ้งให้คุณทราบทางอีเมลเมื่อผู้ใช้คลิกส่ง " "คุณสามารถกำหนดค่าเหล่านั้นได้ที่แถบนี้ " "คุณสามารถสร้างอีเมลในจำนวนที่ไม่จำกัดได้ รวมถึงอีเมลที่ถูกส่งไปยังผู้ใช้ที่ได้กรอกแบบฟอร์ม" #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "แถบนี้จะมีการตั้งค่าแบบฟอร์มทั่วไป เช่น ชื่อและวิธีการส่ง " "รวมทั้งการตั้งค่าการแสดง เช่น ซ่อนแบบฟอร์มเมื่อกรอกสมบูรณ์แล้ว" #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "การแสดงแบบฟอร์มของคุณ" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "เพิ่มเข้ากับหนาเพจ" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "ภายใต้พฤติกรรมแบบฟอร์มพื้นฐานในการตั้งค่าแบบฟอร์ม " "คุณสามารถเลือกหน้าเพจที่คุณต้องการให้เพิ่มแบบฟอร์มที่ส่วนล่างสุดของเนื้อหาหน้าเพจโดยอัตโนมัติได้อย่างง่ายดาย " "จะมีตัวเลือกที่คล้ายคลึงกันในทุกๆ หน้าจอแก้ไขเนื้อหาในแถบด้านข้าง" #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "รหัสแบบสั้น" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "วาง %s ในพื้นที่ใดๆ " "ที่ยอมรับชอร์ตโค้ดเพื่อแสดงแบบฟอร์มของคุณได้ทุกที่ที่คุณพอใจ แม้แต่ตรงกลางของหน้าเพจหรือเนื้อหาของโพสต์" #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms จะเสนอวิดเจ็ทที่คุณสามารถวางไว้ในพื้นที่สำหรับวิดเจ็ทใดๆ " "ของเว็บไซต์ของคุณ แล้วเลือกว่าแบบฟอร์มใดที่คุณต้องการแสดงในพื้นที่ว่างนั้น" #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "ฟังก์ชันแม่แบบ" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms " "ยังมีมาพร้อมกับฟังก์ชันแม่แบบที่เรียบง่ายที่สามารถวางลงในไฟล์แม่แบบ php " "ได้โดยตรง %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "ต้องการความช่วยเหลือหรือไม่" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "เอกสารที่กำลังเติบโตขึ้น" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "มีเอกสารที่ครอบคลุมทุกสิ่งทุกอย่างตั้งแต่ %sการแก้ไขปัญหา%s ไปจนถึง %sAPI " "นักพัฒนา%sของเรา มีการเพิ่มเอกสารใหม่ๆ อยู่เสมอ" #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "การสนับสนุนที่ดีที่สุดในธุรกิจ" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "เราทำทุกอย่างที่ทำได้เพื่อให้การสนับสนุนที่ดีที่สุดแก่ผู้ใช้ Ninja Forms " "ทุกคน หากคุณประสบปัญหาหรือมีข้อสงสัย %sโปรดติดต่อเรา%s" #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "ขอบคุณที่อัพเดทเป็นเวอร์ชันล่าสุด! Ninja Forms %s ภูมิใจที่จะทำให้ประสบการณ์การบริหารการส่งของคุณเป็นไปอย่างราบรื่น!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms " "ได้รับการสร้างขึ้นโดยทีมนักพัฒนาทั่วโลกที่มุ่งมั่นที่จะให้ปลั๊กอินการสร้างแบบฟอร์ม " "#1 แก่ชุมชน WordPress" #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "ไม่พบบันทึกการเปลี่ยนแปลงที่ถูกต้อง" #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "ดู %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "ปิดการใช้การทำให้เสร็จสิ้นแบบอัตโนมัติ (Autocomplete) ของเบราว์เซอร์" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "ค่าการคำนวณที่%sทำเครื่องหมาย%sแล้ว" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "นี่คือค่าที่จะนำไปใช้หาก %sทำเครื่องหมาย%s" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "ค่าการคำนวณที่%sไม่ได้ทำเครื่องหมาย%s" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "นี่คือค่าที่จะนำไปใช้หาก %sไม่ได้ทำเครื่องหมาย%s" #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "รวมไว้ในผลรวมอัตโนมัติหรือไม่ (หากเปิดใช้)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "คลาส CSS แบบกำหนดเอง" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "ก่อนทุกสิ่งทุกอย่าง" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "ก่อนฉลาก" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "หลังฉลาก" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "หลังทุกสิ่งทุกอย่าง" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "หากเปิดใช้ “ข้อความรายละเอียด” จะมีเครื่องหมายคำถาม %s อยู่ถัดจากฟิลด์อินพุต เลื่อนเมาส์เหนือเครื่องหมายคำถามนี้จะแสดงข้อความรายละเอียด" #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "เพิ่มรายละเอียด" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "ตำแหน่งรายละเอียด" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "เนื้อหารายละเอียด" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "หากเปิดใช้ “ข้อความการช่วยเหลือ” จะมีเครื่องหมายคำถาม %s " "อยู่ถัดจากฟิลด์อินพุต เลื่อนเมาส์เหนือเครื่องหมายคำถามนี้จะแสดงข้อความการช่วยเหลือ" #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "แสดงข้อความการช่วยเหลือ" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "ข้อความการช่วยเหลือ" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "หากคุณปล่อยให้กล่องนี้ว่าง จะใช้ ไม่มีข้อจำกัด" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "จำกัดอินพุตให้อยู่ภายในตัวเลขนี้" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "จาก" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "ตัวอักษร" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "คำ" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "ข้อความจะปรากฎขึ้นหลังตัวนับตัวอักษร/คำ" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "ทางซ้ายของส่วนประกอบ" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "เหนือส่วนประกอบ" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "ใต้ส่วนประกอบ" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "ทางขวาของส่วนประกอบ" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "ภายในส่วนประกอบ" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "ตำแหน่งฉลาก" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "ID ฟิลด์" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "การตั้งค่าข้อจำกัด" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "การตั้งค่าการคำนวณ" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "ลบ" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "เติมเต็มส่วนนี้ด้วยอนุกรมวิธาน" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- ไม่มี" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Placeholder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "จำเป็น" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "บันทึกการตั้งค่าฟิลด์" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "เรียงลำดับเป็นตัวเลข" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "หากกล่องนี้ถูกทำเครื่องหมายไว้ คอลัมน์นี้ในตารางการส่งจะเรียงลำดับตามตัวเลข" #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "สลากผู้ดูแลระบบ" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "นี่คือฉลากที่ใช้เมื่อดู/แก้ไข/ส่งออกการส่ง" #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "ใบเสร็จ" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "การจัดส่ง" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "กำหนดเอง" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "กลุ่มฟิลด์ข้อมูลผู้ใช้" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "กลุ่มฟิลด์แบบกำหนดเอง" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "โปรดให้ข้อมูลนี้เมื่อขอการสนับสนุน:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "ดูรายงานของ System" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "สภาพแวดล้อม" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL หน้าหลักเว็บ" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL เว็บ" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "เวอร์ชันของ Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "เปิดการใช้งาน WP Multisite" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "ใช่" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "ไม่ใช่" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "ข้อมูลเว็บเซิร์ฟเวอร์" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP รุ่น" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Locale" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Debug Mode" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "ภาษาของ WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "ค่าเริ่มต้น" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "ขนาดการอัพโหลดสูงสุดของ WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "ขนาดโพสท์ PHP ใหญ่สุด" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "ระดับการซ้อนอินพุตสูงสุด" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "เวลาจำกัดของ PHP" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Installed" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "โซนเวลาปริยาย" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "ค่าเริ่มต้นเวลาท้องถิ่นคือ %s - ซึ่งควรจะเป็น UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "โซนเวลาปริยายคือ %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "เซิร์ฟเวอร์ของคุณได้เปิดใช้ fsockopen และ cURL" #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "เซิร์ฟเวอร์ของคุณได้เปิดใช้ fsockopen และปิดใช้ cURL" #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "เซิร์ฟเวอร์ของคุณได้เปิดใช้ cURL และปิดใช้ fsockopen" #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "เซิร์ฟเวอร์ของคุณไม่ได้เปิดใช้ fsockopen หรือ cURL - PayPal IPN " "และสคริปต์อื่น ๆ จะไม่สามารถติดต่อกับเซิร์ฟเวอร์อื่นได้ กรุณาติดต่อผู้ให้บริการโฮสท์" #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "ไคลเอนต์ SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "เซิร์ฟเวอร์ของคุณได้เปิดใช้ไคลเอนต์ SOAP" #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "เซิร์ฟเวอร์ของคุณไม่ได้เปิดใช้คลาส %sไคลเอนต์ SOAP%s " "ปลั๊กอินเกทเวย์บางอย่างที่ใช้ SOAP อาจไม่ทำงานตามที่คาดไว้" #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "โพสต์ระยะไกลของ WP" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() เรียบร้อยแล้ว - PayPal IPN ทำงาน" #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() ล้มเหลว PayPal IPN จะไม่ทำงานกับเซิร์ฟเวอร์ของคุณ " "โปรดติดต่อผู้ให้บริการโฮสติ้งของคุณ ข้อผิดพลาด:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() ล้มเหลว PayPal IPN อาจไม่ทำงานกับเซิร์ฟเวอร์ของคุณ" #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "ปลั๊กอิน" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "ปลั๊กอินที่ถูกติดตั้งอยู่" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "ไปหน้าเว็บหลักของปลั๊กอิน" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "โดย" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "เวอร์ชั่น" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "มอบชื่อให้แก่แบบฟอร์มของคุณ นี่คือวิธีที่คุณจะหาแบบฟอร์มเจอในภายหลัง" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "คุณไม่ได้เพิ่มปุ่มส่งในแบบฟอร์มของคุณ" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "ซ่อนอินพุต" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "ตัวอักษรใดๆ ที่คุณใส่ในกล่อง “การซ่อนแบบตั้งเอง” ที่ไม่อยู่ในรายการด้านล่างจะถูกใส่โดยอัตโนมัติให้แก่ผู้ใช้เมื่อพวกเขากำลังพิมพ์และจะไม่สามารถนำออกได้" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "ตัวอักษรเหล่านี้เป็นตัวอักษรการซ่อนที่ไว้ล่วงหน้า" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - เป็นตัวแทนตัวอักขระตัวอักษร (A-Z,a-z) - ยอมให้ใส่เฉพาะตัวอักษรเท่านั้น" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "9 - เป็นตัวแทนอักขระตัวเลข (0-9) - ยอมให้ใส่เฉพาะตัวเลขเท่านั้น" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - เป็นตัวแทนอักขระตัวอักษรและตัวเลข (A-Z,a-z,0-9) - วิธีนี้จะยอมให้ใส่ได้ทั้งตัวอักษรและตัวเลข" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "ดังนั้น หากคุณต้องการสร้างการซ่อนสำหรับหมายเลขประกันสังคมของอเมริกา " "คุณจะพิมพ์ 999-99-9999 ลงในกล่อง" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "ตัวเลข 9 จะเป็นตัวแทนตัวเลขใดๆ และ - จะถูกเพิ่มเข้าไปโดยอัตโนมัติ" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "วิธีนี้จะป้องกันผู้ใช้จากการใส่สิ่งอื่นใดที่ไม่ใช่ตัวเลข" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "คุณยังสามารถรวมวิธีเหล่านี้สำหรับการใช้งานเฉพาะด้านได้เช่นกัน" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "ตัวอย่างเช่น หากคุณมีคีย์สินค้าที่อยู่ในแบบ A4B51.989.B.43C " "คุณสามารถซ่อนด้วย: a9a99.999.a.99a ซึ่งจะบังคับให้ a ทั้งหมดเป็นตัวอักษรและ 9 เป็นตัวเลข" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "ฟิลด์ที่กำหนดไว้ล่วงหน้า" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "ฟิลด์ยอดนิยม" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "ฟิลด์การชำระเงิน" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "ฟิลด์แม่แบบ" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "ข้อมูลผู้ใช้" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "ทั้งหมด" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "การดำเนินการเป็นกลุ่ม" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "ใช้" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "แบบฟอร์มต่อหนึ่งหน้าเพจ" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "ไป" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "ไปหน้าแรก" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "ไปหน้าก่อนหน้า" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "หน้าปัจจุบัน" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "ไปหน้าต่อไป" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "ไปหน้าสุดท้าย" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "ชื่อแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "ลบออกจากแบบฟอร์มนี้" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "ทำสำเนาแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "ลบแบบฟอร์มแล้ว" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "ลบแบบฟอร์มแล้ว" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "ตัวอย่างแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "การแสดงผล" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "แสดงชื่อแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "เพิ่มแบบฟอร์มในหน้าเพจนี้" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "ส่งทาง AJAX (โดยไม่ต้องโหลดหน้าเพจใหม่) หรือไม่" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "ล้างแบบฟอร์มที่กรอกสมบูรณ์เรียบร้อยแล้วหรือไม่" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "หากกล่องนี้ถูกทำเครื่องหมาย Ninja Forms จะล้างค่าของแบบฟอร์มหลังจากที่ได้ส่งแบบฟอร์มเรียบร้อยแล้ว" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "ซ่อนแบบฟอร์มที่กรอกสมบูรณ์เรียบร้อยแล้วหรือไม่" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "หากกล่องนี้ถูกทำเครื่องหมาย Ninja Forms จะซ่อนแบบฟอร์มหลังจากที่ได้ส่งแบบฟอร์มเรียบร้อยแล้ว" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "ข้อจำกัด" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "กำหนดให้ลูกค้าต้องล็อคอินเพื่อดูแบบฟอร์มหรือไม่" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "ข้อความแจ้งไม่ได้ล็อคอิน" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "ข้อความที่แสดงให้ผู้ใช้เห็นหากกล่องทำเครื่องหมาย “ล็อคอิน” ถูกทำเครื่องหมายไว้และผู้ใช้ไม่ได้ล็อคอิน" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "จำกัดการส่ง" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "เลือกจำนวนของการส่งที่แบบฟอร์มนี้จะยอมรับ เว้นว่างไว้สำหรับจำนวนไม่จำกัด" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "ข้อความแจ้งถึงจำนวนจำกัด" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "โปรดใส่ข้อความที่คุณต้องการให้แสดงเมื่อแบบฟอร์มนี้มาถึงจำนวนจำกัดของการส่ง และจะไม่ยอมรับการส่งใหม่" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "บันทึกการตั้งค่าแบบฟอร์มแล้ว" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "การตั้งค่าพื้นฐาน" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "ความช่วยเหลือพื้นฐานของ Ninja Forms อยู่ที่นี่" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "ขยายความสามารถ Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "เราจะเสนอเอกสารให้ในไม่ช้านี้" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "เปิดการทำงาน" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "ติดตั้งแล้ว" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "ศึกษาเพิ่มเติม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "สำรองข้อมูล / คืนค่า" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "สำรองข้อมูล Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "คืนค่า Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "คืนค่าข้อมูลเรียบร้อยแล้ว!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "นำเข้าฟิลด์ยอดนิยม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "เลือกไฟล์" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "นำเข้ายอดนิยม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "ไม่พบฟิลด์ยอดนิยมใดๆ" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "ส่งออกฟิลด์ยอดนิยม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "ส่งออกฟิลด์" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "โปรดเลือกฟิลด์ยอดนิยมเพื่อส่งออก" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "นำเข้ายอดนิยมเรียบร้อยแล้ว" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "โปรดเลือกไฟล์ฟิลด์ยอดนิยมที่ถูกต้อง" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "นำเข้าแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "นำเข้าแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "ส่งออกแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "ส่งออกแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "โปรดเลือกแบบฟอร์ม" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "นำเข้าแบบฟอร์มเรียบร้อยแล้ว" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "โปรดเลือกไฟล์แบบฟอร์มที่ถูกต้อง" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "นำเข้า / ส่งออกการส่ง" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "การตั้งค่าวันที่" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "ทั่วไป" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "การตั้งค่าทั่วไป" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "เวอร์ชั่น" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "รูปแบบวันที่" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "พยายามติดตามการกำหนด %s ฟังก์ชัน PHP date()%s แต่ไม่รองรับทุกรูปแบบ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "สัญลักษณ์สกุลเงิน" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "การตั้งค่า reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "คีย์เว็บไซต์ reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "ขอรับคีย์เว็บไซต์สำหรับโดเมนของคุณด้วยการลงทะเบียน %sที่นี่%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "คีย์ลับ reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "ภาษาของ reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "ภาษาที่ใช้โดย reCAPTCHA. ในการขอรับรหัสสำหรับภาษาของคุณ ให้คลิก %sที่นี่%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "หากทำเครื่องหมายกล่องนี้ ข้อมูล Ninja Forms " "ทั้งหมดจะถูกลบออกจากฐานข้อมูลในช่วงการลบ %sจะไม่สามารถกู้คืนข้อมูลการส่งและแบบฟอร์มทั้งหมดได้%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "ปิดใช้ประกาศของผู้ดูแลระบบ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "ไม่เห็นประกาศของผู้ดูแลระบบบนแดชบอร์ดจาก Ninja Forms อีกต่อไป นำเครื่องหมายออกเพื่อดูประกาศอีกครั้ง" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "การตั้งค่านี้จะนำทุกสิ่งทุกอย่างที่เกี่ยวข้องกับ Ninja Forms " "ออกโดยสมบูรณ์ในช่วงการลบปลั๊กอิน รวมถึงการส่งและแบบฟอร์ม วิธีนี้ไม่สามารถย้อนกลับสู่สภาพเดิมได้" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "ต่อไป" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "บันทึกการตั้งค่าแล้ว" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "ฉลาก" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "ฉลากข้อความ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "ฉลากฟิลด์ที่ต้องกรอก" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "สัญลักษณ์ฟิลด์ที่ต้องกรอก" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "ข้อความข้อผิดพลาดที่ให้หากไม่ได้ทำฟิลด์ที่ต้องกรอกให้สมบูรณ์" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "ข้อผิดพลาดฟิลด์ที่ต้องกรอก" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "ข้อความข้อผิดพลาดการต่อต้านสแปม" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "ข้อความข้อผิดพลาด Honeypot" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "ข้อความข้อผิดพลาดตัวตั้งเวลา" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "ข้อความข้อผิดพลาด JavaScript ที่ถูกปิดใช้งาน" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "กรุณากรอกอีเมลให้ถูกต้อง" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "ฉลากกำลังประมวลผลการส่ง" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "ข้อความนี้จะแสดงในปุ่มส่งเมื่อใดก็ตามที่ผู้ใช้คลิก “ส่ง” เพื่อแจ้งให้พวกเขารู้ว่ากำลังประมวลผลการส่งอยู่" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "ฉลากรหัสผ่านไม่ตรงกัน" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "ข้อความนี้จะแสดงให้ผู้ใช้เห็นเมื่อใส่ค่าที่ตรงกันในฟิลด์รหัสผ่าน" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "ใบอนุญาต" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "บันทึกและเปิดใช้งาน" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "ปิดการใช้ใบอนุญาตใช้งานทั้งหมด" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "ในการปิดการใช้ใบอนุญาตใช้งานสำหรับส่วนขยาย Ninja Forms อันดับแรก คุณต้อง " "%sติดตั้งและเปิดใช้งาน%s ส่วนขยายที่เลือกไว้ จากนั้น การตั้งค่าใบอนุญาตใช้งานจะปรากฎขึ้นที่ด้านล่าง" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "รีเซ็ตการแปลงแบบฟอร์ม" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "รีเซ็ตการแปลงแบบฟอร์ม" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "หากแบบฟอร์มของคุณ “หายไป” หลังจากที่อัพเดทเป็น 2.9 " "ปุ่มนี้จะพยายามแปลงแบบฟอร์มเก่าของคุณกลับคืนมาเพื่อแสดงใน 2.9 " "แบบฟอร์มปัจจุบันทั้งหมดจะยังคงอยู่ในตาราง “แบบฟอร์มทั้งหมด”" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "แบบฟอร์มปัจจุบันทั้งหมดจะยังคงอยู่ในตาราง “แบบฟอร์มทั้งหมด” ในบางกรณี แบบฟอร์มบางรายการอาจถูกทำสำเนาในระหว่างการดำเนินการ" #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "อีเมลผู้ดูแลระบบ" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "อีเมลผู้ใช้" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms ต้องอัพเกรดการแจ้งแบบฟอร์มของคุณ ให้คลิก %sที่นี่%s เพื่อเริ่มการอัพเกรด" #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms ต้องอัพเกรดการตั้งค่าอีเมลของคุณ ให้คลิก %sที่นี่%s เพื่อเริ่มการอัพเกรด" #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms ต้องอัพเกรดตารางการส่ง ให้คลิก %sที่นี่%s เพื่อเริ่มการอัพเกรด" #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "ขอบคุณที่อัพเกรด Ninja Forms เป็นเวอร์ชัน 2.7 โปรดอัพเดทส่วนขยาย Ninja Forms " "ใดๆ จาก " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "เวอร์ชันส่วนขยายการอัพโหลดไฟล์ของ Ninja Forms ของคุณไม่สามารถใช้ร่วมกับ Ninja " "Forms เวอร์ชัน 2.7 ได้ ส่วนขยายต้องเป็นเวอร์ชัน 1.3.5 เป็นอย่างน้อย โปรดอัพเดทส่วนขยายที่ " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "เวอร์ชันส่วนขยายบันทึกความก้าวหน้าของ Ninja Forms ของคุณไม่สามารถใช้ร่วมกับ " "Ninja Forms เวอร์ชัน 2.7 ได้ ส่วนขยายต้องเป็นเวอร์ชัน 1.1.3 เป็นอย่างน้อย โปรดอัพเดทส่วนขยายที่ " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "กำลังอัพเดทฐานข้อมูลแบบฟอร์ม" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms ต้องอัพเกรดการตั้งค่าแบบฟอร์มของคุณ ให้คลิก %sที่นี่%s เพื่อเริ่มการอัพเกรด" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "การดำเนินการการอัพเดท Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "โปรด %sติดต่อฝ่ายสนับสนุน%s ด้วยข้อผิดพลาดที่เห็นด้านบน" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms ได้ทำการอัพเกรดที่มีอยู่ทั้งหมดเรียบร้อยแล้ว!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "ไปยังแบบฟอร์ม" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "การอัพเกรด Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "อัพเกรด" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "อัพเกรดเสร็จสมบูรณ์" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms ต้องดำเนินการการอัพเกรด %s รายการ " "อาจใช้เวลาสองสามนาทีจึงจะเสร็จสมบูรณ์ %sเริ่มการอัพเกรด%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "ขั้นตอน %d ของการรันงาน %d โดยประมาณ" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "สถานะระบบ Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "ตัวชี้ความแข็งแกร่ง" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "อ่อนแอมาก" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "คาดเดาได้ง่าย" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "กลาง" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "แข็งแรง" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "ไม่ตรงกัน" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- เลือกหนึ่งรายการ" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "หากคุณเป็นบุคคลและเห็นฟิลด์นี้ โปรดปล่อยให้ว่างไว้" #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "ต้องกรอกข้อมูลในฟิลด์ทำเครื่องหมาย *" #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "ต้องระบุฟิลด์นี้" #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "โปรดตรวจดูฟิลด์ที่ต้องกรอก" #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "การคำนวณ" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "จำนวนของตำแหน่งทศนิยม" #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "กล่องข้อความ" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "แสดงผลการคำนวณเป็น" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "เครื่องหมายการค้า" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "ปิดใช้อินพุตหรือไม่" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "ใช้ชอร์ตโค้ดต่อไปนี้เพื่อแทรกในการคำนวณขั้นสุดท้าย: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "คุณสามารถใส่สมการการคำนวณได้ที่นี่โดยใช้ field_x เมื่อ x คือ ID " "ของฟิลด์ที่คุณต้องการจะใช้ ตัวอย่างเช่น %sfield_53 + field_28 + field_65%s" #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "สามารถสร้างสมการที่มีความซับซ้อนได้ด้วยการเพิ่มวงเล็บ: %s( field_45 * field_2 " ") / 2%s" #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "โปรดใช้ตัวดำเนินการเหล่านี้: + - * / คุณสมบัตินี้เป็นคุณสมบัติขั้นสูง " "ระวังการหารด้วย 0" #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "คิดค่าการคำนวณรวมทั้งหมดโดยอัตโนมัติ" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "ระบุการดำเนินการและฟิลด์ (ขั้นสูง)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "ใช้สมการ (ขั้นสูง)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "วิธีการคำนวณ" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "การดำเนินการฟิลด์" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "เพิ่มการดำเนินการ" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "สมการขั้นสูง" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "ชื่อการคำนวณ" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "นี่คือชื่อเชิงโปรแกรมของฟิลด์ของคุณ ตัวอย่างคือ: my_calc, price_total, user-total" #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "ค่าปริยาย" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "คลาส CSS แบบกำหนดเอง" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- เลือกฟิลด์" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "กล่องกาเครื่องหมาย" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "ไม่ได้ทำเครื่องหมาย" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "ทำเครื่องหมาย" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "แสดงสิ่งนี้" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "ซ่อนสิ่งนี้" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "เปลี่ยนค่า" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeria" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "American Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarctica" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua and Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Belarus" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgium" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "บอสเนียและเฮอร์เซโกวีนา" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Island" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brazil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "บรูไนดารุสซาลาม" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambodia" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Cameroon" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cape Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Cayman Islands" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Central African Republic" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Island" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Islands" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "คองโก" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "คองโก, สาธารณรัฐประชาธิปไตย" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cook Islands" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "โกตดิวัวร์" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "โครเอเชีย (ชื่อท้องถิ่น: เครอร์วัตสกา)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Czech Republic" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Denmark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominican Republic" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "ติมอร์-เลสเต (ติมอร์ตะวันออก)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypt" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Ethiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "หมู่เกาะฟอล์กแลนด์ (มัลบีนัส)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Faroe Islands" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "France" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "ฝรั่งเศส, มหานคร" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "French Guiana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "French Polynesia" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "French Southern Territories" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "จอร์เจีย" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Germany" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Greece" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Greenland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "เกาะเฮิร์ดและหมู่เกาะแมกดอนัลด์" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "สันตะสำนัก (นครรัฐวาติกัน)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungary" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Iceland" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "อิหร่าน (สาธารณรัฐอิสลาม)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraq" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "ไอร์แลนด์" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italy" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakhstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "เกาหลี, สาธารณรัฐประชาธิปไตยประชาชน" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "เกาหลี, สาธารณรัฐ" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "สาธารณรัฐประชาธิปไตยประชาชนลาว" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Lebanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "สาธารณรัฐสังคมนิยมประชาชนอาหรับลิเบีย" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lithuania" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxembourg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "มาเก๊า" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "มาซิโดเนีย, อดีตสาธารณรัฐยูโกสลาฟ" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldives" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshall Islands" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "ไมโครนีเซีย, สหพันธรัฐ" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "มอลโดวา, สาธารณรัฐ" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Morocco" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Netherlands" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "เนเธอร์แลนด์แอนทิลลีส" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "New Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "New Zealand" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Island" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norway" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "ปาเลา" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Philippines" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Poland" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "สหพันธรัฐรัสเซีย" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts and Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent and the Grenadines" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "เซาตูเมและปรินซีปี" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "สโลวาเกีย (สาธารณรัฐสโลวัก)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Solomon Islands" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "South Africa" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "เกาะเซาท์จอร์เจียและหมู่เกาะเซาท์แซนด์วิช" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spain" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "เซนต์เฮเลนา" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "แซงปีแยร์และมิเกอลง" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "สฟาลบาร์ และหมู่เกาะยานไมเอน" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Sweden" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Switzerland" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "สาธารณรัฐอาหรับซีเรีย" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "แทนซาเนีย, สหสาธารณรัฐ" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "ไทย" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad and Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turkey" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks and Caicos Islands" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraine" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "สหราชอาณาจักร" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "สหรัฐอเมริกา" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "เกาะเล็กรอบนอกของสหรัฐอเมริกา" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "เวียดนาม" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "หมู่เกาะบริติชเวอร์จิน" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "หมู่เกาะเวอร์จิ้น (สหรัฐอเมริกา)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "วาลลิสและฟุตูนา" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Western Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "ยูโกสลาเวีย" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "ประเทศ" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "ประเทศปริยาย" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "ใช้ตัวเลือกแรกแบบกำหนดเอง" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "ตัวเลือกแรกแบบกำหนดเอง" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "South Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "บัตรเครดิต" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "ฉลากหมายเลขบัตร" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "หมายเลขบัตร" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "รายละเอียดหมายเลขบัตร" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "(โดยปกติ) ตัวเลข 16 หลักที่ด้านหน้าบัตรเครดิตของคุณ" #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "ฉลาก CVC บัตร" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "รายละเอียด CVC บัตร" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "ค่าตัวเลข 3 หลัก (ด้านหลัง) หรือตัวเลข 4 หลัก (ด้านหน้า) บนบัตรของคุณ" #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "ฉลากชื่อบัตร" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "ชื่อบนบัตร" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "รายละเอียดชื่อบัตร" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "ชื่อที่พิพม์ไว้ด้านหน้าบัตรเครดิตของคุณ" #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "ฉลากเดือนที่บัตรหมดอายุ" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "เดือนที่หมดอายุ (ดด)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "รายละเอียดเดือนที่บัตรหมดอายุ" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "เดือนที่บัตรเครดิตของคุณหมดอายุ โดยปกติแล้วจะอยู่ที่ด้านหน้าของบัตร" #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "ฉลากปีที่บัตรหมดอายุ" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "ปีที่หมดอายุ (ปปปป)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "รายละเอียดปีที่บัตรหมดอายุ" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "ปีที่บัตรเครดิตของคุณหมดอายุ โดยปกติแล้วจะอยู่ที่ด้านหน้าของบัตร" #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "ข้อความ" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "ส่วนประกอบข้อความ" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "ฟิลด์ที่ซ่อน" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID ผู้ใช้ (หากล็อกอินอยู่)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "ชื่อตัวของผู้ใช้ (หากล็อกอินอยู่)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "นามสกุลของผู้ใช้ (หากล็อกอินอยู่)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "ชื่อสำหรับแสดงของผู้ใช้ (หากล็อกอินอยู่)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "อีเมลของผู้ใช้ (หากล็อกอินอยู่)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "โพสต์ / ID หน้าเพจ (หากมี)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "โพสต์ / ชื่อหน้าเพจ (หากมี)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "โพสต์ / URL หน้าเพจ (หากมี)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "วันที่วันนี้" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "ตัวแปร Querystring" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "WordPress สงวนคำค้นหานี้ไว้ โปรดลองคำอื่น" #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "นี่คือที่อยู่อีเมลหรือไม่" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "หากกล่องนี้ถูกทำเครื่องหมายไว้ Ninja Forms จะตรวจสอบยืนยันอินพุตนี้เป็นที่อยู่อีเมล" #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "ส่งสำเนาแบบฟอร์มไปยังที่อยู่นี้หรือไม่" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "หากกล่องนี้ถูกทำเครื่องหมายไว้ Ninja Forms จะส่งสำเนาของแบบฟอร์มนี้ " "(และข้อความใดๆ ที่แนบมาด้วย) ไปยังที่อยู่นี้" #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "รายการ" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "นี่คือสถานะของผู้ใช้" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "ค่าที่เลือกไว้" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "เพิ่มค่า" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "นำค่าออก" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "คำนวณ" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "วิทยุ" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "กล่องกาเครื่องหมาย" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "เลือกหลายรายการ" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "ประเภทรายการ" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "ขนาดกล่องแบบเลือกหลายรายการ" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "นำเข้ารายการ" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "แสดงค่ารายการ" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "นำเข้า" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "ในการใช้คุณสมบัตินี้ คุณสามารถวาง CSV ของคุณลงในบริเวณข้อความด้านบนได้" #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "รูปแบบควรดูเหมือนตัวอย่างต่อไปนี้:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Label,Value,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "หากคุณต้องการส่งค่าว่างเปล่าหรือคำนวณ คุณควรใช้ ‘’" #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "ที่ถูกเลือก" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "ตัวเลข" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "ค่าต่ำสุด" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "ค่าสูงสุด" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "ขั้น (จำนวนที่จะเพิ่มขึ้นทีละครั้ง)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "ผู้จัด" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "รหัสผ่าน" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "ใช้ตัวเลือกนี้เป็นฟิลด์รหัสผ่านการลงทะเบียน" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "หากกล่องนี้ถูกทำเครื่องหมายไว้ ทั้งกล่องข้อความรหัสผ่านและใส่รหัสผ่านอีกครั้งจะถูกแสดง" #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "ฉลากใส่รหัสผ่านอีกครั้ง" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "รหัสผ่านใหม่อีกครั้ง" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "แสดงตัวชี้ความแข็งแกร่งรหัสผ่าน" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "คำบอกใบ้: รหัสผ่านควรมีความยาวอย่างน้อยเจ็ดตัวอักษร " "เพื่อทำให้รหัสผ่านแข็งแกร่งมากขึ้น ให้ใช้ทั้งตัวพิมพ์เล็กและตัวพิมพ์ใหญ่ " "ตัวเลข และอักขระพิเศษ เช่น ! “ ? $ % ^ & )" #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "รหัสผ่านไม่ตรงกัน" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "จัดอันดับด้วยดาว" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "จำนวนดาว" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "ยืนยันว่าคุณไม่ใช่บ็อท" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "โปรดกรอกฟิลด์แคปต์ชาให้สมบูรณ์" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "ทำให้แน่ใจว่าคุณได้ใส่คีย์เว็บไซต์และคีย์ความลับอย่างถูกต้อง" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "แคปต์ชาไม่ตรงกัน โปรดใส่ค่าที่ถูกต้องในฟิลด์แคปต์ชา" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "ป้องกันสแปม" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "คำถามป้องกันสแปม" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "คำตอบปองกันสแปม" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "ส่ง" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "ภาษี" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "จำนวนอัตราภาษี" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "ควรใส่เป็นเปอร์เซ็นต์ เช่น 8.25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "พื้นที่ข้อความ" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "แสดงโปรแกรม Rich Text Editor" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "แสดงปุ่มอัพโหลดสื่อ" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "ปิดใช้งานโปรแกรม Rich Text Editor บนอุปกรณ์เคลื่อนที่" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "ตรวจสอบยืนยันเป็นที่อยู่อีเมลหรือไม่ (ต้องกรอกฟิลด์)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "ปิดใช้อินพุต" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "ตัวเลือกวันที่" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "โทรศัพท์ - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "สกุลเงิน" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "การกำหนดการซ่อนแบบตั้งเอง" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "วิธีใช้" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "ส่งแบบจำกัดเวลา" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "ข้อความปุ่มส่งหลังจากที่เวลาหมดลง" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "โปรดรอ %n วินาที" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "จะใข้ %n เพื่อเป็นเครื่องแสดงจำนวนวินาที" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "จำนวนวินาทีสำหรับการนับถอยหลัง" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "นี่คือเวลานานเท่าใดที่ผู้ใช้ต้องรอเพื่อส่งแบบฟอร์ม" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "หากคุณเป็นบุคคล โปรดทำให้ช้าลง" #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "คุณต้องใช้ JavaScript เพื่อส่งแบบฟอร์มนี้ โปรดเปิดใช้งาน JavaScript แล้วลองอีกครั้ง" #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "การแม็พฟิลด์รายการ" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "กลุ่มความสนใจ" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "เดี่ยว" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "หลาย" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "รายการ" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "เรียกใหม่" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "การส่ง Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "เมตาของผู้ใช้ (หากล็อกอินอยู่)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "รวบรวมการชำระเงิน" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "ไม่พบแบบฟอร์ม" #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "วันที่สร้าง" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "ชื่อเรื่อง" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "อัพเดทแล้ว" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "ความพยายามของคุณล้มเหลว" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "รายการหลัก:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "รายการทั้งหมด" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "เพิ่มสินค้าใหม่" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "รายการใหม่" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "แก้ไขสินค้า" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "อัพเดทรายการ" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "ดูรายการ" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "ค้นหารายการ" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "ไม่พบในถังขยะ" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "การส่งแบบฟอร์ม" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "ข้อมูลการส่ง" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "เพิ่มแบบฟอร์มใหม่" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "ข้อผิดพลาดการนำเข้าแบบฟอร์มเทมเพลต" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "ช่อง" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "ไฟล์ที่อัปโหลดมีแบบฟอร์มไม่ถูกต้อง" #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "แบบฟอร์มที่อัปโหลดไม่ถูกต้อง" #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "นำเข้าแบบฟอร์ม" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "ส่งออกแบบฟอร์ม" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "สมการ (ขั้นสูง)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "การดำเนินการและฟิลด์ (ขั้นสูง)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "ฟิลด์ผลรวมอัตโนมัติ" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "ไฟล์ที่อัพโหลดมีขนาดเกินกว่าคำสั่ง upload_max_filesize ใน php.ini" #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "ไฟล์ที่อัพโหลดมีขนาดเกินกว่าคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในแบบฟอร์ม HTML" #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "ไฟล์อัปโหลดถูกอัปโหลดเพียงบางส่วนเท่านั้น" #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "ไม่มีไฟล์ถูกอัปโหลด" #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "ไม่มีโฟลเดอร์ชั่วคราว" #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "การบันทึกไฟล์ล้มเหลว" #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "ไฟล์อัปโหลดหยุดลงโดยส่วนเพิ่ม" #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "ข้อผิดพลาดการอัพโหลดที่ไม่รู้จัก" #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "ข้อผิดพลาดในการอัพโหลดไฟล์" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "ใบอนุญาตใช้งานแอดออน" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "การย้ายและการสำรองข้อมูลเสร็จสิ้นแล้ว " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "ดูแบบฟอร์ม" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "บันทึกการตั้งค่า" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "ที่อยู่ IP เซิร์ฟเวอร์" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "ชื่อโฮสต์" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "เพิ่มเติม Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "ไม่พบรายการสินค้า" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "ไม่พบฟิลด์" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "มีความผิดพลาดที่ไม่คาดคิดเกิดขึ้น" #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "ไม่มีตัวอย่าง" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "ผู้ให้บริการด้านการชำระเงิน" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "การชำระเงินรวมทั้งหมด" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Hook Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "ที่อยู่อีเมลหรือการค้นหาสำหรับฟิลด์" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "ข้อความหัวเรื่องหรือการค้นหาสำหรับฟิลด์" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "แนบ CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "ฉลากที่นี่" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "ข้อความช่วยเหลือที่นี่" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "ใส่ฉลากของฟิลด์แบบฟอร์ม นี่คือวิธีที่ผู้ใช้จะระบุแต่ละฟิลด์" #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "แบบฟอร์มปริยาย" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "ซ่อน" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "เลือกตำแหน่งของฉลากที่สัมพันธ์กับส่วนประกอบฟิลด์" #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "ช่องข้อมูลที่ต้องการ" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "ทำให้แน่ใจว่าฟิลด์สมบูรณ์ก่อนที่จะส่งแบบฟอร์ม" #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "ตัวเลือกสำหรับตัวเลข" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "ต่ำสุด" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "สูงสุด" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "ขั้นตอน" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "การตั้งค่า" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "หนึ่ง" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "หนึ่ง" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "สอง" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "สอง" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "สาม" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "สาม" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "ค่าการคำนวณ" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "จำกัดชนิดของอินพุตที่ผู้ใช้สามารถใส่ลงในฟิลด์นี้" #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "ไม่มี" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "โทรศัพท์ในสหรัฐฯ" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "กำหนดเอง" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "การซ่อนแบบตั้งเอง" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - เป็นตัวแทนตัวอักขระตัวอักษร " "(A-Z,a-z) - ยอมให้ใส่เฉพาะตัวอักษรเท่านั้น
    • \n " "
    • 9 - เป็นตัวแทนอักขระตัวเลข (0-9) - " "ยอมให้ใส่เฉพาะตัวเลขเท่านั้น
    • \n
    • * - " "เป็นตัวแทนอักขระตัวอักษรและตัวเลข (A-Z,a-z,0-9) - " "วิธีนี้จะยอมให้ใส่ได้ทั้งตัวอักษรและตัวเลข
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "จำกัดอินพุตให้อยู่ภายในตัวเลขนี้" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "อักขระที่เหลือ" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "คำที่เหลือ" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "ข้อความที่ปรากฎหลังตัวนับ" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "อักขระที่เหลือ" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "ใส่ข้อความที่คุณต้องการจะแสดงในฟิลด์ก่อนที่ผู้ใช้จะใส่ข้อมูลใดๆ" #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "ชื่อคลาสแบบกำหนดเอง" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "ตัวรองรับ" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "เพิ่มคลาสเพิ่มเติมให้แก่ตัวหุ้มฟิลด์" #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "ส่วนประกอบ" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "เพิ่มคลาสเพิ่มเติมให้แก่ส่วนประกอบฟิลด์" #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "ปี-เดือน-วัน (YYYY-MM-DD)" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "วันศุกร์ 18 พฤศจิกายน 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "ให้ค่าปริยายเป็นวันที่ปัจจุบัน" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "จำนวนวินาทีสำหรับการส่งแบบจำกัดเวลา" #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "คีย์ฟิลด์" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "สร้างคีย์เฉพาะเพื่อระบุและตั้งเป้าฟิลด์ของคุณสำหรับการพัฒนาแบบกำหนดเอง" #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "ฉลากที่ใช้เมื่อดูและส่งออกการส่ง" #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "แสดงให้ผู้ใช้เห็นเป็นแบบลอยอยู่" #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "คำอธิบาย" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "เรียงลำดับเป็นตัวเลข" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "คอลัมน์นี้ในตารางการส่งจะเรียงลำดับเป็นตัวเลข" #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "จำนวนวินาทีสำหรับการนับถอยหลัง" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "ใช้ตัวเลือกนี้เป็นฟิลด์รหัสผ่านการลงทะเบียน " "หากกล่องนี้ถูกทำเครื่องหมายไว้\n ทั้งกล่องข้อความรหัสผ่านและใส่รหัสผ่านอีกครั้งจะถูกแสดง" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "ยืนยัน" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "ยอมห้มีอินพุตแบบ rich text" #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "ฉลากการประมวลผล" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "ค่าการคำนวณที่ทำเครื่องหมายแล้ว" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "ตัวเลขนี้จะถูกนำไปใช้ในการคำนวณหากทำเครื่องหมายที่กล่อง" #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "ค่าการคำนวณที่ไม่ได้ทำเครื่องหมาย" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "ตัวเลขนี้จะถูกนำไปใช้ในการคำนวณหากไม่ทำเครื่องหมายที่กล่อง" #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "แสดงตัวแปรการคำนวณนี้" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- เลือกตัวแปร" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "ราคา" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "ใช้ปริมาณ" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "ยอมให้ผู้ใช้เลือกสินค้านี้ในจำนวนที่มากกว่าหนึ่ง" #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "ประเภทสินค้า" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "สินค้าเดียว (ปริยาย)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "สินค้าหลายชิ้น - แบบหล่นลง" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "สินค้าหลายรายการ - เลือกหลายรายการ" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "สินค้าหลายรายการ - เลือกหนึ่งรายการ" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "รายการผู้ใช้" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "ราคา" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "ตัวเลือกต้นทุน" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "ต้นทุนเดียว" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "เมนูหล่นลงของต้นทุน" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "ประเภทต้นทุน" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "สินค้า" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- เลือกสินค้า" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "คำตอบ" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "คำตอบที่ไวต่ออักษรใหญ่เล็กเพื่อช่วยป้องกันการส่งสแปมของแบบฟอร์มของคุณ" #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "อนุกรมวิธาน" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "เพิ่มคำใหม่" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "นี่คือสถานะของผู้ใช้" #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "ใช้เพื่อซ่อนฟิลด์สำหรับการดำเนินการ" #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "ฟิลด์ที่บันทึกไว้" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "ฟิลด์ทั่วไป" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "ฟิลด์ข้อมูลผู้ใช้" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "ฟิลด์การกำหนดราคา" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "ฟิลด์รูปแบบ" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "ฟิลด์จิปาถะ" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "ส่งแบบฟอร์มของคุณเรียบร้อยแล้ว" #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "การส่งแบบฟอร์ม Ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "บันทึกการส่ง" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "ชื่อตัวแปร" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "สมการ" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "ตำแหน่งฉลากปริยาย" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "ตัวหุ้ม" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "คีย์แบบฟอร์ม" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "ชื่อเชิงโปรแกรมที่สามารถใช้เพื่ออ้าอิงถึงแบบฟอร์มนี้" #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "เพิ่มปุ่มส่ง" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "เราทราบว่าแบบฟอร์มของคุณไม่มีปุ่มส่ง เราสามารพเพิ่มปุ่มให้คุณได้โดยอัตโนมัติ" #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "ล๊อกอิน" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "ใช้กับตัวอย่างแบบฟอร์ม" #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "ข้อจำกัดการส่ง" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "ไม่ใช้กับตัวอย่างแบบฟอร์ม" #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "การตั้งค่าแสดงผล" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "การคำนวณ" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "แบบฟอร์ม Ninja" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "ราคา" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "จำนวน:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "เพิ่ม" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "เปิดในหน้าต่างใหม่" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "หากคุณเป็นบุคคลที่มองเห็นฟิลด์นี้ โปรดทิ้งว่างไว้" #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "ยังคงไม่มีเจ้าของ" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "โปรดป้อนที่อยู่อีเมลที่ถูกต้อง!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "ฟิลด์เหล่านี้ต้องตรงกัน!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "ข้อผิดพลาดตัวเลขต่ำสุด" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "ข้อผิดพลาดตัวเลขสูงสุด" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "โปรดเพิ่มขึ้นทุกๆ " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "แทรกลิงก์" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "แทรกสื่อ" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "โปรดแก้ไขข้อผิดพลาดก่อนที่จะส่งแบบฟอร์มนี้" #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "ข้อผิดพลาดฮันนีพอต" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "กำลังดำเนินการอัปโหลดไฟล์" #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "อัปโหลดไฟล์" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "ฟิลด์ทั้งหมด" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "ลำดับย่อย" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "ID โฟสต์" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "หัวข้อเรื่อง" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL ของเรื่อง" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP Address" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID ผู้ใช้" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "ชื่อจริง" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "นามสกุล" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "ชื่อที่แสดง" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "สไตล์มั่นใจ" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "สว่าง" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "มืด" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "ใช้รูปแบบสไตล์การเขียนปริยายของ Ninja Forms" #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "ย้อนกลับ" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "ย้อนกลับไปเป็น v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "ย้อนกลับไปยังรีลีสล่าสุดของ 2.9.x" #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "การตั้งค่า reCaptcha" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "ธีมของ reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "โปแกรมแก้ไข Rich Text (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "ชั้นสูง" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "การควบคุมเวบ" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "แบบฟอร์มเปล่า" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "ติดต่อฉัน" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "ข้อความการดำเนินการสำรองข้อมูลสำเร็จเรียบร้อย" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "ขอบคุณ {field:name} สำหรับการกรอกแบบฟอร์มของฉัน!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "การดำเนินการสำรองข้อมูลอีเมล" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "นี่เป็นอีเมลสำหรับการดำเนินการ" #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "สวัสดี แบบฟอร์ม Ninja!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "ดำเนินการบันทึกการสำรองข้อมูล" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "นี่เป็นการทดสอบ" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "นี่เป็นอีกหนึ่งทดสอบ" #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "รับความช่วยเหลือ" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "อะไรที่เราสามารถใช้ช่วยคุณได้บ้าง" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "ยอมรับหรือไม่" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "วิธีการติดต่อที่ดีที่สุด" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "โทรศัพท์" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "เมล์หอยทาก" #: includes/Database/MockData.php:315 msgid "Send" msgstr "ส่ง" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "เลือกรายการ" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "ตัวเลือกหนึ่ง" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "ตัวเลือกสอง" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "ตัวเลือกสาม" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "รายการปุ่มทางเลือก" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "อ่างอาบน้ำ" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "รายการกล่องทำเครื่องหมาย" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "มีฟิลด์ทั้งในส่วนของข้อมูลผู้ใช้" #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "ที่อยู่" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "เมือง" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "รหัสไปรษณีย์" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "มีฟิลด์ทั้งหมดในส่วนการกำหนดราคา" #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "ผลิตภัณฑ์ (รวมจำนวนเอาไว้)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "ผลิตภัณฑ์ (แยกจำนวนออก)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "ปริมาณ" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "รวม" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "ชื่อ-นามสกุลบนบัตรเครดิต" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "หมายเลขบัตรเครดิต" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "หมายเลข CVV บนบัตรเครดิต" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "วันหมดอายุของบัตรเครดิต" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "รหัสไปรษณีย์ของบัตรเครดิต" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "มีฟิลด์พิเศษที่หลากหลาย" #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "คำถามเพื่อป้องกันการสแปม (Answer = คำตอบ)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "คำตอบ" #: includes/Database/MockData.php:805 msgid "processing" msgstr "กำลังดำเนินการ" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "ฟอร์มแบบยาว " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " ฟิลด์" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "ฟิลด์ #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "แบบฟอร์มการสมัครรับอีเมล" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "อีเมลแอดเดรส" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "ป้อนที่อยู่อีเมลของคุณ" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "สมัครสมาชิก" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "แบบฟอร์มผลิตภัณฑ์ (ที่มีฟิลด์จำนวน)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "สั่งซื้อ" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "คุณซื้อ " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "ผลิตภัณฑ์เป็นจำนวน " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "แบบฟอร์มผลิตภัณฑ์ (จำนวนเดียวกัน)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " ผลิตภัณฑ์เป็นจำนวน " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "แบบฟอร์มผลิตภัณฑ์ (หลายผลิตภัณฑ์)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "ผลิตภัณฑ์ A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "จำนวนของผลิตภัณฑ์ A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "ผลิตภัณฑ์ B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "จำนวนของผลิตภัณฑ์ B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "ของผลิตภัณฑ์ A และ " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "ผลิตภัณฑ์ B เป็นเงิน" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "แบบฟอร์มที่มีการคำนวณ" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "การคำนวณครั้งแรกของฉัน" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "การคำนวณครั้งที่สองของฉัน" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "ส่งคืนการคำนวณด้วยการตอบสนอง AJAX ( ตอบสนอง -> ข้อมูล -> คำนวณ" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "คัดลอก" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "บันทึกแบบฟอร์ม" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "รหัสไปรษณีย์ของบัตรเครดิต" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "คุณต้องล็อคอินอยู่เพื่อดูตัวอย่างแบบฟอร์ม" #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "ไม่พบฟิลด์ใดๆ" #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "โปรดทราบ: ใช้ชอร์ตโค้ดของ Ninja Forms โดยไม่ได้ระบุแบบฟอร์ม" #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "รหัสย่อของแบบฟอร์ม Ninja ใช้โดยไม่ต้องระบุแบบฟอร์ม" #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "ที่อยู่ 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "ปุ่ม" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "กล่องทำเครื่องหมายเดียว" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "ทำเครื่องหมาย" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "ไม่ได้ทำเครื่องหมาย" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "CVC ของบัตรเครดิต" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "เส้นแบ่งหน้าจอ" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "เลือก" #: includes/Fields/ListState.php:26 msgid "State" msgstr "จังหวัด" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "สามารถแก้ไขข้อความหมายเหตุได้ในการตั้งค่าขั้นสูงของฟิลด์หมายเหตุด้านล่าง" #: includes/Fields/Note.php:45 msgid "Note" msgstr "หมายเหตุ" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "ยืนยันรหัสผ่าน" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "รหัสผ่าน" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "โปรดกรอก recaptcha ให้สมบูรณ์" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "การจัดส่งขั้นสูง" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "คำถาม" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "ตำแหน่งของคำถาม" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "คำตอบไม่ถูกต้อง" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "จำนวนดาว" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "รายการคำ" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "ไม่มีคำสำหรับอนุกรมวิธานนี้ %sเพิ่มคำ%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "ไม่ได้เลือกอนุกรมวิธานใดๆ" #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "คำที่มีอยู่" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "ข้อความย่อหน้า" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "ข้อความแบบบรรทัดเดียว" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "รหัสไปรษณีย์" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "โพส" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "สตริงการค้นหา" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "สตริงการค้นหา" #: includes/MergeTags/System.php:13 msgid "System" msgstr "ระบบ" #: includes/MergeTags/User.php:13 msgid "User" msgstr "ผู้ใช้งาน" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " จำเป็นต้องอัปเดต คุณมีเวอร์ชัน " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " ติดตั้งแล้ว เวอร์ชันปัจจุบันคือ " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "การแก้ไขฟิลด์" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "ชื่อของป้ายชื่อ" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "ฟิลด์ด้านบน" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "ฟิลด์ด้านล่าง" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "ฟิลด์ด้านซ้าย" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "ฟิลด์ด้านขวา" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "ซ่อนป้ายชื่อ" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "ชื่อระดับ" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "ฟิลด์พื้นฐาน" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "เลือกหลายรายการ" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "เพิ่มฟิลด์ใหม่" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "เพิ่มการดำเนินการใหม่" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "ขยายเมนู" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "เผยแพร่" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "เผยแพร่" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "กำลังโหลด" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "ดูการเปลี่ยนแปลง" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "เพิ่มฟิลด์แบบฟอร์ม" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "เริ่มต้นโดยการเพิ่มฟิลด์แบบฟอร์มของคุณก่อน" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "เพิ่มฟิลด์ใหม่" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "เพียงคลิกที่นี่และเลือกฟิลด์ที่คุณต้องการ" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "เพียงแค่นี้ หรือ..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "เริ่มจากเทมเพลต" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "ติดต่อเรา" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "อนุญาตให้ผู้ใช้ของคุณติดต่อคุณด้วยแบบฟอร์มรายชื่อติดต่อแบบง่ายนี้ คุณสามารถเพิ่มหรือลบฟิลด์ออกได้ตามต้องการ" #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "คำขอการเสนอราคา" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "จัดการกับคำขอการเสนอราคาได้จากเว็บไซต์ของคุณได้โดยง่ายด้วยเทมเพลตนี้ คุณสามารถเพิ่มหรือลบฟิลด์ออกได้ตามต้องการ" #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "การลงทะเบียนกิจกรรม" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "อนุญาตให้ผู้ใช้ลงทะเบียนกิจกรรมถัดไปของคุณได้โดยง่ายโดยการกรอกแบบฟอร์มนี้ให้เสร็จสมบูรณ์ " "คุณสามารถเพิ่มหรือลบฟิลด์ออกได้ตามต้องการ" #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "แบบฟอร์มการลงทะเบียนจดหมายข่าว" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "เพิ่มผู้ตอบรับสมาชิกและเพิ่มรายการอีเมลของคุณได้มากขึ้นด้วยแบบฟอร์มการลงทะเบียนจดหมายข่าว " "คุณสามารถเพิ่มหรือลบฟิลด์ออกได้ตามต้องการ" #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "การดำเนินการเพิ่มแบบฟอร์ม" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "เริ่มต้นโดยการเพิ่มฟิลด์แบบฟอร์มของคุณก่อน เพียงแค่คลิกเครื่องหมายบวก " "และเลือกการดำเนินการที่คุณต้องการ เพียงแค่นี้" #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "ทำซ้ำ (^ + C + คลิก)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "ลบ (^ + D + คลิก)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "กระทำ" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Toggle Drawer" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "เต็มหน้าจอ" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "ครึ่งหน้าจอ" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "เลิกทำ" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "เสร็จสิ้น" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "ยกเลิกการทำทั้งหมด" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " ยกเลิกการทำทั้งหมด" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "เกือบเสร็จแล้ว..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "ยังไม่เสร็จ" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " เปิดในหน้าต่างใหม่" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "ปิดการเปิดใช้งาน" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "แก้ไข" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- เลือกแบบฟอร์ม" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "วันเริ่มต้น" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "ก่อนร้องขอความช่วยเหลือจากทีมสนับสนุนของเรา โปรดตรวจสอบที่" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "เอกสารกำกับสามฉบับของแบบฟอร์ม Ninja" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "ต้องทำการทดลองอะไรบ้างก่อนที่จะติดต่อฝ่ายสนับสนุน" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "ขอบเขตการสนับสนุนของเรา" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "นำเข้าฟิลด์" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "อัปเดตเมื่อ: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "ส่งเมื่อ: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "ส่งโดย: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "การส่งข้อมูล" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "ดู" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "แสดงเพิ่มเติม" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "การแก้ไขฟิลด์" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "ฟิลด์แบบฟอร์ม" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "แสดงตัวอย่างการเปลี่ยนแปลง" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "แบบฟอร์มติดต่อ" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "ขออภัย! แอดออนนั้นยังไม่สามารถใช้งานร่วมกับ Ninja Forms THREE ได้ %sเรียนรู้เพิ่มเติม%s" #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s ถูกปิดการใช้งาน" #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "โปรดช่วยเราปรับปรุงแบบฟอร์ม Ninja!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "หากคุณเลือกที่จะเข้าร่วม บางข้อมูลเกี่ยวกับการติดตั้งแบบฟอร์ม Ninja " "ของคุณจะถูกส่งไปยัง NinjaForms.com (ไม่ได้รวมไว้ในการส่งของคุณ)" #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "หากคุณข้ามขั้นตอนนี้ ก็ไม่มีผลกระทบใดๆ! ฟอร์ม Ninja ยังคงทำงานได้ดี" #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sอนุญาต%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sไม่อนุญาต%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "คุณไม่มีสิทธิ์" #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "สิทธิ์ถูกปฏิเสธ" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "แบบฟอร์ม Ninja Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "แก้ไขข้อบกพร่อง: สลับไปเป็น 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "แก้ไขข้อบกพร่อง: สลับไปเป็น 3.0.x" lang/ninja-forms-th.mo000064400000420507152331132460010666 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|877]=8Z/t1b \pw%0!0@aWgA82J }##)/@0-!0 B<$-'9*U3--!32$fK6K'?s*<fulc0-$/T$j30 9$:_'x3$-'Meu?`:-lRca !c]~9'6 F PZb h$v 9l3T! --6-Hv~ $3*9E$*j!''$H,Zul`='E1 :HO-n9? , 4AE!Uw$6$* /WE:N<6 $C!h?-!)BG*f*@*6AHx6'] ~R3j!BM*E p      9 *( $S  x   ^ q D +c > E F 3[ K K 'i:3$242g9?3KH6BBQX g rS}S %L/|!$00#*T0(Z<4q!S$u3'ZQ3mH!jq9$ 3"3V#N${9K0!0?8x?*6!<W^IK BL    B  !!&#!-J!x!!3!'!!!-"!<"'^"'"'"" ""#6#$N#$s#H#i#iK$i$Q%6q%'%%X&'B'! (+(';(c(u(<}((o)w)9))6)3 *>*6Q*!******+-++6Y+!+<+Q+ A,$O,Nt,,,,,-33- g-ht-]-;.N@.K.W.3/;/T/d/h/hp/0*0*1'?1Qg1$13102TC2*2f2$*3?O333*3E34, 4 M4[4l4<4'44T 5a5555055505H#66l666*6(7.7~7S[8!9?9: :!::E:'9;a;~;';!;*;< < <H(< q<|< << <<<<!<]<22=e=9{=B= =$>$*>!O>q>>H@(AeGeLeHRef f f ffHf(g!Dgfg ng{g!g(ghh>hp*iii!ii?jTHjWjj}k2kkk k kWkMl$Ul zl-l`lcmHxm-mQm AnBNnKn nn no'oGoOoQUoo o?o o0q98q rqqq qZq %r/r5r<=rzr2rHr"s8s0Ws0s's]s*?tKjt*t-t!u1up*vvw(Dx mywzN{||}PE<7't!9k9d'KƁi|H!'&Ngh@=BPB<օ?,ZlZdži"]6T!!v'!!#E66| 5ъ(0AW`pw*܋*? 3`0QŌ?-W )ٍe H'T|lNZҐA-~o'H[ZOXg4k<ݕZ3]iz`E(1BZZ !<+Eh='$'LlN6ڜ' 9 F3S*-E&H9?ž]]\c$C !545j''١ -0-^6<ӢE{V ң*ܣCۥi<|N<KE??ѧi{E60I(ک1 9=$wW1 ?0Gx ʫ ֫ 6 ?L9_?*٬308$i3$!!(J$Z!Z'c@{! *. Yrcֱޱ: <? |!VŲE9b']ij2"!U'w]  E'!m?6ϵKcl<< ,{9 -Ǹ0`& !9$0-Cq\c 9n$ڻuuu$$:*_!ǽ ڽc{Hľھ!60XR  ? HUVq s>N *!!* 4M3cKs*W$ `8K r2r(d="duOQ-wE}{B/f`>`EF!f0-A<oZ<DzV<tA=e4h^^jZ$ -TOZ $T y ]qy   09cBA6T'$W`E$#T!v390MKii$i)rE!W$2]WBB$Q3v]T-].  Wai  0A`yZBZIK H`4p0 -Wg'?:E<c0.O ~ <4 q     -      6  rv*o{op8xOZz#+|jG|n/E!!$*$Ot1 A b*l' -0PY_e u16 *"7M (.'(Dm   9.JU  Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . ฟิลด์ เปิดในหน้าต่างใหม่ ยกเลิกการทำทั้งหมด ติดตั้งแล้ว เวอร์ชันปัจจุบันคือ ผลิตภัณฑ์เป็นจำนวน จำเป็นต้องอัปเดต คุณมีเวอร์ชัน #อัพเดทร่าง %1$s แล้่ว ตัวอย่าง %3$sได้กู้คืน %1$s กลับเพื่อการแก้ไขจาก %2$sได้จัดตารางเวลา %1$s สำหรับ: %2$s. ตัวอย่าง %4$sส่ง %1$s แล้ว ตัวอย่าง %3$sจะใข้ %n เพื่อเป็นเครื่องแสดงจำนวนวินาที%s ที่ผ่านมาเผยแพร่ %s แล้ว%s บันทึกเรียบร้อย%s อัพเดทแล้ว%s ถูกปิดการใช้งาน%sอนุญาต%sค่าการคำนวณที่%sทำเครื่องหมาย%sแล้ว%sไม่อนุญาต%sค่าการคำนวณที่%sไม่ได้ทำเครื่องหมาย%s* - เป็นตัวแทนอักขระตัวอักษรและตัวเลข (A-Z,a-z,0-9) - วิธีนี้จะยอมให้ใส่ได้ทั้งตัวอักษรและตัวเลข- ไม่มี- เลือกหนึ่งรายการ- เลือกฟิลด์- เลือกสินค้า- เลือกตัวแปร- เลือกแบบฟอร์ม- ดูประเภททั้งหมด9 - เป็นตัวแทนอักขระตัวเลข (0-9) - ยอมให้ใส่เฉพาะตัวเลขเท่านั้น
    • a - เป็นตัวแทนตัวอักขระตัวอักษร (A-Z,a-z) - ยอมให้ใส่เฉพาะตัวอักษรเท่านั้น
    • 9 - เป็นตัวแทนอักขระตัวเลข (0-9) - ยอมให้ใส่เฉพาะตัวเลขเท่านั้น
    • * - เป็นตัวแทนอักขระตัวอักษรและตัวเลข (A-Z,a-z,0-9) - วิธีนี้จะยอมให้ใส่ได้ทั้งตัวอักษรและตัวเลข
    คำตอบที่ไวต่ออักษรใหญ่เล็กเพื่อช่วยป้องกันการส่งสแปมของแบบฟอร์มของคุณNinja Forms กำลังจะมีการอัพเดทครั้งใหญ่ %sเรียนรู้เพิ่มเติมเกี่ยวกับคุณสมบัติใหม่ๆ ความสามารถใช้งานร่วมกันแบบย้อนกลับ และคำถามที่พบบ่อยอีกมากมาย%sประสบการณ์การสร้างแบบฟอร์มที่ง่ายดายและทรงพลังเหนือส่วนประกอบฟิลด์ด้านบนชื่อการดำเนินการอัพเดทการดำเนินการแล้วกระทำเปิดใช้งานเปิดการทำงานเพิ่มเพิ่มรายละเอียดเพิ่มแบบฟอร์มเพิ่มใหม่เพิ่มฟิลด์ใหม่เพิ่มแบบฟอร์มใหม่เพิ่มสินค้าใหม่เพิ่มการส่งใหม่เพิ่มคำใหม่เพิ่มการดำเนินการเพิ่มปุ่มส่งเพิ่มค่าการดำเนินการเพิ่มแบบฟอร์มเพิ่มฟิลด์แบบฟอร์มเพิ่มแบบฟอร์มในหน้าเพจนี้เพิ่มการดำเนินการใหม่เพิ่มฟิลด์ใหม่เพิ่มผู้ตอบรับสมาชิกและเพิ่มรายการอีเมลของคุณได้มากขึ้นด้วยแบบฟอร์มการลงทะเบียนจดหมายข่าว คุณสามารถเพิ่มหรือลบฟิลด์ออกได้ตามต้องการใบอนุญาตใช้งานแอดออนส่วนเสริมที่อยู่ที่อยู่ 2เพิ่มคลาสเพิ่มเติมให้แก่ส่วนประกอบฟิลด์เพิ่มคลาสเพิ่มเติมให้แก่ตัวหุ้มฟิลด์อีเมลผู้ดูแลระบบสลากผู้ดูแลระบบการควบคุมเวบชั้นสูงสมการขั้นสูงการตั้งค่าขั้นสูงการจัดส่งขั้นสูงAfghanistanหลังทุกสิ่งทุกอย่างหลังแบบฟอร์มหลังฉลากยอมรับหรือไม่AlbaniaAlgeriaทั้งหมดเกี่ยวกับแบบฟอร์มฟิลด์ทั้งหมดแบบฟอร์มทั้งหมดรายการทั้งหมดแบบฟอร์มปัจจุบันทั้งหมดจะยังคงอยู่ในตาราง “แบบฟอร์มทั้งหมด” ในบางกรณี แบบฟอร์มบางรายการอาจถูกทำสำเนาในระหว่างการดำเนินการอนุญาตให้ผู้ใช้ลงทะเบียนกิจกรรมถัดไปของคุณได้โดยง่ายโดยการกรอกแบบฟอร์มนี้ให้เสร็จสมบูรณ์ คุณสามารถเพิ่มหรือลบฟิลด์ออกได้ตามต้องการอนุญาตให้ผู้ใช้ของคุณติดต่อคุณด้วยแบบฟอร์มรายชื่อติดต่อแบบง่ายนี้ คุณสามารถเพิ่มหรือลบฟิลด์ออกได้ตามต้องการยอมห้มีอินพุตแบบ rich textยอมให้ผู้ใช้เลือกสินค้านี้ในจำนวนที่มากกว่าหนึ่งเกือบเสร็จแล้ว...พร้อมกับแถบ “สร้างแบบฟอร์มของคุณ” เราได้นำ “การแจ้ง” ออกเพื่อใช้ “อีเมลและการดำเนินการ” แทน วิธีนี้จะเป็นการระบุสิ่งที่สามารถทำได้ในแถบนี้ได้ชัดเจนขึ้นAmerican Samoaมีความผิดพลาดที่ไม่คาดคิดเกิดขึ้นAndorraAngolaAnguillaคำตอบAntarcticaป้องกันสแปมคำถามเพื่อป้องกันการสแปม (Answer = คำตอบ)ข้อความข้อผิดพลาดการต่อต้านสแปมAntigua and Barbudaตัวอักษรใดๆ ที่คุณใส่ในกล่อง “การซ่อนแบบตั้งเอง” ที่ไม่อยู่ในรายการด้านล่างจะถูกใส่โดยอัตโนมัติให้แก่ผู้ใช้เมื่อพวกเขากำลังพิมพ์และจะไม่สามารถนำออกได้เพิ่มเติมแบบฟอร์ม Ninjaเพิ่มเติม Ninja Formsเพิ่มเข้ากับหนาเพจใช้ArgentinaArmeniaArubaแนบ CSVสิ่งที่แนบมาAustraliaAustriaฟิลด์ผลรวมอัตโนมัติคิดค่าการคำนวณรวมทั้งหมดโดยอัตโนมัติยังคงไม่มีเจ้าของคำที่มีอยู่Azerbaijanกลับไปยังรายการกลับไปยังรายการสำรองข้อมูล / คืนค่าสำรองข้อมูล Ninja FormsBahamasBahrainBangladeshBarBarbadosฟิลด์พื้นฐานการตั้งค่าพื้นฐานอ่างอาบน้ำBazส่งสำเนาลับถึงก่อนทุกสิ่งทุกอย่างก่อนแบบฟอร์มก่อนฉลากก่อนร้องขอความช่วยเหลือจากทีมสนับสนุนของเรา โปรดตรวจสอบที่วันที่เริ่มต้นวันเริ่มต้นBelarusBelgiumBelizeใต้ส่วนประกอบฟิลด์ด้านล่างBeninBermudaวิธีการติดต่อที่ดีที่สุดการสนับสนุนที่ดีที่สุดในธุรกิจการตั้งค่าฟิลด์ที่เป็นระเบียบมากขึ้นการบริหารใบอนุญาตใช้งานที่ดีขึ้นBhutanใบเสร็จแบบฟอร์มเปล่าBoliviaบอสเนียและเฮอร์เซโกวีนาBotswanaBouvet IslandBrazilBritish Indian Ocean Territoryบรูไนดารุสซาลามสร้างแบบฟอร์มของคุณBulgariaการดำเนินการเป็นกลุ่มBurkina FasoBurundiปุ่มCVCคำนวณค่าการคำนวณการคำนวณวิธีการคำนวณการตั้งค่าการคำนวณชื่อการคำนวณการคำนวณส่งคืนการคำนวณด้วยการตอบสนอง AJAX ( ตอบสนอง -> ข้อมูล -> คำนวณCambodiaCameroonCanadaยกเลิกCape Verdeแคปต์ชาไม่ตรงกัน โปรดใส่ค่าที่ถูกต้องในฟิลด์แคปต์ชารายละเอียด CVC บัตรฉลาก CVC บัตรรายละเอียดเดือนที่บัตรหมดอายุฉลากเดือนที่บัตรหมดอายุรายละเอียดปีที่บัตรหมดอายุฉลากปีที่บัตรหมดอายุรายละเอียดชื่อบัตรฉลากชื่อบัตรหมายเลขบัตรรายละเอียดหมายเลขบัตรฉลากหมายเลขบัตรCayman Islandsส่งสำเนาถึงCentral African RepublicChadเปลี่ยนค่าอักขระที่เหลืออักขระที่เหลือตัวอักษรคุณกำลังจะโกงอยู่หรือ?ดูเอกสารของเรากล่องกาเครื่องหมายรายการกล่องทำเครื่องหมายกล่องกาเครื่องหมายทำเครื่องหมายค่าการคำนวณที่ทำเครื่องหมายแล้วChileChinaChristmas Islandเมืองชื่อระดับล้างแบบฟอร์มที่กรอกสมบูรณ์เรียบร้อยแล้วหรือไม่Cocos (Keeling) IslandsรวบรวมการชำระเงินColombiaฟิลด์ทั่วไปComorosสามารถสร้างสมการที่มีความซับซ้อนได้ด้วยการเพิ่มวงเล็บ: %s( field_45 * field_2 ) / 2%sยืนยันยืนยันว่าคุณไม่ใช่บ็อทคองโกคองโก, สาธารณรัฐประชาธิปไตยแบบฟอร์มติดต่อติดต่อฉันติดต่อเราตัวรองรับต่อไปCook Islandsราคาเมนูหล่นลงของต้นทุนตัวเลือกต้นทุนประเภทต้นทุนCosta Ricaโกตดิวัวร์ไม่สามารถเปิดใช้ใบอนุญาตใช้งาน โปรดตรวจยืนยันคีย์ใบอนุญาตใช้งานประเทศสร้างคีย์เฉพาะเพื่อระบุและตั้งเป้าฟิลด์ของคุณสำหรับการพัฒนาแบบกำหนดเองบัตรเครดิตCVC ของบัตรเครดิตหมายเลข CVV บนบัตรเครดิตวันหมดอายุของบัตรเครดิตชื่อ-นามสกุลบนบัตรเครดิตหมายเลขบัตรเครดิตรหัสไปรษณีย์ของบัตรเครดิตรหัสไปรษณีย์ของบัตรเครดิตเครดิตโครเอเชีย (ชื่อท้องถิ่น: เครอร์วัตสกา)Cubaสกุลเงินสัญลักษณ์สกุลเงินหน้าปัจจุบันกำหนดเองคลาส CSS แบบกำหนดเองคลาส CSS แบบกำหนดเองชื่อคลาสแบบกำหนดเองกลุ่มฟิลด์แบบกำหนดเองการซ่อนแบบตั้งเองการกำหนดการซ่อนแบบตั้งเองลบช่องปรับแต่งแล้วอัปเดตช่องปรับแต่งแล้วตัวเลือกแรกแบบกำหนดเองCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYแก้ไขข้อบกพร่อง: สลับไปเป็น 2.9.xแก้ไขข้อบกพร่อง: สลับไปเป็น 3.0.xมืดคืนค่าข้อมูลเรียบร้อยแล้ว!วันที่วันที่สร้างรูปแบบวันที่การตั้งค่าวันที่วันที่ส่งอัพเดทวันที่แล้วตัวเลือกวันที่ปิดการเปิดใช้งานDeactivate (ปิดใช้งาน)ปิดการใช้ใบอนุญาตใช้งานทั้งหมดปิดใช้ใบอนุญาตใช้งานปิดการใช้ใบอนุญาตใช้งานส่วนขยาย Ninja Forms เป็นรายๆ ไป หรือเป็นกลุ่มจากแถบการตั้งค่าค่าเริ่มต้นประเทศปริยายตำแหน่งฉลากปริยายโซนเวลาปริยายให้ค่าปริยายเป็นวันที่ปัจจุบันค่าปริยายโซนเวลาปริยายคือ %sค่าเริ่มต้นเวลาท้องถิ่นคือ %s - ซึ่งควรจะเป็น UTCฟิลด์ที่กำหนดไว้ล่วงหน้าลบลบ (^ + D + คลิก)ลบถาวรลบออกจากแบบฟอร์มนี้ลบรายการถาวรDenmarkคำอธิบายเนื้อหารายละเอียดตำแหน่งรายละเอียดคุณรู้หรือไม่ว่าคุณสามารถเพิ่มการแปลงแบบฟอร์มได้ด้วยการแบ่งแบบฟอร์มออกเป็นส่วนๆ ที่เล็กกว่าและง่ายต่อการกรอกข้อมูล

    ส่วนขยาย Multi-Part Forms สำหรับ Ninja Forms จะทำให้วิธีนี้เป็นไปอย่างรวดเร็วและง่ายดาย

    ปิดใช้ประกาศของผู้ดูแลระบบปิดการใช้การทำให้เสร็จสิ้นแบบอัตโนมัติ (Autocomplete) ของเบราว์เซอร์ปิดใช้อินพุตปิดใช้งานโปรแกรม Rich Text Editor บนอุปกรณ์เคลื่อนที่ปิดใช้อินพุตหรือไม่ยกเลิกการแสดงผลแสดงชื่อแบบฟอร์มชื่อที่แสดงการตั้งค่าแสดงผลแสดงตัวแปรการคำนวณนี้แสดงชื่อการแสดงแบบฟอร์มของคุณเส้นแบ่งหน้าจอDjiboutiอย่าแสดงคำเหล่านี้เอกสารกำกับเราจะเสนอเอกสารให้ในไม่ช้านี้มีเอกสารที่ครอบคลุมทุกสิ่งทุกอย่างตั้งแต่ %sการแก้ไขปัญหา%s ไปจนถึง %sAPI นักพัฒนา%sของเรา มีการเพิ่มเอกสารใหม่ๆ อยู่เสมอไม่ใช้กับตัวอย่างแบบฟอร์มใช้กับตัวอย่างแบบฟอร์มDominicaDominican Republicเสร็จสิ้นดาวน์โหลดการส่งทั้งหมดDropdownทำซ้ำทำซ้ำ (^ + C + คลิก)ทำสำเนาแบบฟอร์มEcuadorแก้ไขแก้ไขการดำเนินการแก้ไขแบบฟอร์มแก้ไขสินค้าแก้ไขรายการเมนูแก้ไขการส่งแก้ไขไอเทมนี้การแก้ไขฟิลด์การแก้ไขฟิลด์EgyptEl Salvadorส่วนประกอบอีเมลอีเมล & การดำเนินการอีเมลแอดเดรสข้อความอีเมลแบบฟอร์มการสมัครรับอีเมลที่อยู่อีเมลหรือการค้นหาสำหรับฟิลด์ที่อยู่อีเมลหรือการค้นหาสำหรับฟิลด์อีเมลจะปรากฎว่ามาจากที่อยู่อีเมลนี้อีเมลจะปรากฎว่ามาจากชื่อนี้อีเมล & การดำเนินการวันที่สิ้นสุดทำให้แน่ใจว่าฟิลด์สมบูรณ์ก่อนที่จะส่งแบบฟอร์มใส่ข้อความที่คุณต้องการจะแสดงในฟิลด์ก่อนที่ผู้ใช้จะใส่ข้อมูลใดๆใส่ฉลากของฟิลด์แบบฟอร์ม นี่คือวิธีที่ผู้ใช้จะระบุแต่ละฟิลด์ป้อนที่อยู่อีเมลของคุณสภาพแวดล้อมสมการสมการ (ขั้นสูง)Equatorial GuineaEritreaมีข้อผิดพลาดเกิดขึ้นข้อความข้อผิดพลาดที่ให้หากไม่ได้ทำฟิลด์ที่ต้องกรอกให้สมบูรณ์EstoniaEthiopiaการลงทะเบียนกิจกรรมขยายเมนูเดือนที่หมดอายุ (ดด)ปีที่หมดอายุ (ปปปป)ส่งออกส่งออกฟิลด์ยอดนิยมส่งออกฟิลด์ส่งออกแบบฟอร์มส่งออกแบบฟอร์มส่งออกแบบฟอร์มส่งออกรายการนี้ขยายความสามารถ Ninja Formsอัปโหลดไฟล์การบันทึกไฟล์ล้มเหลวหมู่เกาะฟอล์กแลนด์ (มัลบีนัส)Faroe Islandsฟิลด์ยอดนิยมนำเข้ายอดนิยมเรียบร้อยแล้วฟิลด์ฟิลด์ #ID ฟิลด์คีย์ฟิลด์ไม่พบฟิลด์การดำเนินการฟิลด์ช่องต้องกรอกข้อมูลในฟิลด์ทำเครื่องหมาย *ต้องกรอกฟิลด์ที่มีเครื่องหมาย %s*%sFijiข้อผิดพลาดในการอัพโหลดไฟล์กำลังดำเนินการอัปโหลดไฟล์ไฟล์อัปโหลดหยุดลงโดยส่วนเพิ่มFinlandชื่อจริงแก้ไขFooFoo Barตัวอย่างเช่น หากคุณมีคีย์สินค้าที่อยู่ในแบบ A4B51.989.B.43C คุณสามารถซ่อนด้วย: a9a99.999.a.99a ซึ่งจะบังคับให้ a ทั้งหมดเป็นตัวอักษรและ 9 เป็นตัวเลขฟอร์มแบบฟอร์มปริยายลบแบบฟอร์มแล้วฟิลด์แบบฟอร์มนำเข้าแบบฟอร์มเรียบร้อยแล้วคีย์แบบฟอร์มไม่พบรายการสินค้าตัวอย่างแบบฟอร์มบันทึกการตั้งค่าแบบฟอร์มแล้วการส่งแบบฟอร์มข้อผิดพลาดการนำเข้าแบบฟอร์มเทมเพลตชื่อแบบฟอร์มแบบฟอร์มที่มีการคำนวณรูปแบบFormsลบแบบฟอร์มแล้วแบบฟอร์มต่อหนึ่งหน้าเพจFranceฝรั่งเศส, มหานครFrench GuianaFrench PolynesiaFrench Southern Territoriesวันศุกร์ 18 พฤศจิกายน 2019ที่อยู่ผู้ส่งชื่อผู้ส่งบันทึกการเปลี่ยนแปลงฉบับเต็มเต็มหน้าจอGabonGambiaทั่วไปการตั้งค่าทั่วไปจอร์เจียGermanyรับความช่วยเหลือรับการดำเนินการเพิ่มเติมรับประเภทเพิ่มเติมขอรับความช่วยเหลือรับการสนับสนุนดูรายงานของ Systemขอรับคีย์เว็บไซต์สำหรับโดเมนของคุณด้วยการลงทะเบียน %sที่นี่%sเริ่มต้นโดยการเพิ่มฟิลด์แบบฟอร์มของคุณก่อนเริ่มต้นโดยการเพิ่มฟิลด์แบบฟอร์มของคุณก่อน เพียงแค่คลิกเครื่องหมายบวก และเลือกการดำเนินการที่คุณต้องการ เพียงแค่นี้การเริ่มต้นเริ่มต้นใช้งานกับ Ninja FormsGhanaGibraltarมอบชื่อให้แก่แบบฟอร์มของคุณ นี่คือวิธีที่คุณจะหาแบบฟอร์มเจอในภายหลังไปความพยายามของคุณล้มเหลวไปยังแบบฟอร์มไปที่ Ninja Forms ไปหน้าแรกไปหน้าสุดท้ายไปหน้าต่อไปไปหน้าก่อนหน้าGreeceGreenlandGrenadaเอกสารที่กำลังเติบโตขึ้นGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiครึ่งหน้าจอเกาะเฮิร์ดและหมู่เกาะแมกดอนัลด์สวัสดี แบบฟอร์ม Ninja!วิธีใช้ข้อความการช่วยเหลือข้อความช่วยเหลือที่นี่ซ่อนฟิลด์ที่ซ่อนซ่อนป้ายชื่อซ่อนสิ่งนี้ซ่อนแบบฟอร์มที่กรอกสมบูรณ์เรียบร้อยแล้วหรือไม่คำบอกใบ้: รหัสผ่านควรมีความยาวอย่างน้อยเจ็ดตัวอักษร เพื่อทำให้รหัสผ่านแข็งแกร่งมากขึ้น ให้ใช้ทั้งตัวพิมพ์เล็กและตัวพิมพ์ใหญ่ ตัวเลข และอักขระพิเศษ เช่น ! “ ? $ % ^ & )สันตะสำนัก (นครรัฐวาติกัน)URL หน้าหลักเว็บHondurasHoney Potข้อผิดพลาดฮันนีพอตข้อความข้อผิดพลาด HoneypotHong KongHook Tagชื่อโฮสต์เป็นอย่างไรบ้างHungaryIP AddressIcelandหากเปิดใช้ “ข้อความรายละเอียด” จะมีเครื่องหมายคำถาม %s อยู่ถัดจากฟิลด์อินพุต เลื่อนเมาส์เหนือเครื่องหมายคำถามนี้จะแสดงข้อความรายละเอียดหากเปิดใช้ “ข้อความการช่วยเหลือ” จะมีเครื่องหมายคำถาม %s อยู่ถัดจากฟิลด์อินพุต เลื่อนเมาส์เหนือเครื่องหมายคำถามนี้จะแสดงข้อความการช่วยเหลือหากทำเครื่องหมายกล่องนี้ ข้อมูล Ninja Forms ทั้งหมดจะถูกลบออกจากฐานข้อมูลในช่วงการลบ %sจะไม่สามารถกู้คืนข้อมูลการส่งและแบบฟอร์มทั้งหมดได้%sหากกล่องนี้ถูกทำเครื่องหมาย Ninja Forms จะล้างค่าของแบบฟอร์มหลังจากที่ได้ส่งแบบฟอร์มเรียบร้อยแล้วหากกล่องนี้ถูกทำเครื่องหมาย Ninja Forms จะซ่อนแบบฟอร์มหลังจากที่ได้ส่งแบบฟอร์มเรียบร้อยแล้วหากกล่องนี้ถูกทำเครื่องหมายไว้ Ninja Forms จะส่งสำเนาของแบบฟอร์มนี้ (และข้อความใดๆ ที่แนบมาด้วย) ไปยังที่อยู่นี้หากกล่องนี้ถูกทำเครื่องหมายไว้ Ninja Forms จะตรวจสอบยืนยันอินพุตนี้เป็นที่อยู่อีเมลหากกล่องนี้ถูกทำเครื่องหมายไว้ ทั้งกล่องข้อความรหัสผ่านและใส่รหัสผ่านอีกครั้งจะถูกแสดงหากกล่องนี้ถูกทำเครื่องหมายไว้ คอลัมน์นี้ในตารางการส่งจะเรียงลำดับตามตัวเลขหากคุณเป็นบุคคลและเห็นฟิลด์นี้ โปรดปล่อยให้ว่างไว้หากคุณเป็นบุคคลที่มองเห็นฟิลด์นี้ โปรดทิ้งว่างไว้หากคุณเป็นบุคคล โปรดทำให้ช้าลงหากคุณปล่อยให้กล่องนี้ว่าง จะใช้ ไม่มีข้อจำกัดหากคุณเลือกที่จะเข้าร่วม บางข้อมูลเกี่ยวกับการติดตั้งแบบฟอร์ม Ninja ของคุณจะถูกส่งไปยัง NinjaForms.com (ไม่ได้รวมไว้ในการส่งของคุณ)หากคุณข้ามขั้นตอนนี้ ก็ไม่มีผลกระทบใดๆ! ฟอร์ม Ninja ยังคงทำงานได้ดีหากคุณต้องการส่งค่าว่างเปล่าหรือคำนวณ คุณควรใช้ ‘’หากคุณต้องการให้แบบฟอร์มแจ้งให้คุณทราบทางอีเมลเมื่อผู้ใช้คลิกส่ง คุณสามารถกำหนดค่าเหล่านั้นได้ที่แถบนี้ คุณสามารถสร้างอีเมลในจำนวนที่ไม่จำกัดได้ รวมถึงอีเมลที่ถูกส่งไปยังผู้ใช้ที่ได้กรอกแบบฟอร์มหากแบบฟอร์มของคุณ “หายไป” หลังจากที่อัพเดทเป็น 2.9 ปุ่มนี้จะพยายามแปลงแบบฟอร์มเก่าของคุณกลับคืนมาเพื่อแสดงใน 2.9 แบบฟอร์มปัจจุบันทั้งหมดจะยังคงอยู่ในตาราง “แบบฟอร์มทั้งหมด”นำเข้าการนำเข้า / การส่งออกนำเข้า / ส่งออกการส่งนำเข้าฟิลด์ยอดนิยมนำเข้ายอดนิยมนำเข้าฟิลด์นำเข้าแบบฟอร์มนำเข้าแบบฟอร์มนำเข้ารายการนำเข้าแบบฟอร์มการนำเข้า/การส่งออกความชัดเจนที่ปรับปรุงให้ดีขึ้นรวมไว้ในผลรวมอัตโนมัติหรือไม่ (หากเปิดใช้)คำตอบไม่ถูกต้องเพิ่มการแปลงIndiaIndonesiaซ่อนอินพุตใส่แทรกฟิลด์ทั้งหมดแทรกฟิลด์แทรกลิงก์แทรกสื่อภายในส่วนประกอบติดตั้งแล้วปลั๊กอินที่ถูกติดตั้งอยู่กลุ่มความสนใจแบบฟอร์มที่อัปโหลดไม่ถูกต้องหมายเลขแบบฟอร์มไม่ถูกต้องอิหร่าน (สาธารณรัฐอิสลาม)Iraqไอร์แลนด์นี่คือที่อยู่อีเมลหรือไม่Israelเพียงแค่นี้ หรือ...ItalyJamaicaJapanข้อความข้อผิดพลาด JavaScript ที่ถูกปิดใช้งานJohn DoeJordanเพียงคลิกที่นี่และเลือกฟิลด์ที่คุณต้องการKazakhstanKenyaคีย์KiribatiKitchen Sinkเกาหลี, สาธารณรัฐประชาธิปไตยประชาชนเกาหลี, สาธารณรัฐKuwaitKyrgyzstanเครื่องหมายการค้าฉลากที่นี่ชื่อของป้ายชื่อตำแหน่งฉลากฉลากที่ใช้เมื่อดูและส่งออกการส่งLabel,Value,Calcฉลากภาษาที่ใช้โดย reCAPTCHA. ในการขอรับรหัสสำหรับภาษาของคุณ ให้คลิก %sที่นี่%sสาธารณรัฐประชาธิปไตยประชาชนลาวนามสกุลLatviaส่วนประกอบรูปแบบฟิลด์รูปแบบศึกษาเพิ่มเติมเรียนรู้เพิ่มเติมเกี่ยวกับ Multi-Part Formsเรียนรู้เพิ่มเติมเกี่ยวกับ Save ProgressLebanonทางซ้ายของส่วนประกอบฟิลด์ด้านซ้ายLesothoLiberiaสาธารณรัฐสังคมนิยมประชาชนอาหรับลิเบียใบอนุญาตLiechtensteinสว่างจำกัดอินพุตให้อยู่ภายในตัวเลขนี้ข้อความแจ้งถึงจำนวนจำกัดจำกัดการส่งจำกัดอินพุตให้อยู่ภายในตัวเลขนี้รายการการแม็พฟิลด์รายการประเภทรายการรายการLithuaniaกำลังโหลดกำลังโหลด...ที่ตั้งล๊อกอินฟอร์มแบบยาว LuxembourgMM-DD-YYYYMM/DD/YYYYมาเก๊ามาซิโดเนีย, อดีตสาธารณรัฐยูโกสลาฟMadagascarMalawiMalaysiaMaldivesMaliMaltaจัดการกับคำขอการเสนอราคาได้จากเว็บไซต์ของคุณได้โดยง่ายด้วยเทมเพลตนี้ คุณสามารถเพิ่มหรือลบฟิลด์ออกได้ตามต้องการMarshall IslandsMartiniqueMauritaniaMauritiusสูงสุดระดับการซ้อนอินพุตสูงสุดค่าสูงสุดอาจทำทีหลังMayotteกลางข้อความฉลากข้อความข้อความที่แสดงให้ผู้ใช้เห็นหากกล่องทำเครื่องหมาย “ล็อคอิน” ถูกทำเครื่องหมายไว้และผู้ใช้ไม่ได้ล็อคอินMetaboxMexicoไมโครนีเซีย, สหพันธรัฐการย้ายและการสำรองข้อมูลเสร็จสิ้นแล้ว ต่ำสุดค่าต่ำสุดฟิลด์จิปาถะไม่ตรงกันไม่มีโฟลเดอร์ชั่วคราวการดำเนินการสำรองข้อมูลอีเมลดำเนินการบันทึกการสำรองข้อมูลข้อความการดำเนินการสำรองข้อมูลสำเร็จเรียบร้อยแก้ไขเมื่อมอลโดวา, สาธารณรัฐMonacoMongoliaMontenegroMontserratมีคุณสมบัติอีกมากที่จะมีตามมาMoroccoย้ายไปถังขยะMozambiqueเลือกหลายรายการสินค้าหลายรายการ - เลือกหลายรายการสินค้าหลายรายการ - เลือกหนึ่งรายการสินค้าหลายชิ้น - แบบหล่นลงเลือกหลายรายการขนาดกล่องแบบเลือกหลายรายการหลายการคำนวณครั้งแรกของฉันการคำนวณครั้งที่สองของฉันMySQL VersionMyanmarชื่อชื่อบนบัตรชื่อหรือฟิลด์NamibiaNauruต้องการความช่วยเหลือหรือไม่NepalNetherlandsเนเธอร์แลนด์แอนทิลลีสไม่เห็นประกาศของผู้ดูแลระบบบนแดชบอร์ดจาก Ninja Forms อีกต่อไป นำเครื่องหมายออกเพื่อดูประกาศอีกครั้งการดำเนินการใหม่แถบโปรแกรมสร้างใหม่New Caledoniaรายการใหม่การส่งใหม่New Zealandแบบฟอร์มการลงทะเบียนจดหมายข่าวNicaraguaNigerNigeriaการตั้งค่าแบบฟอร์ม Ninjaแบบฟอร์ม NinjaNinja Forms - การดำเนินการบันทึกการเปลี่ยนแปลง Ninja Formsแบบฟอร์ม Ninja Devเอกสาร Ninja Formsการดำเนินการ Ninja Formsการส่งแบบฟอร์ม Ninjaสถานะระบบ Ninja Formsเอกสารกำกับสามฉบับของแบบฟอร์ม Ninjaการอัพเกรด Ninja Formsการดำเนินการการอัพเดท Ninja Formsการอัพเกรด Ninja Formsเวอร์ชันของ Ninja Formsวิดเจ็ท Ninja FormsNinja Forms ยังมีมาพร้อมกับฟังก์ชันแม่แบบที่เรียบง่ายที่สามารถวางลงในไฟล์แม่แบบ php ได้โดยตรง %sความช่วยเหลือพื้นฐานของ Ninja Forms อยู่ที่นี่ไม่สามารถเปิดใช้งาน Ninja ทางเครือข่ายได้ โปรดไปที่แดชบอร์ดของแต่ละเว็บไซต์เพื่อเปิดใช้งานปลั๊กอินNinja Forms ได้ทำการอัพเกรดที่มีอยู่ทั้งหมดเรียบร้อยแล้ว!Ninja Forms ได้รับการสร้างขึ้นโดยทีมนักพัฒนาทั่วโลกที่มุ่งมั่นที่จะให้ปลั๊กอินการสร้างแบบฟอร์ม #1 แก่ชุมชน WordPressNinja Forms ต้องดำเนินการการอัพเกรด %s รายการ อาจใช้เวลาสองสามนาทีจึงจะเสร็จสมบูรณ์ %sเริ่มการอัพเกรด%sNinja Forms ต้องอัพเกรดการตั้งค่าอีเมลของคุณ ให้คลิก %sที่นี่%s เพื่อเริ่มการอัพเกรดNinja Forms ต้องอัพเกรดตารางการส่ง ให้คลิก %sที่นี่%s เพื่อเริ่มการอัพเกรดNinja Forms ต้องอัพเกรดการแจ้งแบบฟอร์มของคุณ ให้คลิก %sที่นี่%s เพื่อเริ่มการอัพเกรดNinja Forms ต้องอัพเกรดการตั้งค่าแบบฟอร์มของคุณ ให้คลิก %sที่นี่%s เพื่อเริ่มการอัพเกรดNinja Forms จะเสนอวิดเจ็ทที่คุณสามารถวางไว้ในพื้นที่สำหรับวิดเจ็ทใดๆ ของเว็บไซต์ของคุณ แล้วเลือกว่าแบบฟอร์มใดที่คุณต้องการแสดงในพื้นที่ว่างนั้นรหัสย่อของแบบฟอร์ม Ninja ใช้โดยไม่ต้องระบุแบบฟอร์มNiueไม่ใช่ไม่ได้ระบุการดำเนินการ...ไม่พบฟิลด์ยอดนิยมใดๆไม่พบฟิลด์ใดๆไม่พบการส่งไม่พบการส่งในถังขยะไม่มีคำสำหรับอนุกรมวิธานนี้ %sเพิ่มคำ%sไม่มีไฟล์ถูกอัปโหลดไม่พบแบบฟอร์มไม่ได้เลือกอนุกรมวิธานใดๆไม่พบบันทึกการเปลี่ยนแปลงที่ถูกต้องไม่มีNorfolk IslandNorthern Mariana IslandsNorwayข้อความแจ้งไม่ได้ล็อคอินยังไม่เสร็จไม่พบในถังขยะหมายเหตุสามารถแก้ไขข้อความหมายเหตุได้ในการตั้งค่าขั้นสูงของฟิลด์หมายเหตุด้านล่างโปรดทราบ: ต้องมี JavaScript สำหรับเนื้อหานี้โปรดทราบ: ใช้ชอร์ตโค้ดของ Ninja Forms โดยไม่ได้ระบุแบบฟอร์มตัวเลขข้อผิดพลาดตัวเลขสูงสุดข้อผิดพลาดตัวเลขต่ำสุดตัวเลือกสำหรับตัวเลขจำนวนดาวจำนวนของตำแหน่งทศนิยมจำนวนวินาทีสำหรับการนับถอยหลังจำนวนวินาทีสำหรับการนับถอยหลังจำนวนวินาทีสำหรับการส่งแบบจำกัดเวลาจำนวนดาวOmanหนึ่งที่อยู่อีเมลเดียวหรือฟิลด์เดียวขออภัย! แอดออนนั้นยังไม่สามารถใช้งานร่วมกับ Ninja Forms THREE ได้ %sเรียนรู้เพิ่มเติม%sเปิดในหน้าต่างใหม่การดำเนินการและฟิลด์ (ขั้นสูง)สไตล์มั่นใจตัวเลือกหนึ่งตัวเลือกสามตัวเลือกสองการตั้งค่าผู้จัดขอบเขตการสนับสนุนของเราแสดงผลการคำนวณเป็นPHP LocalePHP Max Input Varsขนาดโพสท์ PHP ใหญ่สุดเวลาจำกัดของ PHPPHP รุ่นเผยแพร่PakistanปาเลาPanamaPapua New Guineaข้อความย่อหน้าParaguayรายการหลัก:รหัสผ่านยืนยันรหัสผ่านฉลากรหัสผ่านไม่ตรงกันรหัสผ่านไม่ตรงกันฟิลด์การชำระเงินผู้ให้บริการด้านการชำระเงินการชำระเงินรวมทั้งหมดสิทธิ์ถูกปฏิเสธPeruPhilippinesโทรศัพท์โทรศัพท์ - (555) 555-5555Pitcairnวาง %s ในพื้นที่ใดๆ ที่ยอมรับชอร์ตโค้ดเพื่อแสดงแบบฟอร์มของคุณได้ทุกที่ที่คุณพอใจ แม้แต่ตรงกลางของหน้าเพจหรือเนื้อหาของโพสต์Placeholderข้อความธรรมดาโปรด %sติดต่อฝ่ายสนับสนุน%s ด้วยข้อผิดพลาดที่เห็นด้านบนโปรดตอบคำถามป้องกันการสแปมให้ถูกต้องโปรดตรวจดูฟิลด์ที่ต้องกรอกโปรดกรอกฟิลด์แคปต์ชาให้สมบูรณ์โปรดกรอก recaptcha ให้สมบูรณ์โปรดแก้ไขข้อผิดพลาดก่อนที่จะส่งแบบฟอร์มนี้โปรดแน่ใจว่าได้กรอกข้อมูลลงในทุกช่องที่จำเป็นแล้วโปรดใส่ข้อความที่คุณต้องการให้แสดงเมื่อแบบฟอร์มนี้มาถึงจำนวนจำกัดของการส่ง และจะไม่ยอมรับการส่งใหม่กรุณากรอกอีเมลให้ถูกต้องโปรดป้อนที่อยู่อีเมลที่ถูกต้อง!โปรดป้อนที่อยู่อีเมลที่ถูกต้องโปรดช่วยเราปรับปรุงแบบฟอร์ม Ninja!โปรดให้ข้อมูลนี้เมื่อขอการสนับสนุน:โปรดเพิ่มขึ้นทุกๆ โปรดเว้นว่างช่องสแปมทำให้แน่ใจว่าคุณได้ใส่คีย์เว็บไซต์และคีย์ความลับอย่างถูกต้องโปรดจัดอันดับ %sNinja Forms%s %s บน %sWordPress.org%s เพื่อช่วยเราทำให้ปลั๊กอินนี้ฟรี ด้วยความขอบคุณจากทีม WP Ninjas!โปรดเลือกแบบฟอร์มเพื่อดูการส่งโปรดเลือกแบบฟอร์มโปรดเลือกไฟล์แบบฟอร์มที่ถูกต้องโปรดเลือกไฟล์ฟิลด์ยอดนิยมที่ถูกต้องโปรดเลือกฟิลด์ยอดนิยมเพื่อส่งออกโปรดใช้ตัวดำเนินการเหล่านี้: + - * / คุณสมบัตินี้เป็นคุณสมบัติขั้นสูง ระวังการหารด้วย 0โปรดรอ %n วินาทีโปรดรอเพื่อส่งแบบฟอร์มปลั๊กอินPolandเติมเต็มส่วนนี้ด้วยอนุกรมวิธานPortugalโพสโพสต์ / ID หน้าเพจ (หากมี)โพสต์ / ชื่อหน้าเพจ (หากมี)โพสต์ / URL หน้าเพจ (หากมี)การสร้างโพสต์ID โฟสต์หัวข้อเรื่องURL ของเรื่องดูตัวอย่างแสดงตัวอย่างการเปลี่ยนแปลงดูตัวอย่างแบบฟอร์มไม่มีตัวอย่างราคาราคาฟิลด์การกำหนดราคากำลังดำเนินการฉลากการประมวลผลฉลากกำลังประมวลผลการส่งสินค้าผลิตภัณฑ์ (รวมจำนวนเอาไว้)ผลิตภัณฑ์ (แยกจำนวนออก)ผลิตภัณฑ์ Aผลิตภัณฑ์ Bแบบฟอร์มผลิตภัณฑ์ (จำนวนเดียวกัน)แบบฟอร์มผลิตภัณฑ์ (หลายผลิตภัณฑ์)แบบฟอร์มผลิตภัณฑ์ (ที่มีฟิลด์จำนวน)ประเภทสินค้าชื่อเชิงโปรแกรมที่สามารถใช้เพื่ออ้าอิงถึงแบบฟอร์มนี้เผยแพร่Puerto Ricoสั่งซื้อQatarปริมาณจำนวนของผลิตภัณฑ์ Aจำนวนของผลิตภัณฑ์ Bจำนวน:สตริงการค้นหาสตริงการค้นหาตัวแปร Querystringคำถามตำแหน่งของคำถามคำขอการเสนอราคาวิทยุรายการปุ่มทางเลือกรหัสผ่านใหม่อีกครั้งฉลากใส่รหัสผ่านอีกครั้งปิดการใช้ใบอนุญาตใช้งานทั้งหมดจริงหรือไม่Recaptchaเปลี่ยนเส้นทางลบนำข้อมูล Ninja Forms ทั้งหมดออกเมื่อยกเลิกการติดตั้งหรือไม่นำค่าออกนำข้อมูล Ninja Forms ทั้งหมดออกนำฟิลด์นี้ออกหรือไม่ แบบฟอร์มจะถูกนำออกแม้ว่าคุณจะไม่ได้บันทึกตอบกลับถึงกำหนดให้ลูกค้าต้องล็อคอินเพื่อดูแบบฟอร์มหรือไม่จำเป็นช่องข้อมูลที่ต้องการข้อผิดพลาดฟิลด์ที่ต้องกรอกฉลากฟิลด์ที่ต้องกรอกสัญลักษณ์ฟิลด์ที่ต้องกรอกรีเซ็ตการแปลงแบบฟอร์มรีเซ็ตการแปลงแบบฟอร์มรีเซ็ตกระบวนการแปลงแบบฟอร์มสำหรับ v2.9+เรียกคืนคืนค่า Ninja Formsเรียกคืนรายการจากถังขยะการตั้งค่าข้อจำกัดข้อจำกัดจำกัดชนิดของอินพุตที่ผู้ใช้สามารถใส่ลงในฟิลด์นี้กลับไปยัง Ninja Forms Reunionโปแกรมแก้ไข Rich Text (RTE)ทางขวาของส่วนประกอบฟิลด์ด้านขวาย้อนกลับย้อนกลับไปยังรีลีสล่าสุดของ 2.9.xย้อนกลับไปเป็น v2.9.xRomaniaสหพันธรัฐรัสเซียRwandaSMTPไคลเอนต์ SOAPSUHOSIN InstalledSaint Kitts and NevisSaint LuciaSaint Vincent and the GrenadinesSamoaSan MarinoเซาตูเมและปรินซีปีSaudi Arabiaบันทึกบันทึกและเปิดใช้งานบันทึกการตั้งค่าฟิลด์บันทึกแบบฟอร์มตัวเลือกการบันทึกบันทึกการตั้งค่าบันทึกการส่งบันทึกแล้วฟิลด์ที่บันทึกไว้กำลังบันทึก...ค้นหารายการค้นหาการส่งเลือกเลือกทั้งหมดเลือกรายการเลือกฟิลด์หรือประเภทเพื่อค้นหาเลือกไฟล์เลือกแบบฟอร์มเลือกแบบฟอร์มหรือประเภทเพื่อค้นหาเลือกจำนวนของการส่งที่แบบฟอร์มนี้จะยอมรับ เว้นว่างไว้สำหรับจำนวนไม่จำกัดเลือกตำแหน่งของฉลากที่สัมพันธ์กับส่วนประกอบฟิลด์ที่ถูกเลือกค่าที่เลือกไว้ส่งส่งสำเนาแบบฟอร์มไปยังที่อยู่นี้หรือไม่SenegalSerbiaที่อยู่ IP เซิร์ฟเวอร์การตั้งค่าบันทึกการตั้งค่าแล้วSeychellesการจัดส่งรหัสแบบสั้นควรใส่เป็นเปอร์เซ็นต์ เช่น 8.25%, 4%แสดงข้อความการช่วยเหลือแสดงปุ่มอัพโหลดสื่อแสดงเพิ่มเติมแสดงตัวชี้ความแข็งแกร่งรหัสผ่านแสดงโปรแกรม Rich Text Editorแสดงสิ่งนี้แสดงค่ารายการแสดงให้ผู้ใช้เห็นเป็นแบบลอยอยู่Sierra LeoneSingaporeเดี่ยวกล่องทำเครื่องหมายเดียวต้นทุนเดียวข้อความแบบบรรทัดเดียวสินค้าเดียว (ปริยาย)URL เว็บสโลวาเกีย (สาธารณรัฐสโลวัก)Sloveniaเมล์หอยทากดังนั้น หากคุณต้องการสร้างการซ่อนสำหรับหมายเลขประกันสังคมของอเมริกา คุณจะพิมพ์ 999-99-9999 ลงในกล่องSolomon IslandsSomaliaเรียงลำดับเป็นตัวเลขเรียงลำดับเป็นตัวเลขSouth Africaเกาะเซาท์จอร์เจียและหมู่เกาะเซาท์แซนด์วิชSouth SudanSpainคำตอบปองกันสแปมคำถามป้องกันสแปมระบุการดำเนินการและฟิลด์ (ขั้นสูง)Sri Lankaเซนต์เฮเลนาแซงปีแยร์และมิเกอลงฟิลด์มาตรฐานจัดอันดับด้วยดาวเริ่มจากเทมเพลตจังหวัดสถานะขั้นตอนขั้นตอน %d ของการรันงาน %d โดยประมาณขั้น (จำนวนที่จะเพิ่มขึ้นทีละครั้ง)ตัวชี้ความแข็งแกร่งแข็งแรงลำดับย่อยหัวข้อเรื่องข้อความหัวเรื่องหรือการค้นหาสำหรับฟิลด์ข้อความหัวเรื่องหรือการค้นหาสำหรับฟิลด์การส่งการส่ง CSVการส่งข้อมูลข้อมูลการส่งข้อจำกัดการส่งการส่ง Metaboxสถานะการส่งการส่งส่งข้อความปุ่มส่งหลังจากที่เวลาหมดลงส่งทาง AJAX (โดยไม่ต้องโหลดหน้าเพจใหม่) หรือไม่ส่งแล้วส่งโดยส่งโดย: ส่งเมื่อส่งเมื่อ: สมัครสมาชิกข้อความที่สำเร็จSudanSurinameสฟาลบาร์ และหมู่เกาะยานไมเอนSwazilandSwedenSwitzerlandสาธารณรัฐอาหรับซีเรียระบบสถานะระบบเวอร์ชัน THREE กำลังจะเปิดตัวแล้ว!TaiwanTajikistanมาดูที่เอกสาร Ninja Forms เชิงลึกของเราด้านล่างแทนซาเนีย, สหสาธารณรัฐภาษีจำนวนอัตราภาษีอนุกรมวิธานฟิลด์แม่แบบฟังก์ชันแม่แบบรายการคำข้อความส่วนประกอบข้อความข้อความที่ปรากฎหลังตัวนับข้อความจะปรากฎขึ้นหลังตัวนับตัวอักษร/คำพื้นที่ข้อความกล่องข้อความไทยขอบคุณที่กรอกข้อมูลในแบบฟอร์มนี้ขอบคุณที่อัพเดทเป็นเวอร์ชันล่าสุด! Ninja Forms %s ภูมิใจที่จะทำให้ประสบการณ์การบริหารการส่งของคุณเป็นไปอย่างราบรื่น!ขอบคุณที่อัพเกรด Ninja Forms เป็นเวอร์ชัน 2.7 โปรดอัพเดทส่วนขยาย Ninja Forms ใดๆ จาก ขอบคุณที่อัพเดท! Ninja Forms %s ทำให้การสร้างแบบฟอร์มง่ายดายขึ้นกว่าที่เคยมีมาก่อน!ขอบคุณที่ใช้ Ninja Forms! เราหวังว่าคุณมีทุกสิ่งที่คุณต้องการ แต่หากคุณยังมีคำถามใดๆ:ขอบคุณ {field:name} สำหรับการกรอกแบบฟอร์มของฉัน!(โดยปกติ) ตัวเลข 16 หลักที่ด้านหน้าบัตรเครดิตของคุณค่าตัวเลข 3 หลัก (ด้านหลัง) หรือตัวเลข 4 หลัก (ด้านหน้า) บนบัตรของคุณตัวเลข 9 จะเป็นตัวแทนตัวเลขใดๆ และ - จะถูกเพิ่มเข้าไปโดยอัตโนมัติเมนูแบบฟอร์มคือจุดเข้าาถึงการทำงานทั้งหมดของ Ninja Forms เราได้สร้าง %sแบบฟอร์มติดต่อ%s ของคุณไว้ให้แล้วเพื่อให้คุณมีตัวอย่าง คุณยังสามารถสร้างแบบฟอร์มติดต่อของคุณเองได้ด้วยการคลิก %sเพิ่มใหม่%sรูปแบบควรดูเหมือนตัวอย่างต่อไปนี้:การอัพเดทอินเตอร์เฟซในเวอร์ชันนี้จะวางรากฐานสำหรับการปรับปรุงที่ยอดเยี่ยมในอนาคต เวอร์ัชัน 3.0 จะสร้างขึ้นบนการเปลี่ยนแปลงเหล่านี้เพื่อทำให้ Ninja Forms เป็นโปรแกรมสร้างแบบฟอร์มที่เสถียร ทรงพลัง และเป็นมิตรกับผู้ใช้มากขึ้นไปอีกเดือนที่บัตรเครดิตของคุณหมดอายุ โดยปกติแล้วจะอยู่ที่ด้านหน้าของบัตรการตั้งค่าที่ใช้มากที่สุดจะถูกแสดงทันที ในขณะที่การตั้งค่าอื่นๆ ที่ไม่สำคัญมากนักจะถูกซ่อนเอาไวภายในส่วนที่สามารถขยายได้ชื่อที่พิพม์ไว้ด้านหน้าบัตรเครดิตของคุณรหัสผ่านที่ป้อนไว้ไม่ตรงกันผู้ที่สร้าง Ninja Formsการดำเนินการได้เริ่มต้นแล้ว โปรดรอสักครู่ อาจใช้เวลาหลายนาที คุณจะถูกเปลี่ยนทิศทางโดยอัตโนมัติเมื่อการดำเนินการนี้เสร็จสิ้นแล้วไฟล์ที่อัพโหลดมีขนาดเกินกว่าคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในแบบฟอร์ม HTMLไฟล์ที่อัพโหลดมีขนาดเกินกว่าคำสั่ง upload_max_filesize ใน php.iniไฟล์อัปโหลดถูกอัปโหลดเพียงบางส่วนเท่านั้นปีที่บัตรเครดิตของคุณหมดอายุ โดยปกติแล้วจะอยู่ที่ด้านหน้าของบัตรมี %1$s เวอร์ชันใหม่ ดูรายละเอียดเวอร์ชัน %3$s หรือ อัพเดทตอนนี้มี %1$s เวอร์ชันใหม่ ดูรายละเอียดเวอร์ชัน %3$s ไฟล์ที่อัปโหลดมีแบบฟอร์มไม่ถูกต้องมีฟิลด์ทั้งหมดในส่วนการกำหนดราคามีฟิลด์ทั้งในส่วนของข้อมูลผู้ใช้ตัวอักษรเหล่านี้เป็นตัวอักษรการซ่อนที่ไว้ล่วงหน้ามีฟิลด์พิเศษที่หลากหลายฟิลด์เหล่านี้ต้องตรงกัน!คอลัมน์นี้ในตารางการส่งจะเรียงลำดับเป็นตัวเลขนี่เป็นช่องที่จำเป็นต้องกรอกข้อมูลต้องระบุฟิลด์นี้นี่เป็นการทดสอบนี่คือสถานะของผู้ใช้นี่เป็นอีเมลสำหรับการดำเนินการนี่เป็นอีกหนึ่งทดสอบนี่คือเวลานานเท่าใดที่ผู้ใช้ต้องรอเพื่อส่งแบบฟอร์มนี่คือฉลากที่ใช้เมื่อดู/แก้ไข/ส่งออกการส่งนี่คือชื่อเชิงโปรแกรมของฟิลด์ของคุณ ตัวอย่างคือ: my_calc, price_total, user-totalนี่คือสถานะของผู้ใช้นี่คือค่าที่จะนำไปใช้หาก %sทำเครื่องหมาย%sนี่คือค่าที่จะนำไปใช้หาก %sไม่ได้ทำเครื่องหมาย%sที่นี่คือที่ที่คุณจะสร้างแบบฟอร์มด้วยการเพิ่มฟิลด์และลากลงในลำดับที่คุณต้องการให้ฟิลด์ปรากฎ แต่ละฟิลด์จะมีตัวเลือกต่างๆ เช่น ฉลาก ตำแหน่งฉลาก และตัวรองรับWordPress สงวนคำค้นหานี้ไว้ โปรดลองคำอื่นข้อความนี้จะแสดงในปุ่มส่งเมื่อใดก็ตามที่ผู้ใช้คลิก “ส่ง” เพื่อแจ้งให้พวกเขารู้ว่ากำลังประมวลผลการส่งอยู่ข้อความนี้จะแสดงให้ผู้ใช้เห็นเมื่อใส่ค่าที่ตรงกันในฟิลด์รหัสผ่านตัวเลขนี้จะถูกนำไปใช้ในการคำนวณหากทำเครื่องหมายที่กล่องตัวเลขนี้จะถูกนำไปใช้ในการคำนวณหากไม่ทำเครื่องหมายที่กล่องการตั้งค่านี้จะนำทุกสิ่งทุกอย่างที่เกี่ยวข้องกับ Ninja Forms ออกโดยสมบูรณ์ในช่วงการลบปลั๊กอิน รวมถึงการส่งและแบบฟอร์ม วิธีนี้ไม่สามารถย้อนกลับสู่สภาพเดิมได้แถบนี้จะมีการตั้งค่าแบบฟอร์มทั่วไป เช่น ชื่อและวิธีการส่ง รวมทั้งการตั้งค่าการแสดง เช่น ซ่อนแบบฟอร์มเมื่อกรอกสมบูรณ์แล้วส่วนนี้จะเป็นหัวเรื่องของอีเมลวิธีนี้จะป้องกันผู้ใช้จากการใส่สิ่งอื่นใดที่ไม่ใช่ตัวเลขสามส่งแบบจำกัดเวลาข้อความข้อผิดพลาดตัวตั้งเวลาติมอร์-เลสเต (ติมอร์ตะวันออก)ถึงในการปิดการใช้ใบอนุญาตใช้งานสำหรับส่วนขยาย Ninja Forms อันดับแรก คุณต้อง %sติดตั้งและเปิดใช้งาน%s ส่วนขยายที่เลือกไว้ จากนั้น การตั้งค่าใบอนุญาตใช้งานจะปรากฎขึ้นที่ด้านล่างในการใช้คุณสมบัตินี้ คุณสามารถวาง CSV ของคุณลงในบริเวณข้อความด้านบนได้วันที่วันนี้Toggle DrawerTogoTokelauTongaรวมถังขยะพยายามติดตามการกำหนด %s ฟังก์ชัน PHP date()%s แต่ไม่รองรับทุกรูปแบบTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluสองชนิดURLโทรศัพท์ในสหรัฐฯUgandaUkraineไม่ได้ทำเครื่องหมายค่าการคำนวณที่ไม่ได้ทำเครื่องหมายภายใต้พฤติกรรมแบบฟอร์มพื้นฐานในการตั้งค่าแบบฟอร์ม คุณสามารถเลือกหน้าเพจที่คุณต้องการให้เพิ่มแบบฟอร์มที่ส่วนล่างสุดของเนื้อหาหน้าเพจโดยอัตโนมัติได้อย่างง่ายดาย จะมีตัวเลือกที่คล้ายคลึงกันในทุกๆ หน้าจอแก้ไขเนื้อหาในแถบด้านข้างเลิกทำยกเลิกการทำทั้งหมดUnited Arab Emiratesสหราชอาณาจักรสหรัฐอเมริกาเกาะเล็กรอบนอกของสหรัฐอเมริกาข้อผิดพลาดการอัพโหลดที่ไม่รู้จักไม่เผยแพร่อัปเดทอัพเดทรายการอัปเดตเมื่อ: กำลังอัพเดทฐานข้อมูลแบบฟอร์มอัพเกรดอัพเกรดเป็น Ninja Forms THREEอัพเกรดอัพเกรดเสร็จสมบูรณ์URLUruguayใช้สมการ (ขั้นสูง)ใช้ปริมาณใช้ตัวเลือกแรกแบบกำหนดเองใช้รูปแบบสไตล์การเขียนปริยายของ Ninja Formsใช้ชอร์ตโค้ดต่อไปนี้เพื่อแทรกในการคำนวณขั้นสุดท้าย: [ninja_forms_calc]ใช้เคล็ดลับด้านล่างเพื่อเริ่มต้นใช้ Ninja Forms คุณจะสามารถใช้งานได้อย่างรวดเร็ว!ใช้ตัวเลือกนี้เป็นฟิลด์รหัสผ่านการลงทะเบียนใช้ตัวเลือกนี้เป็นฟิลด์รหัสผ่านการลงทะเบียน หากกล่องนี้ถูกทำเครื่องหมายไว้ ทั้งกล่องข้อความรหัสผ่านและใส่รหัสผ่านอีกครั้งจะถูกแสดงใช้เพื่อซ่อนฟิลด์สำหรับการดำเนินการผู้ใช้งานชื่อสำหรับแสดงของผู้ใช้ (หากล็อกอินอยู่)อีเมลผู้ใช้อีเมลของผู้ใช้ (หากล็อกอินอยู่)รายการผู้ใช้ชื่อตัวของผู้ใช้ (หากล็อกอินอยู่)ID ผู้ใช้ID ผู้ใช้ (หากล็อกอินอยู่)กลุ่มฟิลด์ข้อมูลผู้ใช้ข้อมูลผู้ใช้ฟิลด์ข้อมูลผู้ใช้นามสกุลของผู้ใช้ (หากล็อกอินอยู่)เมตาของผู้ใช้ (หากล็อกอินอยู่)ค่าที่ผู้ใช้ส่งค่าที่ผู้ใช้ส่ง:ผู้ใช้น่าจะกรอกแบบฟอร์มชนิดยาวจนเสร็จสมบูรณ์เมื่อพวกเขาสามารถบันทึกแล้วกลับมาทำการส่งในภายหลังจนเสร็จ

    ส่วนขยาย Save Progress สำหรับ Ninja Forms จะทำให้วิธีนี้เป็นไปอย่างรวดเร็วและง่ายดาย

    Uzbekistanตรวจสอบยืนยันเป็นที่อยู่อีเมลหรือไม่ (ต้องกรอกฟิลด์)ค่าVanuatuชื่อตัวแปรVenezuelaเวอร์ชั่นเวอร์ชัน %sอ่อนแอมากเวียดนามดูดู %sดูการเปลี่ยนแปลงดูแบบฟอร์มดูรายการดูการส่งดูการส่งดูบันทึกการเปลี่ยนแปลงฉบับเต็มหมู่เกาะบริติชเวอร์จินหมู่เกาะเวอร์จิ้น (สหรัฐอเมริกา)ไปหน้าเว็บหลักของปลั๊กอินWP Debug Modeภาษาของ WPขนาดการอัพโหลดสูงสุดของ WPWP Memory Limitเปิดการใช้งาน WP Multisiteโพสต์ระยะไกลของ WPWP Versionวาลลิสและฟุตูนาเราทำทุกอย่างที่ทำได้เพื่อให้การสนับสนุนที่ดีที่สุดแก่ผู้ใช้ Ninja Forms ทุกคน หากคุณประสบปัญหาหรือมีข้อสงสัย %sโปรดติดต่อเรา%sเราได้เพิ่มตัวเลือกเพื่อนำข้อมูล Ninja Forms ออกทั้งหมด (การส่ง แบบฟอร์ม ฟิลด์ ตัวเลือก) เมื่อคุณลบปลั๊กอิน เราเรียกตัวเลือกนี้ว่าตัวเลือกนิวเคลียร์เราทราบว่าแบบฟอร์มของคุณไม่มีปุ่มส่ง เราสามารพเพิ่มปุ่มให้คุณได้โดยอัตโนมัติคาดเดาได้ง่ายข้อมูลเว็บเซิร์ฟเวอร์ยินดีต้อนรับสู่ Ninja Forms ยินดีต้อนรับสู่ Ninja Forms %sWestern Saharaอะไรที่เราสามารถใช้ช่วยคุณได้บ้างต้องทำการทดลองอะไรบ้างก่อนที่จะติดต่อฝ่ายสนับสนุนคุณต้องการตั้งชื่อรายการยอดนิยมนี้เป็นชื่ออะไรมีอะไรใหม่ๆ บ้างเมื่อสร้างและแก้ไขแบบฟอร์ม ให้ไปที่ส่วนที่สำคัญี่สุดได้โดยตรงควรส่งอีเมลนี้ถึงใครคำที่เหลือคำตัวหุ้มY-m-dY/m/dปี-เดือน-วัน (YYYY-MM-DD)YYYY/MM/DDYemenใช่คุณมีคุณสมบัติที่จะอัพเกรด Ninja Forms THREE เป็นรุ่นขั้นสุดท้ายก่อนใช้งานจริง %sอัพเกรดตอนนี้%sคุณยังสามารถรวมวิธีเหล่านี้สำหรับการใช้งานเฉพาะด้านได้เช่นกันคุณสามารถใส่สมการการคำนวณได้ที่นี่โดยใช้ field_x เมื่อ x คือ ID ของฟิลด์ที่คุณต้องการจะใช้ ตัวอย่างเช่น %sfield_53 + field_28 + field_65%sคุณไม่สามารถส่งแบบฟอร์มโดยที่ไม่เปิดใช้งาน Javascript ได้คุณไม่มีสิทธิ์ติดตั้งการอัพเดทปลั๊กอินคุณไม่มีสิทธิ์คุณไม่ได้เพิ่มปุ่มส่งในแบบฟอร์มของคุณคุณต้องล็อคอินอยู่เพื่อดูตัวอย่างแบบฟอร์มคุณต้องตั้งชื่อให้กับรายการยอดนิยมนี้คุณต้องใช้ JavaScript เพื่อส่งแบบฟอร์มนี้ โปรดเปิดใช้งาน JavaScript แล้วลองอีกครั้งคุณซื้อ คุณจะพบว่ามีมาพร้อมกับอีเมลการซื้อของคุณส่งแบบฟอร์มของคุณเรียบร้อยแล้วเซิร์ฟเวอร์ของคุณไม่ได้เปิดใช้ fsockopen หรือ cURL - PayPal IPN และสคริปต์อื่น ๆ จะไม่สามารถติดต่อกับเซิร์ฟเวอร์อื่นได้ กรุณาติดต่อผู้ให้บริการโฮสท์เซิร์ฟเวอร์ของคุณไม่ได้เปิดใช้คลาส %sไคลเอนต์ SOAP%s ปลั๊กอินเกทเวย์บางอย่างที่ใช้ SOAP อาจไม่ทำงานตามที่คาดไว้เซิร์ฟเวอร์ของคุณได้เปิดใช้ cURL และปิดใช้ fsockopenเซิร์ฟเวอร์ของคุณได้เปิดใช้ fsockopen และ cURLเซิร์ฟเวอร์ของคุณได้เปิดใช้ fsockopen และปิดใช้ cURLเซิร์ฟเวอร์ของคุณได้เปิดใช้ไคลเอนต์ SOAPเวอร์ชันส่วนขยายการอัพโหลดไฟล์ของ Ninja Forms ของคุณไม่สามารถใช้ร่วมกับ Ninja Forms เวอร์ชัน 2.7 ได้ ส่วนขยายต้องเป็นเวอร์ชัน 1.3.5 เป็นอย่างน้อย โปรดอัพเดทส่วนขยายที่ เวอร์ชันส่วนขยายบันทึกความก้าวหน้าของ Ninja Forms ของคุณไม่สามารถใช้ร่วมกับ Ninja Forms เวอร์ชัน 2.7 ได้ ส่วนขยายต้องเป็นเวอร์ชัน 1.1.3 เป็นอย่างน้อย โปรดอัพเดทส่วนขยายที่ ยูโกสลาเวียZambiaZimbabweรหัสไปรษณีย์รหัสไปรษณีย์a - เป็นตัวแทนตัวอักขระตัวอักษร (A-Z,a-z) - ยอมให้ใส่เฉพาะตัวอักษรเท่านั้นคำตอบbutton-secondary nf-download-allโดยอักขระที่เหลือทำเครื่องหมายคัดลอกกำหนดเองd-m-Ydashicons dashicons-updateทำซ้ำfoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Yไม่มีจากของผลิตภัณฑ์ A และ ผลิตภัณฑ์ B เป็นเงินหนึ่งone_week_supportรหัสผ่านกำลังดำเนินการผลิตภัณฑ์เป็นจำนวน reCAPTCHAภาษาของ reCAPTCHAคีย์ลับ reCAPTCHAการตั้งค่า reCAPTCHAคีย์เว็บไซต์ reCAPTCHAธีมของ reCAPTCHAการตั้งค่า reCaptchaเรียกใหม่smtp_portสามชื่อเรื่องสองไม่ได้ทำเครื่องหมายอัพเดทแล้วuser@gmail.comเวอร์ชั่นwp_remote_post() ล้มเหลว PayPal IPN อาจไม่ทำงานกับเซิร์ฟเวอร์ของคุณwp_remote_post() ล้มเหลว PayPal IPN จะไม่ทำงานกับเซิร์ฟเวอร์ของคุณ โปรดติดต่อผู้ให้บริการโฮสติ้งของคุณ ข้อผิดพลาด:wp_remote_post() เรียบร้อยแล้ว - PayPal IPN ทำงานlang/ninja-forms-es_MX.mo000064400000314607152331132460011271 0ustar000)Snnn n#o+o& Q^!o Ŋ ݊ʋӋ 1@H M Y cm|  Ɍь׌ #%?0e'ύM؍O&Uv̎  (<.ks| ȏϏ , ?Ki  ĐȐѐאߐ $(?hm! ‘͑Ցّ ʒ  0 LWnu { œ֓  $. =IOV^ow ”7Ԕ, q9 ܕ ?,/ MYk ǖіٖ   %* 0<Xl q{ !՗w  ט  Kh`JnQOlQD<S%1EqHޟǠޠ  ( 6D'U} š ס  (8M]x}¢ʢ΢֢!ܢ/ P[ae n&{ ǣ ͣ أ2%6L=  ̤ ڤ!&. >LT\s |ӥ   (3 < F S ^ it&z ŦʦkЦ<@F W b mw{  ȧ_ק7?F#f ֨٨ $9=DK T _ jw Ω %.C Ygot  WԪ ,7 GU^ my  ȫԫ-D[uȬݬo!tc1|,fUXfZUp5 AFI`y!4 2PUd}D0=0nr{óݳ##!EUYafjNԴ   & 3> FPe { Ƶε׵ݵ #4Lcr  Ѷڶ a m5x/޷!2<0o"$#G#k#8"C$yh( )!+K(wj "BJQqz  ݼ  ,DSY` oz̽  "< _:l ľʾӾ  &;D Vd ju ɿҿ+ٿ >.m*v+&RZ n ?&7F*Oz   )?C LY^n     2 @NVnG %(*S[ _ip  1  = S]s   r* %   &(4 ] gr ##* -:!B"d  & &0 W an }     %3D K<V   +(T]eh$qdSn/D;t9J5*%GL2$ %FZG1.yFx*0-9^+!99Rl{4B\:35:q#Z?A0r&G !.B[^D : GUZbhn^t +26;?HO Wa}kpy $  )1NWimu ,O[4)(Ir w  ,Daz c6n    0AYr   $'bW %8*^ N! ! ' 2=CWG46l40(%)NHx5*1{4S+4. zO /7<CI dn  ':Obu  Bf&8"0%N'*v`A7D |  r O$ta(FN (6J ^l !5K_ 5 B M3Z. &> N[l  FB =H-KT\ d n z)  &* 1<D3]   "-1:J[bf jxX   #-4HY_h#" 4 =J*Q|   #  7 NA      M  - /H +x 1 , %  ) J &` #          ' E !M o x       /    ( 1 @ eH  '  %  #9 R ] gry  LY#}22%)G(f(  %=Ww%.5 G R]v   &1P}d ' 5)Nx!0 #%= c my+(!34h *! ,MU^{+8(d #2DTn !-(<1[37620cuZVp9, Ii q{ *AYm+~ #    & @ P i  * (    )! ?! I! W!e!i!q! ;"F"`"u" """" "#1+#]#s## #######$$5$9$ A$$b$"$$$$$$$%% %'%=% P%]%n%B%4%& &&& &P&%'('8'I'Z'r'''' ''' '' ((($(,(1(9(N(f((((((( (.() ) )) ))* )*3*F*V*f*o* **G+,,l>--m-.`.].LZ/K/4/8(0~a0J0H+1Ht1233334"424F4[4x44424445 5#575@5Z5l5|55 55555" 6.6360;6l6s666666,6 666667>7 F7R7X7^7 g7)t777 77777)898 M8UX8#88888 9>93\9999999 99 :$: 8:Y: o::: :: :: : : :: ; ; ;+;*1; \;g;n;w;;;;!<%<+< :< E< Q<[<)`<<<<<<<<z<[=c= l=&==== ==> >#>"=> `>n>>>>> > >> > > >?!?8?&W?~?*? ?????@ @ @0@8@>@P@W@o@@ AA5AEAKA [A2iA A AAAA AA B&B6BTB"qB!B&BB.B)*CTClCC)D.D=DD~EFrFyGw~GG;HHHH I)IHI&eIJII&I%J!BJdJ lJzJJJJJJgJ2JKB}KK KKKKLL2L*OL-zL/LLLLLM<MRBMMMM M M N N N)#NMN fNpNNN NN NNNNOOO ,O8O)UOOOO OOO O OO P"PPP[PXKQ*QQQ4R<6RsRBS8GSCS"S<S$T<7TJtTT;EU$UAU=U9&V|`VV-V)W2W :W[WdW,kW1W1WW XX/X 3X?X[XuX XXXX XX!XY Y*Y GY RY,]Y*Y/YYOYFZ OZ[ZcZiZrZZ ZZZZZ[[5[;[M[.m[+[ [ [[@[&\'5\C]\ \=\ \\]"]@]%^]&]>] ]]% ^0^P^L_^^^+^^_$_>:_!y_____ ____ _ `+` 1`<`U`Y```p`x```````a a "a.a @aLa]a+uaaa,ahaMgb bbb4bcc c(c/cJcRc dcpc wc?cc!c c0 d#g"Tgwggg)g$gggg hh"h!9h [hehthhhhh h h@h:2i mixi i i i iiiiiii jjjj6j>jQjcj ljUyjjjj kk2kHk[kak*sk9k kkk k&l,lul[Amum5nOInGnMn/o)p0pG(qpqBr,Zr'rr^9sFs0sZtktu/u2uFu,=v%jvv=vvw#w6w+UwwHwiw`Ixx2x4x1yCzczqz:a{={{|-l}B}}}}}}~:~?~O~CSejsyl    &4KRV_cy @   "/1?q , '?CKj*z4Vڃr12ׄ-84 A'T |"*؆!)#=#a  S   #/7; BN^ bp! ډ$C\sn?ӌ ׌+BH,Pʍ/ KV _io u e@=;ڏI`:yC/]( F)ؑAK/26' ȕ ϕٕa Y c ֖ߖ#).1CX\ m y ϗ + 6@EM Q \hzKxϘ>H?1\eoEMyugl8 V ON%;T{~!*4P}J{9 "']?+7lPi|0UgMJR?a.a&l'AQ,yFGu*T"g=)$BFWi S'"A|j -`Zx MsMCQ^~= S%!%_pw <jS)ibZd4+'/H6x2p\ {pyz85[B<kY?5ON# VYIEzrl#{p%6 Ey;G@B  S\CvsNQ`5(|@+fjT3,Lf^ _b)dXV)#hx8]LPr .5ZAQ B*qa eXE%|F_Y7s-mx]v, 49w}A{0Ck@!\z#;$6th.? pxLt an1NVg1&.vC !ZR~Kc8/lomno>-Dr)I[]H&rcDz4j(D1gDY`h v -H/nN:iII>^j-;zbk8,+vfk*WZw2 }\]HW|:&UC6d>yP<MeJu SK( $R /d(,0Uc0VFKLRuIX9Xcdt Y#-H# _P qq>,:<hef Au6!O=w~;}n/O1@$2.*(Km:$EO>Q"*'2@+W!L%mTG'K93~^2Wh<3oqG[90F&UU`+et&bw5(nt XBq3o"m0fG34 i[)}b_a=`77k  J/"D :=7TJrs$^[s.cR Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyAprAprilArgentinaArmeniaArubaAttach CSVAttachmentsAugAugustAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DecDecemberDefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FebFebruaryFieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFrFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriFridayFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJanJanuaryJapanJavaScript disabled error messageJohn DoeJordanJulJulyJunJuneJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.MarMarchMarshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMayMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.MoMock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonMonacoMondayMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNext MonthNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NovNovemberNumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOctOctoberOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.Previous MonthPricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSatSaturdaySaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSepSeptemberSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSuSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSunSundaySurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeThuThursdayTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTuTueTuesdayTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWeWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWedWednesdayWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2018-01-08 19:05-0500 Last-Translator: Jesus Garcia Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.5.5 X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-SourceCharset: UTF-8 X-Poedit-SearchPath-0: . Campos Abrir en una nueva ventana Deshacer todo instalada. La versión actual es producto(s) para requiere una actualización Tienes la versión #%1$s borrador actualizado. Vista previa%3$s%1$s restaurado para revisión desde %2$s.%1$s programado para: %2$s. Vista previa%4$s%1$s enviado. Vista previa%3$s%n se utilizará para significar el número de segundos%s atrás%s publicado.%s guardado.%s actualizada.Se desactivó %s.%sPermitir%s%sChecked%s Valor de Cálculo%sNo permitir%s%sUnchecked%s Valor de Cálculo* - Representa un tipo alfanumérico (AZ , az, 0-9 ) - Esto permite que ambos números y letras que se introduzcan- Ninguno- Seleccione Uno- Seleccione un Campo- Selecciona un producto- Selecciona una variable- Selecciona un formularioVer Todos los Tipos9 - Representa un tipo numérico ( 0-9 ) - Sólo permite números para ingresar
    • a - Representa un carácter alfa (A-Z,a-z) - Solo permite ingresar letras.
    • 9 - Representa un carácter numérico (0-9) - Solo permite ingresar números.
    • * - Representa un carácter alfanumérico (A-Z,a-z,0-9) - Esto permite ingresar tanto números como letras.
    Una respuesta que distingue mayúsculas y minúsculas para prevenir los envíos de tu formulario.Se está por hacer una actualización importante a Ninja Forms. %sObtén más información acerca de las nuevas funciones, la compatibilidad con versiones anteriores y las preguntas frecuentes.%sUna experiencia simplificada y más poderosa de construir formularios.Arriba del ElementoArriba del campoNombre de AcciónAcción ActualizadaAccionesActivarActivoAñadirAñadir DescripciónAgregar formularioAñadir NuevoAñadir campo nuevoAñadir nueva formaAñadir nuevoAñadir Sumisión NuevaAgregar nuevas condicionesAñadir Operación Agregar botón EnviarAñadir ValorAñadir acciones al formularioAñadir campos al formularioAñadir formulario a esta páginaAñadir acción nuevaAñadir campo nuevoAñade suscriptores e incrementa tu lista de correos electrónicos mediante este formulario de inscripción al boletín informativo. Puedes agregar o eliminar campos según sea necesario.Licencias de complementosComplementosDirecciónDirección 2Agrega una clase adicional a tu elemento del campo.Agrega una clase adicional a tu capa de campo.E-mail de AdministraciónEtiqueta de AdministraciónAdministraciónAvanzadasEcuación AvanzadaConfiguración AvanzadaEnvío avanzadoAfganistán Después de TodoFormulario PosteriorEtiqueta Posterior¿De acuerdo?Albania Argelia TodosTodo Sobre FormulariosTodos los CamposTodos los FormulariosTodos los ÍtemsTodos los formularios actuales permanecerán en la tabla "Todos los formularios" En algunos casos, algunos formularios pueden duplicarse durante este proceso.Permite al usuario registrarse para tu próximo evento utilizando este formulario fácil de completar. Puedes agregar o eliminar campos según sea necesario.Permite que tus usuarios se comuniquen contigo utilizando este sencillo formulario de contacto. Puedes agregar o eliminar campos según sea necesario.Permite la entrada de texto.Permite a los usuarios elegir más de una unidad de este producto.Ya casi...Junto con la ficha "Construir su formulario", hemos eliminado "Notificaciones" en favor de "Los correos electrónicos y acciones." Esta es una indicación mucho más clara de lo que puede hacerse en esta ficha. Samoa Americana Ocurrió un error inesperado.Andorra Angola AnguilaRespuestaAntártida Anti-SpamPregunta antispam (Respuesta = respuesta)Mensaje de Anti-SpamAntigua y Barbuda Cualquier tipo que usted deposita en la caja "máscara personalizada" que no está en la lista de abajo se introducirá automáticamente para el usuario mientrás se escribe y no será desmontableAnexar Un Ninja FormAnexar un Ninja FormsAnexar a la PáginaAplicar AbrAbrilArgentina Armenia ArubaAdjuntar CSVArchivos AdjuntosAgoAgostoAustralia AustriaCampos total automáticoAutomáticamente Da el Total de Valores de cálculoDisponibleTérminos disponiblesAzerbaiyán Regresar a la ListaRegresar a la listaReservar / RestaurarReservar Ninja FormsBahamasBahrein BangladeshBarBarbadosCampos básicosAjustes BásicosLavaboBazBccAntes de TodoFormulario AnteriorEtiqueta AnteriorAntes de solicitar ayuda de nuestro equipo de Asistencia técnica consulta lo siguiente:Fecha de ComenzarFecha de inicioBelarús Bélgica BeliceDebajo del ElementoDebajo del campoBeninBermudas¿Mejor método de contacto?El Mejor Soporte en el NegocioAjustes de Campo Mejor-Organizados Mejor Administración de LicenciasBután FacturaciónFormularios en blancoBoliviaBosnia y Herzegovina BotswanaIsla Bouvet BrasilTerritorio Británico del Océano Índico Brunei DarussalamConstruya Su FormularioBulgariaAcciones en BloqueBurkina FasoBurundiBotónCVCCalcValor calcCálculoMétodo de CálculoAjustes de CálculoNombre del CálculoCálculosLos cálculos se devuelven con la respuesta AJAX ( respuesta -> datos -> calcsCamboya Camerún Canadá CancelarCabo VerdeEl código Captcha no coincide. Ingresa el valor correcto en el campo captchaDescripción CVC de la TarjetaEtiqueta CVC de la TarjetaDescripción del Mes de Caducidad de la TarjetaEtiqueta del Mes de Caducidad de la TarjetaDescripción del Año de Caducidad de la TarjetaEtiqueta del Año de Caducidad de la TarjetaDescripción del Nombre de la TarjetaEtiqueta de Nombre de la TarjetaNúmero de la TarjetaDescripción del Número de la TarjetaEtiqueta del Número de la Tarjeta Islas Caimán CcRepública Centroafricana ChadCambiar el ValorCarácter(es)Caracteres restantesTiposTrampeando, eh?Revisa nuestra documentaciónCasillaLista del cuadro de verificaciónCasillasMarcadoValor de cálculo marcadoChileChinaLa Isla de NavidadCiudadNombre de la clase¿Eliminar el formulario completado con éxito?Islas Cocos ( Keeling) Recibir pagoColombiaCampos comunesComorasEcuaciones complejas pueden ser creados añadiendo entre paréntesis: %s( field_45 * field_2 ) / 2%s.ConfirmarSirve para confirmar que no eres un botCongoLa República Democrática del Congo Formulario de contactoComuníquense conmigoComunícate con nosotrosContenedorContinuarIslas CookCoste Menú desplegable de costoOpciones de costoTipo de costoCosta RicaCosta de Marfil No se pudo activar la licencia . Verifique por favor su número de licencia PaísCrea una clave única para identificar y orientar tu campo para desarrollo personalizado.Tarjeta De CréditoCódigo de verificación de la tarjeta de créditoCódigo de verificación de la tarjeta de créditoVencimiento de la tarjeta de créditoNombre completo de la tarjeta de créditoNúmero de tarjeta de créditoCódigo postal de la tarjeta de créditoCódigo postal de la tarjeta de créditoCréditosCroacia (Nombre Local: Hrvatska)CubaMonedaSímbolo de MonedaPágina corrientePersonalizaciónClase CSS PersonalizadaClases CSS PersonalizadasNombres de clase personalizadosGrupo de Campos PersonalizadosMáscara personalizadaDefinición de Máscara PersonalizadaCampo personalizado borrada.Campo personalizado actualiza.Primera Opción Personalizada CyprusRepública Checa DD-MM-AAAADD/MM/YYYYDEPURAR: Cambiar a 2.9.xDEPURAR: Cambiar a 3.0.xOcuroiDatos restaurados con exito!FechaCreado elFormato de FechaAjustes de FechaFecha PresentadoFecha ActualizadoRecogedor de FechaDesactivarDesactivarDesactivar Todas las LicenciasDesactivar LicenciaDesactivar las licencias de extensión de Ninja Forms de forma individual o en grupo a partir de la ficha de configuración .DicDiciembreDefectoPaís PredeterminadoPosición predeterminada de la etiquetaZona Horaria por DefectoValor predeterminado para la fecha actualValor de DefectoPor defecto la zona horaria es %sPor defecto la zona horaria es %s - debe ser UTCCampos DefinidosBorrarEliminar (^ + D + clic)Borrar permanentementeEliminar este formulario Borrar este artículo permanentementeDinamarcaDecripciónContenido de Descripción Posición de Descripción ¿Sabías que puedes aumentar la conversión de formularios al dividir formularios más grandes en otros más pequeños, es decir, partes que se pueden asimilar más fácilmente?

    La extensión de los formularios multipartes para Ninja Forms hace que esto sea rápido y sencillo.

    Desactivar notificaciones del administradorDesactivar Autocompletador del NavegadorDesactivar EntradaDesactivar Editor de Texto Enriquecido para Móvil ¿Desactivar la entrada?DescartarVisualizaciónTítulo del Formulario de Visualización Nombre mostradoOpciones de visualizaciónMuestra esta variable de cálculoTítulo de VisualizaciónVisualización de su Formulario DivisorDjiboutiNo mostrar estes artículos.DocumentaciónDocumentación próximamente .La documentación está disponible abarca desde %sTroubleshooting%s a nuestro %sDeveloper API%s. Nuevos documentos se puede añadir cada día.NO aplica a la vista previa del formulario.Aplica a la vista previa del formulario.DominicaRepública DominicanaHechoDescargar Todas las SumisiónesDesplegableDuplicarDuplicar (^ + C + clic)Duplicar Formulario EcuadorEditarEditar AcciónEditar FormularioEditar elementoEditar Artículo del MenuEditar SumisiónEditar este artículoEdición del campoEdición del campoEgipciaEl SalvadorElementoDirección de correo electrónicoDirección de Correo Electrónico y AcciónesDirección de emailMensaje de Correo ElectrónicoFormulario de suscripción de correo electrónicoDirección de correo electrónico o buscar un campoDirecciónes de correos electrónicos o buscar un campoCorreo electrónico aparecerá ser de esta dirección.Correo electrónico aparecerá ser de este nombre.Emails y AccionesFecha de TerminarAsegúrate de que este campo esté completo antes de permitir que se envíe el formulario.Ingresa el texto que deseas mostrar en el campo antes de que un usuario ingrese datos.Ingresa la etiqueta del campo del formulario. Así es cómo los usuarios identificarán los campos individuales.Ingresa tu dirección de correo electrónicoAmbienteecuaciónEcuación (avanzado)Guinea EcuatorialEritreaErrorMensaje de error dado si todos los campos obligatorios no son completadosEstoniaEtiopía Registro de eventosAmpliar menúMes de Caducidad (MM)Año de Caducidad (YYYY)ExportarExportar Campos FavoritosExportar CamposExportar FormularioFormas de exportaciónExportar un formularioExportar este artículoAmpliar Ninja FormsCARGA DE ARCHIVONo se pudo escribir el archivo en el disco.Islas Malvinas ( Falkland) Islas Feroe Los Campos FavoritosFavoritos importados correctamente.FebFebreroCampoCampo #Identificación del CampoClave del CampoNo se encontró el campoOperaciones de Campo CamposCampos marcados con un * son obligatorios.Campos marcados con %s*%s son requeridosFijiError al cargar el archivoCarga de archivo en curso.Carga de archivo detenida por extensión.FinlandiaPrimer NombreArreglar estoFooFoo BarPor ejemplo, si has tenido una clave de producto que se encontraba en forma de A4B51.989.B.43C, puede enmascarar con: a9a99.999.a.99a, lo que obligaría a todos a's a ser letras y las 9s a ser númerosFormularioFormulario predeterminadoFormulario EliminadoCampos del formularioFormulario Importado con éxito.Clave FormularioNo se encontró el formularioPrevista de Formulario Ajustes del Formulario GuardadosEnvíos de formulariosError de importación de plantilla de formulariosTítulo de FormularioFormulario con cálculosFormatoFormulariosFormluarios EliminadosFormularios Por PáginaViFranciaFrancia, Metropolitana Guayana FrancésPolinesia FrancésTerritorios Franceses del Sur VieViernesViernes, 18 de noviembre de 2019Dirección de que proviene el correoNombre de quién procede el correoHistorial de Cambios CompletoPantalla completaGabón GambiaGeneralConfiguración GeneralGeorgiaAlemaniaObtener AyudaObtener más accionesObtener más tiposObtén ayudaObtener soporte Obtener Informe del SistemaObtén una clave de sitio para tu dominio registrándote %saquí%sComienza agregando el primer campo de tu formulario.Comienza agregando el primer campo de tu formulario. Simplemente haz clic en el signo positivo y selecciona las acciones que desees. Es así de fácil.Empezando Primeros pasos con Ninja FormsGhanaGibraltarDale a su formulario de un título. Así es como econtrará el formulario luego.IrIntento fallidoIr a FormulariosIr a Ninja FormsIr a la primera páginaIr a la última página Ir a la página siguiente Ir a la página anterior GreciaGroenlandia GranadaDocumentación CrecienteGuadalupeGuamGuatemalaGuineaGuinea-Bissau GuayanaHTMLHaití Mitad de la pantallaIslas Heard y Mc Donald¡Hola, Formularios Ninja!AyudaTexto de AyudaTexto de ayuda aquíOcultaCampo OcultadoOcultar etiquetaOcultar Este¿Ocultar el formulario completado con éxito?Sugerencia: La contraseña debe tener al menos siete tipos. Para hacerlo más fuerte, use letras mayúsculas y minúsculas, números y símbolos como ! ? " $% ^ & Amp; ) .Santa Sede (Ciudad del Vaticano)URL de InicioHondurasHoney PotError de HoneypotMensaje de error Honeypot Hong KongEtiqueta de ganchoNombre del host¿Cómo va eso?HungríaDirección de IPIslandia Si " texto desc" está activado, habrá un signo de interrogación %s colocado al lado del campo de entrada. Al pasar por encima de este signo de interrogación se mostrará el texto desc.Si "el texto de ayuda" está activado, habrá un signo de interrogación %s colocado al lado del campo de entrada. Al pasar por encima de este signo de interrogación se mostrará el texto de ayuda.Si se marca esta casilla, todos los datos de Ninja Forms serán eliminados de la base de datos debido a la supresión. %sAll form and submission data will be unrecoverable.%sSi se selecciona esta casilla, Ninja Forms despejará los valores del formulario después de que ha sido enviado correctamente. Si se selecciona esta casilla, Ninja Forms ocultará la forma después de haber sido enviado correctamente .Si se selecciona esta casilla, Ninja Forms enviará una copia de este formulario (y cualquier mensaje adjunta) a esta dirección.Si se selecciona esta casilla, Ninja Forms validará esta entrada como una dirección de correo electrónico.Si se marca esta casilla, ambos los cuadros de texto contraseña y re-contraseña se emitirán.Si esta casilla está activada, esta columna en la tabla de sumisiones ordenará por número.Si usted es un humano y está viendo este ámbito, por favor deje en blanco.Si eres un ser humano y estás viendo este campo, por favor déjalo vacío.Si usted es un ser humano, por favor, más despacio.Si deja la casilla vacía, se utilizará ningún límiteSi te suscribes, algunos datos sobre la instalación de Ninja Forms se enviarán a NinjaForms.com (esto NO incluye tu envío).Si omites esto, ¡no hay problema! Ninja Forms aún así funcionará bien.Si desea enviar un valor vacío o calc, debe utilizar ' ' para aquellos.Si usted quisiera que su formulario le notifique a través de correo electrónico cuando un usuario hace clic en Enviar, usted puede configurar esto en esta ficha. Usted puede crear un número ilimitado de mensajes de correo electrónico, incluyendo mensajes de correo electrónico enviados al usuario que llenó el formulario .Si tienes formularios "faltantes" después de actualizar a la versión 2.9, este botón intentará recuperar tus antiguos formularios para que se muestren en esa versión. Todos los formularios actuales permanecerán en la tabla "Todos los formularios"ImportarImportar/ExportarImportar / Exportar SumisionesImportar Campos FavoritosImportar FavoritosImportar camposImportar FormularioImportar formulariosImportar Lista de ArtículosImportar un formularioImportar/ExportarClaridad Mejorada¿Incluir en la auto- totales? (Si está activado)Respuesta incorrectaAumentar conversacionesIndiaIndonesiaMáscara de EntradaInsertarInsertar Todos los CamposInsertar un CampoInsertar enlaceInsertar mediosDentro del ElementoInstaladoPlugins InstaladosGrupos de interésCarga de formulario inválido.Id. de formulario inválidoIrán ( República Islámica del) IrakIrlanda¿Es esta una dirección de correo electrónico?IsraelEs así de fácil. O bien...ItaliaJamaicaEneEneroJapón Mensaje de error de JavaScript discapacitadoJuan PérezJordaniaJulJulioJunJunioSimplemente haz clic aquí y selecciona los campos que desees.Kazajstán KeniaClaveKiribatiKitchen SinkRepública Popular Democrática de Corea República de Corea Kuwait Kirguistán EtiquetaEtiqueta aquíNombre de la etiquetaPosición de la EtiquetaEtiqueta usada al ver y exportar envíos.Etiqueta,Valor,CalcEtiquetas Idioma usado por reCAPTCHA Para obtener el código para tu idioma, haz clic %saquí%sRepública Democrática Popular LaoApellidoLetonia Elementos de DisposiciónCampos de diseñoAprende MásObtén más información acerca de los formularios multipartesObtén más información acerca de Guardar progresoLíbano A la Izquierda del ElementoIzquierda del campoLesotoLiberiaJamahiriya Árabe Libia LicenciasLiechtenstein SencilloLímite de entrada para este númeroMensaje de que el Límite llegóLimite las SumisionesLimite de entrada a este númeroListaMapeo del campo listaTipo de ListaListasLituania CargandoCargando...UbicaciónConectadoFormulario largo - Luxemburgo MM-DD-AAAADD/MM/AAAAMacauAntigua República Yugoslava de Macedonia MadagascarMalawiMalaysiaMaldivasMalí MaltaAdministra las solicitudes de cotización desde tu sitio web fácilmente con esta plantilla. Puedes agregar o eliminar campos según sea necesario.MarMarzoIslas MarshallMartinica Mauritania Mauricio MáxNivel Máximo de Entrada de la AnidaciónValor máximo MayoQuizás más tardeMayotte MedioMensajeEtiquetas de MensajeMensaje mostrado a los usuarios si la casilla "registrado" de arribe se comprueba y que no está en el sistema de entrada.MetaboxMéxico Estados Federados de Micronesia Migraciones y datos falsos completos. MínValor mínimo Campos de miceláneasDiscrepancia Falta una carpeta temporal.LuAcción de correo falsoAcción de guardado falsoAcción de mensaje de falso éxitoModificado elRepública de Moldova LunMónaco LunesMongoliaMontenegroMontserrat Más por venir Marruecos Mover este artículo a la BasuraMozambique Selección múltipleProducto múltiple - elige muchosProducto múltiple - elige unoProducto múltiple - menú desplegableMulti-SeleccionarTamaño de la Casilla de Multi-SeleccionarMúltipleMi primer cálculoMi segundo cálculoVersión MySQLMyanmar NombreNombre en la TarjetaNombre o camposNamibiaNauru¿Necesita ayuda?Nepal Países Bajos (Holanda)Antillas Holandesas No veas ninguna notificación del administrador en el panel de control de Ninja Forms. Desmarca esta opción para verlas nuevamente.Nueva AcciónEtiqueta de Constructor NuevoNueva CaledoniaNuevoSumisión NuevaNueva ZelandaFormulario de inscripción al boletín informativoSiguiente MesNicaraguaNíger NigeriaAjustes de Ninja FormsNinja FormsNinja Forms- Está ProcesandoNinja Forms Historial de CambiosNinja Forms DevDocumentación de Ninja FormsNinja Forms Está ProcesandoPresentación de formularios ninjaEstado del Sistema de Ninja FormsLa documentación de Ninja Forms THREEActualización de Ninja FormsProcesamiento de actualización de Ninja FormsActualizaciones (Upgrades) de Ninja FormsVersión de Ninja FormsNinja Forms WidgetNinja Forms también viene con una plantilla simple de función que se puede colocar directamente en un archivo de plantilla php. %sLa ayuda básica de Ninja Forms va aquí.Ninja Forms no puede ser activado por un red. Favor de visitar el tablero (dashboard) de cada sitio para activar el plugin. ¡Ninja Forms realizó todas las actualizaciones disponibles!Ninja Forms es creado por un equipo mundial de desarrolladores que tienen como objetivo proporcionar al # 1 WordPress comunidad de creación de formularios plugin.Ninja Forms necesita procesar %s actualización(es). Esto puede demorar unos minutos en completarse. %sComenzar a actualizar%sNinja Forms tiene que actualizar la configuración de correo electrónico, haga clic en %shere%s para iniciar la actualización .Ninja Forms necesita actualizar la tabla de presentaciones, haga clic en %shere%s para iniciar la actualización .Ninja Forms tiene que actualizar sus notificaciones de formulario, haga clic en %shere%s para iniciar la actualización .Ninja Forms tiene que actualizar la configuración de formulario, haga clic en %shere%s para iniciar la actualización.Ninja Forms proporciona un widget que se puede colocar en cualquier área Widgetized de su sitio y seleccionar exactamente qué formulario usted desea que se muestren en ese espacio.Código de Ninja Forms usado sin especificar un formulario.NiueNoNo Acción EspecificadoNo Campos Favoritos EncontradosNo se encontró ningún campo.Ninguna Sumisión EncontradaNo Sumisiones Encontradas en la BasuraNo hay términos disponibles para esta taxonomía. %sAgregar un término%sNo se cargó ningún archivo.No se ha encontrado ningun formulario.No se seleccionó ninguna taxonomía.No se encontró cambios válidos.NingunoIsla Norfolk Islas Marianas del NorteNoruegaMensaje de No Estar Registrado Aún noNo es troba a la papereraNotaEl texto de la nota se puede modificar en las configuraciones avanzadas del campo Nota a continuación.Aviso: Se requiere JavaScript para este contenido.Aviso: Código de Ninja Forms usado sin especificar un formulario.NovNoviembreNúmeroError de número máximoError de número mínimoOpciones numéricasCantidad de estrellasNúmero de cifras decimales.Número de segundos para la cuenta atrás Cantidad de segundos para la cuenta regresivaCantidad de segundos para el envío programado.Número de estrellas OctOctubreOmán UnoSolamente una dirección de correo electrónico o uno campo ¡Uy! El complemento no es compatible con Ninja Forms THREE %sMás información%s.Abrir en una nueva ventanaOperaciones y campos (avanzado)Estilos para obstinadosOpción unoOpción tresOpción dosOpciónesOrganizadorEl alcance de nuestra Asistencia técnicaCálculo de salida como Sitio PHPPHP Entrada Máxima VarsTamaño Máximo de Puesto PHPPHP Límite de TiempoVersión PHPPUBLICARPakistán PalauPanamaPapúa Nueva Guinea Texto del párrafoParaguayElemento Padre:ContraseñaConfirmación de contraseñaEtiqueta de Discrepancia de Contraseña Contraseñas no son igualesLos Campos de PagoPasarela de PagoPago totalAutorización denegadaPerú Filipinas TeléfonoTeléfono - (555) 555-5555Pitcairn Coloque %s en cualquier área que acepte códigos cortos para mostrar su forma en cualquier lugar que desee. Incluso en medio de su página o mensajes de contenido.Marcador de PosiciónTexto sin formato%sPonte en contacto con asistencia técnica%s e indica el error que se muestra más arriba.Favor de contestar la pregunta de anti-spam (contra el correo no deseado) correctamente.Por favor, marque los campos obligatorios.Llena el campo captchaLlena el código recaptchaCorrige los errores antes de enviar este formulario.Favor de estar seguro que todos los campos estén completos.Por favor, introduzca un mensaje que desea mostrar cuando este formulario ha llegado a su límite de sumisión y no aceptará nuevas sumisiones.Por favor, introduce una dirección de correo electrónico válidaIntroduce una dirección de correo electrónico válida.Favor de registrar una dirección de correo electrónico verdadera.¡Ayúdanos a mejorar Ninja Forms!Por favor, incluya esta información cuando soliciten apoyo:Increméntalo por Favor de dejar vacante el campo de spam (correo no deseado).Asegúrate de ingresar las claves tus clases Sitio y Secreto correctamenteFavor de calificar %sNinja Forms%s %s on %sWordPress.org%s para ayudarnos guardar este plugin gratis. iGracias del equipo WP Ninjas!Favor de seleccionar un formulario para ver las sumisiones.Por favor, seleccione un formulario.Por favor, seleccione un archivo de formulario exportado válida.Por favor, seleccione un archivo de campos favoritos válida.Por favor, seleccione los campos favoritos para exportar.Por favor, use estos operadores: + - * / . Esta es una característica avanzada. Cuidado con cosas como la división por 0 .Por favor, espere %n segundosFavor de esperar para submitir el formulario.Plugins PoloniaRellenar esto con la taxonomía PortugalpuestoPuesto / ID de página (si está disponible)Puesto / Título de página (si está disponible)Puesto / URL de la página (si está disponible) Creación de PuestoMensaje IDTítulo de PublicarURLPreestrenarVista previa de los cambiosPreestrenar el FormularioEsta vista previa no existe.Previo MesCostaPrecio:Campos de preciosProcesandoEtiqueta de procesamientoProcesando Etiqueta de SumisionesProductoProducto (cantidad incluida)Producto (cantidad separada)Producto AProducto BFormulario del producto (cantidad en línea)Formulario de productos (varios productos)Formulario de productos (con campo de cantidad)Tipo de productoNombre programático que se puede usar para hacer referencia a este formulario.PublicarPuerto RicoComprarQatarCantidadCantidad para el Producto ACantidad para el Producto BCantidad:Cadena de consultaCadena de consultasVariable de cadena de consultaPreguntaPosición de la preguntaSolicitud de cotizaciónRadioLista de opcionesEscriba la Contraseña otra vezVolver a Introducir la Etiqueta de Contraseña¿Realmente desactivar todas las licencias?RecaptchaRedirigirEliminar¿Eliminar TODOS los datos de Ninja Forms sobre desinstalación?Eliminar ValorEliminar Todos los Datos de Ninja Forms¿Eliminar este campo? Será eliminado aún si usted no lo guarda.Responder a¿El usuario deberá estar registrado para ver el formulario?NecesarioCampo obligatorioError de Campo ObligatorioEtiqueta Obligatoria de CampoSímbolo Obligatorio de CampoRestablecer conversión de formularioRestablecer conversión de formulariosRestablecer el proceso de conversión de formulario para v2.9+RestaurarRestaurar Ninja FormsRestaurar este artículo de la BasuraConfiguración de RestriccionesRestricciones Restringe el tipo de entrada que tus usuarios pueden ingresar en este campo.Regresar a Ninja FormsReuniónPanel del Editor de texto enriquecido (RTE)A la Derecha del ElementoDerecha del campoReducción de preciosReducción de precios para las versiones 2.9.x más recientes.Reducción de precios para v2.9.xRumaniaFederación de RusiaRuandaSMTPCliente SOAPSUHOSIN InstaladoSaSan Cristóbal y Nieves Santa Lucía San Vicente y las Granadinas SamoaSan MarinoSanto Tomé y Príncipe SabSabadoArabia Saudita GuardarGuardar y ActivarGuardar Configuración de CampoGuardar formularioGuardar OpcionesGuardar configuraciónGuardar presentaciónGuardadoCampos guardadosGuardando...Buscar ItemBuscar SumisionesSeleccionarSeleccionar TodoSeleccionar de la listaSeleccionar un campo o escribir para buscarSeleccione un archivoSeleccionar un formularioSelecciona un formulario o tipo de búsquedaSeleccione el número de sumisiones que este formulario aceptará. Dejar en blanco para ningún límite.Selecciona la posición de tu etiqueta relativa al elemento del campo en sí.SeleccionadoValor SeleccionadoEnviar¿Enviar una copia del formulario a esta dirección?SenegalSepSeptiembreSerbiaDirección IP del servidorAjustesAjustes GuardadosSeychelles EnvíoCódigo CortoDebe introducirse como un porcentaje. por ejemplo 8,25 % , 4 % Mostrar Texto de AyudaMostrar Botón de Carga de MediosMostrar másMostrar Indicador de la Fuerza de la ContraseñaMostrar Editor de Texto EnriquecidoPresentar EsteMostrar Valores de los Artículos de la ListaSe muestra a los usuarios como un posicionamientoSierra Leona Singapur una solaCuadro de verificación únicoCosto únicoTexto de una sola líneaProducto único (predeterminado)URL de SitioEslovaquia (República Eslovaca)Eslovenia Correo postalAsí que, si querías hacer una máscara para un Número de Seguro Social de América, que pondría 999-99-9999 en la cajaIslas SalomónSomaliaOrdenar como numéricoClasificar como numérico Sudáfrica Georgias del Sur, Islas Sandwich del SurSudán del SurEspaña Respuesta de SpamPregunta de SpamEspecifique Operaciones Y Campos (Avanzado ) Sri LankaSt. Helena San Pedro y MiquelónCampos EstándaresGrado de la Estrella Comienza a partir de una plantillaEstado / RegiónEstatusPasoPaso %d de aproximadamente %d funcionandoPaso (cantidad para incrementar por)Indicador de FuerzaFuerteDoSubsecuenciaSujetoTexto del asunto o buscar un campoTexto de Sujeto o buscar un campoSumisiónSubmisión CSVDatos del envíoInformación del envíoLímite de envíoEnvío de MetaboxEstadísticas de SumisiónSumisionesPresentarPresentar el texto del botón después de que expire el minutero¿Presentar a través de AJAX (sin recarga de la página)?PresentadoPresentado PorEnviado por: Presentado elEnviado el: SuscribirseMensaje de ExitoSudán DomDomingoSurinameIslas Svalbard y Jan MayenSwazilandiaSueciaSuizaRepública Árabe SiriaSistemaEstado del Sistema¡Ya llega THREE!Taiwán Tayikistán Echa un vistazo a nuestra documentación de Ninja Forms en profundidad más adelante.República Unida de TanzaniaImpuestoPorcentaje de ImpuestoTaxonomíaLos Campos de la PlantillaFunción de PlantillaLista de términosTextoElemento de TextoTexto que se muestra después del contadorTexto que aparece después del contador de tipos/palabrasArea de TextoCuadro de texto JuTailandia Gracias por completar este formulario.iGracias por actualizar a la versión más reciente! iNinja Forms %s está preparado para hacer de su experiencia en la gestión de sumisiones una agradable!Gracias por actualizar a la versión 2.7 de Ninja Forms. Por favor, actualice cualquier extensiones de Ninja Forms deiGracias por actualizar! iNinja Forms %s hace construir formularios más fácil que nunca !¡Gracias por usar Ninja Forms! Esperamos que hayas encontrado todo lo que necesitas, pero si tienes alguna pregunta:¡Gracias, {field:name}, por completar mi formulario!Los (típicamente) 16 dígitos en la parte delantera de su tarjeta de crédito.Los 3 dígitos (tras) o los 4 dígitos (frente) de valor en su tarjeta.Los 9s representarían cualquier número, y la -s se añade automáticamente El menú de los formularios es su punto de acceso para todas las cosas de Ninja Forms. Ya hemos creado tu primera %s contact form%s quedando con un ejemplo. También puede crear su propio haciendo clic %sAdd New%s.El formato debe ser similar al siguiente:Las actualizaciones de la interfaz de esta versión sientan las bases para algunas grandes mejoras en el futuro. La versión 3.0 se apoyará en estos cambios para hacer Ninja Forms un constructor de la forma más estable, potente y fácil de usar.El mes que vence su tarjeta, por lo general en el frente de la tarjeta.Los ajustes más comunes se muestran inmediatamente, mientras que otros ajustes, no esenciales, se encuentran escondidos en el interior de las secciones expandibles.El nombre impreso en la parte delantera de su tarjeta de crédito.Las contraseñas previstas no son iguales. Las personas que construyen Ninja FormsEl proceso ha comenzado; favor de tener paciencia. Esto puede tomar varios minutos. Usted será redirigida cuando finalice el proceso. El archivo cargado supera la directiva MAX_FILE_SIZE que se especificó en el formulario HTML.El archivo cargado supera la directiva upload_max_filesize en php.ini.El archivo solo se pudo cargar de forma parcial.El año que su tarjeta de crédito expira, típicamente en la parte frontal de la tarjeta.Hay una nueva versión de %1$s disponible. Ver detalles de la versión %3$s o actualizar ahora.Hay una nueva versión de %1$s disponible. Ver detalles de la versión %3$s.El archivo cargado no tiene un formato válido.Estos son todos los campos de la sección Precios.Estos son todos los campos de la sección de Información del usuario.Estos son los tipos de máscara predefinidosEstos son diversos campos especiales.Estos campos deben coincidir.Esta columna en la tabla de envíos se ordenará por número.Este campo es requerido.Esto es un campo obligatorio.Esta es una pruebaEste es el estado del usuario.Esta es una acción de correo electrónico.Esta es otra prueba.Este es el tiempo que un usuario debe esperar para enviar el formulario Esta es la etiqueta que se utiliza durante la visualización/ la edición/ la exportación de sumisiones.Este es el nombre de programación de su campo . Ejemplos son: my_calc, price_total, user-total.Este es el estado del usuario.Este es el valor que se utilizará si %sChecked%s.Este es el valor que se utilizará si %sUnchecked%s.Aquí es donde se va a construir tu formulario añadiendo campos y arrastrándolos a la orden que desea que aparezcan. Cada campo tendrá una variedad de opciones, tales como etiquetas, posición de la etiqueta , y marcador de posición.Esta es una palabra clave reservada de WordPress. Intenta con otra.Este mensaje se muestra dentro del botón de enviar cada vez que un usuario hace clic en "enviar" para hacerles saber que está procesando.Este mensaje se muestra a un usuario cuando los valores no coincidentes se colocan en el campo de la contraseña.Este número se usará en cálculos si el cuadro se marca.Este número se usará en cálculos si el cuadro se desmarca.Esta configuración eliminará COMPLETAMENTE cualquier cosa relacionada con Ninja Forms después de eliminar el complemento. Esto incluye los ENVÍOS y FORMULARIOS. Esta acción no se puede deshacer.Esta ficha mantenga la configuración general de formulario, como el título y el método de envío, así como los ajustes de pantalla, como ocultar un formulario cuando se haya completado con éxito .Esto será el sujeto del correo electrónico.Esto impediría al usuario de la puesta en otra cosa que números TresJueJuevesEnviar ProgramadoMensaje de Error del MinuteroTimor-Leste (Timor Oriental)ParaPara activar licencias para las extensiones de Ninja Forms primero debes %sinstalar y activar%s la extensión que desees. La configuración de la licencia se mostrará más abajo.Para utilizar esta función, puede pegar su CSV en el área de texto de arriba.La Fecha de HoyConmuta la gavetaTogoTokelau TongaTotalBasuraTrata de seguir las especificaciones de %sPHP date() function%s, pero no todos los formatos son compatibles.Trinidad y Tobago MaMarMartesTúnez Turquía TurkmenistánIslas Turcas y Caicos TuvaluDosEscribirURLTeléfono de EE. UU.UgandaUcrania No marcadoValor de cálculo desmarcadoEn Comportamiento Básico de Formularios en la Configuración del Formulario, usted puede seleccionar fácilmente una página que le gustaría que el formulario anexa automáticamente al final del contenido de esa página. Una opción similar es disponible en cada pantalla de edición de contenidos en su barra lateral.DeshacerDeshacer todoEmiratos Árabes Unidos Reino Unido Estados Unidos Las Islas menores alejadas de los Estados Unidos Error de carga desconocido.InéditoActualizaciónActualizarActualizado el: Actualizando el Base de datos de FormulariosActualizarActualiza a Ninja Forms THREEActualizacionesActualización completaUrlUruguayUse Una Ecuación ( Avanzado) Cantidad de usoUtilice una primera opción personalizada Usa las conversiones predeterminadas de Ninja Forms.Utiliza el siguiente código corto para insertar el cálculo final: [ninja_forms_calc]Utilice los siguientes consejos para empezar a usar Ninja Forms. iVa a estar en funcionamiento en muy poco tiempo!Use esto como un campo de contraseña de registro Usa esto como un campo de contraseña de registro. Si el cuadro está marcado, los cuadros de texto contraseña y reingresar la contraseña serán salidaUsado para hacer un campo para procesamiento.usuario:Nombre de Visualización de Usuario (si está conectado)E-mail del UsuarioCorreo electrónico del Usuario (si está conectado)Entrada de usuarioNombre de usuario (si está conectado) ID de UsuarioID de usuario (si está conectado)Campo de Grupo de Información del UsuarioInformación del UsuarioCampos de información de usuarioApellido del Usuario (si está conectado)Usuario Meta (si iniciaste sesión)Valores Presentados por el Usuario Valores Presentados por UsuariosEs más probable que los usuarios llenen formularios más largos si pueden guardarlos y regresar más adelante para completarlos.

    La extensión Guardar progreso para Ninja Forms hace que esto sea rápido y sencillo.

    Uzbekistán ¿Validar como una dirección de correo electrónico? (El campo debe ser necesario)ValorVanuatu Nombre variableVenezuelaVersiónVersión %sMuy débil VietnamVerVer %sVer cambiosVer formulariosVerVer SumisiónVer SumisionesVer la lista completa de cambios Islas Vírgenes (británicas)Islas Vírgenes ( EE.UU. )Visitar la Página Web de pluginModo de Depuración de WPLenguaje de WPTamaño Máximo de Carga de WPLímite de Memoria de WPWP Multisitio ActivadoPuesto Remoto de WPVersión de WPIslas Wallis y Futuna MiNosotros haremos todo lo posible para proporcionar a cada usuario de Ninja Forms con el mejor apoyo posible. Si encuentra un problema o tiene alguna pregunta, póngase en contacto con nosotros, %splease contact us%s.Hemos añadido la opción para eliminar todos los datos de Ninja Forms (presentaciones, formularios, campos , opciones ) cuando se elimina el plugin. Lo llamamos la opción nuclear.Hemos advertido que tu formulario no tiene ningún botón Enviar. Podemos agregar uno por ti automáticamente.DébilInformación del Servidor WebMieMiércolesBienvenido a Ninja FormsBienvenido a Ninja Forms %sSáhara Occidental ¿En qué te podemos ayudar?Lo que debes intentar antes de comunicarte con Asistencia técnica¿Qué te gustaría llamar a este favorito? Qué Hay de NuevoAl crear y editar formularios, vaya directamente a la sección que más importa.¿Quién debe recibir este correo electrónico?Palabra(s)PalabrasEnvolturaY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemen Sí¡Cumples los requisitos para actualizar a Ninja Forms THREE versión Candidate! %sActualizar ahora%sTambién se pueden combinar estos para aplicaciones específicasPuede introducir ecuaciones de cálculo aquí usando campo_x donde x es el ID del campo que desea utilizar. Por ejemplo, %sfield_53 + field_28 + field_65%s.No se puede submitir el formulario sin permitir Javascript.No tienes autorización para instalar las actualizaciones de complementosNo tienes autorización.Usted no ha añadido un botón de envío a su formulario. Para tener una vista previa de un formulario debes iniciar sesión.Debe proporcionar un nombre para este favorito.Necesitas JavaScript para presentar este formulario. Por favor, activa y vuelve a intentarlo.Compraste Usted encontrará éste incluido con su correo electrónico de compra.Tu formulario se ha enviado correctamenteSu servidor no tiene fsockopen o cURL habilitado - PayPal IPN y otras secuencias de comandos que se comunican con otros servidores no funcionarán. Comuníquese con su proveedor de hosting.Su servidor no tiene la clase %sSOAP Client%s habilitado - algunos plugins de entrada que utilizan SOAP no van a funcionar como se espera.Su servidor tiene permitido cURL , fsockopen está deshabilitado.Su servidor tiene fsockopen y cURL habilitados.Su servidor tiene fsockopen y cURL discapacitados.El servidor tiene habilitado la clase de Cliente SOAP.Su versión de la extensión de carga de archivos de Ninja Forms no es compatible con la versión 2.7 de Ninja Forms. Tiene que ser al menos la versión 1.3.5. Por favor, actualice esta extensión enSu versión de la extensión de Ninja Forms de Guardar el Progreso no es compatible con la versión 2.7 de Ninja Forms. Tiene que ser por lo menos la versión 1.1.3. Por favor, actualice esta extensión enYugoslaviaZambiaZimbabue Código postalCódigo postala - Representa un tipo alfabético (AZ , az ) - Sólo permite que las letras que se introduciránrespuestabutton-secondary nf-download-allportipos restantesmarcadoCopiarpersonalizadod-m-Ydashicons dashicons-updateDuplicarfoo@wpninjas.comhr js-newsletter-list-update extral, F d Ym-d-Ym/d/Ynadadedel Producto A y del Producto B por $unoone_week_supportcontraseñaprocesandoproducto(s) para reCAPTCHAIdioma de reCAPTCHAClave secreta de reCAPTCHAConfiguración de reCAPTCHAClave de sitio de reCAPTCHATema de reCAPTCHAAjustes reCAPTCHAActualizarsmtp_porttrestítulodosdesmarcadoactualizadousuario@gmail.comversiónwp_remote_post() ha fallado. PayPal IPN no puede funcionar con su servidor.wp_remote_post() ha fallado. PayPal IPN no funcionará con el servidor. Comuníquese con su proveedor de hosting. Error:wp_remote_post() fue un éxito - PayPal IPN está funcionando.lang/ninja-forms-ja.po000064400000662751152331132460010661 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "ご注意: この内容にはJavaScriptが必要です。" #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "間違えましたか ?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "%s*%s のついた欄は必須です" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "必須項目の記入が済んでいることをご確認ください。" #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "この欄は入力必須です。" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "スパム防止の質問に正しくお答えください。" #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "スパム欄には何も記入しないでください。" #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "申込書が送信されるまでお待ちください。" #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "フォームを送信するにはJavascriptを有効にしてください。" #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "有効なメールアドレスを入力してください。" #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "処理中" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "入力されたパスワードが一致しません" #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "フォームを追加" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "フォームを選択または入力して検索" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "キャンセル" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "挿入" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "無効なフォーム ID" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "コンバージョンを増加" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "長いフォームをより取り組みやすい小さなパートに分割することで、フォームのコンバージョンを増加させることができるのをご存知でした?

    Ninja " "Forms のマルチパートフォーム拡張機能を使用すれば、迅速かつ簡単に実行できます。

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "マルチパートフォームに関する詳細を見る" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "後で行う" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "非表示" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "ユーザーは、一度保存して、後でもう一度入力してから送信できる場合に、より高い頻度で長いフォームを完了する傾向があります。

    Ninja Forms の " "Save Progress 拡張機能を使用すれば、迅速かつ簡単に実行できます。

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Save Progress に関する詳細を見る" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "メール" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "送信者名" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "名前またはフィールド" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "ここで登録した名前がメールに表示されます。" #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "送信者アドレス" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "メールアドレスまたはフィールドを1つ" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "ここで登録したメールアドレスがメールに表示されます。" #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "宛先" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "メールアドレスまたはフィールドを検索" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "送信先" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "件名" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "件名テキストまたはフィールドを検索" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "これがメールの件名になります。" #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "メール本文" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "添付ファイル" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "送信CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "詳細設定" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "フォーマット" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "標準テキスト" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "返信先" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "リダイレクト" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "成功メッセージ" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "フォームの前" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "フォームの後" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "場所" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "メッセージ" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "複製" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "停止" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "有効化" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "編集" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "削除" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "重複" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "名称" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "タイプ" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "更新日" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- すべてのタイプを表示" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "他のタイプを取得" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "メール&アクション" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "新規追加" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "新しいアクション" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "アクションを編集" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "リストに戻る" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "アクション名" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "さらにアクションを取得" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "更新されたアクション" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "フィールドを選択または入力して検索" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "フィールドを挿入" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "すべてのフィールドを挿入" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "フォームを選択して送信を表示してください" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "送信は見つかりませんでした" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "送信" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "送信" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "新しい送信を追加" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "送信を編集" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "新しい送信" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "送信の表示" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "送信を検索" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "ゴミ箱の中に送信は見つかりませんでした" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "日付" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "このアイテムをで編集" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "このアイテムをエクスポート" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "書き出し" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "ゴミ箱にこの項目を移動する" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "ゴミ箱" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "ゴミ箱からこのアイテムを復元する" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "復元" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "永久にこの項目を削除します" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "永久削除" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "未公開" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s前" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "送信済み" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "フォームを選択" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "開始日" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "終了日" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "更新: %s" #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "カスタムフィールドの更新" #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "カスタムフィールドの削除" #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$sが改訂するために %2$sから復元されました。" #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s 公開されました" #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "保存: %s" #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s が送信されました。 プレビュー%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s 予定日: %2$sプレビュー%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s のドラフトが更新されました。 プレビュー%3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "すべての送信をダウンロード" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "リストに戻る" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "ユーザーが送信した数値" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "送信統計" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "フィールド" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "値" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "状態" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "フォーム:" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "送信日" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "修正日" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "送信者" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "更新" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "送信日" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms はネットワーク経由では起動できません。 それぞれのサイトのダッシュボードにアクセスして、プラグインを起動してください。" #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "こちらは購入メールに記載されます。" #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "キー" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "ライセンスを有効にできませんでした。 ライセンスキーをご確認ください" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "ライセンスを無効にする" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "ユーザーが送信した値:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "本フォームにご記入いただき、ありがとうございます。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "%1$s の新しいバージョンが入手可能です。 %3$sバージョンの詳細を表示します。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "%1$s の新しいバージョンが入手可能です。 %3$sバージョンの詳細を表示 するか、今すぐ更新します。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "プラグインの更新を実行するための許可がありません。" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "エラー" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "標準フィールド" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "エレメントのレイアウト" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "投稿作成" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "本プラグインを今後も無料でご提供するために、%sWordPress.org%s にて %sNinja Forms%s %s評価にご協力ください。 WP Ninjaチーム一同、ご協力に感謝いたします!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Formsウィジェット" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "表示タイトル" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "なし" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "フォーム" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "すべてのフォーム" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms のアップグレード" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "アップグレード" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "インポート/エクスポート" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "インポート / エクスポート" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form の設定" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "設定" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "システム状況" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "アドオン" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "プレビュー" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "保存" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "文字入力可能" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "これらの使用条件を表示しない" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "オプションを保存" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "フォームのプレビュー" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Ninja Forms THREE にアップグレード" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "Ninja Forms THREE リリース候補版 にアップグレードする資格をお持ちです! %s今すぐアップグレード%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE が登場します!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "Ninja Forms では大規模な更新を予定しています。 %s新しい機能、下位互換性、そしてよくある質問に関する詳細をご覧ください。%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "いかがお過ごしですか?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Ninja Forms をご利用いただき、ありがとうございます! 必要なものはすべてご確認いただけましたでしょうか?ご不明な点がございましたら、以下をご確認ください:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "ドキュメンテーションを確認" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "ヘルプを利用する" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "メニューアイテムを編集" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "すべて選択" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Ninja Form を追加" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "このお気に入りに何という名前を付けますか?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "このお気に入りに名前を付ける必要があります。" #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "すべてのライセンスを本当に無効にしてもよろしいですか?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "v2.9+用にフォームコンバージョンプロセスをリセット" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "アンインストール時にすべての Ninja Forms データを削除しますか?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "フォームの編集" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "保存されました" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "保存中…" #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "このフィールドを削除しますか? 保管しない場合も削除されます。" #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "送信を表示" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms処理中" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - 処理中" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "読み込み中..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "アクションが指定されていません" #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "処理を開始しました。少々お待ちください。 この処理には数分かかる場合があります。 処理が完了すると、自動的にリダイレクトされます。" #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Ninja Forms へようこそ %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "更新していただき、ありがとうございます! Ninja Forms %s を利用して、かつてなく簡単にフォームを作成することができます!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Ninja Forms へようこそ" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms の変更ログ" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Ninja Forms を使い始める" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Ninja Forms の作成者" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "新着情報" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "はじめに" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "クレジット" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "バージョン %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "シンプル、かつよりパワフルになったフォーム作成をお楽しみいただけます。" #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "新規作成タブ" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "フォームを作成および編集する際は、最も重要な部分に直接移動します。" #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "使いやすく整理されたフィールド設定" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "もっともよく使用する設定を瞬時に表示し、使用頻度の低い設定は拡張式セクション内に収まっています。" #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "分かりやすさが向上" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "「フォームを作成」タブに加えて、「通知」を「メール & アクション」に変更しました。 これで、このタブで行う操作がより明確になりました。" #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "すべての Ninja Forms データを削除" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "プラグインを削除する際、すべての Ninja Forms データ (送信、フォーム、フィールド、オプション) を削除するためのオプションを追加しました。 これは私たちが原子力オプションと呼ぶものです。" #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "ライセンス管理がスムーズに" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "Ninja Forms 拡張機能ライセンスを、設定タブから個別またはグループ単位で無効にします。" #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "他にも続々登場" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "このバージョンにおけるインターフェースの更新は、将来の改善に備えて基礎を形成します。 バージョン 3.0 はこれらの変更に基づいて作成され、Ninja Formsの安定性が一層増し、より強力でユーザーフレンドリーなフォームビルダーになりました。" #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "ドキュメンテーション" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "以下の Ninja Forms に関する詳細なドキュメンテーションをご覧ください。" #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms ドキュメンテーション" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "サポートを依頼" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Ninja Forms に戻る" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "変更ログをすべて表示" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "すべての変更ログ" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Ninja Forms に移動" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "以下のヒントを参考にして、Ninja Forms の使用を開始しましょう。 すぐにご使用いただけます!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "フォームについて" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "フォームメニューは、あらゆる Ninja Forms に関するアクセスポイントです。 " "最初の%s連絡先フォーム%sを既に作成済みですので、サンプルとしてご覧ください。 %s新規追加%s をクリックしてご自身で作成することも可能です。" #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "自分でフォームを作成" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "ここで、フィールドを追加したり、表示する順番にフィールドをドラッグしてフォームを作成します。 フィールドごとに、ラベル、ラベル位置、プレースホルダーなどのオプションが用意されています。" #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "メール&アクション" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "ユーザーが送信をクリックした際、メールでフォームからの通知を希望される場合には、このタブ上で設定できます。 フォームに記入したユーザーに対するメールを含め、メールの作成数に制限はありません。" #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "このタブでは、タイトル、送信方法に加えて、完了時のフォームの非表示等の表示設定など、一般的なフォーム設定ができます。" #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "フォームの表示" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "ページに追加" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "[フォーム設定]の[基本フォーム動作]で、ページコンテンツの最後に自動的に追加したいページを簡単にお選びいただけます。 サイドバーのコンテンツ編集画面に、同様のオプションをご用意しています。" #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "ショートコード" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "ショートコードを受け入れ可能な場所に %s を入力してお好きなところにフォームを表示します。 ページや投稿コンテンツの真ん中でさえ表示可能です。" #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Formsではウィジェットをご利用いただけます。お客様のサイトのウィジェット部分であればどこでも設置でき、その場所に表示させたいフォームを間違いなく選ぶことができます。" #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "テンプレート機能" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "Ninja Forms にはシンプルなテンプレート機能が備わっており、php テンプレートファイル内に直接設定することが可能です。 %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "お困りですか?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "さらに充実のドキュメンテーション" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "ドキュメンテーションでは、%sトラブルシューティング%s から %s開発者API %s まで幅広くカバーしています。 新しいドキュメンテーションが随時追加されます。" #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "ビジネス界で最高のサポート" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "すべてのNinja Formsユーザーの方へ最高のサポートをご提供することをお約束いたします。 何か問題やご質問がある場合には、%sお気軽にお問い合わせください%s。" #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "最新バージョンに更新していただき、ありがとうございます! Ninja Forms %s は、送信管理を楽しい体験にするお手伝いをいたします!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms は、世界一の WordPress コミュニティフォーム作成プラグインを提供することをめざし、世界中の開発者から成るチームによって作成されました。" #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "有効な変更ログが見つかりませんでした。" #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "表示 %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "ブラウザのオートコンプリート機能を無効にする" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sオン%s計算値" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "この値は、%sチェックがある%s場合に使用されます。" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sオフ%s計算値" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "この値は、%sチェックがない%s場合に使用されます。" #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "自動合計に含めますか? (有効の場合)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "カスタム CSS クラス" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "すべての前" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "ラベルの前" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "ラベル後" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "すべての後" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "「説明テキスト」が有効の場合、クエスチョンマーク %s が入力フィールドの横に表示されます。 このクエスチョンマークの上を通過すると、説明テキストが表示されます。" #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "説明を追加" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "説明の位置" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "説明の内容" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "「ヘルプテキスト」が有効の場合、クエスチョンマーク %s が入力フィールドの横に表示されます。 このクエスチョンマークの上を通過すると、ヘルプテキストが表示されます。" #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "ヘルプテキストの表示" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "ヘルプテキスト" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "ボックス内に何も入力されていない場合、無制限となります" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "この数字に入力を制限" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "の" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "文字数" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "ワード" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "文字数/ワード数カウンターの次に表示されるテキスト" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "エレメントの左" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "エレメントの上" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "エレメントの下" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "エレメントの右" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "エレメント内部" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "ラベルの位置" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "フィールド ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "制約の設定" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "計算の設定" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "削除" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "分類によって事前設定" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- なし" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "プレースホルダ―" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "必須" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "フィールド設定の保存" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "数字でソート" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "この欄がオンの場合、送信表にあるこの列は数字でソートされます。" #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "管理ラベル" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "送信を表示/編集/エクスポートする際に、このラベルを使用します。" #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "請求" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "配送方法" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "カスタム" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "ユーザー情報フィールドグループ" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "カスタムフィールドグループ" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "サポートを依頼する際は、以下の情報をお知らせください。" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "システムレポートを見る" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "環境" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "ホーム URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "サイトURL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms バージョン" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP バージョン" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP マルチサイト有効" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "はい" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "いいえ" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Webサーバー情報" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP バージョン" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL のバージョン" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP ロケール" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WPメモリー制限" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP デバッグモード" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP 言語" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "デフォルト" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP 最大アップロードサイズ" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "最大入力ネスティングレベル" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSINをインストールしました" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "デフォルトのタイムゾーン" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "デフォルトのタイムゾーンは%s - UTCの必要があります" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "デフォルトのタイムゾーンは %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "お使いのサーバーでは fsockopen と cURL が有効になっています。" #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "お使いのサーバーでは fsockopen は有効になっていますが、cURL は無効です。" #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "お使いのサーバーでは cURL は有効になっていますが、fsockopen は無効です。" #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "ご使用のサーバーには、fsockopenが無いか、cURLが有効になっていません。- PayPal IPN および他のサーバと通信する他のスクリプトが動作しません。ホスティングプロバイダにお問い合わせください。" #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP クライアント" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "お使いのサーバーでは SOAP クライアントクラスが有効になっています。" #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "お使いのサーバーでは %sSOAP クライアント%s クラスが有効になっていません。SOAP を使用するゲートウェイの一部が、期待通りに動作しない可能性があります。" #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP リモートポスト" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() は成功しました - PayPal IPN は動作しています。" #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() は失敗しました。 PayPal IPN はご利用のサーバーでは動作しません。 ホスティングプロバイダにご相談ください。 エラー:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() は失敗しました。 PayPal IPN はご利用のサーバーでは動作しない可能性があります。" #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "プラグイン" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "インストール済みプラグイン" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "プラグインのホームページへ移動" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "by" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "バージョン" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "フォームにタイトルを付けます。 こうすれば、後で見つけられます。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "フォームに送信ボタンを追加していません。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "入力マスク" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "以下のリストにない文字を「カスタムマスク」ボックスに入力すると、ユーザーがタイプする際に自動的に入力され、削除することはできません。" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "これらは予め登録されているマスキング用の文字です" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "a - アルファベット文字 (A~Z、a~z) を表し、文字以外は入力できません" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "9 - 数字 (0~9) を表し、数字以外は入力できません" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "* - 英数字 (A~Z、a~z、0~9) を表し、文字も数字も入力できます" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "アメリカの社会保障番号に対するマスクを作成したい場合、ボックス内に 999-99-9999 と入力します" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "9を他の番号に置き換え、-s が自動的に追加されます" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "ユーザーが数字以外を入力しないように、このような仕様になっています" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "特定のアプリケーション用に、これらの英数字を組み合わせることも可能です" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "例えば、A4B51.989.B.43C という形式の製品キーをお持ちの場合、 a9a99.999.a.99a とマスク表示させることができます。a " "部分には文字、9 の部分には数字がきます" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "定義済みフィールド" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "お気に入りフィールド" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "支払いフィールド" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "テンプレートフィールド" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "ユーザー情報" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "すべて" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "一括操作" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "適用" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "フォーム/ページ" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "表示" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "最初のページに戻る" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "前のページに戻る" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "現在のページ" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "次のページに進む" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "最後のページに移動" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "フォームタイトル" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "このフォームを削除" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "フォームを複製" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "フォームが削除されました" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "フォームが削除されました" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "フォームプレビュー" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "表示" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "フォームタイトルを表示" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "このページにフォームを追加" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "AJAX 経由で (ページを再読み込みすることなく)送信しますか?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "完了したフォームの内容を削除しますか?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "この欄がオンの場合、フォームが正常に送信された後、Ninja Forms によりフォームの数値が削除されます。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "完了したフォームを非表示にしますか?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "この欄がオンの場合、フォームが正常に送信された後、Ninja Forms によりフォームが非表示になります。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "制限" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "フォームを表示する上で、ユーザーにログインすることを義務付けますか?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "非ログインメッセージ" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "上の 「ログイン」チェックボックスにチェックが入っており、ユーザーがログインしていない場合、ユーザーにメッセージが表示されます。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "送信を制限" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "このフォームで受けつける送信数を選択します。 無制限の場合は空欄にしてください。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "制限到達メッセージ" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "このフォームの送信数が制限数に達して、これ以上新しい送信を受けつけない時点で表示するメッセージを入力してください。" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "フォーム設定を保存しました" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "基本設定" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms 基本ヘルプがここにきます。" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Ninja Forms を延長する" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "ドキュメンテーションは間もなくご利用いただけます。" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "有効" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "インストール済み" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "詳細を読む" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "バックアップ/復元" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Ninja Forms をバックアップする" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Ninja Forms を復元する" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "データは正常に復元されました!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "お気に入りフィールドをインポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "ファイルを選択" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "お気に入りのインポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "お気に入りフィールドが見つかりませんでした" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "お気に入りフィールドをエクスポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "フィールドをエクスポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "エクスポートするお気に入りフィールドを選択してください。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "お気に入りは正常にインポートされました!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "有効なお気に入りフィールドファイルを選択してください。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "フォームのインポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "フォームをインポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "フォームのエクスポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "フォームをエクスポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "フォームを選択してください。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "フォームは正常にインポートされました。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "エクスポートした有効なフォームファイルを選択してください。" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "送信のインポート / エクスポート" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "日付け設定" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "一般" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "一般設定" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "バージョン" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "日付フォーマット" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "%sPHP 日付け() 機能%s の仕様に添って設定してください。ただし、すべての形式がサポートされているわけではありません。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "通貨記号" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA の設定" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA のサイトキー" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr " %sこちらで%s登録して、ドメインで使用するサイトキーを入手してください" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA の秘密キー" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA の言語" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "reCAPTCHA で使用する言語。 %sこちらで%s使用する言語用のコードを入手してください" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "この欄がオンの場合、削除時にすべての Ninja Forms データがデータベースから削除されます。 %sすべてのフォームおよび送信データは回復不能です。%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "管理通知を無効にする" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "Ninja Forms から送られてくる管理通知は、今後ダッシュボードに表示されなくなります。 オフにすると、再度表示されるようになります。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "この設定にすると、プラグイン削除時に Ninja Forms 関連のデータが完全に削除されます。 この中には、送信やフォームも含まれます。 削除すると、元に戻せません。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "次へ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "設定を保存しました" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "ラベル" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "メッセージラベル" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "必須フィールドラベル" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "必須フィールド記号" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "すべての必須フィールドに入力していない場合、エラーメッセージが表示されます" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "必須フィールドエラー" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "スパム防止エラーメッセージ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot エラーメッセージ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "タイマーエラーメッセージ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript 無効のエラーメッセージ" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "有効なメールアドレスを入力してください" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "送信処理中ラベル" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "このメッセージは、現在処理中であることを伝える為にユーザーが[送信]をクリックする度に送信ボタン内に表示されます。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "パスワード不一致ラベル" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "このメッセージは、パスワードフィールドに一致しない値が入力された際に、ユーザーに表示されます。" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "ライセンス" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "保存&起動" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "すべてのライセンスを無効にする" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Ninja Forms 拡張機能のライセンスを有効にするには、最初に選択した拡張機能を%sインストールして起動する%s 必要があります。 すると、ライセンスの設定が下に表示されます。" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "フォームコンバージョンのリセット" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "フォームコンバージョンのリセット" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "2.9 にアップデート後ぶフォームが「見当たらない」場合は、このボタンが 2.9 で表示するために古いフォームを再変換しようと働きかけます。 現在のフォームはすべて、「すべてのフォーム」表に残ります。" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "現在のフォームはすべて、「すべてのフォーム」表に残ります。 場合によっては、この処理中に複製されるフォームもあります。" #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "管理者のメール" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "ユーザーメールアドレス" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms がフォーム通知機能のアップグレードを必要としています。%sこちら%sをクリックして、アップグレードを開始してください。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "Ninja Forms がメール設定のアップグレードを必要としています。%sこちら%s をクリックして、アップグレードを開始してください。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "Ninja Forms が送信表のアップグレードを必要としています。%sこちら%s をクリックして、アップグレードを開始してください。" #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" " Ninja Forms を バージョン 2.7 に更新していただき、ありがとうございます。 Ninja Forms 拡張機能を次から更新してください: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "お客様の Ninja Forms ファイルアップロード拡張機能は、Ninja Forms のバージョン 2.7 と互換性がありません。 1.3.5 " "以降のバージョンが必要です。 この拡張機能を次で更新してください: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "お客様の Ninja Forms 保存処理拡張機能は、Ninja Forms のバージョン 2.7 と互換性がありません。 1.1.3 " "以降のバージョンが必要です。 この拡張機能を次で更新してください: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "フォームデータベースの更新中" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "Ninja Forms がフォーム設定のアップグレードを必要としています。%sこちら%s をクリックして、アップグレードを開始してください。" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms の更新処理中" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "上のエラー情報をご準備して、%sサポートへお問い合わせください%s。" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms は利用できるすべての更新を完了しました!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "フォームに移動" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms の更新" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "アップグレード" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "アップグレードが完了しました" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "Ninja Forms は、%s アップグレード処理を行う必要があります。 完了するまでには数分かかります。 %sアップグレード%sを開始" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "約%d/%dのステップが実行中です" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms のシステムステータス" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "パスワード強度" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "非常に弱い" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "弱点" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "ふつう" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "強い" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "不一致" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- 1つ選択" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "あなたがヒトでこのフィールドをご覧になっている場合、空白にしておいてください。" #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "*のついた欄は必須です。" #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "これは必須フィールドです。" #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "必須フィールドをお確かめ下さい。" #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "計算" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "小数点以下の桁数。" #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "テキストボックス" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "計算した数値を出力" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "ラベル" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "入力を無効にしますか?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "最終計算結果を挿入するために次のショートコードを使用します: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "使用するフィールドのIDを「x」に入力した「field_x」を使用して、ここに計算式を入力できます。 例えば、%sfield_53 + field_28 " "+ field_65%sと入力します。" #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "複雑な式は括弧を追加して作ります: %s( field_45 * field_2 ) / 2%s" #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "これらの演算子を使用してください: + - * / これは高度機能です。 ゼロ除算などにご注意ください。" #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "自動的に計算値を合計" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "演算とフィールドを指定(高度)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "数式を使用(高度)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "計算方法" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "フィールド演算" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "演算を追加" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "高度な数式" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "計算名" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "これはフィールドのプログラム名です。 例:my_calc、price_total、user-total" #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "既定値" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "カスタムCSSクラス" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- フィールドを選択" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "チェックボックス" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "オフ" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "チェック済み" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "これを表示" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "これを隠す" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "値を変更" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "アフガニスタン" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "アルバニア" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "アルジェリア" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "米サモア" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "アンドラ" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "アンゴラ" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "アンギラ" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "南極" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "アンチグアバーブーダ" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "アルゼンチン" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "アルメニア" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "アルバ" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "オーストラリア" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "オーストリア" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "アゼルバイジャン" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "バハマ" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "バーレーン" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "バングラデシュ" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "バルバドス" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "ベラルーシ" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "ベルギー" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "ベリーズ" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "ベナン" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "バミューダ" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "ブータン" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "ボリビア" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "ボスニア・ヘルツェゴビナ" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "ボツワナ" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "ブーベ島" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "ブラジル" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "イギリス領インド洋地域" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "ブルネイ・ダルサラム" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "ブルガリア" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "ブルキナファソ" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "ブルンジ" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "カンボジア" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "カメルーン" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "カナダ" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "カーボベルデ" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "ケイマン諸島" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "中央アフリカ共和国" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "チャド" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "チリ" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "中国" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "クリスマス島" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "ココス (キーリング) 諸島" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "コロンビア" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "コモロ" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "コンゴ共和国" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "コンゴ民主共和国" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "クック諸島" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "コスタリカ" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "コートジボワール" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "クロアチア (現地名: フルバツカ)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "キューバ" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "キプロス" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "チェコ共和国" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "デンマーク" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "ジブチ" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "ドミニカ国" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "ドミニカ共和国" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "東ティモール" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "エクアドル" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "エジプト" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "エルサルバドル" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "赤道ギニア" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "エリトリア" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "エストニア" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "エチオピア" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "フォークランド諸島 (マルビナス諸島)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "フェロー諸島" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "フィジー" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "フィンランド" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "フランス" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "フランス・メトロポリテーヌ" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "仏領ギアナ" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "仏領ポリネシア" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "フランス領南方・南極地域" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "ガボン" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "ガンビア" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "ジョージア" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "ドイツ" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "ガーナ" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "ジブラルタル" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "ギリシャ" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "グリーンランド" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "グレナダ" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "グアドループ" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "グアム" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "グアテマラ" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "ギニア" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "ギニアビサウ" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "ガイアナ" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "ハイチ" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "ハード島とマクドナルド諸島" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "バチカン市国" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "ホンジュラス" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "香港" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "ハンガリー" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "アイスランド" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "インド" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "インドネシア" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "イラン・イスラム共和国" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "イラク" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "アイルランド" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "イスラエル" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "イタリア" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "ジャマイカ" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "日本" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "ヨルダン" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "カザフスタン" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "ケニア" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "キリバス" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "北朝鮮人民共和国" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "大韓民国" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "クウェート" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "キルギスタン" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "ラオス人民民主共和国" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "ラトビア" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "レバノン" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "レソト" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "リベリア" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "リビア" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "リヒテンシュタイン" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "リトアニア" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "ルクセンブルク" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "マカオ" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "マケドニア、旧ユーゴスラビア共和国" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "マダガスカル" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "マラウィ" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "マレーシア" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "モルディブ" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "マリ" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "マルタ" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "マーシャル諸島" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "マルティニーク" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "モーリタニア" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "モーリシャス" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "マヨット" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "メキシコ" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "ミクロネシア連邦" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "モルドバ共和国" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "モナコ" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "モンゴル" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "モンテネグロ" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "モントセラト" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "モロッコ" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "モザンビーク" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "ミャンマー" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "ナミビア" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "ナウル" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "ネパール" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "オランダ" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "オランダ領アンティル諸島" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "ニューカレドニア" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "ニュージーランド" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "ニカラグア" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "ニジェール" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "ナイジェリア" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "ニウエ" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "ノーフォーク島" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "北マリアナ諸島" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "ノルウェー" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "オマーン" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "パキスタン" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "パラオ" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "パナマ" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "パプアニューギニア" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "パラグアイ" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "ペルー" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "フィリピン" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "ピトケアン諸島" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "ポーランド" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "ポルトガル" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "プエルトリコ" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "カタール" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "同窓会" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "ルーマニア" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "ロシア共和国" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "ルワンダ" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "セントキッツ・ネビス島" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "セントルシア" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "セントビンセント及びグレナディーン諸島" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "サモア" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "サンマリノ" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "サントメ・プリンシペ" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "サウジアラビア" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "セネガル" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "セルビア" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "セーシェル" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "シエラレオネ" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "シンガポール" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "スロバキア共和国" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "スロベニア" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "ソロモン諸島" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "ソマリア" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "南アフリカ" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "サウスジョージア・サウスサンドウィッチ諸島" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "スペイン" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "スリランカ" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "セント・ヘレナ" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "サンピエール島・ミクロン島" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "スーダン" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "スリナム" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "スヴァールバル諸島およびヤンマイエン島" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "スワジランド" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "スウェーデン" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "スイス" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "シリアアラブ共和国" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "台湾" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "タジキスタン" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "タンザニア連合共和国" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "タイ" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "トーゴ" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "トケラウ" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "トンガ" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "トリニダード・トバゴ" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "チュニジア" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "トルコ" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "トルクメニスタン" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "タークス・カイコス諸島" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "ツバル" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "ウガンダ" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "ウクライナ" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "アラブ首長国連邦" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "イギリス" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "アメリカ合衆国" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "合衆国領有小離島" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "ウルグアイ" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "ウズベキスタン" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "バヌアツ" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "ベネズエラ" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "ベトナム" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "英領バージン諸島" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "米領バージン諸島" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "ウォリス・フツナ" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "西サハラ" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "イエメン" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "ユーゴスラヴィア" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "ザンビア" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "ジンバブエ" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "国" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "デフォルトの国" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "カスタムファーストオプションを使用" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "カスタムファーストオプション" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "南スーダン" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "クレジットカード" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "カード番号ラベル" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "カード番号" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "カード番号の説明" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "クレジットカードの表面にある(通常)16桁の数字。" #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "カード確認コードラベル" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC (半角数字。例: 123)" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "カード確認コードの説明" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "カードの3桁(裏面)または4桁(表面)の数字。" #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "カード名義ラベル" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "カードの名義" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "カード名義の説明" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "クレジットカードの表面に印刷されている名前。" #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "カード有効期限(月)ラベル" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "有効期限(月:2桁)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "カード有効期限(月)の説明" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "クレジットカードの有効期限の月で、通常カードの表面に記載。" #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "カード有効期限(年)ラベル" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "有効期限(年:4桁)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "カード有効期限(年)の説明" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "クレジットカードの有効期限の年で、通常カードの表面に記載。" #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "テキスト" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "テキストエレメント" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "非表示のフィールド" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ユーザーID(ログインしている場合)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "ユーザーの名(ログインしている場合)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "ユーザーの姓(ログインしている場合)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "ユーザーの表示名(ログインしている場合)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "ユーザーのメールアドレス(ログインしている場合)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "投稿/ページID(可能な場合)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "投稿/ページタイトル(可能な場合)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "投稿/ページURL(可能な場合)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "本日の日付" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "クエリ文字列変数" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "このキーワードはWordPressが留保しています。 別のキーワードをお試しください。" #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "これはメールアドレスですか?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "この欄がオンの場合、Ninja Formsがこの入力をメールアドレスとして確認します。" #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "このアドレスにフォームのコピーを送信しますか?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "この欄がオンの場合、Ninja Formsがこのフォームのコピー(および添付メッセージ)をこのアドレスに送信します。" #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "リスト" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "これはユーザーの状態です" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "選択した値" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "値の追加" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "値の除去" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "計算" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "ドロップダウンリスト" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "ラジオボタン" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "チェックボックス" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "複数選択" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "リストタイプ" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "複数選択ボックスのサイズ" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "リストアイテムのインポート" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "リストアイテム値の表示" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "インポート" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "本機能を使用するには、上のテキストエリアにCSVを貼り付けてください。" #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "以下のような形になります:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "ラベル,値,計算" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "値または計算を空欄にして送信する場合には「''」を代わりに入力します。" #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "選択済み" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "数字" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "最小値" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "最大値" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "ステップ(合計増分>>>>>)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "主催者" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "パスワード" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "登録パスワードフィールドとしてこれを使用" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "この欄がオンの場合、パスワードと再入力パスワードの両方のテキストボックスを出力します。" #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "パスワード再入力ラベル" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "パスワード再入力" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "パスワード強度インジケーターの表示" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "ヒント: パスワードは7文字以上にしてください。 より安全にするために、大文字と小文字、数字、および以下のような記号を使用します:! \" ? $ % ^ " "& )" #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "パスワードが一致しません" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "星評価" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "スターの数" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "あなたがボットでないことを確認してください" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "CAPTCHAフィールドに入力してください" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "サイト&秘密キーを正しく入力したことを確認してください" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "CAPTCHAの不一致。 CAPTCHAフィールドに正しい値を入力してください" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "アンチスパム" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "迷惑メールに関する質問" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "迷惑メールに関する答え" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "送信" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "税" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "税率" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "パーセントで入力してください。例:8.25%、4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "テキストエリア" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "リッチテキストエディタを表示" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "メディアアップロードボタンを表示" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "モバイル端末でリッチテキストエディタを無効にする" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "メールアドレスとして確認しますか? (必須フィールド)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "入力を無効にする" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "日付の選択" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "電話番号 - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "通貨" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "カスタムマスク定義" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "ヘルプ" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "タイマー送信" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "タイマーに設定した時間になるとテキストを送信するボタン>>>>" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "%n 秒お待ちください" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "「%n」は秒数を示すために使用します" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "カウントダウンの秒数" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "これはユーザーがフォームを送信する際に待機する時間です" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "あなたがもし機械でなく人間でしたら、少しスピードを落としてください。>>>>" #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "本フォームを送信するにはJavaScriptが必要です。 有効にしてからもう一度お試しください。" #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "リストフィールドマッピング" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "インタレストグループ" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "シングル" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "複数" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "リスト" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "更新" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "メタボックス" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "送信メタボックス" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "ユーザーメタ(ログインしている場合)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "支払いの回収" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "いいえフォームがみつかりませんでした。" #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "作成日" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "タイトル" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "更新日" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "失敗しました" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "親アイテム:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "すべての項目" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "新規商品追加" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "新規項目" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "項目を編集" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "更新アイテム" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "項目を表示" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "項目検索" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "ゴミ箱には見られない" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "フォーム送信" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "送信情報" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "フォームを追加" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "フォームテンプレートのインポートエラー。" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "項目" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "アップロードしたファイルが有効な形式ではありません。" #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "無効なフォームのアップロード。" #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "フォームのインポート" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "フォームをエクスポート" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "数式(高度)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "演算とフィールド(高度)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "自動合計フィールド" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "アップロードしたファイルが php.ini の upload_max_filesize 指示を超過しています。" #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "アップロードしたファイルがHTMLフォームで指定されている MAX_FILE_SIZE 指示を超過しています。" #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "アップロードされたファイルは、部分的にアップロードされました。" #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "ファイルはアップロードできませんでした。" #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "一時フォルダが見つかりません。" #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "ディスクへのファイルの書き込みに失敗しました。" #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "拡張モジュールによってファイルアップロードが停止しました。" #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "不明なアップロードエラー。" #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "ファイルのアップロードエラー" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "アドオンライセンス" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "移行とモックデータが完了しました。 " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "フォームの表示" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "設定を保存する" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "サーバーIPアドレス" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "ホスト名" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Ninja Formsを追加" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "フォームが見つかりません" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "フィールドが見つかりません" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "予期せぬエラーが発生しました。" #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "プレビューは存在しません。" #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "支払い方法" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "支払い合計" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "タグの接続>>>>>" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "メールアドレスまたはフィールドを検索" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "件名テキストまたはフィールドを検索" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "CSV添付" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "ここにラベル" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "ここにヘルプテキスト" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "フォームフィールドのラベルを入力します。 このようにしてユーザーが個別のフィールドを識別します。" #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "フォームデフォルト" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "hiddenフィールド" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "フィールドエレメント自体に対するラベルの位置を選択します。" #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "必須フィールド" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "必ずフォームを送信する前にこのフィールドに入力してください。" #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "数字オプション" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "最小値" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "最大値" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "ステップ" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "設定" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "1" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "1" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "2" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "2" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "3" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "3" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "計算値" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "ユーザーがこのフィールドに入力できる内容の種類を制限します。" #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "ありません。" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "米国の電話番号" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "カスタム" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "カスタムマスク" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - " "アルファベット文字(A~Z、a~z)を表します。文字のみを入力できます。
    • \n
    • 9 " "- 数字(0~9)を表します。数字のみを入力できます。
    • \n
    • * - " "英数字(A~Z、a~z、0~9)を表します。この場合数字と文字の両方を\n " "入力できます。
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "入力数制限" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "文字" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "単語" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "カウンターの後に表示されるテキスト" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "文字入力可能" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "ユーザーがデータを入力する前にフィールドに表示するテキストを入力します。" #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "カスタムクラス名" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "コンテナー" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "フィールドラッパーにクラスを追加します。" #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "エレメント" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "フィールドエレメントにクラスを追加します。" #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "2019年11月18日金曜日" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "現在の日付にデフォルト" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "タイマー送信用の秒数。" #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "フィールドキー" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "カスタム開発用にフィールドを識別してターゲットとするための固有キーを作成します。" #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "送信内容を表示してエクスポートする際に使用するラベル。" #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "ユーザーにはホバー時に表示されます。" #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "説明" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "数値でソート" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "送信表のこの列は数字順にソートされます。" #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "カウントダウン用の秒数" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "登録パスワードフィールドとしてこれを使用します。 この欄がオンの場合、\n パスワードと再入力パスワードの両方のテキストボックスを出力します" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "確認" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "リッチテキスト入力を許可します。" #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "処理状況ラベル" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "オン計算値" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "欄にチェックがある場合、この数字を計算に使用します。" #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "オフ計算値" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "欄にチェックがない場合、この数字を計算に使用します。" #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "この計算変数を表示" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- 変数を選択" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "値段" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "数量を使用" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "ユーザーがこの商品を複数選択できるようにします。" #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "商品タイプ" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "1つの商品(デフォルト)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "複数の商品 - ドロップダウン" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "複数の商品 - 複数選択" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "複数の商品 - 1つ選択" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "ユーザーエントリ" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "コスト" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "コストオプション" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "1件のコスト" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "コストドロップダウン" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "コストの種類" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "商品" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- 商品を選択" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "回答" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "フォームのスパム送信を防ぐため、大文字と小文字を区別する答え。" #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "タクソノミー" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "新しい使用条件>>>を追加" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "これはユーザーの状態です。" #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "処理用にフィールドをマークするために使用されました。" #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "保存済みフィールド" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "共通のフィールド" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "ユーザー情報フィールド" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "価格フィールド" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "レイアウトフィールド" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "その他のフィールド" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "フォームが正常に送信されました。" #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Ninja Form送信" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "送信情報を保存" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "変数名" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "方程式" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "デフォルトのラベル位置" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "ラッパー" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "フォーム識別子" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "このフォームを参照する際に使用するプログラム名" #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "送信ボタンの追加" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "フォームにまだ送信ボタンがありません。 自動的に追加することができます。" #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "ログイン中" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "フォームプレビューに適用する。" #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "送信リミット" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "フォームプレビューに適用しない。" #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "表示設定" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "計算" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "価格:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "数量:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "追加" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "新しい画面で開く" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "あなたがヒトでこのフィールドをご覧になっている場合、空白にしておいてください。" #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "利用可能" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "有効なメールアドレスを入力してください。" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "これらのフィールドは一致する必要があります。" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "最低文字数エラー" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "最高文字数エラー" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "次の数だけ増やしてください: " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "リンクを挿入" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "メディアを挿入" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "本フォームの送信前にエラーを修正してください。" #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot エラー" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "ファイルのアップロード中です。" #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "ファイルのアップロード" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "すべてのフィールド" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "サブシーケンス" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "投稿ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "投稿タイトル" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "投稿の URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IPアドレス" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ユーザーID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "名(ローマ字 - 例:Taro)" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "姓(ローマ字 - 例:Yamada)" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "表示される名前" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "独自スタイル" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Light" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Dark" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "デフォルトのNinja Formsスタイルを使用します。" #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "ロールバック" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "v2.9.x にロールバック" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "最新リリースの 2.9.x にロールバックします。" #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCAPTCHA設定" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHAテーマ" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "リッチテキストエディタ(RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "上級" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "管理" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "空白のフォーム" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "私まで連絡をください" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "モック成功メッセージアクション" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "本フォームにご記入いただき、{field:name}ありがとうございます!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "モックメールアクション" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "これはメールアクションです。" #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "こんにちは、Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "モック保存アクション" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "これはテストです" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "これは別のテストです。" #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "ヘルプ" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "何をお手伝いいたしましょうか?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "同意されますか?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "ご希望の連絡方法は?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "電話番号" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "郵便" #: includes/Database/MockData.php:315 msgid "Send" msgstr "送信" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "キッチンシンク" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "選択リスト" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "オプション 1" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "オプション 2" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "オプション 3" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "ラジオボタンリスト>>>>" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "バスルームの洗面台" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "チェックボックスリスト" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "これらはユーザー情報セクションのすべてのフィールドです。" #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "番地" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "市区町村" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "郵便番号" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "これらは価格セクションのすべてのフィールドです。" #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "商品(数量を含む)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "商品(数量を分ける)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "数量。 " #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "トータル" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "クレジットカード名義人氏名" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "クレジットカード番号" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "クレジットカード確認コード" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "クレジットカード有効期限" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "クレジットカード郵便番号(米国)" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "これは様々な特別フィールドです。" #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "スパム防止の質問 (Answer = answer)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "回答" #: includes/Database/MockData.php:805 msgid "processing" msgstr "処理中" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "ロングフォーム - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " フィールド" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "フィールド#" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "メール登録フォーム" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Eメール" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "メール アドレスの入力" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "登録" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "商品フォーム(数量フィールド付き)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "購入" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "購入内容: " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "個の商品、価格 " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "商品フォーム(数量を埋込む)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " 個の商品、価格 " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "商品フォーム(複数商品)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "商品A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "商品Aの数量" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "商品B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "商品Bの数量" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "個の商品Aと " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "個の商品B、価格$" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "計算機能つきフォーム" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "最初の計算" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "2回目の計算" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "計算はAJAX応答で返されます(応答→データ→計算" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "コピー" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "フォームを保存" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "クレジットカード郵便番号(米国)" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "フォームをプレビューするにはログインしてください。" #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "フィールドが見つかりません。" #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "通知: Ninja Formショートコードがフォームを特定せずに使用されました。" #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Formショートコードがフォームを特定せずに使用されました。" #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "住所2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "ボタン" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "シングルチェックボックス" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "チェック済み" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "オフ" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "クレジットカード確認コード" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "日-月-年" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "月-日-年" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "年-月-日" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y年m月d日" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "セレクトボックス" #: includes/Fields/ListState.php:26 msgid "State" msgstr "州(都道府県)" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "注意事項テキストは下記の注意事項フィールドの高度設定で編集できます。" #: includes/Fields/Note.php:45 msgid "Note" msgstr "ノート" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "パスワード確認" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "パスワード" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "reCAPTCHA" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "reCAPTCHAを入力してください" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "高度配送" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "質問" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "質問位置" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "間違った答え" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "スターの数" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "使用条件>>>リスト" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "この分類での使用条件>>>>はありません。 %s使用条件%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "分類が未選択です。" #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "利用可能な使用条件>>>>>>" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "段落テキスト" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "一行のテキスト入力" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "郵便番号" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "ポスト" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "クエリ文字列" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "クエリ文字列" #: includes/MergeTags/System.php:13 msgid "System" msgstr "システム" #: includes/MergeTags/User.php:13 msgid "User" msgstr "ユーザ" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " は更新が必要です。バージョン " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " がインストールされています。現在のバージョンは " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "編集フィールド" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "ラベル名" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "フィールド上" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "フィールド下" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "フィールド左" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "フィールド右" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "ラベルを隠す" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "クラス名" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "ベーシックフィールド" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "複数選択" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "新規フィールドを追加" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "新規アクションを追加" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "メニューを広げる" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "公開" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "公開" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "読み込み中" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "変更を表示" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "フォームフィールドを追加" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "フォームフィールドの追加から始めます。" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "新規フィールドの追加" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "こちらをクリックして必要なフィールドを選択するだけです。" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "とても簡単です。または…" #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "テンプレートから始める" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "お問い合わせ先" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "このシンプルな連絡先フォームで、ユーザーがあなたに連絡できるようにします。必要に応じてフィールドを追加したり削除したりできます。" #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "見積りリクエスト" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "このテンプレートで、あなたのWebサイトから簡単に見積りリクエストを管理。必要に応じてフィールドを追加したり削除したりできます。" #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "イベント登録" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "この簡単に入力できるフォームで、ユーザーが次回イベントに登録できるようにします。必要に応じてフィールドを追加したり削除したりできます。" #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "ニュースレター サインアップ フォーム" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "このニュースレター サインアップ フォームで購読者を追加し、メーリングリストを拡大しましょう。必要に応じてフィールドを追加したり削除したりできます。" #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "フォームアクションを追加" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "フォームフィールドの追加から始めます。プラス記号をクリックして必要なアクションを選択するだけです。とても簡単です。" #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "複製 (^ + C + クリック)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "削除 (^ + D + クリック)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "アクション" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "トグル引き出し" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "フルスクリーン" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "ハーフスクリーン" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "元に戻す" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "終了" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "すべて元に戻す" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " すべて元に戻す" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "もうすぐ完了します..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "まだしない" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " 新しい画面で開く" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "解除" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "修正する" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- フォームを選択" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Being Date" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "弊社のサポートチームにお問い合わせいただく前にこちらをご確認ください:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREEドキュメンテーション" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "サポートへお問い合わせいただく前にご確認ください" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "弊社サポートの対応範囲" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "フィールドのインポート" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "更新日: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "送信日: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "送信者: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "送信データ" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "表示" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "もっと" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "編集フィールド" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "フォームフィールド" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "変更プレビュー" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "連絡先フォーム" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "申し訳ありません。 そのアドオンはまだNinja Forms THREEに対応していません。 %s詳細%s。" #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%sは無効化されました。" #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Ninja Formsの改善にご協力ください!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "オプトインされると、お客様のNinja Formsインストールに関するデータの一部がNinjaForms.comへ送信されます(お客様の送信内容は含まれません)。" #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "スキップされてもかまいません。Ninja Formsは通常通り稼働します。" #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%s許可する%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%s許可しない%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "アクセス権がありません。" #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "アクセス権が拒否されました" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "デバッグ:2.9.x に切り替える" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "デバッグ:3.0.x に切り替える" lang/ninja-forms-de_DE.mo000064400000310770152331132460011213 0ustar00,(totg&uu5uuuvvvvvv v v$vw1wEwwwxx %x/x7x =x Hx Tx^xfx&xx xx x x xxxy y yy!y *y7y FyTyXy\y ny zy;y y yyyy y y zzz-zJzjzzz zzzz zzzz {{ &{ 3{@{H{O{S{ X{ c{o{{{ {L{| ||| "|A-|o|||||||} #}/}G}Y}h}k}} } }} }}}} } ~~~4~:~@~Q~ V~"a~~~~ ~~W~#+J%P v         :7N? р 'FKT dqx ΁%, ; FQh ̂ ۂ  "[5у )8GNex ΄ ܅" $, ?L!]  ˆن|ԇه .6 ; G Q[jz  ň Ո # %-0S'MƉOUd ӊߊ<Yaj } ԋ   -9W s  Ɍӌ$( IN`!y  ǎЎ ߎ -8OV \jy Џ  ")1BJR[l { 7,ߐq ~  ? ,>Sg{  ’͒ Ғܒ  +? DN] d q |!Jhq z  ǔה ߔh`n~QO?QD<&%c1EDHӚgn~ œ М ܜ '(Pav |  ÝН ߝ  0KPXry!ŞΞ/՞  #&0Wj q| 2ڟL ? `jq !۠  ( 1?E`v š ˡա ݡ   )&/ Vahqzk  "& > LX`go_~ޣ# 1 5CXa} Ȥݤ  4 ?Kg ǥܥ  -5 ;F LXWm ŦЦ   *4:B Vb{ҧ#7Vko!c$1|f7UXZMU5ϬԬ׬!-4Oޭ (0CDH0=%4D^#~#Ư֯ۯ߯NI \}  Űڰ  /;CLRYjy ر  )/FO ֲ 5/#S!q20"###8(a"vCyݵ(W)+(jƷ 3 R` hs| Ƹ ո 2 N Xb " Ź:ҹ !*09P g q ~ ʺ кۺ %/8+? kx>ӻ*ܻ4I_u+ Լ ?Wmu* &8 N Z{  ľ ؾ   *6I P [ g VĿGcl{(  12A Z d   !:C^ grr %* P\ b n(|   #:Xk r!" * ;G&N&u    &0 7CX _m~ < (3 8E+b$dSSn /{;9J!l*1\G;2$7 \}Z Gh.F&x*90d9+!96p4B.\q35Q:qZZ?'Ag:&GE KXlD d q^ -FMQVZcj r| $   -DLir ,O[O)(d    6G_| ~6     & 1;K\t  %?bo'%B*h N!%+ 1 <GMWQ46v40(/)XH5*;{4]+4." O $'9AFMS nx  '1DYl  Bf08px'-J2[YA"*MThx !tvQP{-3H|   2 M[x&!:Ri4D L W7d8  5N i u  I:1A(@HOX `j$s  % . 9E!W y   %1 JVZ ^ huR    #.4<R*p  )BT gq    X v  b&%E%k$$ 8 R_b  ,FLRc u+ l h't!      (  7  A  L NZ  y  ( 4 L d w     !     & 8 J ] }  # * - 1 E L  b  m x   $      $  4  B  O \ w    #AR o|/( C MZr"/2E [ fp " 7U%6?W^ {  '>Qbs |*+F==f\Gf # ,6L^fXm  5A_r 2;(Luz&1&:6O*!+M` }  (-Vq    3BVZm< V@ %D j |       !! &!1! 6!@! G!U!\!a!g!y!!! !! !!!!%"'""# # ##.#E#N# W#a#r# y###B$$v%{+&&}B's'\4(I(I(8%)7^))W1*f*2*#, --"%-H-f-|-------< .I.\.q. x. . ...... .//)/F/]/|////////*/ 0 0B#0 f0q0 w00 0 0 00 0 00 00=1C1^1nm11111 2 2)2&H2o2w222222 22!2"23!)3K3Q3 j3t3{3 333 33 3 3 33 3 334 44444 4 4 44$4 55/575 >5H5c555 5/ 6:6 ?6K6[6r666 6 6 667 7 7 7@7%H7n7w77777788&8 >8L8T8Y8l8}8888 888 X9d9{9 99 9&9 9999 :%:B:X:h::::::$;%;:;N;}a;A;!<9<<a=j=cT>p>f)??<L@@@@@@@*AR,AAAA"AAABB$B BBMBjBVrB8BECHCMCdC{CCC&C&C2D8DJDODUD[pDD"DEE%E.E7E @E JEXEnEEEE EEEEEE EF F$F-F2BF&uFFF FFF F FGG"G G G`G,YH*H&H#HEHXBII0ZJ1J0J)JJKcK$vK]KK=L#L2M;NM7MMON+lNNNNNN'N)N($OMO aOlO OO$OOOOO O PP,.P[PcPyP P PP"P P QSQgQ xQQQ QQQQQ QQR RR&R,RER2^R$R R R R8R S SG=S S<S SSSTT),T*VT7TT T,TU4UQDUUUUUUU&V*V >VHVeVlV qV}VV VVV VV V WW-WJW]WuWW WWWWW X XXD.XsXXAXmXKQY YYY8YYZ Z Z)Z CZNZ VZ9`ZZ!Z ZZZ [ [*A[ l[y[[[ [[[ [[ \\\ \\\\ \.\ $]0] 8] E]*P] {] ]]]]]]]]"^$)^N^_^ e^r^'z^'^ ^^^^ _#_=_ Z_d_Hm_,_ ___ `` ,`7`F`L`%T` z````` ` `` `@`aa#a 6a@aPa baoa ta0a'aaaaQaLbbm\cc<ddFdOdV8ee+ffZg0hFh4iGibiijT|j'jYjSkl5l.l=l1&m"Xm%{mBmm mn%0nVnsn=nSnj!oo/o1opKp6qqG]rMrrs(tTtuu3uGu ^uiuf,vvvvvv v vv^wrw{w wwwwww wwwww) x 4yAyTyqyy$y"yy zz)z#;z_znzzzzz$zz"z3{lE{u{7(|`|43}h}'q}},}}#} ~ ~?~W~k~$~ ~ ~~#  1=<z    ǀЀـ)!;]v ́(:L= ESn $?)&t,) ˅؅   W:kG_=O>S6rɈ<1P( ?`4?Ջ7M0   ]#  ɎҎ "%ENTZaex Ώ؏"/M] u  ϐ[א3; ?'YZ"vE/MT$GX'&63eq6]a}AmuoWh%|% #*a VIuJ;nAy!fVSv>FG Xx],rPP>@-rA!/a~[Jr NKb] \o^_&(7MHev.Kq"mS32yID}E.Dgx2=0zToo Jf0`K4P;7% +C#tW~~w`5$!bmO/k_o&g*]:^EiJI5EVp*B8|}(q@+I1D{'-LQ<Lh'1e}n$D?RX[61? :<LS8spcZ0z5!Cj 6hZM =XWvLT ;P> kd-,CW0=q@/eGKkxc~c/UR#%fkl(8CiBg #NO5`YM <UHl h)z]  7z w%<,ii9t}>?y8O69N'tuRmpy)xw)qz-c3&Bh#A^(`1aO|dIG:ss-FLQ2s,_$\Uj.[~! i+v_ {Qt(c< 5"&S0[T*G9 QZ\+Nb;ufa ^9B*b:YgwRMQ$n7>{=2jR\UlY reHF)xnK"VbPrCUgBm  js2X_7\lWd d9 @1d`pJ,:3.4 FAEw48lnuT@)t34k[S"YyD|Z{V+j{|F4=HfH.O?N^p; Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2017-05-08 09:49-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.5.7 X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-SourceCharset: UTF-8 X-Poedit-SearchPath-0: . Felder In neuem Fenster öffnen Alles rückgängig installiert. Die aktuelle Version ist Produkt(e) für muss aktualisiert werden. Sie haben Version #%1$s Entwurf aktualisiert. Vorschau%3$s%1$s zur Überprüfung wiederhergestellt von %2$s.%1$s geplant für: %2$s. Vorschau%4$s%1$s eingereicht. Vorschau%3$s%n gibt die Anzahl von Sekunden anvor %s%s veröffentlicht.%s gespeichert.%s aktualisiert.%s wurde deaktiviert.%sZulassen%s%sAktivierter%s Berechnungswert%sNicht zulassen%s%sDeaktivierter%s Berechnungswert* - Repräsentiert ein alphanumerisches Zeichen (A-Z,a-z,0-9) - Dies erlaubt die Eingabe von Nummern und Buchstaben.- Nichts- Land auswählen- Ein Feld auswählen- Produkt auswählen- Variable auswählen- Formular auswählen- Alle Typen anzeigen9 - Repräsentiert numerische Zeichen (0-9) - Erlaubt nur die Eingabe von Nummern
    • a - Stellt ein alphabetisches Zeichen dar (A-Z, a-z) - Es dürfen nur Buchstaben eingegeben werden.
    • 9 - Stellt ein numerisches Zeichen dar (0-9) - Es dürfen nur Zahlen eingegeben werden.
    • * - Stellt ein alphanumerisches Zeichen dar (A-Z, a-z, 0-9) - Es dürfen Zahlen und Buchstaben eingegeben werden.
    Eine Antwort, bei der die Klein- und Großschreibung eine Rolle spielt, um Spam-Einreichungen Ihres Formulars zu vermeiden.Für Ninja Forms erscheint in Kürze ein großes Update. %sErfahren Sie mehr über neue Funktionen, Rückwärtskompatibilität und Häufig gestellte Fragen.%sFormularerstellung jetzt noch einfacher und besser!Über dem ElementÜber FeldAktionsnameAktion aktualisiertAktionAktivierenAktiviertHinzufügenBeschreibung hinzufügenFormular hinzufügenHinzufügenNeues Feld hinzufügenNeues Formular hinzufügenNeuer EintragNeue Einreichung hinzufügenNeue Begriffe hinzufügenOperation hinzufügenSchaltfläche zum Absenden hinzufügenWert hinzufügenFormularaktionen hinzufügenFormularfelder hinzufügenFormular dieser Seite hinzufügenNeue Aktion hinzufügenNeues Feld hinzufügenFügen Sie mithilfe dieses Registrierungsformulars für Newsletter Abonnenten Ihrer E-Mail-Liste hinzu, so dass die Liste immer weiter wächst. Sie können Felder nach Bedarf hinzufügen oder entfernen.Add-on-LizenzenAdd-OnsAdresseAdressfeld 2Fügt Ihrem Feldelement eine zusätzliche Klasse hinzu.Fügt Ihrem Feld-Wrapper eine zusätzliche Klasse hinzu.Administrator-E-MailAdmin-BezeichnungVerwaltungErweiterte EinstellungenErweiterte GleichungErweiterte EinstellungenErweiterte VersandoptionenAfghanistanNach allemNach FormularNach BezeichnungEinverstanden?AlbanienAlgerienAlleInfos zu FormularenAlle FelderAlle FormulareAlle EinträgeAlle aktuellen Formulare verbleiben in der Tabelle "Alle Formulare". In einigen Fällen werden Formulare durch diesen Vorgang dupliziert.Erlauben Sie Benutzern sich ganz einfach für Ihre nächste Veranstaltung zu registrieren, indem sie dieses Formular ausfüllen. Sie können Felder nach Bedarf hinzufügen oder entfernen.Erlauben Sie Benutzern, sich über dieses einfache Kontaktformular an Sie zu wenden. Sie können Felder nach Bedarf hinzufügen oder entfernen.Gestattet Rich-Text-Eingabe.Gestattet Benutzern, dieses Produkt mehrmals auszuwählen.Fast fertig ...Zusammen mit der Registerkarte "Formular erstellen" haben wir "Mitteilungen" zugunsten von "E-Mails und Aktionen" entfernt. Dadurch wird klarer, was auf dieser Registerkarte gemacht werden kann.Amerikanisch-SamoaEin unerwarteter Fehler ist aufgetreten.AndorraAngolaAnguillaAntwortAntarktisAntispamSpamabwehr-Frage (Antwort = Antwort)Antispam FehlermeldungAntigua und BarbudaJedes Zeichen, welches Sie in die Box für die "Eigene Maske" (Custom Mask) einfügen und dass nicht in der Liste unten enthalten ist, wird automatisch für den Benutzer eingefügt, während dieser tippt - und es ist nicht entfernbar!Ein Ninja-Formular anfügenNinja Forms anhängenAn Seite anhängenAnwendenArgentinienArmenienArubaCSV anhängenAnhängeAustralienÖsterreichAuto-SummenfelderAutomatische GesamtwertberechnungVerfügbarVerfügbare BegriffeAserbaidschanZurück zur ListeZurück zur ListeSichern/ WiederherstellenNinja Formulare sichernBahamasBahrainBangladeshBarBarbadosGrundfelderAllgemeine EinstellungenWaschbeckenBazBCCVor allemVor FormularVor BezeichnungBitte lesen Sie sich Folgendes durch, bevor Sie sich an unser Support-Team wenden:Start-DatumAktuelles DatumWeißrusslandBelgienBelizeUnter dem ElementUnter FeldBeninBermudaBeste Kontaktmethode?Bester Support in der BrancheBessere Organisation der FeldeinstellungenVerbesserte LizenzverwaltungBhutanRechnungLeere FormulareBolivienBosnien und HerzegowinaBotswanaBouvetinselBrasilienBritisches Territorium im Indischen OzeanBrunei DarussalamFormular erstellenBulgarienAktion wählenBurkina FasoBurundiButtonPrüfziffer (CVC)BerechnenBerechnungswertBerechnungBerechnungsmethodeBerechnungseinstellungenBerechneter NameBerechnungenBerechnungen werden mit AJAX-Response zurückgegeben (Response -> Daten -> Berechnungen)KambodschaKamerunKanadaAbbrechenKap VerdeCaptcha-Einträge stimmen nicht überein. Bitte geben Sie den richtigen Wert ins Captcha-Feld ein.Beschreibung KartenprüfnummerBeschriftung KartenprüfnummerBeschreibung Ablaufdatum Karte, MonatBeschriftung Ablaufdatum Karte, MonatBeschreibung Ablaufdatum Karte, JahrBeschriftung Ablaufdatum Karte, JahrBeschreibung KartennameBeschriftung KartennameKreditkartennummerBeschreibung KartennummerBeschriftung KartennummerKaimaninselnCCZentralafrikanische RepublikTschadWert ändernZeichenZeichen übrigZeichenSchummeln, wie?Unsere Dokumentation aufrufenKontrollkästchenListe mit KontrollkästchenKontrollkästchenAusgewähltBerechnungswert aktiviertChileChinaWeihnachtsinselnVeranstaltungsortKlassennameErfolgreich komplettiertes Formular leeren?Cocos (Keeling) IslandsZahlung kassierenKolumbienGemeinsame FelderComorosKomplexe Gleichungen können durch Hinzufügen von Klammern erstellt werden: %s( field_45 * field_2 ) / 2%s.BestätigenBestätigen Sie, dass Sie kein Bot sindKongoKongo, Demokratische Republik desKontaktformularKontaktKontaktieren Sie unsBehälterFortfahrenCook-InselnPreisKosten-DropdownKostenoptionenKostentypCosta RicaCote D'IvoireLizenz konnte nicht aktiviert werden. Bitte prüfen Sie Ihren LizenzschlüsselLandErstellt einen eindeutigen Schlüssel zum Identifizieren und Auswählen Ihres Felds zur benutzerspezifischen Entwicklung.KreditkarteKreditkarte PrüfzifferKreditkarte PrüfzifferKreditkarte AblaufKreditkarte Vollständiger NameKreditkartennummerKreditkarte PLZKreditkarte PLZWürdigungenKroatien (Lokaler Name: Hrvatska)KubaWährungWährungssymbolAktuelle SeiteBenutzerdefiniertEigene CSS-KlasseEigene CSS-KlassenBenutzerdefinierte KlassennamenBenutzerdefinierte FeldgruppeBenutzerdefinierte MaskeBenutzerdefinierte MaskendefinitionBenutzerdefiniertes   Feld   gelöscht .Benutzerdefiniertes   Feld   aktualisiert .Eigene erste OptionZypernTschechische RepublikDD-MM-YYYYDD/MM/YYYYDEBUG: Zu 2.9.x wechselnDEBUG: Zu 3.0.x wechselnDunkelDaten erfolgreich wiederhergestellt!DatumErstellungsdatumDatumsformatDatumseinstellungenDatum der EinreichungDatum geändertDatumswählerDeaktivierenDeaktivierenAlle Lizenzen deaktivierenLizenz deaktivierenDeaktivieren Sie die Lizenzen für Ninja Forms-Erweiterungen einzeln oder als Ganzes auf der Registerkarte mit den Einstellungen.StandardStandardlandStandardbeschriftungspositionStandardzeitzoneStandard ist aktuelles DatumStandartwertDie Standardzeitzone ist %sStandard-Zeitzone ist %s – es sollte UTC seinDefinierte FelderLöschenLöschen (^ + D + Klick)Dauerhaft löschenDieses Formular löschenProdukt dauerhaft löschenDänemarkBeschreibungInhalt der BeschreibungPosition der BeschreibungWussten Sie schon, dass Sie die Conversions steigern können, indem Sie lange Formulare in kleinere, sozusagen leichter verdauliche Formularteile aufsplitten?

    Die Erweiterung Multi-Part Forms für mehrteilige Formulare für Ninja Forms erledigt diese Aufgabe einfach und schnell.

    Administratorhinweise deaktivierenAutovervollständigen des Browsers deaktivierenEingabe deaktivierenVisuellen Editor auf mobilen Geräten deaktivierenEingabe deaktivieren?SchliessenAnzeige -Formulartitel anzeigenAnzeigenameZeige EinstellungenDiese Berechnungsvariable anzeigenTitel anzeigenFormular anzeigenTrennungDschibutiDiese Begriffe nicht anzeigenLaden-Finder-DokumentationDokumentation erscheint bald.Für alle Themen von der %sFehlerbehebung%s bis zu unserer %sEntwickler-API%s steht Dokumentation zur Verfügung. Ständig werden neue Dokumente ergänzt.Gilt NICHT für die Formularvorschau.Gilt für die Formularvorschau.DominicaDominikanische RepublikFertigAlle Einträge herunterladenAufklappmenüDuplizierenDuplizieren (^ + C + Klick)Formular duplizierenEcuadorBearbeitenAktion bearbeitenFormular bearbeitenBearbeite EintragMenüpunkt bearbeitenEinreichung bearbeitenProdukt bearbeitenBearbeitungsfeldBearbeitungsfeldÄgyptenEl SalvadorElementE-MailE-Mail und AktionenE-Mail-AdresseE-Mail-NachrichtFormular E-Mail-AbonnementE-Mail-Adresse oder nach einem Feld suchenE-Mail-Adressen oder nach einem Feld suchenDie E-Mail wird so aussehen, als ob sie von dieser E-Mail-Adresse ist.Die E-Mail wird so aussehen, als ob sie von diesem Namen ist.E-Mails und AktionenEnddatumAchten Sie darauf, dass dieses Feld ausgefüllt wurde, bevor Sie das Absenden des Formulars gestatten.Geben Sie Text ein, der in dem Feld angezeigt werden soll, bevor der Benutzer Daten eingibt.Geben Sie die Beschriftung des Formularfelds ein. Darüber erkennen die Benutzer die einzelnen Felder.E-Mail-Adresse eingebenUmgebungGleichungGleichung (Erweitert)ÄquatorialguineaEritreaFehlerFehlermeldung, welche angezeigt wird, wenn erforderliche Felder nicht ausgefüllt wurdenEstlandÄthopienEvent-RegistrierungMenü erweiternMonat des Ablaufdatums (MM)Jahr des Ablaufdatums (JJJJ)ExportierenFavouriten-Felder exportierenFelder exportierenFormular exportierenFormulare exportierenEin Formular exportierenDieses Objekt exportierenNinja Formulare erweiternDATEI-UPLOADKann die Datei nicht schreiben.Falkland-Inseln (Malvinas)FäröerFavoriten-FelderFavoriten wurden erfolgreich importiert.FeldFeld Nr.Feld-IDFeldschlüsselFeld nicht gefundenFeldoperationenFelderFelder mit einem * sind Pflichtfelder.Felder mit einem %s*%s müssen ausgefüllt werdenFidschiFehler Datei-UploadDatei-Upload läuft.Der Datei-Upload wurde von einer Erweiterung gestoppt.FinnlandVornameBeheben.FooFoo BarWenn Sie beispielsweise einen Produkt-Schlüssel haben, der so aussieht: A4B51.989.B.43C können Sie das Feld mit a9a99.999.a.99a maskieren. Das bedeutet, dass alle a's nur Buchstaben zulässt und alle 9'er nur Zahlen.FormularFormularstandardFormular gelöschtFormularfelderDas Formular wurde erfolgreich importiert.Formular SchlüsselFormular nicht gefundenFormularvorschauFormulareinstellungen gespeichertFormular-EinträgeImportfehler FormularvorlageFormulartitelFormular mit BerechnungenFormatFormulareFormulare gelöschtFormulare pro SeiteFrankreichFrankreich, MutterlandFranzösisch-GuayanaFranzösisch-PolynesienFranzösische Süd- und AntarktisgebieteFreitag, 18. November 2019AbsenderadresseName des AbsendersVollständiges ChangelogVollbildGabonGambiaAllgemeinAllgemeine EinstellungenGeorgienDeutschlandHilfe erhaltenMehr Aktionen abrufenMehr Typen abrufenHilfe erhaltenHole UnterstützungDen Systemreport holenHolen Sie sich einen Siteschlüssel für Ihre Domain, indem Sie sich %shier%sregistrieren.Beginnen Sie, indem Sie Ihr erstes Formularfeld hinzufügen.Beginnen Sie, indem Sie Ihr erstes Formularfeld hinzufügen. Klicken Sie einfach auf das Plus-Zeichen und wählen Sie die gewünschte Aktion aus. So einfach ist das.Erste SchritteErste Schritte mit Ninja FormsGhanaGibraltarGeben Sie dem Formular einen Namen. So finden Sie das Formular später einfach wieder.LosDer Versuch ist leider fehlgeschlagenZu den FormularenZu Ninja FormsZur ersten Seite gehenZur letzten Seite gehenZur nächsten Seite gehenZur vorherigen Seite gehenGriechenlandGrönlandGrenadaWachsende DokumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalber BildschirmHeard und McDonaldinselnHallo Ninja Forms!HilfeHilfetextHilfetext hierVerborgenVerborgenes FeldEtikett ausblendenDies verbergenFertiggestellte Formulare verstecken?Hinweis: Das Passwort sollte zumindest sieben Zeichen lang sein. Um es noch sicherer zu machen, sollten Sie Groß- und Kleinbuchstaben, Zahlen und Symbole wie z.B. ! " ? $ % ^ & ) verwenden.Holy See (Vatikanstadt)Home URLHondurasHoney PotHoneypot-FehlerHoneypot-FehlermeldungHongkongHook-TagHost-NameWie sieht's aus?UngarnIP AddresseIslandWenn "Beschreibungstext" aktiviert ist, wird neben das Eingabefeld ein Fragezeichen %s gesetzt. Bewegt sich die Maus über dieses Fragezeichen, wird der Beschreibungstext angezeigt.Wenn der "Hilfetext" aktiviert ist, werden Fragezeichen %s neben den Feldern angezeigt. Wenn Sie mit der Maus über das Fragezeichen fahren, wird ein entsprechender Hilfetext angezeigt.Wenn dieses Feld aktiviert ist, werden bei der Löschung ALLE Ninja Forms-Daten aus der Datenbank entfernt. %sFormular- und Einreichungsdaten können nicht wiederhergestellt werden.%sWenn dieses Feld aktiviert ist, löscht Ninja Forms die Werte im Formular, sobald dieses erfolgreich abgesendet wurde.Aktivieren Sie dieses Kontrollkästchen, wenn das Formular ausgeblendet werden soll, wenn es erfolgreich abgeschickt wurde.Aktivieren Sie dieses Kontrollkästchen, wenn nach dem Absenden des Formulars eine Kopie des Formularinhalts an diese E-Mail Adresse gesendet werden soll.Aktivieren Sie dieses Kontrollkästchen, wenn dieses Feld auf die Gültigkeit der E-Mail Adresse hin überprüft werden soll.Wenn diese Box aktiviert wird, wird das Passwortfeld zweimal ausgegeben (ein Normales und eines zur Bestätigung). Wenn dieses Feld aktiviert ist, sortiert dieses Spalte in der Einreichungstabelle nach Zahl.Wenn Sie ein Mensch sind und dieses Feld sehen, lassen Sie es bitte leer.Wenn Sie ein Mensch sind und dieses Feld sehen, lassen Sie es bitte leer.Wenn Sie ein Mensch sind, gehen Sie bitte langsamer vor.Bleibt dieses Feld leer, wird kein Grenzwert verwendet.Wenn Sie sich einverstanden erklären, werden einige Daten über Ihre Installation von Ninja Forms an Ninja Forms.com gesendet (NICHT Ihre Einreichungen).Es ist in Ordnung, dies zu überspringen! Ninja Forms funktioniert dennoch einwandfrei.Wenn Sie einen leeren Wert oder eine leere Berechnung senden möchten, müssen Sie dafür " verwenden.Wenn Sie eine E-Mail erhalten möchten, wenn ein Benutzer für Ihr Formular auf "Absenden" klickt, können Sie dies auf dieser Registerkarte einstellen. Sie können eine unbegrenzte Anzahl E-Mails einrichten einschließlich einer E-Mail, die an den Benutzer gesendet wird, der das Formular ausgefüllt hat.Wenn die Formulare nach dem Update auf 2.9 "fehlen", versucht diese Schaltfläche die alten Formulare erneut zu konvertieren, damit sie in 2.9 angezeigt werden. Alle aktuellen Formulare verbleiben in der Tabelle "Alle Formulare".ImportierenImport/ ExportEinträge importieren/ exportierenFavoriten-Felder importieren Favoriten importierenFelder importierenFormular importierenFormulare importierenListenartikel importierenEin Formular importierenImport/ ExportKlarerer AufbauIm automatischen Gesamtwert einschließen? (Falls aktiviert)Ungültige AntwortConversions steigernIndienIndonesienEingabemaskeEinfügenAlle Felder einfügenFeld einfügenLink einfügenMedium einfügenInnerhalb des ElementsInstalliertInstallierte PluginsInteressengruppenUngültiger Formular-Upload.Ungültige Formular-IDIran (Islamische Republik des)IrakIrlandIst dies eine E-Mail Adresse?IsraelSo einfach ist das. Oder...ItalienJamaikaJapanFehlermeldung bei deaktiviertem JavaScriptMax MustermannJordanienKlicken Sie einfach hier und wählen Sie das gewünschte Feld aus.KasachstanKeniaSchlüsselKiribatiKüchenspüleNordkoreaSüdkoreaKuwaitKirgistanBeschriftungBeschriftung hierEtikettennamePosition der BeschriftungBeschriftung beim Anzeigen und Exportieren von Einreichungen.Beschriftung,Wert,Berechn.BeschriftungenVon reCAPTCHA verwendete Sprache. Wenn Sie den Code für Ihre Sprache erhalten möchten, klicken Sie %shier%s.LaosNachnameLettlandLayoutelementeLayout-FelderMehr erfahrenWeitere Informationen zu Multi-Part FormsWeitere Informationen zu Save ProgressLibanonLinks des ElementsLinks vom FeldLesothoLiberiaLybienLizenzenLiechtensteinHellEingabe für diese Zahl begrenzenMeldung über erreichten GrenzwertEinreichungen begrenzenEingabe für diese Zahl begrenzenListeFeldzuordnung aufführenListentypListenLitauenWird geladenLädt...StandortEingeloggtLanges Formular LuxemburgMM-DD-YYYYMM/DD/YYYYMacaoMazedonienMadagaskarMalawiMalaysiaMaledivenMaliMaltaVerwalten Sie Angebotsanfragen mit dieser Vorlage ganz unkompliziert von Ihrer Website aus. Sie können Felder nach Bedarf hinzufügen oder entfernen.MarshallinselnMartiniqueMauretanienMauritiusMax.Max. Schachtelungsebene für EingabeHöchstwertVielleicht späterMayotteMittelNachrichtBeschriftung der NachrichtDiese Meldung wird Benutzern angezeigt, wenn das "Angemeldet"-Kontrollkästchen oben aktiviert ist und die Benutzer nicht angemeldet sind.MetafeldMexikoMikronesienMigrations- und Simulationsdaten vollständig. Min.MindestwertSonstige FelderKeine ÜbereinstimmungDer temporary Ordner fehlt.E-Mail-Aktion simulierenSpeicheraktion simulierenErfolgsmeldungsaktion simulierenGeändert amMoldawienMonacoMongoleiMontenegroMontserratWeitere Verbesserungen in ArbeitMarokkoProdukt in den Papierkorb verschiebenMosambikMehrfachauswahlMultiprodukt - Mehrere wählenMultiprodukt - Eines wählenMultiprodukt - DropdownMehrfachauswahlMehrfach-Auswahfeld GrößeMehrereMeine erste BerechnungMeine zweite BerechnungMySQL-VersionMyanmarNameName auf der KarteName oder FelderNamibiaNauruBenötigst du Hilfe?NepalNiederlandeNiederländische AntillenDadurch werden niemals Administratorhinweise auf dem Dashboard von Ninja Forms angezeigt. Durch Deaktivieren werden diese wieder angezeigt.Neue AktionNeues BuilderrregisterNeukaledonien (franz.)Neuer EintragNeue EinreichungNeuseelandRegistrierungsformular für NewsletterNicaraguaNigerNigeriaNinja Formulare EinstellungenNinja FormsNinja Forms – VerarbeitungNinja Forms-ChangelogNinja Forms DevNinja Forms-DokumentationNinja Forms-VerarbeitungNinja Forms-EinreichungNinja Forms-SystemstatusNinja Forms THREE-DokumentationNinja Forms-UpgradeNinja Forms Upgrade – VerarbeitungNinja Forms-UpgradesNinja Forms-VersionNinja Forms WidgetNinja Forms bietet außerdem eine einfache Vorlagenfunktion, die direkt in einer PHP-Vorlagendatei angeordnet werden kann. %s(Ninja Formulare Standard-Hilfe wird demnächst hier erscheinen.)Ninja Forms kann nicht über Netzwerk aktiviert werden. Rufen Sie bitte das Dashboard jeder Site auf, um das Plugin zu aktivieren.Ninja Forms hat alle verfügbaren Upgrades abgeschlossen.Ninja Forms wird von einem weltweiten Team aus Entwicklern erstellt, deren Ziel es ist, das Plugin Nr. 1 der WordPress-Community zur Formularerstellung bereitzustellen.Ninja Forms muss %s Upgrade(s) verarbeiten. Das kann ein paar Minuten dauern. %sUpgrade starten%sNinja Forms muss Ihre E-Mail-Einstellungen aktualisieren. Klicken Sie %shier%s, um das Upgrade zu starten.Ninja Forms muss die Einreichungstabelle upgraden. Klicken Sie %shier%s, um das Upgrade zu starten.Ninja Forms muss die Mitteilungen zu Ihren Formularen upgraden. Klicken Sie %shier%s, um das Upgrade zu starten.Ninja Forms muss Ihre Formulareinstellungen upgraden. Klicken Sie %shier%s, um das Upgrade zu starten.Ninja Forms bietet ein Widget, das Sie in jedem Widget-Bereich Ihrer Website positionieren können, und Sie können genau auswählen, welches Formular an der Stelle angezeigt werden soll.Ninja Forms-Shortcode ohne Angabe eines Formulars verwendet.NiueNeinKeine Aktion angegeben...Keine Favoriten-Felder gefundenKeine Felder gefunden.Keine Einreichungen gefundenKeine Einreichungen im Papierkorb gefundenFür diese Taxonomie stehen keine Begriffe zur Verfügung. %sBegriff hinzufügen%sKeine Datei hochgeladen.Keine Formulare gefunden.Keine Taxonomie ausgewählt.Kein gültiger Changelog gefunden.KeineNorfolk-InselnNördliche MarianenNorwegenMeldung über Nicht-AnmeldungNoch nichtIm Papierkorb nicht gefundenAchtungHinweistext kann im Hinweisfeld der erweiterten Einstellungen unten bearbeitet werden.Hinweis: Für diese Inhalte ist JavaScript erforderlich.Hinweis: Ninja Forms-Shortcode ohne Angabe eines Formulars verwendet.ZahlFehler bei ZahlmaximumFehler bei ZahlminimumZahlenoptionenAnzahl der SterneAnzahl der Dezimalstellen.Anzahl der Sekunden für den CountdownAnzahl der Sekunden für den CountdownAnzahl von Sekunden für zeitgesteuertes Absenden.Anzahl der SterneOmanEiner1 E-Mail-Adresse oder FeldUps! Das Add-on ist noch nicht mit Ninja Forms THREE kompatibel. %sWeitere Informationen%s.In neuem Fenster öffnenOperationen und Felder (Erweitert)Vorgefertigte StileOption 1Option 3Option 2OptionenOrganizerSupportumfangAusgabe berechnen alsPHP-GebietsschemaPHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionVERÖFFENTLICHENPakistanPalauPanamaPapua-NeuguineaTextabsatzParaguayÜbergeordneter Artikel:PasswortPasswortbestätigungBeschriftung bei nicht übereinstimmendem PasswortDie Passwörter stimmen nicht übereinZahlungs-FelderZahlungs GatewaysZahlungssummeBerechtigung verweigertPeruPhilippinenTelefonTelefon - (555) 555-5555PitcairnPositionieren Sie %s in jedem Bereich, in dem Sie Shortcode eingeben können, um Ihr Formular an jeder gewünschten Stelle anzuzeigen. Sogar in der Mitte Ihres Seiten- oder Beitragsinhalts.PlatzhalterReiner TextBitte %swenden Sie sich an den Support%s und geben Sie dabei die oben stehende Fehlermeldung an.Bitte beantworte die Antispam-Frage richtig.Bitte überprüfen Sie alle Pflichtfelder!Bitte füllen Sie das Captcha-Feld ausFüllen Sie bitte das recaptcha ausKorrigieren Sie bitte die Fehler, bevor Sie dieses Formular absenden.Bitte stellen Sie sicher, dass alle erforderlichen Felder vollständig ausgefüllt sind.Geben Sie bitte eine Meldung ein, die angezeigt werden soll, wenn die Höchstzahl der Einreichungen für dieses Formular erreicht ist und keine weiteren Einreichungen mehr akzeptiert werden.Bitte geben Sie eine gültige E-Mail Adresse an!Geben Sie bitte eine gültige E-Mail-Adresse ein!Bitte geben Sie eine gültige E-Mail Adresse an!Helfen Sie mit Ninja Forms zu verbessern!Geben Sie bitte die folgenden Informationen an, wenn Sie Support anfragen:Bitte erhöhen um Bitte lassen Sie das Spam-Feld leer.Bitte überprüfen Sie, ob Sie Ihre Website- und geheimen Schlüssel korrekt eingegeben habenBitte bewerten Sie %sNinja Forms%s %s auf %sWordPress.org%s, um uns darin zu unterstützen, dass dieses Plugin weiterhin kostenlos angeboten werden kann. Das WP Ninjas-Team sagt vielen Dank!Wählen Sie ein Formular aus, um die Einreichungen anzuzeigenBitte wählen Sie ein Formular aus.Bitte wählen Sie eine gültige Formulardatei aus.Bitte wählen Sie eine gültige Favoriten-Felder-Datei aus.Bitte wählen Sie eine gültige Felder-Exportdatei aus.Bitte verwenden Sie diese Operatoren: + - * /. Dies ist eine erweiterte Funktion. Schauen Sie nach Sachen wie Division durch 0.Bitte warten Sie %n SekundenBitte warten, um das Formular einzureichen.PluginsPolenDies mit Taxonomie ausfüllenPortugalPostBeitrags-/Seiten-ID (sofern verfügbar)Beitrags-/Seitentitel (sofern verfügbar)Beitrags-/Seiten-URL (sofern verfügbar)Nach der ErstellungArtikel IDInhaltstyp-ÜberschriftBeitrag-URLVorschauÄnderungen in der Vorschau anzeigenFormularvorschauVorschau ist nicht vorhanden.PreisPreis:PreisfelderVerarbeiteBeschriftung VerarbeitungBeschriftung bei Verarbeiten der EinreichungProduktProdukt (Menge inkl.)Produkt (Menge separat)Produkt AProdukt BProduktformular (Inline-Menge)Produktformular (mehrere Produkte)Produktformular (mit Mengenfeld)ProdukttypProgrammatischer Name, der als Referenz für dieses Formular verwendet werden kann.VeröffentlichenPuerto RicoKaufenKatarHäufigkeitMenge für Produkt AMenge für Produkt BMenge:Übergabe StringQuerystringsQuerystring-VariableFragenFragepositionAngebotsanfrageRadioListe mit OptionsfeldernPasswort erneut eingebenBeschriftung des "Passwort erneut eingeben"-FeldesAlle Lizenzen wirklich deaktivieren?RecaptchaUmleitungEntfernenALLE Ninja Forms-Daten bei der Deinstallation entfernen?Wert entfernenAlle Ninja Forms-Daten entfernenDieses Feld entfernen? Es wird entfernt, auch wenn Sie nicht speichern.Antwort anMüssen Benutzer zum Anzeigen des Formulars angemeldet sein?PflichtfeldErforderliches FeldPflichtfeld-FehlerPflichtfeld-BeschriftungPflichtfeld-SymbolKonvertierung für Formular zurücksetzenKonvertierung für Formulare zurücksetzenFormular-Konvertierungsvorgang für v2.9+ zurücksetzenWiederherstellenNinja Formulare wiederherstellenProdukt aus dem Papierkorb wiederherstellen.BeschränkungseinstellungenBeschränkungenBegrenzt die Art der Eingabe, die Ihre Benutzer in diesem Feld vornehmen können.Zurück zu Ninja FormsRéunion (franz.)Rich-Text-Editor (RTE)Rechts des ElementsRechts vom FeldRollbackRollback auf die letzte 2.9.x-Version.Rollback auf v2.9.xRumänienRussland (Russ. Föderation)RuandaSMTPSOAP-ClientSUHOSIN installiertSaint Kitts und NevisSaint LuciaSt. Vincent und die GrenadinenSamoaSan MarinoSão Tomé und PríncipeSaudi-ArabienSpeichernSpeichern und AktivierenFeld-Einstellungen speichernFormular speichernEinstellungen speichernEinstelllungen speichernEinreichung speichernGespeichertGespeicherte FelderWird gespeichert ...Eintrag suchenNach Einreichungen suchenAuswählenAlle auswählenListe auswählenWählen Sie ein Feld aus oder machen Sie eine Eingabe für die SucheEine Datei auswählenEin Formular auswählenWählen Sie ein Formular aus oder geben Sie es für die Suche einWählen Sie aus, wie viele Einreichungen dieses Formular akzeptieren soll. Freilassen, wenn keine Begrenzung.Wählen Sie die Position Ihrer Beschriftung relativ zum Feldelement selbst.AusgewähltGewählter WertSendenEine Kopie des Formulars an diese E-Mail Adresse senden?SenegalSerbienServer-IP-AdresseEinstellungenEinstellungen gespeichertSeychellenVersandShortcodeSollte als ein Prozentsatz angegeben werden, z.B. 19%, 7%Hilfetext anzeigenDateien hochladen Button anzeigenZeige mehrZeige Passwortstärke-AnzeigeEleganten Editor anzeigenDies anzeigenWerte der Listenartikel anzeigenWird den Benutzern als Tooltipp angezeigt.Sierra LeoneSingapurEinzelEinzelnes KontrollkästchenEinzelkostenEinzelne TextzeileEinzelprodukt (Standard)Seiten URLSlowakei (Slowakische Republik)SlowenienPostWenn Sie beispielsweise eine Maske für eine US-amerikanische Social Security Number erstellen möchten, geben Sie 999-99-9999 in das Feld ein.SalomonenSomaliaAls numerisch sortierenAls numerisch sortierenSüdafrikaSüdgeorgien und die Südlichen SandwichinselnSouth SudanSpanienSpam-AntwortSpam-FrageOperationen und Felder angeben (Erweitert)Sri LankaSt. HelenaSaint Pierre und MiquelonStandardfelderStern-BewertungMit einer Vorlage beginnenStaat / BundeslandStatusSchrittSchritt %d von ungefähr %d läuftSchritt (Menge, um die erhöht wird)StärkeindikatorStarkUntersequenzBetreffBetrefftext oder nach einem Feld suchenBetrefftext oder nach einem Feld suchenEinreichungEinreichungen als CSVEingereichte DatenInfos zur EinreichungEinsendelimitMetafeld für EinreichungStatistiken zu EinreichungenEinträgeAbsendenText auf der Schaltfläche zum Absenden, nachdem die Zeit abgelaufen istÜber AJAX senden (ohne Neuladen der Seite)?AbgesendetAbgesendet vonAbgesendet von: Abgesendet amAbgesendet am: AbonnierenErfolgsmeldungSudanSurinamSpitzbergen (Inselgruppe v. Norwegen)SwazilandSchwedenSchweizSyrienSystemSystemstatusTHREE kommt!TaiwanTadschikistanSehen Sie sich unsere detaillierte Ninja Forms-Dokumentation an.TansaniaSteuerSteuer-ProzentsatzTaxonomieTemplate-FelderTemplate-FunktionBegrifflisteTextTextelementText, der nach dem Zähler angezeigt werden sollText nach Zeichen-/Wortzähler anzeigenmehrz. TextfeldTextboxThailandVielen Dank, dass Sie sich die Zeit genommen haben, dieses Formular auszufüllen!Vielen Dank für Ihr Update auf die neueste Version! Ninja Forms %s möchte Ihnen die Verwaltung von Einreichungen möglichst angenehm machen!Vielen Dank für die Aktualisierung auf Version 2.7 von Ninja Forms. Aktualisieren Sie bitte alle Ninja Forms-Erweiterungen von Vielen Dank für die Aktualisierung! Mit Ninja Forms %s können Sie Formulare jetzt noch einfacher erstellen!Wir freuen uns, dass Sie Ninja Forms verwenden! Wir hoffen, dass Sie alles gefunden haben, was Sie benötigen. Falls noch Fragen offen sind, können Sie:Vielen Dank für das Ausfüllen des Formulars, {field:name}!Die (typischerweise) 16 Ziffern auf der Vorderseite Ihrer Kreditkarte.Wert der 3 Ziffern (Rückseite) ODER 4 Ziffern (Vorderseite) Ihrer Kreditkarte.Die 9'er repräsentieren eine Zahl. Die Bindestriche würden automatisch hinzugefügt.Das Menü "Formulare" ist Ihr Startpunkt für alles bei Ninja Forms. Wir haben für Sie bereits ein erstes %sKontaktformular%s erstellt, so dass Sie ein Beispiel haben. Sie können auch ein eigenes erstellen, indem Sie auf %sNeu hinzufügen%s klicken.Das Format sollte folgendermaßen aussehen:Die Änderungen der Oberfläche in dieser Version legen die Grundlage für zukünftige weitere Verbesserungen. Version 3.0 baut auf diesen Änderungen auf, um Ninja Forms zu einem noch stabileren, leistungsfähigeren und benutzerfreundlichen Tool für die Formularerstellung zu machen.Der Monat, in dem Ihre Kreditkarte abläuft, üblicherweise auf der Vorderseite der Karte.Die gängigsten Einstellungen werden direkt angezeigt, während andere, nicht so wichtige Einstellungen in den erweiterbaren Bereichen untergebracht sind.Der Name, welcher auf der Vorderseite Ihrer Kreditkarte angegeben ist.Die eingegebenen Passwörter stimmen nicht überein.Entwickler von Ninja FormsDieser Vorgang hat bereits begonnen. Bitte haben Sie etwas Geduld. Dieser Vorgang kann einige Minuten dauern. Bei Abschluss des Vorgangs werden Sie automatisch weitergeleitet.Die hochgeladene Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde.Die hochgeladene Datei überschreitet die upload_max_filesize-Richtlinie in php.ini.Nur Teile der Datei wurden hochgeladen.Das Jahr, in dem Ihre Kreditkarte abläuft, üblicherweise auf der Vorderseite der Karte.Eine neue Version von %1$s ist verfügbar. Details zur Version %3$s anzeigen oder jetzt aktualisieren.Eine neue Version von %1$s ist verfügbar. Details zur Version %3$s anzeigen.Die hochgeladene Datei besitzt kein gültiges Format.Dies sind alle Felder im Bereich „Preise“.Dies sind alle Felder im Bereich „Benutzerinformationen“.Dies sind die voreingestellten MaskierungszeichenEs gibt verschiedene Sonderfelder.Diese Felder müssen übereinstimmen!Diese Spalte in der Einreichungstabelle wird nach Zahlen sortiert.Dies ist ein PflichtfeldDas ist ein erforderliches Feld.Dies ist ein TestDies ist der Zustand eines Benutzers.Dies ist eine E-Mail-Aktion.Dies ist ein weiterer Test.So lange muss ein Benutzer warten, um das Formular abzusendenDiese Bezeichnung wird beim Anzeigen/Bearbeiten/Export der Einreichungen verwendet.Dies ist der programmatisch erzeugte Name Deines Feldes. Beispiele sind: my_calc, price_total, user-total.Bundesland des BenutzersDieser Wert wird verwendet, wenn %sAktiviert%s.Dieser Wert wird verwendet, wenn %sDeaktiviert%s.Hier erstellen Sie Ihr Formular, indem Sie Felder hinzufügen und diese an die gewünschte Stelle ziehen. Für jedes Feld stehen verschiedene Optionen wie Beschriftung, Position der Beschriftung und Platzhalter zur Verfügung.Dieses Keyword ist von WordPress reserviert. Bitte wählen Sie ein anderes.Diese Meldung wird in der Schaltfläche für die Einreichung angezeigt, sobald ein Benutzer auf "Absenden" klickt. So weiß er, dass die Verarbeitung läuft.Diese Meldung wird dem Benutzer angezeigt, wenn in das Passwortfeld Werte eingegeben werden, die nicht mit dem Passwort übereinstimmen.Wenn das Feld aktiviert ist, wird diese Zahl in Berechnungen verwendet.Wenn das Feld nicht aktiviert ist, wird diese Zahl in Berechnungen verwendet.Mit dieser Einstellung wird bei Löschen des Plugins alles, was mit Ninja Forms zusammenhängt, VOLLSTÄNDIG entfernt. Dazu zählen auch die EINREICHUNGEN und die FORMULARE. Diesen Vorgang können Sie nicht rückgängig machen.Auf diesen Register befinden sich allgemeine Formulareinstellungen wie Titel und Einreichungsmethode sowie Anzeigeeinstellungen wie das Ausblenden des Formulars nach erfolgreichem Ausfüllen.Dies wird die Betreffzeile Ihrer E-Mail.Dies verhindert, dass der Benutzer etwas anderes als Zahlen in das Formular eingibt.DreiZeitgesteuertes AbsendenTimer-FehlermeldungTimor-Leste (Osttimor)EmpfängerUm Lizenzen für Ninja Forms-Erweiterungen zu aktivieren, müssen Sie zunächst die gewählte Erweiterung %sinstallieren und aktivieren%s. Die Lizenzeinstellungen werden dann darunter angezeigt.Um diese Funktion zu verwenden, können Sie Ihre CSV-Daten in das mehrzeilige Textfeld oben einfügen.Heutiges DatumFach umschaltenTogoTokelauTongaGesamtpreisPapierkorbEs wird versucht, die Spezifikationen für die %sFunktion PHP date()%s zu befolgen, aber es wird nicht jedes Format unterstützt.Trinidad und TobagoTunesienTürkeiTurkmenistanTurks und Caicos IslandsTuvaluZweiTypWebseiteUS-TelefonUgandaUkraineNicht ausgewähltBerechnungswert deaktiviertIn den Formulareinstellungen können Sie unter dem grundlegenden Formularverhalten mühelos eine Seite auswählen, die das Formular automatisch ans Ende des Seiteninhalts anhängen soll. Eine ähnliche Option ist in der Seitenleiste eines jeden Bildschirms zur Bearbeitung von Inhalten verfügbar.RückgängigAlles rückgängigVereinigte Arabische EmirateVereinigtes Königreich (GB)USA - Vereinigte StaatenUnited States Minor Outlying IslandsUnbekannter Fehler beim Hochladen.Nicht veröffentlichtAktualisierenArtikel aktualisierenAktualisiert am: Aktualisieren der FormulardatenbankAktualisierungUpgrade auf Ninja Forms THREEUpgradesUpgrades abgeschlossenURLUruguayEine Gleichung verwenden (Erweitert)Anzahl verwendenEine eigene erste Option verwendenStandardstilkonventionen von Ninja Forms verwenden.Verwenden Sie den folgenden Shortcode, um die finale Berechnung einzufügen: [ninja_forms_calc]Mit den Tipps unten ist der Einstieg in Ninja Forms ganz einfach. In Nullkommnichts sind Sie und das Programm bereit!Verwenden Sie dies als das Registrierungs-Passwort-FeldVerwenden Sie dies als Feld für das Registrierungspasswort. Wenn dieses Feld aktiviert ist, werden die Textfelder für das Passwort und die wiederholte Eingabe des Passworts ausgegeben.Dient zum Kennzeichnen eines Felds zur Verarbeitung.BenutzerBenutzer Anzeigename (falls angemeldet)Empfänger E-Mail-AdresseEmpfänger E-Mail Adresse (falls angemeldet)BenutzereingabeBenutzer Vorname (falls angemeldet)Benutzer IDBenutzer-ID (falls angemeldet)Benutzerinfo FeldgruppeBenutzerinformationBenutzerinformationsfelderBenutzer Nachname (falls angemeldet)Benutzermeta (sofern angemeldet)Vom Benutzer übermittelte WerteVom Benutzer eingegebene Daten:Benutzer sind eher geneigt, lange Formulare auszufüllen, wenn sie diese speichern und vor dem Abschicken zur weiteren Bearbeitung zu ihnen zurückkehren können.

    Die Erweiterung Save Progress für das Speichern von Eingaben für Ninja Forms erledigt diese Aufgabe schnell und einfach.

    UsbekistanAls E-Mail-Adresse überprüfen? (Feld muss Pflichtfeld sein)WertVanuatuVariablennameVenezuelaVersionVersion %sSehr schwachVietnamAnzeigenZeige %sÄnderungen anzeigenFormulare anzeigenBetrachte Eintrag.Einreichung anzeigenEinträge ansehenVollständiges Changelog anzeigenBritische JungferninselnAmerikanische JungferninselnPlugin-Homepage besuchenWordPress Debug-ModusWP-SpracheWP-Maximalgröße für UploadWordPress Memory LimitWP-Multisite aktiviertWP Remote PostWordPress-VersionWallis und FutunaWir tun alles, um jedem Ninja Forms-Benutzer bestmöglichen Support zu bieten. Wenn Sie auf ein Problem stoßen oder eine Frage haben, %skontaktieren Sie uns bitte%s.Wir haben eine Option hinzugefügt, mit der alle Ninja Forms-Daten (Einreichungen, Formulare, Felder, Optionen) beim Löschen des Plugins entfernt werden. Wir nennen sie Kernoption.Wir haben festgestellt, dass sich auf Ihrem Formular keine Schaltfläche zum Absenden befindet. Für können für Sie automatisch eine hinzufügen.SchwachWebserverinfoWillkommen bei Ninja FormsWillkommen bei Ninja Forms %sWestsaharaWobei können wir Sie unterstützen?Was Sie versuchen sollten, bevor Sie sich an den Support wendenWie möchten Sie diesen Favoriten nennen?NeuesGehen Sie beim Erstellen und Bearbeiten von Formularen jetzt direkt zu dem Bereich, der für Sie am wichtigsten ist.An wen soll diese E-Mail gesendet werden?Wort/WörterWörterWrapperY-m-dd.m.YJJJJ-MM-TTYYYY/MM/DDJemenJaSie können ein Upgrade auf die Version Ninja Forms THREE vornehmen! %sJetzt upgraden%sSie können das mit verschiedenen Anwendungen kombinieren.Hier können Sie mithilfe von "field_x" Gleichungen zur Berechnung eingeben, wobei das x die ID des Felds ist, das Sie verwenden möchten. Beispiel: %sfield_53 + field_28 + field_65%s.Sie können das Formular nur einreichen, wenn Javascript aktiviert ist.Du hast keine Berechtigung um Plugin Updates zu installieren.Sie haben keine Berechtigung.Sie haben für Ihr Formular keine Schaltfläche für das Absenden hinzugefügt.Sie müssen angemeldet sein, um die Formularvorschau zu sehen.Sie müssen einen Namen für diesen Favoriten angeben.Zum Absenden dieses Formulars benötigen Sie JavaScript. Bitte aktivieren Sie es und versuchen Sie es noch einmal.Sie haben gekauft: Dies erhalten Sie zusammen mit Ihrer Kauf-E-Mail.Ihr Formular wurde erfolgreich gesendet.Dein Webserver hat weder fsockopen noch cURL aktiviert. Die sofortige Zahlungsbestätigung bei PayPal (IPN) und andere Skripte, welche mit anderen Servern kommunizieren, werden daher nicht funktionieren. Kontaktiere deinen Webhosting-Anbieter.Für Ihren Server ist die Klasse %sSOAP-Client%s nicht aktiviert – einige Gateway-Plugins, die SOAP verwenden, zeigen daher ggf. ein anderes Verhalten als erwartet.Für Ihren Server ist cURl aktiviert und fsockopen deaktiviert.Für Ihren Server sind fsockopen und cURL aktiviert.Für Ihren Server ist fsockopen aktiviert und cURL deaktiviert.Für Ihren Server ist die Klasse SOAP-Client aktiviert.Ihre Version der Erweiterung Ninja Forms File Upload für das Hochladen von Dateien ist nicht mit Version 2.7 von Ninja Forms kompatibel. Sie muss mindestens Version 1.3.5 sein. Aktualisieren Sie diese Erweiterung bitte unter Ihre Version der Erweiterung Ninja Forms Save Progress ist nicht mit Version 2.7 von Ninja Forms kompatibel. Sie muss mindestens Version 1.1.3 sein. Aktualisieren Sie diese Erweiterung bitte unter JugoslawienSambiaSimbabweZipPostleitzahla - Repräsentiert alphanumerische Zeichen (A-Z,a-z) - Erlaubt nur die Eingabe von BuchstabenAntwortbutton-secondary nf-download-allvonZeichen übrigausgewähltKopierenbenutzerdefiniertd-m-Ydashicons dashicons-updateDuplizierenfoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynichtsvonvon Produkt A und von Produkt B für $1one_week_supportPasswortVerarbeitung läuftProdukt(e) für reCAPTCHASprache für reCAPTCHAGeheimer Schlüssel für reCAPTCHAEinstellungen für reCAPTCHASiteschlüssel für reCAPTCHAreCAPTCHA-ThemereCaptcha-EinstellungenaktualisierenSMTP_PortdreiTitelzweinicht ausgewähltaktualisiertbenutzer@gmail.comVersionwp_remote_post() fehlgeschlagen. PayPal IPN wird mit Ihrem Server ggf. nicht funktionieren.wp_remote_post() fehlgeschlagen. PayPal IPN wird mit Ihrem Server nicht funktionieren. Wenden Sie sich an Ihren Hostinganbieter. Fehler:wp_remote_post() war erfolgreich - PayPal-IPN funktioniert.lang/ninja-forms-zh_TW.mo000064400000250326152331132460011306 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 &7I9$g?Pip   C>DSbq5K<&gc*   *18? F S ` m z     *{7 '- 9 O\ c p }    * 7D``.-  '/E  ! +6 = JTgw ~     " &3 IV0f  2Nd k u    &07; BL S ` mz4  <"4F_x  ! (2 9F MZ s     " / <OF    & 3@ P4]9  )9O*V  0F \i y  &6=D ]Wj  "0 S`g  ! & ") < IV ly Zy    ) 6CYl    !!80Z$ 9E OS@ BO _ ly  2 B O\r y  '(PW [hlt$ +8 HU k x + 2?Oex    *= P ]j1}'l DQi pC} #3C J Taq    . 5 BO_~& 7 DNdz  KJ`JfP]QH?I?'0y"<5      $ 1?6O       /<Uf   $  (*/Z jt { *     0I_Nf  + D N [ h r    . ;  B  L V f m t     $       Z p            o  s           0  I V  l v }          5 < O V l            [ ^h      (@Sew^ {Z,$ZWQ`QQV-/EX!n5!* .;QXh{E'7 AHa z    !M_u       , ;F MZ ak        !( @M  :*/Zy''`$d''%''!A0c$=*P'{$a*> Wdk ~    ! .;N U _ l v !  > 0K |           ! ! ! &! 0!=!P!i! ! !!8! !!4"="*D"o" v""""""""# ## =#J#-Q## ## # ##"## $$ $$.$3$B$T$ j$w$ $ $$$$$$ % % % '% 4%>%N% ^%k%~% % %!% % %!%F%3D& x&&&$& & &&&& ' ' ',$'Q'd' }''''''' ( ( ('( :(G(W( m($z(( (f(#) 3)=)M)])$d) ) ) ) )) ))) * *&*6*:*A*(H*q*** **** * * *+ +&+?+ R+_+!f+0+ + ++ +++ ,, ,$, :,G,N,U,q, x,,,,*,,,, - - $- 1->- E-!R-(t- - ---o-WJ.?.l.*O/+z/-/3/00001f1!?2a2}2z2G 3ER33033s{44*5395$m5550556 *676P6l636>6Z6S7+i7177?_8r8N90a9699ik::0:%; );6; I; S;];D; /<<<O< V<`<g< n<Lx<< < <<= =(=,=3= 7= D= N= X=e=~=U> \>i>>> >> >> >>>>?? ?-? 1?;? Q?^?'z?:?K?)@mB@@@'@@' A3A!CA eArAAAA!A!AB*B@BB0C9C =C JC WCdC kC uCCC C C C CCCCDD,D?D ODYDoDDD DDDbE[FbFfFzFF FF'FF G<(G!eGGG GGG G GGGFG3HJH0H-I6I*II$tI$ICI J0 J>J]J|J3rK.K3K0 L:LL tM M M M M5MM MN N !N+N2N9N?NZNaNrNuNNNNNNNNNNN NO OO.OEOVOmO~O O OOOO O OOOJOs-P4P Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . 欄位 在新視窗中開啟 全部復原 。目前版本為 以下產品給 需要更新。您安裝的是版本 #已更新 %1$s 份草稿。 預覽%3$s已從 %2$s 還原 %1$s 以修訂。已為以下項目排程 %1$s: %2$s預覽%4$s已提交 %1$s。 預覽%3$s%n 會用來表示秒數%s 前已發佈 %s。%s 已儲存。已更新。%s 已停用。%s允許%s%s勾選的%s計算值%s不允許%s%s取消勾選的%s計算值* - 表示英數字元 (A-Z、a-z、0-9) - 可輸入字母及數字- 無- 選取一個- 選取欄位- 選取產品- 選取變數- 選取表單- 檢視所有類型a - 表示數值字元 (A-Z,a-z) - 只能輸入數字
    • a - 表示字母字元 (A-Z,a-z) - 只能輸入字母。
    • a - 表示數值字元 (A-Z,a-z) - 只能輸入數字。
    • * - 表示英數字元 (A-Z、a-z、0-9) - 可輸入字母及數字。
    區分大小寫的回答可協助防止提交垃圾表單。Ninja Form 即將有重大更新。 %s深入瞭解新功能、向下相容以及其他常見問題。%s簡化且更強大的表單製作體驗。元素上方上方欄位動作名稱更新動作操作啟用啟用新增新增描述新增表單新增項目新增欄位新增表單新增項目新增提交項目新增條款新增操作新增提交按鈕新增值新增表單動作新增表單欄位在頁面中新增表單新增動作新增欄位新增訂閱者並透過此電子報註冊表單壯大您的電子郵件清單。您可以依需要新增或移除欄位。附加元件授權附加元件地址地址 2將其他類別新增到欄位元素。將其他類別新增到欄位包裝函式。管理者電郵地址管理標籤管理進階設置進階等式進階設定進階傳送阿富汗在所有項目之後表單之後在標籤之後是否同意?阿爾巴尼亞阿爾及利亞全部有關 Ninja Form所有欄位所有表單所有項目目前所有表單仍然位於「所有表單」表格中。 在部分情況下,一些表單可能會在此程序期間加以複製。讓使用者完成表單,輕鬆註冊下次活動。您可以依需要新增或移除欄位。讓使用者透過簡單的聯絡表格與您聯絡。您可以依需要新增或移除欄位。允許 RTF 輸入。允許使用者選擇一個以上的產品。即將完成…我們移除了「製作表單」和「通知」索引標籤,並加入了「電子郵件和動作」。 此索引標籤中包含了更清楚的可進行事項說明。美屬薩摩亞突然發生錯誤。安道爾安哥拉安圭拉答案南極洲防垃圾留言防垃圾郵件問題 (Answer = answer)反垃圾錯誤訊息安提瓜和巴布達您在「自訂遮罩」方塊中輸入的任何不在下方清單中的字元,會在使用者鍵入時自動輸入,且無法移除附錄 A Ninja Form附加 Ninja Form附加至頁面套用阿根廷亞美尼亞阿魯巴附加 CSV附件澳大利亞奧地利自動加總欄位自動加總值可用可用詞彙阿塞拜疆返回清單返回清單備份/還原備份 Ninja Form巴哈馬巴林孟加拉國Bar巴巴多斯基本欄位基本設定浴缸Baz密件副本在所有項目之前表單之前在標籤之前向支援中心要求協助前,請先查看:開始日期目前日期白俄羅斯比利時伯利茲元素下方下方欄位貝寧百慕大最佳的聯絡方法?業界最佳的支援服務更有組織的欄位設定更佳的授權管理不丹帳單:空白表單玻利維亞波士尼亞與赫塞哥維納博茨瓦納布威島巴西英屬印度洋領地汶萊建置您的表單保加利亞批量操作布基納法索布隆迪按鈕CVC計算計算值計算計算方法計算設定計算名稱計算計算會以 AJAX 回應 (回應 -> 資料 -> 計算柬埔寨喀麥隆加拿大取消佛得角Captcha 不符。 請在 captcha 欄位中輸入正確的值卡片 CVC 描述卡片 CVC 標籤卡片到期月份描述卡片到期月份標籤卡片到期年份描述卡片到期年份標籤卡片姓名描述卡片名稱標籤卡號卡片號碼描述卡片號碼標籤開曼群島副本中非共和國乍得變更值字元剩餘字元字元作弊喔?請查看我們的文件勾選方塊核取方塊清單勾選方塊已勾選勾選的計算值智利中國聖誕島市類別名稱清除成功完成的表單?科科斯群島收集款項哥倫比亞一般欄位科摩羅您可以新增括弧來建立複雜等式: %s( field_45 * field_2 ) / 2%s。確認確認您不是機器人剛果剛果民主共和國聯絡表格聯絡我聯絡我們容器繼續庫克群島費用降低成本成本選項成本類型哥斯達黎加象牙海岸無法啟動授權。 請檢查您的授權金鑰。國家建立唯一金鑰,以識別要自訂開發的欄位。信用卡信用卡 CVC信用卡 CVV信用卡到期信用卡全名信用卡卡號信用卡壓縮信用卡郵遞區號信用克羅埃西亞 (本地名稱: Hrvatska)古巴貨幣貨幣符號目前頁面自訂自訂 CSS 類別自訂 CSS 類別自訂類別名稱自訂欄位群組自訂遮罩自訂遮罩定義自定欄位刪除。自定欄位更新。第一個自訂選項塞浦路斯捷克共和國DD-MM-YYYYDD/MM/YYYY偵錯:切換至 2.9.x偵錯:切換至 3.0.x暗資料成功還原!日期建立的日期日期格式日期設定提交日期更新日期日期挑選器停用停用取消啟動所有授權停用授權從設定索引標籤中個別或以群組方式停用 Ninja Form 擴充功能授權。預設預設國家/地區預設標籤位置預設時區預設為目前日期預設值預設時區為 %s預設時區為 %s - 應該為 UTC定義欄位刪除刪除 (^ + D + 點選)永久刪除刪除此表單永久刪除這個項目丹麥說明描述內容描述位置您知道可以將較大的表單分成多個較小且易於處理的表單,以增加表單轉換率嗎?

    適用於 Ninja Form 的多份表單擴充功能可輕鬆快速做到這點。

    停用管理員通知停用瀏覽器自動完成功能停用輸入在行動裝置上停用 RTF 編輯器停用輸入?隱藏顯示顯示表單標題顯示名稱顯示設定顯示此計算變數顯示標題顯示您的表單Divider吉布提不要顯示這些字詞文件文件即將上線。我們提供更多的文件,內容包含%s疑難排解%s及%s開發人員 API%s,應有盡有。 我們會隨時加入新文件。並未套用至表單預覽。套用至表單預覽。多米尼加多米尼加共和國完成下載所有提交項目下拉複製複製 (^ + C + 點選)複製表單厄瓜多爾編輯編輯動作編輯表單編輯項目編輯功能表項目編輯提交項目編輯這個項目編輯欄位編輯欄位埃及薩爾瓦多元素電子郵件電子郵件與動作電子郵件地址電子郵件訊息電子郵件訂閱表單電子郵件地址或搜尋欄位電子郵件地址或搜尋欄位會依此電子郵件地址建立電子郵件。會依此名稱建立電子郵件。電子郵件與動作結束日期在允許提交表單前,請確定此欄位已完成。輸入使用者輸入任何資料前,在欄位中顯示的文字。輸入表單欄位標籤。 這是使用者如何識別個別欄位的方法。輸入電子郵件地址環境等式等式 (進階)赤道幾內亞厄立特里亞錯誤如果所有必要欄位都未完成, 則會出現錯誤訊息愛沙尼亞埃塞俄比亞活動註冊展開選單到期月份 (MM)到期年份 (YYYY)匯出匯出最愛欄位匯出欄位匯出表單匯出表單匯出表單匯出此項目延伸 Ninja Form檔案上傳檔案無法寫入。福克蘭群島法羅群島最愛欄位最愛成功匯入!欄位欄位編號欄位 ID欄位金鑰找不到欄位欄位操作區塊 標有 * 為必填欄位。標有 %s*%s 為必填欄位斐檔案上傳錯誤正在上傳檔案。檔案上傳已被擴充功能暫停。芬蘭名修復它。FooFoo Bar例如,如果您的產品金鑰格式為 A4B51.989.B.43C,您可以用下列遮罩:a9a99.999.a.99a,如此會強制所有 s 必須是字母,而所有 9 必須是數字表格表單預設已刪除表單表單欄位表單成功匯入。表單金鑰模擬表單已刪除預覽已儲存表單設定表單提交項目表格範本匯入錯誤。表單標題可計算表單格式表單已刪除表單每個頁面的表單法國法國本土法屬圭亞那法屬波利尼西亞法國南部領土2019 年 11 月 18 日星期五寄件者電子郵件地址寄件者名稱完整的變更記錄全螢幕加蓬岡比亞一般一般設定喬治亞州德國取得說明取得更多動作取得更多類型取得幫助取得支援取得系統報表%s在這裡%s註冊以取得網域的網站金鑰從新增第一個表單欄位開始。從新增第一個表單欄位開始。只需按一下加號並選取您要的動作。就是這麼簡單。開始進行開始使用 Ninja Form加納直布羅陀為表單建立標題。 稍後您可利用此標題找到表單。送出別老是寫程式碼!前往表單前往 Ninja Form跳至第一頁跳至最後一頁跳至下一頁跳至上一頁希臘格陵蘭格林納達更多的文件瓜德羅普島關島危地馬拉幾內亞幾內亞比紹圭亞那HTML海地半螢幕赫德島和麥克唐納群島哈囉,Ninja 表單!說明說明文字說明文字在此隱藏隱藏欄位隱藏標籤隱藏此項目隱藏成功完成的表單?秘訣: 密碼必須至少有 7 個字元長度。 要加強安全性,請使用大小寫字母、數字及符號,例如 ! " ? $ % ^ & )。教廷 (梵締岡)WordPress 網址洪都拉斯蜂蜜罐Honeypot 錯誤訊息Honeypot 錯誤訊息香港勾點標記主機名稱一切都還好嗎?匈牙利IP位置冰島如果啟用「描述文字」功能,輸入欄位旁會出現問號 %s。 讓滑鼠在問號上暫留會顯示描述文字。如果啟用「說明文字」功能,輸入欄位旁會出現問號 %s。 讓滑鼠在問號上暫留會顯示說明文字。如果已勾選此方塊,刪除 Ninja Form 也會一併移除「所有」Ninja Form 資料。 %s無法復原所有表單及提交項目資料。%s如果勾選此方塊,Ninja Form 會在成功提交之後清除表單。如果勾選此方塊,Ninja Form 會在成功提交之後隱藏表單。如果已勾選此方塊,Ninja Form 會寄送表單副本 (以及任何附加的訊息) 到該地址如果已勾選此方塊,Ninja Form 會驗證此輸入為電子郵件地址。如果已勾選此方塊,則會輸出密碼和重新輸入密碼文字區域。如果勾選此方塊,提交項目中的此欄位會依數字排序。如果您不是機器人而且看得到此欄位,請留白。如果您不是機器人而且看得到此欄位,請留白。如果您不是機器人,請別急。如果您將方塊留白,則不會使用限制如果您選擇使用,您安裝 Ninja 表單的部份相關資料會傳送給 NinjaForms.com (不包括提交項目)。您也可以略過此步驟!Ninja 表單會如常運作。如果您要寄送空值或計算,應該使用 "。如果您希望在使用者按下提交時收到電子郵件通知,可以在此索引標籤中設定。 您可以建立無限量的電子郵件,包括寄送給填寫表單之使用者的電子郵件。如果您在更新至 2.9 之後表單「消失」,此按鈕會嘗試重新轉換您的舊表單,以便在 2.9 中顯示。 目前所有表單仍然位於「所有表單」表格中。匯入匯入/匯出匯入/匯出提交項目匯入最愛欄位匯入最愛匯入欄位匯入表單匯入表單匯入清單項目匯入表單匯入/匯出改善明確性包含在自動總計中? (如果已啟用該功能)不正確的回答增加轉換率印度印尼輸入遮罩插入插入所有欄位插入欄位插入連結插入媒體元素中已安裝已安裝外掛程式興趣群組上傳的表單無效。表單 ID 無效伊朗 (伊斯蘭共和國 )伊拉克愛爾蘭這是電子郵件地址嗎?以色列就是這麼簡單。您也可以...意大利牙買加日本停用 JavaScript 錯誤訊息John Doe約旦按一下此處並選取想要的欄位。哈薩克斯坦肯尼亞金鑰基里巴斯Kitchen Sink韓國,朝鮮民主主義人民共和國大韓民國科威特吉爾吉斯斯坦標籤標籤在此標籤名稱標籤位置檢視和匯出提交項目時使用的標籤。標籤,值,計算標籤reCAPTCHA 使用的語言。 要取得您語言的代碼請安一下%s這裡%s寮人民民主共和國姓拉脫維亞版面配置元素版面配置欄位學習更多深入瞭解多份表單深入瞭解儲存進度黎巴嫩元素左側左側欄位萊索托利比里亞利比亞阿拉伯群眾國授權列支敦士登淡色系限制輸入為此號碼限制到達訊息限制提交項目限制輸入為此號碼清單清單欄位對應清單類型列表立陶宛加載中正在載入...地點登入複雜格式 - 盧森堡MM-DD-YYYYMM/DD/YYYY澳門馬其頓,前南斯拉夫共和國馬達加斯加馬拉維馬來西亞馬爾代夫馬里馬耳他透過此範本,輕鬆從網站管理報價。您可以依需要新增或移除欄位。馬紹爾群島馬提尼克島毛里塔尼亞毛里求斯最多最大輸入巢狀等級最大值稍後馬約特島中訊息訊息標籤如果上方的「已登入」核取方塊已勾選但使用者並未登入,會向使用者顯示此訊息。中繼方塊墨西哥克羅尼西亞聯邦移轉及模擬資料完成。 最少最小值雜項欄位不符合找不到暫存資料夾。模擬電子郵件動作模擬儲存動作模擬成功訊息動作修改日期摩爾多瓦共和國摩納哥蒙古黑山蒙特塞拉特更多新功能摩洛哥將此項目移至垃圾桶莫桑比克複選多個產品 - 選取許多多個產品 - 選取一個多個產品 - 下拉式選單複選複選方塊大小多數我的第一筆計算找的第二筆計算MySQL 版本緬甸名稱卡片姓名名稱或欄位納米比亞瑙魯需要幫助?尼泊爾荷蘭荷屬安的列斯不要在 Ninja Form 儀表板上看到管理員通知。 取消勾選就能看到通知。新動作新架設大師索引標籤新喀裡多尼亞新項目新提交項目紐西蘭電子報註冊表單尼加拉瓜尼日爾尼日利亞Ninja Form 設定Ninja 表單Ninja Form - 處理Ninja Form 變更記錄Ninja 表單開發Ninja Form 文件Ninja Form 處理忍者表單提交Ninja Form 系統狀態Ninja 表單 3 文件Ninja Form 升級Ninja Form 升級處理Ninja Forms 更新Ninja Form 版本Ninja Form 小工具Ninja Form 也搭配了簡易的範本功能,可以直接放置在 PHP 範本檔案中。 %sNinja Form 基本說明在此。網路無法啟動 Ninja Form。 請造訪每個網站的儀表板以啟動外掛程式。Ninja Form 已完成所有可用的更新!Ninja Form 是由一群來自世界各地的開發人員所建立,目標是提供最棒的 WordPress 社群表單建立外掛程式。Ninja Form 需要處理 %s 個更新。 此操作可能需要幾分鐘。 %s開始升級%sNinja Form 需要更新您的電子郵件設定,按一下%s這裡%s以開始升級。Ninja Form 需要升級提交項目表格,按一下%s這裡%s以開始升級。Ninja Form 需要升級您的表單通知,按一下%s這裡%s以開始升級。Ninja Form 需要升級您的表單設定,按一下%s這裡%s以開始升級。Ninja Form 提供小工具可讓您放置在網站任何可放置小工具的區域,也可選取要在該空間顯示的表格。使用 Ninja Form 短碼而未指定表單。紐埃否無需進行特定動作...找不到最愛欄位找不到欄位。找不到提交項目垃圾筒中找不到提交項目此分類法沒有可用的詞彙。 %s新增詞彙%s沒有檔案被上傳。找不到表單。未選取分類法。找不到有效的變更記錄。無諾福克島北馬里亞納群島挪威未登入訊息不,不要變更在垃圾筒中找不到註記請注意您可以在下列附註欄位的進階設定編輯文字。注意: 此內容需要 JavaScript。注意: 使用 Ninja Form 短碼而未指定表單。數字最大數字錯誤訊息最小數字錯誤訊息數字選項星號數目小數點數目。倒數秒數倒數秒數逾時提交的秒數星號數目阿曼一一個電子郵件地址或欄位糟糕了! 該附加元件與 Ninja Form 3 不相容。 %s更多資訊%s。在新視窗中開啟操作和欄位 (進階)固定樣式選項一選項三選項二設定選項組織人員我們的支援範圍將計算輸出為PHP 地區PHP Max Input VarsPHP Post Max SizePHP Time LimitPHP 版本發佈巴基斯坦帕勞巴拿馬巴布亞新幾內亞段落文字巴拉圭父項目:密碼密碼確認密碼不符標籤密碼不相符付款欄位付款金流總款項已拒絕權限秘魯菲律賓座機電話 - (555) 555-5555皮特凱恩將 %s 放置在接受短碼的所有區域中,以在您選擇的位置顯示表單。 您可以在頁面或貼文內容中間顯示表單。標記符號純文字請%s聯絡支援中心%s以協助處理出現的錯誤。請正確回答反垃圾郵件的提問。請檢查所有必填欄位。請完成 captcha 驗證欄位請完成 recaptcha 驗證請先更正錯誤再提交此表單。請確保所有必填欄位已填妥。請輸入您要在表單達到提交項目限制且不接受新提交項目時顯示的訊息。請輸入有效的電子郵件地址請輸入有效的電子郵件地址!請輸入有效的電子郵件地址。請協助我們改善 Ninja 表單!請在要求支援時提供此資訊:請以此數字遞增: 請在垃圾郵件欄位留空。請確定您已正確輸入網站和秘密金鑰請在 %sWordPress.org%s 上為 %sNinja Form%s %s 評分,協助我們提供免費的應用程式。 WP Ninjas 團隊感謝您!請選取表單以檢視提交項目請選取表單。請選取有效的已匯出表單檔案。請選取有效的最愛欄位檔案。請選取要匯出的最愛欄位。請使用這些運算子: + - * /。 這是進階功能。 特別注意用 0 相除的項目。請稍候 %n 秒鐘請等待提交表單。外掛程式波蘭以分類法植入葡萄牙文章文章/頁面 ID (如果有)文章/頁面標題 (如果有)文章/頁面 URL (如果有)建立文章博文ID博文標題文章網址預覽預覽變更預覽表單預覽不存在。定價價格:價格欄位處理中處理標籤處理提交項目標籤商品產品 (包括數量)產品 (不包括數量)產品 A產品 B產品表單 (內含數量)產品表單 (多個產品)產品表單 (包括數量欄位)商品類型可用來參照此表單的程式設計名稱。發佈波多黎各購買卡塔爾數量產品 A 的數量產品 B 的數量數量:查詢字串查詢字串查詢字串變數問題問題位置報價要求收音機圓鈕清單重新輸入密碼重新輸入密碼標籤確定要停用所有授權?Recaptcha重新導向刪除在解除安裝時移除「所有」Ninja Form 資料?移除值移除所有 Ninja Form 資料移除此欄位? 即使您未儲存也會移除。回覆使用者必須登入才能檢視表單?必填必填欄位需要欄位標籤需要欄位標籤需要欄位符號重設表單轉換重設表單轉換為 v2.9+ 重設表單轉換程序回復還原 Ninja Form從垃圾桶中回復此項目限制設定限制限制使用者可以輸入此欄位的值。返回 Ninja Form留尼旺島RTF 編輯器 (RTE)元素右側右側欄位回復回復為最近的 2.9.x 版本。回復為 v2.9.x羅馬尼亞俄羅斯聯邦盧旺達SMTPSOAP 用戶端SUHOSIN 已安裝聖基茨和尼維斯聖盧西亞聖文森特和格林納丁斯薩摩亞聖馬力諾聖多美和普林西比沙特阿拉伯儲存儲存並啟動儲存欄位設定儲存表單儲存選項保存設定儲存提交已儲存已儲存欄位正在儲存...搜尋項目搜尋提交項目選擇選擇全部選取清單選取要搜尋的欄位或類型選取檔案選取表單選取要搜尋的表單或類型選取此表單接受的提交項目數量。 無限制者留空白。選取與欄位元素本身相關的標籤位置。已選取已選取的值傳送寄送表單副本到該地址嗎?塞內加爾塞爾維亞伺服器 IP 位址設定已儲存設定塞舌爾運送方式短代碼請輸入百分比數字,例如 8.25%、4%顯示說明文字顯示媒體上傳按鈕顯示更多顯示密碼強度指示器顯示 RTF 編輯器顯示此項目顯示清單項目值在滑鼠暫留時向使用者顯示。塞拉利昂新加坡單一單一核取方塊單一成本單一行文字單一產品 (預設)網站網址斯洛伐克 (斯洛伐克共和國)斯洛文尼亞蝸牛郵件因此,如果您希望建立美國社會安全碼的遮罩,您應該在方塊中輸入 999-99-9999索羅門群島索馬里依數值排序依數值排序南非南喬治亞島,南桑威奇群島南蘇丹西班牙垃圾回答垃圾問題指定操作和欄位 (進階)斯里蘭卡聖赫勒拿島聖皮埃爾和密克隆標準欄位星號評等從範本開始州狀態步驟步驟 %d,大約有 %d 個正在執行步驟 (增量數)強度指示器强子序列主旨主旨文字或搜尋欄位主旨文字或搜尋欄位提交項目提交 CSV提交資料提交項目資訊提交限制提交項目中繼方塊提交項目狀態提交項目送出逾時之後的提交按鈕文字透過 AJAX 提交 (無需頁面重新載入)?已提交提交人員提交人員: 提交日期提交日期: 訂閱成功信息蘇丹蘇里南斯瓦巴和揚馬延斯威士蘭瑞典瑞士敘利亞阿拉伯共和國系統系統狀態第 3 版來了!台灣塔吉克斯坦深入查看以下的 Ninja Form 文件。坦尚尼亞聯合共和國稅金稅金百分比分類法範本欄位範本功能詞彙清單文字文字元素在計數器之後出現的文字字元/字詞計數之後顯示的文字文字區域文字方塊泰國感謝您填寫此表單。感謝您更新為最新版本! Ninja Form %s 的目的就是要讓您的管理提交項目工作更有趣!感謝您更新為 2.7 版本的 Ninja Form。 請更新所有 Ninja Form 擴充功能 謝謝您的更新! Ninja Form %s 讓您輕鬆建立表單!感謝您使用 Ninja Form! 我們希望您找到了一切所需的功能,但如果您有任何問題:{field:name},感謝您填寫此表單!通常是信用卡前面的 16 位數字。卡片背面 3 位數或前面 4 位數字。這些 9 表示任何數字,而 - 會自動加入「表單」功能表中包含 Ninja Form 的所有功能。 我們已建立了第一個%s聯絡人表單%s可以做為您的範例。 您也可以按一下%s新增項目%s自行建立。格式看起來應該像是:此版本的介面更新為未來可能的增強功能提供了良好的基礎。 版本 3.0 會建置這些變更,讓 Ninja Form 成為更穩定、更強大且更友善的表單架設大師。信用卡到期月份,通常在卡片前面。系統會立即顯示最常見的設定,其他較不重要的設定則位於可擴充的區段中。印在信用卡前面的姓名。輸入的密碼不相符。Ninja Form 團隊已開始程序,感謝您的耐心。 可能需要數分鐘的時間。 程序完成時,系統會將您自動導向。上傳的檔案超過 HTML 表單中指定的MAX_FILE_SIZE 指示詞。上傳的檔案超過 php.ini 中的 upload_max_filesize 指示詞。上傳的檔案不完整。信用卡到期年份,通常在卡片前面。有可用的新版本 %1$s。 檢視版本 %3$s 詳細資料立即更新。有可用的新版本 %1$s。 檢視版本 %3$s 詳細資料。上傳的檔案格式無效。這些是價格區段中的所有欄位。這些是使用者資訊區段中的所有欄位。這些是預先定義的遮罩字元這些是各種特殊欄位。這些欄位必須相符!提交項目中的此欄位會依數字排序。這是必填欄位。這是必填欄位。這是測試這是使用者狀態。這是電子郵件動作。這是另一個測試。這是使用者提交表單時必須等待的時間這是在檢視/編輯/匯出提交項目時使用的標籤。這是您欄位的程式設計名稱。 範例為:my_calc、price_total、user-total。這是使用者狀態如果%s已勾選%s,則會使用該值。如果%s已取消勾選%s,則會使用該值。您可以新增欄位並將其以您希望的順序拖曳,以製作表單。 每個欄位都包含標籤、標籤位置以及預留位置等選項。此關鍵字由 WordPress 保留。 請嘗試其他關鍵字。當使用者按下「提交」時,會在提交按鈕中顯示此訊息,讓使用者知道正在處理提交。當密碼欄位出現了不相符的值時,會向使用者顯示此訊息。如果勾選方塊,此數字會用來計算。如果取消勾選方塊,此數字會用來計算。此設定會在刪除外掛程式時「完全」移除與 Ninja Form 相關的所有資料。 包括「提交項目」及「表單」。 此動作無法復原。此索引標籤保有常用的表單設定以及顯示設定,例如在成功完成之後隱藏表單。這會是電子郵件主旨。這可防止使用者輸入數字以外的字元三提交逾時計時錯誤訊息東帝汶收件人要啟動 Ninja Form 擴充功能的授權,您必須先%s安裝和啟動%s選取的擴充功能。 接著授權設定會在下方顯示。要使用此功能,您可以將 CSV 貼到上方的文字區域。今天日期切換瀏覽選單多哥托克勞湯加總合垃圾桶試著遵循 %sPHP date() 函式%s規格,但並不支援每一種格式。特里尼達和多巴哥突尼斯土耳其土庫曼斯坦特克斯和凱科斯群島圖瓦盧二類型URL美國電話烏干達烏克蘭取消勾選取消勾選的計算值在「表單設定」中的「基本表單行為」下,您可以輕鬆選取您要在頁面內容的結尾處自動弣加表單的頁面。 每個內容編輯畫面的側邊欄都有相似的選項可供使用。復原全部復原阿拉伯聯合大公國英國美國美國外島發生未知的上傳。未發佈更新更新項目更新時間: 更新表單資料庫升級升級為 Ninja Form 3升級升級完成URL烏拉圭使用等式 (進階)使用數量使用第一個自訂選項使用預設 Ninja Form 樣式慣例。使用下列短碼插入最終計算: [ninja_forms_calc]使用下方的小秘訣開始使用 Ninja Form。 您很快就能上手!作為註冊密碼欄位作為登記密碼欄位。 如果已勾選此方塊,則會輸出密碼和重新輸入密碼文字區域。用來處理欄位。用戶使用者顯示名稱 (如果已登入)使用者電子郵件使用者電子郵件 (如果已登入)使用者輸入使用者名字 (如果已登入)使用者 ID使用者 ID (如果已登入)使用者資訊欄位群組使用者資訊使用者資訊欄位使用者姓氏 (如果已登入)使用者中繼 (如果已登入)使用者提交值使用者提交值:如果使用者可以先儲存之後再回來完成提交,他們會比較願意填寫較長的表單。

    Ninja Form 的儲存進度擴充功能可輕鬆快速做到這點。

    烏茲別克斯坦驗證為電子郵件地址? (欄位為必填)值瓦努阿圖變數名稱委內瑞拉版本版本 %s非常弱越南查看檢視 %s檢視變更檢視表格檢視項目檢視提交項目檢視提交項目檢視完整的變更記錄英屬維京群島維爾京群島 (英屬)前往外掛主頁WP 偵錯模式WP 語言WP 最大上傳大小WP 記憶體限制啟用 WP 多網站WP 遠端貼文WP 版本瓦利斯和富圖納群島我們致力於提供每位使用 Ninja Form 的使用者更好的支援服務。 如果您遇到問題或有任何疑問,%s請與我們聯絡%s。我們已新增選項,在您刪除外掛程式時移除所有 Ninja Form 資料 (提交項目、表單、欄位、選項)。 我們稱該選項為核子選項。我們注意到您的表單沒有提交按鈕。 我們可以自動為您新增此按鈕。弱Web 伺服器資訊歡迎使用 Ninja Form 歡迎使用 Ninja Form %s西撒哈拉您需要什麼協助?聯絡支援中心前要嘗試的動作您要將此最愛命名為?最新動向建立和編輯表單時,直接瞭解最重要的部份。誰會收到此封電子郵件?字詞字詞包裝函式Y-m-dY/m/dYYYY-MM-DDYYYY/MM/DD也門是您符合升級為 Ninja Form 3 版本的候選人! %s立即升級%s您也可以針對特定的應用程式結合兩者您可以在此使用 field_x 輸入計算等式,其中 x 表示您要使用的欄位 ID。 例如,%sfield_53 + field_28 + field_65%s。若未啟用 JavaScript 則不能提交表單。您沒有安裝此外掛程式更新的權限您沒有權限。您尚未在表單中新增提交按鈕。您必須登入才能預覽表單。您必須為此最愛提供名稱。您需要 JavaScript 才能提交此表單。 請啟用並重試。已購買 您會在購買電子郵件中找到此資訊。您的表格已成功提交。你的伺服器未啟用 fsockopen 或 cURL - PayPal IPN 及需與其他伺服器通訊的腳本將無法使用。請與你的主機服務商聯絡。 您的伺服器並未啟用 %sSOAP 用戶端%s類別 - 使用 SOAP 的部分閘道外掛程式可能無法如預期運作。您的伺服器已啟用 cURL,停用 fsockopen。您的伺服器已啟用 fsockopen 和 cURL。您的伺服器已啟用 fsockopen,停用 cURL。您的伺服器已啟用 SOAP 用戶端類別。您的 Ninja Form 檔案上傳擴充功能與 2.7 版本的 Ninja Form 不相容。 至少需要 1.3.5 版本。 請在下列位置更新此擴充功能: 您的 Ninja Form 儲存進度擴充功能與 2.7 版本的 Ninja Form 不相容。 至少需要 1.1.3 版本。 請在下列位置更新此擴充功能: 南斯拉夫贊比亞津巴布韋郵政編碼郵遞區號a - 表示字母字元 (A-Z,a-z) - 只能輸入字母答案button-secondary nf-download-all由剩餘字元已勾選複製自訂d-m-Ydashicons dashicons-update複製foo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Y无的個產品 A 以及 個產品 B 價格為一one_week_support密碼處理中以下產品給 reCAPTCHAreCAPTCHA 語言reCAPTCHA 祕密金鑰reCAPTCHA 設定reCAPTCHA 網站金鑰reCAPTCHA 主題reCaptcha 設定重新整理smtp_port三標題二取消勾選已更新user@gmail.com版本wp_remote_post() 失敗。 PayPal IPN 無法搭配您的伺服器運作。wp_remote_post() 失敗。 PayPal IPN 無法搭配您的伺服器運作。 連絡您的主機提供者。 錯誤:wp_remote_post() 成功 - PayPal IPN 運作正常。lang/ninja-forms-tl.po000064400000624255152331132460010703 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Notice: JavaScript is required for this content." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Cheatin’ huh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Fields marked with an %s*%s are required" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Pakisigurong kumpleto ang lahat kailangang field." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Kailangang punan ang field na ito" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "Pakisagutan nang wasto ang tanong para sa anti-spam." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Hayaang blangko ang spam field." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Pakihintay na maipadala ang form." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Hindi mo maaaring isumite ang form kung naka-disable ang Javascript." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Mangyaring magpasok ng tamang email address." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Pinoproseso" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Hindi magkatulad ang mga password na ibinigay." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Add Form" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Select a form or type to search" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Kanselahin" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Ilagay" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Invalid form id" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Increase Conversions" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Learn More About Multi-Part Forms" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Maaaring sa Ibang Pagkakataon" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "I-dismiss" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Users are more likely to complete long forms when they can save and return to " "complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Learn More About Save Progress" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Email" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Pangalan sa Mula Kay" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Name or fields" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Email will appear to be from this name." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "From Address" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "One email address or field" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Email will appear to be from this email address." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Para sa/kay" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Email addresses or search for a field" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Who should this email be sent to?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Paksa" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Subject Text or search for a field" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "This will be the subject of the email." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Email Message" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Attachments" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Submission CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Advanced Settings" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Plain Text" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Reply To" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "I-redirect" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Mensahe ng Tagumpay" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Before Form" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "After Form" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Lokasyon" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Mensahe" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "duplicate" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "I-deactivate" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "I-activate" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "I-edit" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Alisin" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Mag-duplicate" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Pangalan" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Uri" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Date Updated" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- View All Types" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Get More Types" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Email & Actions" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Magdagdag ng Bago" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "New Action" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Edit Action" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Back To List" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Action Name" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Get More Actions" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Action Updated" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Select a field or type to search" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Insert Field" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Insert All Fields" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Please select a form to view submissions" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "No Submissions Found" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Submissions" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Submission" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Add New Submission" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Edit Submission" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "New Submission" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "View Submission" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Search Submissions" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "No Submissions Found In The Trash" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Petsa" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Edit this item" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Export this item" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "I-export" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Move this item to the Trash" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Trash" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Restore this item from the Trash" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "I-restore" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Delete this item permanently" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Delete Permanently" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Unpublished" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s ago" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Naisumite" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Select a form" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Begin Date" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Petsa ng Pagtatapos" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s updated." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Custom field updated." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Custom field deleted." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restored to revision from %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s published." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s saved." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s submitted. Preview %3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s scheduled for: %2$s. Preview %4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s draft updated. Preview %3$s" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Download All Submissions" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Back to list" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "User Submitted Values" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Submission Stats" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Field" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Value" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Status" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Form" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Submitted on" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modified on" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Submitted By" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "I-update" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Date Submitted" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "You will find this included with your purchase email." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Key" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Could not activate license. Please verify your license key" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Deactivate License" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "User Submitted Values:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Thank you for filling out this form." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "There is a new version of %1$s available. View version %3$s details." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "There is a new version of %1$s available. View version %3$s details or update now." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "You do not have permission to install plugin updates" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Error" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standard Fields" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Layout Elements" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Post Creation" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Display Title" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Wala" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Mga Form" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "All Forms" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms Upgrades" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Mga Upgrade" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Import/Export" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Import / Export" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form Settings" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Mga Setting" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Status ng System" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Mga Add-On" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "I-preview" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Save" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "character(s) left" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Do not show these terms" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Save Options" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Preview Form" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Upgrade to Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "THREE is coming!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "How's It Going?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Check out our documentation" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Get Some Help" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Edit Menu Item" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Piliin Lahat" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Append A Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "What would you like to name this favorite?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "You must supply a name for this favorite." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Really deactivate all licenses?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Reset the form conversion process for v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Remove ALL Ninja Forms data upon uninstall?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Edit Form" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Na-save na" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Nagse-save..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Remove this field? It will be removed even if you do not save." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "View Submissions" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms Processing" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - Processing" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Naglo-load..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "No Action Specified..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Welcome to Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Thank you for updating! Ninja Forms %s makes form building easier than ever before!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Welcome to Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Changelog" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Getting started with Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "The people who build Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "What's New" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Pagsisimula" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Mga kredito" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Version %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "A simplified and more powerful form building experience." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "New Builder Tab" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "When creating and editing forms, go directly to the section that matters most." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Better Organized Field Settings" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Improved clarity" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Remove all Ninja Forms data" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Better license management" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Deactivate Ninja Forms extension licenses individually or as a group from the " "settings tab." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "More to come" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Dokumentasyon" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Take a look at our in-depth Ninja Forms documentation below." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms Documentation" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Get Support" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Return to Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "View the Full Changelog" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Full Changelog" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Go to Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "All About Forms" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "The Forms menu is your access point for all things Ninja Forms. We've already " "created your first %scontact form%s so that you have an example. You can also " "create your own by clicking %sAdd New%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Build Your Form" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Emails & Actions" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully completed." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Displaying Your Form" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Append to Page" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that page's " "content. A similiar option is avaiable in every content edit screen in its sidebar." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Shortcode" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that space." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Template Function" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Kailangan mo ba ng Tulong?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Growing Documentation" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Best Support in the Business" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "No valid changelog was found." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "View %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Disable Browser Autocomplete" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sChecked%s Calculation Value" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "This is the value that will be used if %sChecked%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sUnchecked%s Calculation Value" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "This is the value that will be used if %sUnchecked%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Include in the auto-total? (If enabled)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Custom CSS Classes" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Before Everything" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Before Label" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "After Label" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "After Everything" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Add Description" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Description Position" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Description Content" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Show Help Text" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Help Text" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "If you leave the box empty, no limit will be used" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limit input to this number" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "ng" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Mga Karakter" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Words" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Text to appear after character/word counter" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Left of Element" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Above Element" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Below Element" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Right of Element" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Inside Element" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Label Position" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Field ID" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Restriction Settings" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Calculation Settings" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Alisin" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Populate this with the taxonomy" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- None" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Placeholder" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Kailangan" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Save Field Settings" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sort as numeric" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "If this box is checked, this column in the submissions table will sort by number." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Admin Label" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "This is the label used when viewing/editing/exporting submissions." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Pagsingil" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Shipping" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Hindi sumusunod" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "User Info Field Group" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Custom Field Group" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Please include this information when requesting support:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Get System Report" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Environment" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Home URL" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Site URL" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms Version" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WP Version" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite Enabled" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Oo" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Hindi" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web Server Info" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Bersyon ng PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Version" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Locale" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WP Memory Limit" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WP Debug Mode" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP Language" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Default" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Max Upload Size" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Size" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Max Input Nesting Level" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Time Limit" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Installed" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Default Timezone" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Default timezone is %s - it should be UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Default timezone is %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Your server has fsockopen and cURL enabled." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Your server has fsockopen enabled, cURL is disabled." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Your server has cURL enabled, fsockopen is disabled." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP Client" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Your server has the SOAP Client class enabled." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Remote Post" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() was successful - PayPal IPN is working." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your " "hosting provider. Error:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() failed. PayPal IPN may not work with your server." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Installed Plugins" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visit plugin homepage" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "by" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "version" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Give your form a title. This is how you'll find the form later." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "You have not added a submit button to your form." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Input Mask" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not be removeable" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "These are the predefined masking characters" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "The 9s would represent any number, and the -s would be automatically added" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "This would prevent the user from putting in anything other than numbers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "You can also combine these for specific applications" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "For instance, if you had a product key that was in the form of " "A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force " "all the a's to be letters and the 9s to be numbers" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Defined Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Payment Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Template Fields" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "User Information" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Lahat" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Maramihang Pagkilos" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Ilapat" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Forms Per Page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Go" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Go to the first page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Go to the previous page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Kasalukuyang page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Go to the next page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Go to the last page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Form Title" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Delete this form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicate Form" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Forms Deleted" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Form Deleted" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Form Preview" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Ipakita" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Display Form Title" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Add form to this page" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "Submit via AJAX (without page reload)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Clear successfully completed form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Hide successfully completed form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Mga Paghihigpit" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Require user to be logged in to view form?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Not Logged-In Message" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limit Submissions" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Limit Reached Message" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Please enter a message that you want displayed when this form has reached its " "submission limit and will not accept new submissions." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Form Settings Saved" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Basic Settings" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms basic help goes here." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Extend Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentation coming soon." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Aktibo" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Naka-install" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Alamin ang Higit Pa" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Backup / Restore" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Backup Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Restore Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Data restored successfully!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Import Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Select a file" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Import Favorites" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "No Favorite Fields Found" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Export Favorite Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Export Fields" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Please select favorite fields to export." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favorites imported successfully." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Please select a valid favorite fields file." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Import a form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Import Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Export a form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Export Form" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Please select a form." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Form Imported Successfully." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Please select a valid exported form file." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Import / Export Submissions" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Date Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Karaniwan" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Mga Pangkalahatang Setting" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Bersyon" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Date Format" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Currency Symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA Settings" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA Site Key" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Get a site key for your domain by registering %shere%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA Secret Key" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA Language" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Disable Admin Notices" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Magpatuloy" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Settings Saved" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Message Labels" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Required Field Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Required field symbol" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Error message given if all required fields are not completed" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Required Field Error" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Anti-spam error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Timer error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript disabled error message" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Please enter a valid email address" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Processing Submission Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Password Mismatch Label" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "This message is shown to a user when non-matching values are placed in the " "password field." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Mga lisensya" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Save & Activate" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Deactivate All Licenses" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Reset Forms Conversion" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Reset Form Conversion" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "If your forms are \"missing\" after updating to 2.9, this button will attempt " "to reconvert your old forms to show them in 2.9. All current forms will " "remain in the \"All Forms\" table." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Email ng Admin" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "User Email" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to start " "the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms needs to update your email settings, click %shere%s to start the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja " "Forms extensions from " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Your version of the Ninja Forms Save Progress extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please " "update this extension at " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Updating Form Database" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms Upgrade Processing" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Please %scontact support%s with the error seen above." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms has completed all available upgrades!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Go to Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms Upgrade" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Mag-upgrade" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Upgrades Complete" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Step %d of approximately %d running" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms System Status" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Strength indicator" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Very weak" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Mahina" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Medium" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Matatag" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Mismatch" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Select One" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "If you are a human and are seeing this field, please leave it blank." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Fields marked with a * are required." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Isa itong kailangang field." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Please check required fields." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Calculation" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Number of decimal places." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Textbox" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Output calculation as" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Label" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Disable input?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Use the following shortcode to insert the final calculation: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automatically Total Calculation Values" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Specify Operations And Fields (Advanced)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Use An Equation (Advanced)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Calculation Method" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Field Operations" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Add Operation" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Advanced Equation" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Calculation name" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Default Value" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Custom CSS Class" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Select a Field" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Checkbox" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Unchecked" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Checked" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Show This" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Hide This" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Change Value" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afghanistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Algeria" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "American Samoa" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antarctica" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua And Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaijan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrain" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Belarus" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belgium" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bhutan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia And Herzegowina" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Island" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brazil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Cambodia" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Cameroon" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cape Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Cayman Islands" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Central African Republic" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Island" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Islands" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Congo, The Democratic Republic Of The" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cook Islands" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Cote D'Ivoire" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croatia (Local Name: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Czech Republic" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Denmark" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominican Republic" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (East Timor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egypt" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Ethiopia" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falkland Islands (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Faroe Islands" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finland" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "France" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "France, Metropolitan" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "French Guiana" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "French Polynesia" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "French Southern Territories" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Germany" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Greece" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Greenland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard And Mc Donald Islands" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Holy See (Vatican City State)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungary" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Iceland" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Iran (Islamic Republic Of)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Iraq" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Ireland" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italy" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japan" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordan" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakhstan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Korea, Democratic People's Republic Of" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Korea, Republic Of" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Lao People's Democratic Republic" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Latvia" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Lebanon" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesotho" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libyan Arab Jamahiriya" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lithuania" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxembourg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Macedonia, Former Yugoslav Republic Of" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldives" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshall Islands" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinique" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Mexico" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Micronesia, Federated States Of" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldova, Republic Of" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monaco" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Morocco" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Netherlands" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "New Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "New Zealand" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Niger" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Island" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norway" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Oman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua New Guinea" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Pilipinas" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Poland" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Russian Federation" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Rwanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts And Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Saint Lucia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent And The Grenadines" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tome And Principe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Saudi Arabia" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapore" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakia (Slovak Republic)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenia" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Solomon Islands" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "South Africa" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "South Georgia, South Sandwich Islands" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "Spain" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "St. Pierre And Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard And Jan Mayen Islands" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Sweden" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Switzerland" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Syrian Arab Republic" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tajikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzania, United Republic Of" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Thailand" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad And Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunisia" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turkey" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks And Caicos Islands" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukraine" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "United Arab Emirates" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "United Kingdom" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Estados Unidos" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Viet Nam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Virgin Islands (British)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Virgin Islands (U.S.)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis And Futuna Islands" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Western Sahara" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabwe" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Bansa" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Default Country" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Use a custom first option" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Custom first option" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "South Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Credit Card" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Card Number Label" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Numero ng card" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Card Number Description" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "The (typically) 16 digits on the front of your credit card." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Card CVC Label" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Card CVC Description" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "The 3 digit (back) or 4 digit (front) value on your card." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Card Name Label" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Name on the card" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Card Name Description" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "The name printed on the front of your credit card." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Card Expiry Month Label" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Expiration month (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Card Expiry Month Description" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "The month your credit card expires, typically on the front of the card." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Card Expiry Year Label" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Expiration year (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Card Expiry Year Description" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "The year your credit card expires, typically on the front of the card." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Text" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Text Element" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Nakatagong Field" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "User ID (If logged in)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "User Firstname (If logged in)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "User Lastname (If logged in)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "User Display Name (If logged in)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "User Email (If logged in)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Post / Page ID (If available)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Post / Page Title (If available)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Post / Page URL (If available)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Today's Date" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Querystring Variable" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "This keyword is reserved by WordPress. Please try another." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Is this an email address?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "If this box is checked, Ninja Forms will validate this input as an email address." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Send a copy of the form to this address?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Listahan" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "This is the user's state" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Selected Value" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Add Value" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Remove Value" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Dropdown" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radyo" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Mga checkbox" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multi-Select" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "List Type" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Multi-Select Box Size" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Import List Items" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Show list item values" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "I-import" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "To use this feature, you can paste your CSV into the textarea above." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "The format should look like the following:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Label,Value,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "If you want to send an empty value or calc, you should use '' for those." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Napili" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Number" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimum Value" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maximum Value" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Step (amount to increment by)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizer" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Password" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Use this as a registration password field" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "If this box is checked, both password and re-password textboxes will be output." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Re-enter Password Label" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Re-enter Password" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Show Password Strength Indicator" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ " "% ^ & )." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Hindi tugma ang mga password" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Star Rating" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Number of stars" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Confirm that you are not a bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Please complete the captcha field" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Please make sure you have entered your Site & Secret keys correctly" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha mismatch. Please enter the correct value in captcha field" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Spam Question" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Spam Answer" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "I-submit" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Buwis" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Tax Percentage" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Should be entered as a percentage. e.g. 8.25%, 4%" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Textarea" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Show Rich Text Editor" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Show Media Upload Button" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Disable Rich Text Editor on Mobile" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "Validate as an email address? (Field must be required)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Disable Input" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Datepicker" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Phone - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Pera" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Custom Mask Definition" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Tulong" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Timed Submit" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Submit button text after timer expires" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Please wait %n seconds" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n will be used to signify the number of seconds" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Number of seconds for countdown" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "This is how long a user must wait to submit the form" #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "If you are a human, please slow down." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "You need JavaScript to submit this form. Please enable it and try again." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "List Field Mapping" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Interest Groups" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Isa" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Marami" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Mga Listahan" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "refresh" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Submission Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "User Meta (if logged in)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Collect Payment" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "No forms found." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Pesta ng Pagkakagawa" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "title" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "updated" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Go get a life, script kiddies" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Parent Item:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "All Items" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Add New Item" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "New Item" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Edit Item" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Update Item" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "View Item" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Search Item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Not found in Trash" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Form Submissions" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Submission Info" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Add New Form" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Form Template Import Error." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Fields" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "There uploaded file is not a valid format." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Invalid Form Upload." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Import Forms" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Export Forms" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Equation (Advanced)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operations and Fields (Advanced)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Auto-Total Fields" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "No file was uploaded." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Unknown upload error." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Error sa Pag-uload ng File" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Add-On Licenses" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migrations and Mock Data complete. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "View Forms" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "I-save ang Mga Setting" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Server IP Address" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Host Name" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Append a Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Form Not Found" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Field Not Found" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "May nangyaring hindi inaasahang error." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Preview does not exist." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Payment Gateways" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Payment Total" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Hook Tag" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Email address or search for a field" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Subject Text or seach for a field" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Attach CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Label Here" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Help Text Here" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Enter the label of the form field. This is how users will identify individual fields." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Form Default" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Hidden" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Select the position of your label relative to the field element itself." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Kinakailangang Field" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Ensure that this field is completed before allowing the form to be submitted." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Number Options" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Step" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Mga Opsyon" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Isa" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "one" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Dalawa" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "two" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Tatlo" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "three" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Calc Value" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Restricts the kind of input your users can put into this field." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "wala" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "US Phone" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "custom" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Custom Mask" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Represents an alpha character " "(A-Z,a-z) - Only allows letters to be entered. " "
    • \n
    • 9 - Represents a numeric character " "(0-9) - Only allows numbers to be entered.
    • \n " "
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and\n letters to be " "entered.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Limit Input to this Number" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Character(s)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Word(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Text to Appear After Counter" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Natitirang character" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Enter text you would like displayed in the field before a user enters any data." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Custom Class Names" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Container" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Adds an extra class to your field wrapper." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Element" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Adds an extra class to your field element." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "MM/DD/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Friday, November 18, 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Default To Current Date" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Number of seconds for timed submit." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Field Key" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Creates a unique key to identify and target your field for custom development." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Label used when viewing and exporting submissions." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Shown to users as a hover." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Paglalarawan" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sort as Numeric" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "This column in the submissions table will sort by number." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Number of seconds for the countdown" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Use this as a reistration password field. If this box is check, " "both\n password and re-password textboxes will be output" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Kumpirmahin" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Allows rich text input." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Processing Label" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Checked Calculation Value" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "This number will be used in calculations if the box is checked." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Unchecked Calculation Value" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "This number will be used in calculations if the box is unchecked." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Display This Calculation Variable" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Select a Variable" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Presyo" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Use Quantity" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Allows users to choose more than one of this product." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Product Type" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Single Product (default)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Multi Product - Dropdown" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Multi Product - Choose Many" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Multi Product - Choose One" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "User Entry" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Halaga" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Cost Options" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Single Cost" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Cost Dropdown" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Cost Type" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Produkto" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Select a Product" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Answer" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "A case sensitive answer to help prevent spam submissions of your form." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomy" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Add New Terms" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "This is a user's state." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Used for marking a field for processing." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Saved Fields" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Common Fields" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "User Information Fields" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Pricing Fields" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Layout Fields" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Miscellaneous Fields" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Matagumpay nang naisumite ang iyong form." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Ninja Forms Submission" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "I-save ang Submission" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Variable Name" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Equation" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Default Label Position" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Wrapper" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Form Key" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Programmatic name that can be used to reference this form." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Add Submit Button" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Logged In" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Does apply to form preview." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Submission Limit" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Does NOT apply to form preview." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Display Settings" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Calculations" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Presyo:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Dami:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Magdagdag" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Open in new window" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "If you are a human seeing this field, please leave it empty." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Available" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Please enter a valid email address!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "These fields must match!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Number Min Error" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Number Max Error" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Please increment by " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Insert Link" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Insert Media" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Please correct errors before submitting this form." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot Error" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "File Upload in Progress." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "FILE UPLOAD" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "All Fields" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Sub Sequence" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Post ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Post Title" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Post URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP Address" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "User ID" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Pangalan" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Apelyido" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Display Name" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Opinionated Styles" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Maliwanag" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Madilim" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Use default Ninja Forms styling conventions." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Rollback" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Rollback to v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Rollback to the most recent 2.9.x release." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha Settings" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA Theme" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Rich Text Editor (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Advanced" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administration" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Blank Forms" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Makipag-ugnayan sa akin" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Mock Success Message Action" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Thank you {field:name} for filling out my form!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Mock Email Action" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "This is an email action." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Hello, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Mock Save Action" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "This is a test" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "This is another test." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Humingi ng Tulong" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "What Can We Help You With?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Agree?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "Best Contact Method?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telepono" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Snail Mail" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Ipadala" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Select List" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Option One" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Option Two" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Option Three" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Radio List" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Bathroom Sink" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Checkbox List" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "These are all the fields in the User Information section." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Address" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Lungsod" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Zip Code" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "These are all the fields in the Pricing section." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Product (quanitity included)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Product (seperate quantity)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Dami" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Kabuuan" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Credit Card Full Name" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Credit Card Number" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Credit Card CVV" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Credit Card Expiration" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Credit Card Zip Code" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "These are various special fields." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Anti-Spam Question (Answer = answer)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "answer" #: includes/Database/MockData.php:805 msgid "processing" msgstr "processing" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Long Form - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Fields" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Field #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Email Subscription Form" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Email Address" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Ipasok ang iyong email address" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Mag-subscribe" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Product Form (with Quantity Field)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Bilhin" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "You purchased " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "product(s) for " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Product Form (Inline Quantity)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " product(s) for " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Product Form (Multiple Products)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Product A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Quantity for Product A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Product B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Quantity for Product B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "of Product A and " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "of Product B for $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Form with Calculations" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "My First Calculation" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "My Second Calculation" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Calculations are returned with the AJAX response ( response -> data -> calcs" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "copy" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "I-save ang Form" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Credit Card Zip" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "You must be logged in to preview a form." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "No Fields Found." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Notice: Ninja Forms shortcode used without specifying a form." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Ninja Forms shortcode used without specifying a form." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Address 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Button" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Single Checkbox" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "checked" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "unchecked" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Credit Card CVC" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Pumili" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Estado" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Note text can be edited in the note field's advanced settings below." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Note" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Password Confirm" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "password" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Please complete the recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Advanced Shipping" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Tanong" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Question Position" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Incorrect Answer" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Number of Stars" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Terms List" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "No available terms for this taxonomy. %sAdd a term%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "No taxonomy selected." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Available Terms" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Paragraph Text" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Single Line Text" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Zip" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Post" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Query Strings" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Query String" #: includes/MergeTags/System.php:13 msgid "System" msgstr "System" #: includes/MergeTags/User.php:13 msgid "User" msgstr "User" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " requires an update. You have version " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " installed. The current version is " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Editing Field" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Label Name" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Above Field" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Below Field" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Left of Field" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Right of Field" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Hide Label" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Class Name" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Basic Fields" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Mult-Select" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Add new field" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Add new action" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Expand Menu" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "I-publish" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "ILATHALA" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Naglo-load" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "View Changes" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Add form fields" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Get started by adding your first form field." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Add New Field" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Just click here and select the fields you want." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "It's that easy. Or..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Start from a template" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Makipag-ugnayan Sa Amin" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Quote Request" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Event Registration" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Newsletter Sign Up Form" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Add form actions" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicate (^ + C + click)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Delete (^ + D + click)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Mga Pagkilos" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Toggle Drawer" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Full screen" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Half screen" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "I-undo" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Tapos na" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Undo All" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Undo All" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Malapit na..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Not Yet" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Open in new window" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "De-activate" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Fix it." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Select a form" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Being Date" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Before requesting help from our support team please review:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms THREE documentation" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "What to try before contacting support" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Our Scope of Support" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Import Fields" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Updated on: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Submitted on: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Submitted by: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Submission Data" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Tingnan" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Ipakita ang Iba Pa" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Editing field" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Form Fields" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Preview Changes" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Contact Form" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s was deactivated." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Please help us improve Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "If you skip this, that's okay! Ninja Forms will still work just fine." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sAllow%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sDo not allow%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "You do not have permission." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Permission Denied" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEBUG: Switch to 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEBUG: Switch to 3.0.x" lang/ninja-forms-tr_TR.po000064400000640571152331132460011315 0ustar00#, fuzzy msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2016-08-29 08:57-0500\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Bildirim: Bu içerik için bir JavaScript gereklidir." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Hile mi yapıyorsun?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "%s*%s işareti olan alanlar zorunludur" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Lütfen tüm zorunlu alanları tamamlayın." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Bu zorunlu bir alandır" #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "İstenmeyen posta sorusunu lütfen doğru olarak yanıtlayın." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "İstenmeyen posta alanını lütfen boş bırakın." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Formu göndermek için lütfen bekleyin." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "Javascript etkin olmadan formu gönderemezsiniz." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Lütfen geçerli bir e-posta adresi girin." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "İşleniyor" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Şifreler eşleşmiyor." #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Form Ekle" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Aramak için form seçin ya da yazın" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Vazgeç" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Ekle" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Geçersiz form kimliği" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Dönüştürmeleri Artır" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "Form dönüştürmesini, büyük formları daha kolay sindirilmiş olan daha küçük " "parçalara ayırarak artırabileceğinizi biliyor muydunuz?

    Ninja Forms'un Çok " "Parçalı Form uzantısı, bu süreci hızlı ve kolay bir hale getiriyor.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Çok Parçalı Formlarla İlgili Ayrıntılı Bilgi Edinin" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Belki Daha Sonra" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Kapat" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Kullanıcılar, gönderimlerini daha sonra tamamlamak için kaydetme ve geri " "dönme seçenekleri olduğunda uzun formları doldurmayı isteyebilir.

    Ninja " "Forms'un Kaydetme İlerleme Durumu uzantısı, bu süreci hızlı ve kolay bir hale getiriyor.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Kaydetme İlerleme Durumu İle İlgili Ayrıntılı Bilgi Edinin" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "E-Posta" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Gönderen Adı" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Ad veya alanlar" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "E-posta, bu addan gönderilmiş olarak görüntülenir." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Gönderen Adresi" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Bir e-posta adresi ya da alan" #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "E-posta, bu e-posta adresinden gönderilmiş olarak görüntülenir." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Alıcı" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "E-posta adresleri ya da alan arama" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "Bu e-postayı kime göndermelisiniz?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Konu" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Konu Metni ya da alan arama" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Bu, e-postanın konusu olacaktır." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "E-posta Mesajı" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Ekler" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "CSV Gönderimi" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Format" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Düz Metin" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Yanıtla" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Yönlendir" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Başarı Mesajı" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Önceki Form" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Sonraki Form" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Konum" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Mesaj" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "çoğalt" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Devre dışı bırak" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Etkinleştir" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Düzenle" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Sil" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Çoğalt" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "İsim" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Tür" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Güncelleme Tarihi" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "- Tüm Türleri Görüntüle" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Daha Fazla Tür Edinin" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "E-posta ve Eylemler" #: deprecated/classes/notifications.php:219 deprecated/classes/subs-cpt.php:118 #: deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 includes/Admin/CPT/Submission.php:47 #: includes/Config/FieldSettings.php:153 includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Yeni ekle" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Yeni Eylem" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Eylemi Düzenle" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Listeye Dön" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Eylem Adı" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Daha Fazla Eylem Edinin" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Eylem Güncellendi" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Aramak için alan seçin ya da yazın" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Alanı Yerleştir" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Tüm Alanları Yerleştir" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Lütfen gönderimleri görüntülemek için bir form seçin" #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Gönderim Bulunamadı" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Gönderimler" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Gönderim" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Yeni Gönderim Ekle" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Gönderimi Düzenle" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Yeni Gönderim" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Gönderimi Görüntüle" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Gönderimleri Ara" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "Çöp Kutusunda Gönderim Bulunamadı" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 includes/Config/MergeTagsSystem.php:27 #: includes/Database/MockData.php:620 includes/Fields/Date.php:30 msgid "Date" msgstr "Tarih" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Öğeyi düzenle" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Bu öğeyi dışa aktar" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Dışa Aktar" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Bu öğeyi çöpe taşı" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Çöp" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Bu öğeyi çöpten geri yükle" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Geri Yükleme" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Bu öğeyi kalıcı olarak sil" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Kalıcı Olarak Sil" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Yayımlanmamış" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s önce" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Gönderildi" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Form seçin" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Başlangıç Tarihi" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Bitiş Tarihi" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s güncellendi." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Özel Alan Güncelendi" #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Özel Alan Silindi" #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s, %2$s tarafından gelen revizyon durumuna geri getirildi." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s yayımlandı." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s kaydedildi." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s gönderildi. %3$s önizlemesi" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s, şu şekilde planlandı: %2$s. %4$s önizlemesi" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "%1$s taslak güncellendi. %3$s önizlemesi" #: deprecated/classes/subs-cpt.php:709 includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Tüm Gönderimleri İndir" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Listeye dön" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Kullanıcı Tarafından Gönderilen Değerler" #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Gönderim İstatistikleri" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Alan" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Değer" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Durum" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 includes/Admin/Menus/ImportExport.php:99 #: includes/MergeTags/Form.php:15 msgid "Form" msgstr "Form" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Gönderme tarihi" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Değiştirme tarihi" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Gönderen" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Güncelle" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Gönderildiği Tarih" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms, ağ ile etkinleştirilemez. Eklentiyi etkinleştirmek için lütfen " "her bir sitenin panosunu ziyaret edin." #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Bunu, satın aldığınız e-postaya dahil olarak bulacaksınız." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Anahtar" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "Lisans etkinleştirilemedi. Lütfen lisans anahtarınızı doğrulayın" #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Lisansı Devre Dışı Bırak" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Kullanıcı Tarafından Verilen Değerler:" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Bu formu doldurduğunuz için teşekkürler." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Yeni %1$s sürümü çıktı. %3$s sürümüne yönelik ayrıntıları görüntüleyin ." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Yeni %1$s sürümü çıktı. %3$s sürümüne yönelik ayrıntıları görüntüleyin ya da şimdi güncelleme yapın." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "Eklenti güncellemelerini yüklemek için izniniz yok" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Hata" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Standart Alanlar" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Sayfa Düzeni Öğeleri" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Gönderi Oluşturma" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Bu eklentiyi ücretsiz olarak sunmaya devam etmemizde yardımcı olmak için " "lütfen %sWordPress.org%s sayfasından %sNinja Forms%s %s için puan verin. WP " "Ninjas ekibinden teşekkür mesajı!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Pencere Öğesi" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Görüntülenecek Başlık" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Yok" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formlar" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Tüm Formlar" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Ninja Forms Yükseltmeleri" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Yükseltmeler" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "İçe Aktar/Dışa Aktar" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "İçe Aktar / Dışa Aktar" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ninja Form Ayarları" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Ayarlar" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Sistem Durumu" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Eklentiler" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Önizleme" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Kaydet" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "kalan karakter(ler)" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "Bu terimleri gösterme" #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Kaydetme Seçenekleri" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Formu Önizle" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Ninja Forms ÜÇ'e Yükseltin" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "Ninja Forms ÜÇ Sürüm Adayına yükseltme yapmak için koşulları karşılıyorsunuz! " "%sŞimdi Yükseltin%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "ÜÇ geliyor!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Ninja Forms'a büyük bir güncelleme geliyor. %sYeni özellikler, geriye " "uyumluluk ve daha fazlası hakkında Sık Sorulan Sorular üzerinden ayrıntılı " "bilgi alın.%s" #: deprecated/includes/admin/notices.php:53 includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "Nasıl gidiyor?" #: deprecated/includes/admin/notices.php:54 includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "Ninja Forms'u kullandığınız için teşekkürler! İhtiyacınız olan her şeyi " "bulduğunuz umuyoruz ancak herhangi bir sorunuz olursa:" #: deprecated/includes/admin/notices.php:55 includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Belgelerimize göz atın" #: deprecated/includes/admin/notices.php:56 includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Yardım Alın" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Menü Öğesini Düzenle" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Tümünü Seç" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Ninja Formu Ekle" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "Bu en sevilen öğeye ne ad vermek istersiniz?" #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Bu en sevilen öğe için bir ad sunmanız gerekir." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "Tüm lisanslar gerçekten de devre dışı bırakılsın mı?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "v2.9+ için form dönüştürme sürecini sıfırla" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "Kaldırma işlemi sonrasında TÜM Ninja Forms verileri kaldırılsın mı?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Form Düzenle" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Kaydedildi" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Kaydediliyor..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "Bu alan silinsin mi? Kaydetmeseniz bile silinecektir." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Gönderimleri Görüntüle" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms İşleniyor" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms - İşleniyor" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Yükleniyor..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "Eylem Belirtilmemiş..." #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "İşlem başladı; lütfen sabırlı olun. Bu işlem, birkaç dakika sürebilir. İşlem " "bittiğinde otomatik olarak yeniden yönlendirileceksiniz." #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Ninja Forms'a Hoş Geldiniz %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "Güncellediğiniz için teşekkür ederiz! Ninja Forms, %s form oluşturma işini " "hiç olmadığı kadar kolay bir hale getiriyor!" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Ninja Forms'a Hoş Geldiniz " #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Değişim Günlüğü" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Ninja Forms'a hızlı başlangıç" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Ninja Forms oluşturan kişiler" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Yenilikler" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Başlarken" #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Krediler" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Sürüm %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Daha güçlü ve kolay bir form yazma deneyimi." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Yeni Oluşturucu Sekmesi" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Formları oluştururken ve düzenlerken, doğrudan en önemli olan bölüme gidin." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Daha İyi Düzenlenmiş Alan Ayarları" #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "En önemli ayarlar hemen görüntülenirken; temel düzeyde olmayan diğer ayarlar, " "genişletilebilir bölümlerin altında tutulur." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Çok daha kolay kullanım" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "\"Formunuzu Oluşturun\" sekmesinin yanında \"E-postalar ve Eylemler\" için " "\"Bildirimler\" bölümünü kaldırdık. Bu sayede bu sekmede neler yapılacağı çok " "daha rahat bir şekilde görülebilir." #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Tüm Ninja Forms verilerini kaldır" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Eklentiyi sildiğinizde tüm Ninja Forms verilerini (gönderimler, formlar, " "alanlar, seçenekler) kaldırma seçeneğini de ekledik. Biz buna nükleer seçenek diyoruz." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Çok daha iyi lisans yönetimi" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Ayarlar sekmesinden tek başına ya da grup olarak Deactivate Ninja Forms " "uzantısına ait lisanslar" #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Dahası var" #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Bu sürümdeki arayüz güncellemeleri, ileride yapılacak bazı harika " "iyileştirmelerin temelini atabilir. Sürüm 3.0, Ninja Forms'u daha sağlam, " "güçlü ve kullanıcı dostu bir form oluşturma aracı haline getirmek için bu " "değişiklikleri taşıyor." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Belgeler" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "Geniş kapsamlı Ninja Forms belgelerimize aşağıdan göz atabilirsiniz." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Ninja Forms Belgeleri" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Yardım Al" #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Ninja Forms'a Geri Dön" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Değişim Günlüğünün Tamamını Görüntüle" #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Tam Değişim Günlüğü" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Ninja Forms'a Git" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Ninja Forms'u kullanmaya başlamak için aşağıdaki ipuçlarından yararlanın. Göz " "açıp kapayıncaya kadar hazırsınız!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Formlar Hakkında Her Şey" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "Formlar menüsü, Ninja Forms ile ilgili her türlü konuda bilgi sunan erişim " "noktanızdır. Elinizde bir örnek bulunması için %siletişim formunuzu%s sizin " "için oluşturduk bile. Ayrıca %sYeni Form Ekle%s seçeneğini tıklayarak kendi " "formunuzu oluşturabilirsiniz." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Formunuzu Oluşturun" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Burada alan ekleyerek ve alanları istediğiniz görünüme kavuşacak şekilde " "sürükleyerek form oluşturabilirsiniz. Her bir alanda etiket, etiket konumu ve " "yer tutucu gibi çok çeşitli seçeneklerimiz var." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "E-postalar ve Eylemler" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Bir kullanıcı, gönder seçeneğini tıkladığında formunuzla ilgili size e-posta " "gelmesini istiyorsanız, buna yönelik ayarları bu sekmeden yapabilirsiniz. " "Formunuzu dolduran kullanıcıya gönderilen e-postalar gibi sınırsız sayıda " "e-posta oluşturabilirsiniz." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Başlık ve gönderme yöntemi ve form başarılı bir şekilde tamamlandığında " "formun saklanması gibi görüntü ayarları da dahil olmak üzere genel form " "ayarları, bu sekmede yer alır." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Formunuzun Görüntülenmesi" #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Sayfaya Ekle" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "Form Ayarları bölümünde Temel Form Davranışı alanının altından formun sayfa " "içeriğine otomatik olarak eklemesini istediğiniz bir sayfayı kolaylıkla " "seçebilirsiniz. Buna benzer bir seçenek, yan çubuktaki tüm içerik düzenleme " "ekranlarında da mevcuttur." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Kısa kod" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Formunuzun istediğiniz yerde görüntülenmesi için kısa kod kabul eden herhangi " "bir alana %s öğesini getirin. Bu alan, sayfanın ya da gönderi içeriklerinin " "ortası bile olabilir. " #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms, sitenizin pencere öğesi eklenebilecek her alanına " "yerleştirebileceğiniz bir pencere öğesi sunar ve tam olarak burada " "gösterilmesini istediğiniz formu da seçebilirsiniz." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Şablon İşlevi" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms, ayrıca bir php şablon dosyasına doğrudan yerleştirilebilecek " "basit bir şablon işleviyle birlikte gelir. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "Yardıma mı İhtiyacınız Var?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Daha Çok Bilgilendirici Belge" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "%sSorun Gidermeden%s %sGeliştirici API'mıza%s kadar her konuya yönelik " "belgelerimize ulaşabilirsiniz. Sürekli Yeni Belgeler eklenmektedir." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "Sektördeki En İyi Destek Ekibi" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Tüm Ninja Forms kullanıcılarına mümkün olan en iyi şekilde destek olmak için " "elimizden geleni yapıyoruz. Herhangi bir sorunla karşılaşırsanız ya da bir " "sorunuz olursa, %slütfen bizimle iletişime geçin%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "En yeni sürüme güncelleme yaptığınız için teşekkürler! Ninja Forms, %s " "gönderi yönetimini eğlenceli bir hale getirerek, deneyiminizi mükemmel hale " "getirmek üzere geliştirildi!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms, 1 numaralı WordPress form oluşturma eklentisini birlikte sunma " "amacını taşıyan, dünyanın dört bir yanındaki geliştiricilerden oluşan bir ekiptir." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "Geçerli bir değişim günlüğü bulunamadı." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "%s görüntüle" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Tarayıcı Otomatik Tamamlamasını Devre Dışı Bırak" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sİşaretlenen%s Hesaplama Değeri" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "%sİşaretlendiğinde%s kullanılacak değerdir." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sOnay İşareti Kaldırılan%s Hesaplama Değeri" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "%sOnay İşareti Kaldırıldığında%s kullanılacak değerdir." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "Otomatik toplama dahil edilsin mi? (Etkinleştirilirse)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Özel CSS Sınıfları" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Her Şeyden Önce" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Önce Etiketi" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Sonra Etiketi" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Her Şeyden Sonra" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "\"açıklama metni\" etkinleştirilirse, giriş alanının yanına konmak üzere bir " "soru işareti %s olacaktır. Bu soru işaretinin üzerine gelindiğinde açıklama " "metni görüntülenir." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Açıklama Ekle" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Açıklama Konumu" #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Açıklama İçeriği" #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "\"yardım metni\" etkinleştirilirse, giriş alanının yanına konmak üzere bir " "soru işareti %s olacaktır. Bu soru işaretinin üzerine gelindiğinde yardım " "metni görüntülenir." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Yardım Metnini Göster" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Yardım Metni" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Kutuyu boş bırakırsanız, herhangi bir sınırlama kullanılmayacaktır" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Girdiyi bu rakamla sınırla" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "/" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Karakterler" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Kelimeler" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Karakter/kelime sayacından sonra görüntülenecek metin" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "Öğenin Solu" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Öğenin Yukarısı" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Öğenin Aşağısı" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "Öğenin Sağı" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Öğenin İçi" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Etiket Konumu" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Alan Kimliği" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Sınırlama Ayarları" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Hesaplama Ayarları" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Kaldır" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Burayı sınıflandırmayla doldur" #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Yok" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Yer Tutucu" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Gerekli" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Alan Ayarlarını Kaydet" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Sayılara göre sırala" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Bu kutu işaretlenirse, gönderimler tablosundaki bu sütun sayılara göre sıralanır." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Yönetici Etiketi" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "Bu, gönderimler görüntülenirken/düzenlenirken/dışa aktarılırken kullanılan etikettir." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Faturalama" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Kargo" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Özel" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Kullanıcı Bilgileri Alan Grubu" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Özel Alan Grubu" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Lütfen destek talebinde bulunurken bu bilgileri de dahil edin:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Sistem Raporu Al" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Ortam" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "Anasayfa Bağlantısı" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "Site Bağlantısı" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Ninja Forms Sürümü" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "WordPress Sürümü" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisite Etkin" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Evet" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "Hayır" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Web Sunucusu Bilgileri" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "PHP Sürümü" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "MySQL Sürümü" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "PHP Yerel Ayarları" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "WordPress Hafıza Limiti" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "WordPress Hata Ayıklama Modu" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "WP Dili" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Varsayılan" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "WP Maksimum Yükleme Boyutu" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "PHP Post Max Boyutu" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Maksimum Girdi İç İçe Yerleştirme Düzeyi" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Zaman Limiti" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Max Input Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Yüklemesi" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Varsayılan Zaman Dilimi" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Varsayılan zaman dilimi %s - UTC olmalıdır" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Varsayılan zaman dilimi: %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Sunucunuzda fsockopen ve cURL etkinleştirilmiş durumda." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Sunucunuzda fsockopen etkinleştirilmiş; cURL devre dışı durumda." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Sunucunuzda cURL etkinleştirilmiş; fsockopen devre dışı durumda." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Sunucunuzda fsockopen yok veya cURL etkin değil - PayPal IPN ile başka " "sunucularla iletişim halinde olan diğer komut dizileri çalışmayacaktır. " "Lütfen barındırma hizmeti sağlayıcınızla iletişime geçin." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "SOAP İstemcisi" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "Sunucunuzda SOAP İstemci sınıfı etkinleştirilmiş durumda." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Sunucunuzda %sSOAP İstemci%s sınıfı etkinleştirilmiş durumda değil; SOAP " "kullanan bazı ağ geçidi eklentileri, beklendiği şekilde çalışmayabilir." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "WP Uzaktan Gönderi" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() başarılı oldu - PayPal IPN çalışıyor." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() başarısız oldu. PayPal IPN, sunucunuzla çalışmıyor. Hosting " "sağlayıcınız ile iletişime geçin. Hata:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "wp_remote_post() başarısız oldu. PayPal IPN, sunucunuzla çalışamayabilir." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Eklentiler" #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Yüklenen Eklentiler" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Eklenti anasayfasını ziyaret et" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "- İade işlemini yapan:" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "sürüm" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "Formunuza bir isim verin. Formunuzu daha sonra bu isimle bulabilirsiniz." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Formunuza bir gönder düğmesi eklemediniz." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Girdi Maskesi" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "\"Özel maske\" kutusuna yerleştirdiğiniz ve aşağıdaki listede yer almayan tüm " "karakterler, kullanıcılar yazarken girilir ve kaldırılamaz" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Bunlar, önceden tanımlı maskeleme karakterleridir" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Bir alfabetik karakteri temsil eder (A-Z,a-z) - Sadece harf girilmesine " "izin verilir" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "a - Sayısal bir karakteri temsil eder (0-9) - Sadece sayı girilmesine izin verilir" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Alfanumerik bir karakteri temsil eder (A-Z,a-z,0-9) - Hem sayı hem harf " "girilmesine izin verir" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Dolayısıyla örneğin bir Amerika Sosyal Güvenlik Numarası için bir maske " "oluşturmak istiyorsanız, kutuya 999-99-9999 yazmanız gerekir" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "9'lar, her türlü sayıyı ifade edebilir; - işaretleri ise otomatik olarak eklenir" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Bu, kullanıcının rakam dışında bir giriş yapmasını engeller" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "Bunları ayrıca spesifik uygulamalar için de birleştirebilirsiniz" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Örneğin A4B51.989.B.43C şeklinde bir ürün anahtarınız varsa, bunu " "a9a99.999.a.99a ile maskeleyebilirsiniz. Böylece tüm a'lar harf haline; 9'lar " "ise sayı haline getirilir " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Tanımlı Alanlar" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "En Sevilenler Alanları" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Ödeme Alanları" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Şablon Alanları" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Kullanıcı Bilgileri" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Tümü" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Toplu eylemler" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Uygula" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Sayfa Başına Formlar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Git" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "İlk sayfaya git" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Önceki sayfaya git" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Mevcut sayfa" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Sonraki sayfaya git" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Son sayfaya git" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Form Başlığı" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Bu formu sil" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Formu Çoğalt" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formlar Silindi" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Form Silindi" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Form Önizlemesi" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Görünüm" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Form Başlığını Görüntüle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Bu sayfaya form ekle" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "AJAX (yeniden sayfa yüklemesi olmadan) ile gönderilsin mi?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "Başarıyla tamamlanan form temizlensin mi?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Ninja Forms, bu kutunun işareti kaldırılırsa form başarıyla gönderildikten " "sonra form değerlerini temizler." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "Başarıyla tamamlanan form gizlensin mi?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Ninja Forms, bu kutunun işareti kaldırılırsa form başarıyla gönderildikten " "sonra formu gizler." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Kısıtlamalar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "Kullanıcının formu göndermesi için oturum açması gerekli olsun mu?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Oturum Açık Değil Mesajı" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Yukarıdaki \"oturum açık\" onay kutusu işaretliyse ve kullanıcı oturum " "açmamışsa kullanıcılara gösterilen mesaj." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Gönderimleri Sınırla" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Bu formun kabul edeceği gönderim sayısını seçin. Sınır koymak istemiyorsanız " "boş bırakın." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Sınıra Ulaşıldı Mesajı" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Lütfen bu form, gönderim sınırına ulaştığında ve yeni gönderimler kabul " "edilmeyeceğinde gösterilmesini istediğiniz bir mesaj girin." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Form Ayarları Kaydedildi" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Temel Ayarlar" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "Ninja Forms temel yardım bölümü burada yer alır." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Ninja Forms'u Genişlet" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Belgeler yakında geliyor." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Etkin" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Kuruldu" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Daha Fazla Bilgi" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Yedekle / Geri Yükle" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Ninja Forms'u Yedekle" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Ninja Forms'u Geri Yükle" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "Veriler başarıyla geri yüklendi!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "En Sevilenler Alanlarını İçe Aktar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Dosya seçin" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "En Sevilenleri İçe Aktar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "En Sevilenler Alanları Bulunamadı" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "En Sevilenler Alanlarını Dışa Aktar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Alanları Dışa Aktar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Lütfen dışa aktarılacak en sevilenler alanlarını seçin." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "En sevilenler başarıyla içe aktarıldı." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Lütfen geçerli bir en sevilenleri alanları dosyası seçin." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Bir formu içe aktarın" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Formu İçe Aktar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Bir formu dışa aktarın" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Formu Dışa Aktar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Lütfen bir form seçin." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Form Başarıyla İçe Aktarıldı." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Lütfen geçerli bir dışa aktarılan form dosyası seçin." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Gönderimleri İçe / Dışa Aktar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Tarih Ayarları" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "Genel" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Genel Ayarlar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Sürüm" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Tarih Formatı" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" " %sPHP date() işlevi%s özelliklerini izlemeye çalışır ancak tüm formatlar desteklenmez." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Para Birimi Sembolü" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "reCAPTCHA Ayarları" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA Site Anahtarı" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "%sBuradan%s kayıt olarak alan adınız için bir site anahtarı alın" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA Gizli Anahtar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "reCAPTCHA Dili" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "reCAPTCHA tarafından kullanılan dil. Diliniz için bir kod almak istiyorsanız " "%sburayı%s tıklayın" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Bu kutu işaretlenirse, silme işlemi sonrasında TÜM Ninja Forms verileri " "veritabanından kaldırılır. %sTüm form ve gönderim verileri kurtarılamaz " "durumda olacaktır.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Yönetici Bildirimlerini Devre Dışı Bırak" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "Panoda Ninja Forms'tan gelen yönetici bildirimlerini asla " "görüntülemeyebilirsiniz. Tekrar görüntülemek için onay işaretini kaldırın." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Bu ayar, eklentinin silinmesi üzerinde Ninja Forms ile bağlantılı her türlü " "veriyi TAMAMEN kaldırır. Buna GÖNDERİMLER ve FORMLAR da dahildir. İşlem geri alınamaz." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Devam Et" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Ayarlar Kaydedildi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etiketler" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Mesaj Etiketleri" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Zorunlu Alan Etiketi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Zorunlu alan sembolü" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "Zorunlu alanlar tamamlanmamışsa verilen hata mesajı" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Zorunlu Alan Hatası" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "İstenmeyen posta önleme hata mesajı" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Honeypot hata mesajı" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Zamanlayıcı hata mesajı" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "JavaScript devre dışı hata mesajı" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Lütfen geçerli bir e-posta adresi girin" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Gönderim İşleme Alınıyor Etiketi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Bu mesaj, bir kullanıcı \"gönder\" düğmesine her tıklandığında kullanıcıya " "işlem yapıldığını bildirmek için gönderme düğmesinin içinde gösterilir." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Şifre Eşleşmiyor Etiketi" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Bu mesaj, şifre alanına eşleşmeyen değerler getirildiğinde kullanıcıya gösterilir." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Lisanslar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Kaydet ve Etkinleştir" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Tüm Lisansları Devre Dışı Bırak" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Ninja Forms uzantıları için tüm lisansları etkinleştirmek istiyorsanız, " "öncelikle seçilen uzantıyı %syüklemeniz ve etkinleştirmeniz%s gerekir. " "Ardından lisans ayarları, aşağıda görüntülenir." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Formları Dönüştürmeyi Sıfırla" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Form Dönüştürmeyi Sıfırla" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "2.9'a güncelleme yaptıktan sonra formlarınız \"yoksa\" bu düğme, eski " "formlarınızı 2.9'da görüntülenecek şekilde yeniden dönüştürmeyi deneyebilir. " "Güncel tüm formlar, \"Tüm Formlar\" tablosunda kalır." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Güncel tüm formlar, \"Tüm Formlar\" tablosunda kalır. Bu işlem sırasında " "bazen formlardan bazıları çoğaltılabilir." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "Yönetici E-postası" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "Kullanıcı E-postası" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms'un form bildirimlerinizi yükseltmesi gerekiyor; yükseltmeyi " "başlatmak için lütfen %sburayı%s tıklayın." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms'un e-posta ayarlarınızı güncellemesi gerekiyor; yükseltmeyi " "başlatmak için lütfen %sburayı%s tıklayın." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms'un gönderimler tablonuzu yükseltmesi gerekiyor; yükseltmeyi " "başlatmak için lütfen %sburayı%s tıklayın." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Ninja Forms'un 2.7 sürümüne güncelleme yaptığınız için teşekkürler. Lütfen " "her türlü Ninja Forms uzantısını şuradan güncelleyin: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Ninja Forms File Upload uzantısı sürümünüz, Ninja Forms 2.7 sürümüyle uyumlu " "değildir. En azından 1.3.5 sürümünün olması gerekir. Bu uzantıyı lütfen " "şuradan güncelleyin: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Ninja Forms Save Progress uzantısı sürümünüz, Ninja Forms 2.7 sürümüyle " "uyumlu değildir. En azından 1.1.3 sürümünün olması gerekir. Bu uzantıyı " "lütfen şuradan güncelleyin: " #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Form Veritabanının Güncellenmesi" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms'un form ayarlarınızı yükseltmesi gerekiyor; yükseltmeyi başlatmak " "için lütfen %sburayı%s tıklayın." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Ninja Forms Yükseltmesi İşleniyor" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "Lütfen yukarıda görülen hatayı belirterek %sdestek ekibi ile iletişime geçin%s." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "Ninja Forms, mevcut tüm yükseltmeleri tamamladı!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Formlara Git" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Ninja Forms Yükseltmesi" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Yükselt" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Yükseltmeler Tamamlandı" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms'un %s yükseltmelerini işlemesi gerekiyor. Bu işlemin tamamlanması " "birkaç dakika sürebilir. %sYükseltmeyi Başlat%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Çalışan yaklaşık %d öğenin %d adımı" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Ninja Forms Sistem Durumu" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Güç göstergesi" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Çok zayıf" #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Zayıf" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Orta" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Güçlü" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Eşleşme yok" #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Bir Seçim Yapın" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "Bir insan olarak bu alanı görebiliyorsanız, lütfen boş bırakın." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "* işaretli alanlar zorunludur." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Bu zorunlu bir alandır." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Lütfen zorunlu alanları kontrol edin." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Hesaplama" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Ondalık basamakların sayısı." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Metin Kutusu" #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Hesaplamayı şu şekilde çıkar:" #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etiket" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "Giriş devre dışı bırakılsın mı?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Son hesaplamayı yerleştirmek için şu kısa kodu kullanın: [ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Kimlik numarasını kullanmak istediğiniz alanın x ile gösterildiği field_x " "öğesini kullanarak hesaplama eşitliklerini girebilirsiniz. Örnek: %sfield_53 " "+ field_28 + field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Karmaşık işlemler, parantez eklenerek gerçekleştirilebilir: %s( field_45 * " "field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Lütfen bu işleçleri kullanın: + - * /. Bu, gelişmiş bir özelliktir. 0'a bölme " "işlemi gibi durumlara dikkat edin." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Otomatik Toplam Hesaplama Değerleri" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "İşlemleri ve Alanları Belirtin (Gelişmiş)" #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Eşitlik Kullanın (Gelişmiş)" #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Hesaplama Yöntemi" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Alan İşlemleri" #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "İşlem Ekle" #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Gelişmiş Eşitlik" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Hesaplama adı" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Bu, alanınızın programlanmış adıdır. Örnekler, şu şekildedir: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Varsayılan Değer" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Özel CSS Sınıfı" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Bir Alan Seçin" #: deprecated/includes/fields/checkbox.php:4 includes/Database/MockData.php:443 #: includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Onay kutusu" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "Onaylanmadı" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Onaylandı" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Bunu Göster" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Bunu Gizle" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Değeri Değiştir" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afganistan" #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Arnavutluk" #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Cezayir" #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Amerikan Samoası" #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra" #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola" #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguilla" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antartika" #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua ve Barbuda" #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Arjantin" #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Ermenistan" #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Avustralya" #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Avusturya" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaycan" #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamalar" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahreyn" #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladeş" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Beyaz Rusya" #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Belçika" #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belize" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermuda" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Butan" #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivya" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosna Hersek" #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botsvana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Bouvet Adası" #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brezilya" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Hint Okyanusu İngiliz Bölgesi" #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Sultanlığı" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaristan" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Kamboçya" #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Kamerun" #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Kanada" #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cape Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Cayman Adaları" #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "Orta Afrika Cumhuriyeti" #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Çat" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Şili" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "Çin" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "Christmas Adaları" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Cocos (Keeling) Adaları" #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Kolombiya" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoros" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Kongo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "Kongo, Demokratik Cumhuriyet" #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Cook Adaları" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Kostarika" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Cote D'Ivoire" #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Hırvatistan (Yerel Adı: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Küba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "K.K.T.C." #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "Çek Cumhuriyeti" #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Danimarka" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Cibuti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominika" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "Dominik Cumhuriyeti" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Doğu Timor)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ekvator" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Mısır" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Ekvator Ginesi" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritre" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonya" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiyopya" #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Falkland Adaları (Malvinas)" #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Faroe Adaları" #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlandiya" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Fransa" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Fransa, Metropolitan" #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Fransız Guyanası" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Fransız Poliznezyası" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Fransız Güney Bölgeleri" #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabon" #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambiya" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Gürcistan" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Almanya" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Gana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Cebelitarık" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Yunanistan" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Grönland" #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Grenada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadeloupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Gine" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Gine-Bissau Cumhuriyeti" #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guyana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haiti" #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Heard ve Mc Donald Adaları" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Kutsal Makam (Vatikan Şehir Devleti)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Macaristan" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "İzlanda" #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "Hindistan" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Endonezya" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "İran (İslam Cumhuriyeti)" #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "İrlanda" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "İsrail" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "İtalya" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaika" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japonya" #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Ürdün" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazakistan" #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenya" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "Kore, Demokratik Cumhuriyet" #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "Kore, Cumhuriyet" #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuveyt" #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kırgızistan" #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "Laos Demokratik Halk Cumhuriyeti" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Letonya" #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Lübnan" #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesoto" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberya" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Libya Arap Jamahiriya" #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Lihtenştayn" #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Litvanya" #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Lüksemburg" #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Makao" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Makedonya, Eski Yugoslavya Cumhuriyeti" #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagaskar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malavi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malezya" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldivler" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Mali" #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Marshall Adaları" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinik" #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Moritanya" #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauritius" #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte" #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "Meksika" #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Mikronezya, Federal Devletler" #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "Moldova, Cumhuriyet" #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Monako" #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Moğolistan" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Karadağ" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat" #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Fas" #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambik" #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar" #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibya" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal" #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Hollanda" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Hollanda Antilleri" #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Yeni Kaledonya" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Yeni Zelanda" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nikaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Nijer" #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nijerya" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Norfolk Adası" #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Kuzey Mariana Adaları" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Norveç" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Umman" #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistan" #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papua Yeni Gine" #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Peru" #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filipinler" #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn Adası" #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polonya" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portekiz" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Porto Riko" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Katar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunion Adası" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Romanya" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Rusya Federasyonu" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "Saint Kitts ve Nevis" #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Santa Luçia" #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "Saint Vincent ve Grenadinler" #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Sao Tome ve Principe" #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Suudi Arabistan" #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Sırbistan" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seyşeller" #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leone" #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapur" #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Slovakya (Slovak Cumhuriyeti)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Slovenya" #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Solomon Adaları" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somali" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Güney Afrika" #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Güney Georgia ve Güney Sandviç Adaları" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "İspanya" #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena" #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "Saint Pierre ve Miquelon" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudan" #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Surinam" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Svalbard ve Jan Mayen Adaları" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Svaziland" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "İsveç" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "İsviçre" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "Suriye Arap Cumhuriyeti" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Tayvan" #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tacikistan" #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "Tanzanya, Birleşik Cumhuriyet" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Tayland" #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau" #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad ve Tobago" #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Tunus" #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Türkiye" #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Türkmenistan" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Turks ve Caicos Adaları" #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ukrayna" #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Birleşik Arap Emirlikleri" #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Birleşik Krallık" #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Birleşik Devletler" #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Amerika Birleşik Devletleri Küçük Dış Adaları " #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Özbekistan" #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu" #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Virgin Adaları (Britanya)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Virgin Adaları (ABD)" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Wallis ve Futuna Adaları" #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Batı Sahra" #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen" #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yugoslavya" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabve" #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "Ülke" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "Varsayılan Ülke" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Özel bir ilk seçenek kullanın" #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Özel ilk seçenek" #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Güney Sudan" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Kredi Kartı" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Kart Numarası Etiketi" #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Kart Numarası" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Kart Numarası Açıklaması" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "Kredi kartınızın ön yüzünde bulunan, (genellikle) 16 haneden oluşan numaradır." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Kart CVC Etiketi" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Kart CVC Açıklaması" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Kartınızdaki 3 haneli (arkada) ya da 4 haneli (önde) değerdir." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Kart Adı Etiketi" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Karttaki ad" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Kart Adı Açıklaması" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "Kredi kartınızın ön yüzünde yazılı olan addır." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Kartın Sona Erdiği Ay Etiketi" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Sona erdiği ay (AA)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Kartın Sona Erdiği Ay Açıklaması" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "Genellikle kartın ön yüzünde bulunan, kredi kartınızın sona erdiği aydır." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Kartın Sona Erdiği Yıl Etiketi" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Sona erdiği yıl (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Kartın Sona Erdiği Yıl Açıklaması" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "Genellikle kartın ön yüzünde bulunan, kredi kartınızın sona erdiği yıldır." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Metin" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Metin Öğesi" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Gizli Alan" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "Kullanıcı Kimliği (Oturum açıldıysa)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Kullanıcı Adı (Oturum açıldıysa)" #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Kullanıcının Soyadı (Oturum açıldıysa)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Kullanıcının Görüntülenecek Olan Adı (Oturum açıldıysa)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Kullanıcının E-postası (Oturum açıldıysa)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Gönderi / Sayfa Kimliği (Varsa)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Gönderi / Sayfa Başlığı (Varsa)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Gönderi / Sayfa URL'si (Varsa)" #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "Bugünün Tarihi" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Sorgu Dizesi Değişkeni" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Bu anahtar kelime, WordPress tarafından ayrılmıştır. Lütfen başka bir seçenek deneyin." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "Bu bir e-posta adresi midir?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Bu kutuya onay işareti konulursa, Ninja Forms bu girişi bir e-posta adresi " "olarak doğrular." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "Bu adrese formun bir kopyası gönderilsin mi?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Bu kutuya onay işareti konulursa, Ninja Forms bu formun bir kopyasını (ve " "eklenen tüm mesajları) bu adrese gönderir." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "sa" #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Liste" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Bu, kullanıcının durumudur" #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Seçili Değer" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Değer Ekle" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Değeri Kaldır" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Hesap" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Açılır Menü" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radyo" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Onay kutuları" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Çoklu Seçim" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Liste Türü" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Çoklu Seçim Kutusu Boyutu" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Liste Öğelerini İçe Aktar" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Liste öğe değerlerini göster" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "İçe Aktar" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "Bu özelliği kullanmak için CSV'nizi yukarıdaki metin alanına kopyalayabilirsiniz." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "Format, şu şekilde görünmelidir:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Etiket,Değer,Hesap" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Boş bir değer ya da hesap göndermek istiyorsanız, bunlar için \" kullanmanız gerekir." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Seçilen" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Sayı" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Minimum Değer" #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Maksimum Değer" #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Adım (artış miktarı)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Düzenleyici" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Şifre" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Bunu kayıt şifresi alanı olarak kullanın" #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Bu kutuya onay işareti konulursa, hem şifre alanı hem de şifrenin yeniden " "girileceği metin kutuları verilir." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Şifreyi Yeniden Girin Etiketi" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Şifreyi Yeniden Girin" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Şifre Güç Göstergesini Görüntüle" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "İpucu: Şifre, en az yedi karakter uzunluğunda olmalıdır. Güçlü bir şifre " "için, büyük ve küçük harfleri, sayıları ve ! \" ? $ % ^ & ) gibi özel " "karakterleri bir arada kullanın." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Şifreler eşleşmiyor" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Yıldız Derecesi" #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Yıldız sayısı" #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Bot olmadığınızı doğrulayın" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Lütfen captcha alanını doldurun" #: deprecated/includes/fields/recaptcha.php:98 includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "Lütfen Site ve Gizli anahtarlarınızı doğru olarak girdiğinizden emin olun" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "Captcha eşleşmiyor. Lütfen captcha alanına doğru değer girin" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "İstenmeyen Posta Önleme" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "İstenmeyen Posta Sorusu" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "İstenmeyen Posta Yanıtı" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Gönder" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Vergi" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Vergi Yüzdesi" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Yüzde olarak girilmelidir. Örn: %8,25, %4" #: deprecated/includes/fields/textarea.php:4 includes/Database/MockData.php:382 #: includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Metinalanı" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Zengin Metin Düzenleyiciyi Göster" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Medya Yükleme Düğmesini Göster" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Zengin Metin Düzenleyiciyi Mobilde Devre Dışı Bırak" #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "E-posta adresi olarak doğrulansın mı? (Alan, zorunlu olmalıdır)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Girişi Devre Dışı Bırak" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Tarih seçici" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Telefon - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Para Birimi" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Özel Maske Tanımı" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Yardım" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Süreli Gönderi" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Zamanlayıcının süresi dolduktan sonra gönder düğmesi metni" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Lütfen %n saniye bekleyin" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n, saniye değerini göstermek için kullanılacak" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Geri sayım için saniye değeri" #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "Bu, kullanıcının formu göndermek için ne kadar beklemesi gerektiğini gösterir " #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "İnsansanız, lütfen yavaşlayın." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Bu formu göndermek için JavaScript gereklidir. Lütfen etkinleştirin ve tekrar deneyin." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Liste Alanı Eşleştirme" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "İlgi Grupları" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "Tek" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Çoklu" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listeler" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "enile" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Meta kutu" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Gönderim Meta Kutusu" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Kullanıcı Metası (oturum açıldıysa)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Ödeme Al" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "Herhangi bir form bulunamadı." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Oluşturulma Tarihi" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "başlık" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "güncellendi" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Küçük komut dosyaları, bir uğraş edinin" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Ana Öğe:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Bütün Elemanlar" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Yeni Eleman Ekle" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Yeni Eleman" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Eleman Düzenle" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Öğe Güncelle" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Elemanı Göster" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Öğe Ara" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "Çöp Kutusunda bulunamadı" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Form Gönderileri" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Gönderim Bilgileri" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Yeni Form Ekle" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Form Şablonu İçe Aktarma Hatası." #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Bilgiler" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "Yüklenen dosya, geçerli bir formatta değil." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Geçersiz form kimliği" #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Formları İçe Aktar" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Formları Dışa Aktar" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Eşitlik (Gelişmiş)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "İşlemler ve Alanlar (Gelişmiş)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Otomatik Toplam Alanları" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Yüklenen dosya, php.ini konumunda bulunan upload_max_filesize yönergesini aşıyor." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Yüklenen dosya, HTML formunda belirtilen MAX_FILE_SIZE yönergesini aşıyor." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "Yüklenen dosya içerisindekilerin bir kismi yüklendi." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "Hiçbir dosya yüklenmedi." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Geçiçi klasör kayboldu." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "Dosya diske yazılamadı." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Dosya yükleme eklenti tarafından durduldu." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Bilinmeyen yükleme hatası." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Dosya Yükleme Hatası" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Eklenti Lisansları" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Geçişler ve Örnek Veriler tamamlandı. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Formları Görüntüle" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Ayarları Kaydet" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Sunucu IP Adresi" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Ana Bilgisayar Adı" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Ninja Forms Ekle" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "Form Bulunamadı" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "Alan Bulunamadı" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Beklenmedik bir hata oluştu." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Önizleme mevcut değil." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Ödeme Seçenekleri" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Ödeme Toplamı" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Kanca Etiketi" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "E-posta adresi ya da alan arama" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Konu Metni ya da alan arama" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "CSV Ekle" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "Link" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Buraya Etiket Gelecek" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Buraya Yardım Metni Gelecek" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Form alanının etiketini girin. Kullanıcıların farklı alanları nasıl " "belirleyeceğini gösterir." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Form Varsayılanı" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Gizli" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "Alan öğesine göre etiketinizin konumunu seçin." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Alan Zorunludur" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Formun gönderilmesine izin vermeden önce alanın tamamlandığından emin olun." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Sayı Seçenekleri" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Min" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Max" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Adım" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Seçenekler" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Bir" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "bir" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "İki" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "iki" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Üç" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "üç" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Hesap Değeri" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "Kullanıcılarınızın bu alana girebileceğini giriş türünü sınırlar." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "yok" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "ABD Telefonu" #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "özelleştirilmiş" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Özel Maske" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n
    • a - Bir alfabe karakterini temsil eder " "(A-Z,a-z) - Sadece harf girilmesine izin verir.
    • " "\n
    • 9 - Sayısal bir karakteri temsil eder (0-9) " "- Sadece rakam girilmesine izin verir.
    • \n " "
    • * - Alfanumerik bir karakteri temsil eder (A-Z,a-z,0-9) - Hem rakam hem " "de harf\n girilmesine izin " "verir.
    • \n
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Girdiyi Bu Rakamla Sınırla" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Karakter(ler)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Kelime(ler)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Sayaçtan Sonra Görüntülenecek Metin" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Kalan karakterler" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Bir kullanıcı herhangi bir veri girmeden önce alanda görüntülenmesini " "istediğiniz metni girin." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Özel Sınıf Adları" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Kapsayıcı" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Alan sarmalayıcınıza ekstra bir sınıf ekler." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Öge" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Alan öğenize ekstra bir sınıf ekler." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "GG/AA/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "GG-AA-YYYY" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "AA/GG/YYYY" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "AA-GG-YYYY" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "GG-AA-YYYY" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/AA/GG" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Cuma, 18 Kasım, 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Bugünün Tarihine Varsayılan Olarak Ayarla" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Süreli gönderim için verilen saniye değeri." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Alan Anahtarı" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Özel geliştirme için alanınızı belirlemenize ve hedeflemenize yönelik " "benzersiz bir anahtar oluşturur." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Gönderimleri görüntülerken ve dışa aktarırken kullanılan etiket." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Kullanıcılara vurgu olarak gösterilir." #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Açıklama" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Sayılara göre sırala" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Gönderimler tablosundaki bu sütun, sayılara göre sıralanır." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Geri sayım için saniye değeri" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Bunu kayıt şifresi alanı olarak kullanın. Bu kutuya onay işareti konulursa, " "\n hem şifre alanı hem de şifrenin yeniden girileceği metin kutuları verilir" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Onayla" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Zengin metin girişine izin verir." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "İşleniyor Etiketi" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "İşaretlenen Hesap Değeri" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Kutu işaretlenmişse, hesaplamalarda bu sayı kullanılacaktır." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "İşaretlenmemiş Hesap Değeri" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Kutu işaretleşmemişse, hesaplamalarda bu sayı kullanılacaktır." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Bu Hesaplama Değişkenini Görüntüle" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Bir Değişken Seçin" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Price" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Miktar Kullan" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Kullanıcıların bu üründen çok sayıda seçmelerine izin verin." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Ürün Tipi" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Tek Ürün (varsayılan)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Çok Ürün - Açılır Menü" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Çok Ürün - Birden Fazla Ürün Seçin" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Çok Ürün - Bir Ürün Seçin" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Kullanıcı Girişi" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Maliyet" #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Maliyet Seçenekleri" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Tek Maliyet" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Maliyet Açılır Menüsü" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Maliyet Türü" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Ürün" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Bir Ürün Seçin" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Cevap" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "Formunuzun istenmeyen posta olarak gönderilmesini önlemek için büyük-küçük harf duyarlı bir yanıt." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Sınıflandırma" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Yeni Terim Ekle" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Bu, kullanıcının durumudur." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "İşleme için bir alan işaretleme amacıyla kullanılır." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Kaydedilen Alanlar" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Ortak Alanlar" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Kullanıcı Bilgi Alanları" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Fiyatlandırma Alanları" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Sayfa Düzeni Alanları" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Çeşitli Alanlar" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Bildiriminiz başarıyla gönderildi." #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Ninja Formu Gönderme" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Gönderiyi Kaydet" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Değişken Adı" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "Denklem" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Varsayılan Etiket Konumu" #: includes/Config/FormDisplaySettings.php:111 includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Sarmalayıcı " #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Form Anahtarı" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "Bu formu referans vermek için kullanılabilen programlanmış ad." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Gönder Düğmesi Ekle" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Formunuzda bir gönder düğmesi olmadığını fark ettik. Sizin için otomatik " "olarak ekleyebiliriz." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Giriş Yapıldı" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Form önizlemesine uygulanır." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Gönderim Sınırı" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "Form önizlemesine uygulanmaz." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Görünüm ayarları" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Hesaplamalar" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Fiyat:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Miktar:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Ekle" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Yeni pencerede aç" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "Bir insan olarak bu alanı görebiliyorsanız, lütfen boş bırakın." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Kullanılabilir" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Lütfen geçerli bir e-posta adresi girin!" #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Bu alanlar eşleşmelidir!" #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Minimum Sayı Hatası" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Maksimum Sayı Hatası" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Lütfen şuna göre artırın: " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Bağlantı Yerleştir" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Medya Yerleştir" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Lütfen bu formu göndermeden önce hataları düzeltin." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Honeypot Hatası" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Dosya Yükleme İşlemi Devam Ediyor." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "DOSYA YÜKLEME" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Tüm Alanlar" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Alt Sıra" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Yazı ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Yazı başlığı" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "Yazı Adresi" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "IP adresi" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "Kullanıcı ID'si" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Adınız" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Soyadı" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Görünen ad" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Sabit Stiller" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Açık renkli" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Koyu renkli" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Varsayılan Ninja Forms stillendirme özelliklerini kullanın." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Geri Alma" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "v2.9.x sürümüne geri al" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "En yeni 2.9.x sürümüne geri al." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "a/g/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "reCaptcha Ayarları" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "reCAPTCHA Teması" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Zengin Metin Düzenleyici (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Geliştirilmiş" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Yönetim" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Boş Formlar" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Bana Ulaşın" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Örnek Başarı Mesajı Eylemi" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "Bu formu doldurduğunuz için teşekkürler, {field:name}!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Örnek E-posta Eylemi" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Bu bir e-posta eylemidir." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "Merhaba, Ninja Forms!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Örnek Kaydetme Eylemi" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Bu bir testtir." #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "John Doe" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "user@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Bu da başka bir testtir." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Yardım lazım mı?" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "Size Nasıl Yardımcı Olabiliriz?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "Kabul ediyor musunuz?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "En İyi İletişim Yöntemi?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Telefon" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Normal Posta" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Gönder" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Mutfak Lavabosu" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Liste Seç" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Seçenek Bir" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Seçenek İki" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Seçenek Üç" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Radyo Listesi" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Lavabo" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Onay Kutusu Listesi" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Kullanıcı Bilgileri bölümündeki tüm alanlar bunlardır." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Adres" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "İlçe" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Posta Kodu" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Fiyatlandırma bölümündeki tüm alanlar bunlardır." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Ürün (miktar dahil)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Ürün (ayrı miktar)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "İçerik" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Toplam" #: includes/Database/MockData.php:735 includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Kredi Kartı Üzerinde Yazan Ad" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Kredi Kartı Numarası" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Kredi Kartı CVV Kodu" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Kredi Kartı Sona Erme Tarihi" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Kredi Kartı Posta Kodu" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Bunlar, çeşitli özel alanlardır." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "İstenmeyen Posta Karşıtı Soru (Yanıt = yanıt)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "yanıt" #: includes/Database/MockData.php:805 msgid "processing" msgstr "i̇şleniyor" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Uzun Form - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Alanlar" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Alan No" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "E-posta Abonelik Formu" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "E-Posta Adresi" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "E-posta adresinizi girin." #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Abone Ol" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Ürün Formu (Miktar Alanı ile)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Satın Al" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Satın aldığınız " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "ürün(ler): " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Ürün Formu (Satır İçi Miktar)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " ürün(ler): " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Ürün Formu (Birden Çok Ürün)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Ürün A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Ürün A’nın Miktarı" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Ürün B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Ürün B’nin Miktarı" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "Ürün A ve " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "Ürün B, ABD Doları" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Hesaplamaların Olduğu Form" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "İlk Hesaplamam" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "İkinci Hesaplamam" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Hesaplamalar, AJAX yanıtı ile geri döndürülür ( yanıt -> veri -> hesaplamalar" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Kopyala" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Formu Kaydet" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Kredi Kartı Zip Kodu" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Bir formu önizlemek için oturum açmalısınız." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "Herhangi Bir Alan Bulunamadı." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Bildirim: Bir form belirtmeden kullanılan Ninja Forms kısa kodu." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Bir form belirtmeden kullanılan Ninja Forms kısa kodu." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Adres Devam 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Düğme" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Tek Onay Kutusu" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "onaylandı" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "onaylanmadı" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Kredi Kartı CVC kodu" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "g-a-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "a-g-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-a-g" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "d.m.Y - H:i:s" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F g Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divider" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Seçiniz" #: includes/Fields/ListState.php:26 msgid "State" msgstr "İl" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "Not metni, not metninin aşağıdaki gelişmiş ayarlar bölümünden düzenlenebilir." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Not" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Şifre Onayı" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "şifre" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Lütfen recaptcha'yı tamamlayın" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Gelişmiş Sevkiyat" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Soru" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Soru Konumu" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Hatalı Yanıt" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Yıldız sayısı" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Terim Listesi" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "Bu sınıflandırma için uygun bir terim yok. %sTerim ekle%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "Sınıflandırma seçilmedi." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Kullanılabilen Terimler" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Paragraf Metni" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Tek Satırlık Yazı" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Alan Kodu" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "Postala" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Sorgulama Dizeleri" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Sorgulama Dizesi" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Sistem" #: includes/MergeTags/User.php:13 msgid "User" msgstr "Kullanıcı" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " güncelleme yapılmasını gerektiriyor. Sizde şu sürüm " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " kurulu: Mevcut sürüm: " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Alan Düzenleme" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Etiket Adı" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Yukarıdaki Alan" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Aşağıdaki Alan" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Alanın Solu" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Alanın Sağı" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Etiketi Gizle" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Sınıf Adı" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Temel Alanlar" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Çoklu Seçim" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Yeni alan ekle" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Yeni eylem ekle" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Menüyü Genişlet" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Yayınla" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "YAYINLA" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Yükleniyor" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Değişiklikleri Görüntüle" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Form alanları ekle" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "İlk form alanınızı ekleyerek başlayın." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Yeni Alan Ekle" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Burayı tıklamanız ve istediğiniz alanları seçmeniz yeterlidir." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Bu kadar kolay. Veya..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Bir şablondan başlayabilirsiniz." #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Bizimle İletişim Kurun" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Kullanıcıların bu kolay iletişim formunu kullanarak sizinle iletişime " "geçmesine izin verin. Gerektiği şekilde alan ekleyebilir ve kaldırabilirsiniz." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Fiyat Teklifi Talebi" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Web sitenizden gelen fiyat teklifi taleplerini bu şablonla kolay bir şeklide " "yönetin. Gerektiği şekilde alan ekleyebilir ve kaldırabilirsiniz." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Etkinlik Kaydı" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Kullanıcıların tamamlanması kolay bu formu doldurarak bir sonraki " "etkinliğinize kaydolmasına izin verin. Gerektiği şekilde alan ekleyebilir ve kaldırabilirsiniz." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Haber Bülteni Kayıt Formu" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Bu haber bülteni kayıt formunu kullanarak abone ekleyin ve e-posta listenizi " "büyütün. Gerektiği şekilde alan ekleyebilir ve kaldırabilirsiniz." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Form eylemi ekleyin" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "İlk form alanınızı ekleyerek başlayın. Sadece artı işaretini tıklamanız ve " "istediğiniz formları seçmeniz yeterlidir. Bu kadar kolay." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Çoğalt (^ + C + tıkla)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Sil (^ + D + tıkla)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Davranışlar" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Değişiklik Çekmecesi" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Tam ekran" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Yarım ekran" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Geri Al" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Bitti" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Tümünü Geri Al" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Tümünü Geri Al" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Bitti sayılır..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Hayır, Henüz Değil" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Yeni pencerede aç" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Devre dışı bırak" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Onar." #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Form seçin" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Başlangıç Tarihi" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "Destek ekibimizden yardım formu talebinde bulunmadan önce lütfen inceleyin:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "Ninja Forms ÜÇ belgeleri" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Destek ekibi ile iletişime geçmeden önce neler denenebilir?" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "Destek Kapsamımız" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Alanları İçe Aktar" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Güncelleme tarihi: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Gönderme tarihi: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Gönderen: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Gönderim Verileri" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Görüntüle" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Daha Fazla Göster" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Alan düzenleme" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Form Alanları" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Değişiklikleri Önizle" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "İletişim Formu" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "Üzgünüz! Bu eklenti, henüz Ninja Forms ÜÇ ile uyumlu değil. %sAyrıntılı Bilgi Edinin%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "%s devre dışı bırakıldı." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "Lütfen Ninja Forms’u geliştirmemizde bize yardımcı olun!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Onay verirseniz, Ninja Forms kurulumunuzla ilgili bazı veriler NinjaForms.com " "adresine gönderilecektir (buna gönderimleriniz dahil DEĞİLDİR)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Bunu atlamanızın sakıncası yok! Ninja Forms sorunsuz çalışacaktır." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sİzin ver%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sİzin verme%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "İzniniz yok." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "İzin Engellendi" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Geliştirme" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "HATA AYIKLAMA 2.9.x’e geçiş yapın" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "HATA AYIKLAMA 3.0.x’e geçiş yapın" lang/ninja-forms-es_MX.po000064400000661576152331132460011306 0ustar00msgid "" msgstr "" "Project-Id-Version: Ninja Forms 3.0\n" "POT-Creation-Date: 2016-08-29 09:53-0500\n" "PO-Revision-Date: 2018-01-08 19:05-0500\n" "Last-Translator: Jesus Garcia \n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.5.5\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" #: ninja-forms.php:463 msgid "Notice: JavaScript is required for this content." msgstr "Aviso: Se requiere JavaScript para este contenido." #: deprecated/ninja-forms.php:139 deprecated/ninja-forms.php:151 msgid "Cheatin’ huh?" msgstr "Trampeando, eh?" #: deprecated/ninja-forms.php:674 #, php-format msgid "Fields marked with an %s*%s are required" msgstr "Campos marcados con %s*%s son requeridos" #: deprecated/ninja-forms.php:676 msgid "Please ensure all required fields are completed." msgstr "Favor de estar seguro que todos los campos estén completos." #: deprecated/ninja-forms.php:677 msgid "This is a required field" msgstr "Este campo es requerido." #: deprecated/ninja-forms.php:678 msgid "Please answer the anti-spam question correctly." msgstr "" "Favor de contestar la pregunta de anti-spam (contra el correo no deseado) " "correctamente." #: deprecated/ninja-forms.php:679 msgid "Please leave the spam field blank." msgstr "Favor de dejar vacante el campo de spam (correo no deseado)." #: deprecated/ninja-forms.php:680 msgid "Please wait to submit the form." msgstr "Favor de esperar para submitir el formulario." #: deprecated/ninja-forms.php:681 msgid "You cannot submit the form without Javascript enabled." msgstr "No se puede submitir el formulario sin permitir Javascript." #: deprecated/ninja-forms.php:682 deprecated/includes/fields/textbox.php:294 msgid "Please enter a valid email address." msgstr "Favor de registrar una dirección de correo electrónico verdadera." #: deprecated/ninja-forms.php:683 #: deprecated/includes/admin/step-processing.php:11 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:29 #: includes/Config/FieldSettings.php:820 msgid "Processing" msgstr "Procesando" #: deprecated/ninja-forms.php:684 msgid "The passwords provided do not match." msgstr "Las contraseñas previstas no son iguales. " #: deprecated/classes/add-form-modal.php:41 #: deprecated/classes/add-form-modal.php:99 includes/Admin/AddFormModal.php:41 msgid "Add Form" msgstr "Agregar formulario" #: deprecated/classes/add-form-modal.php:72 includes/Admin/AddFormModal.php:55 msgid "Select a form or type to search" msgstr "Selecciona un formulario o tipo de búsqueda" #: deprecated/classes/add-form-modal.php:89 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:123 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:71 #: deprecated/includes/fields/list.php:176 #: includes/Templates/ui-nf-header.html.php:12 msgid "Cancel" msgstr "Cancelar" #: deprecated/classes/add-form-modal.php:92 msgid "Insert" msgstr "Insertar" #: deprecated/classes/download-all-subs.php:39 msgid "Invalid form id" msgstr "Id. de formulario inválido" #: deprecated/classes/notices-multipart.php:62 #: deprecated/classes/notices-save-progress.php:62 msgid "Increase Conversions" msgstr "Aumentar conversaciones" #: deprecated/classes/notices-multipart.php:63 msgid "" "Did you know that you can increase form conversion by breaking larger forms " "into smaller, more easily digested parts?

    The Multi-Part Forms extension " "for Ninja Forms makes this quick and easy.

    " msgstr "" "¿Sabías que puedes aumentar la conversión de formularios al dividir " "formularios más grandes en otros más pequeños, es decir, partes que se " "pueden asimilar más fácilmente?

    La extensión de los formularios " "multipartes para Ninja Forms hace que esto sea rápido y sencillo.

    " #: deprecated/classes/notices-multipart.php:64 msgid "Learn More About Multi-Part Forms" msgstr "Obtén más información acerca de los formularios multipartes" #: deprecated/classes/notices-multipart.php:65 #: deprecated/classes/notices-save-progress.php:65 msgid "Maybe Later" msgstr "Quizás más tarde" #: deprecated/classes/notices-multipart.php:66 #: deprecated/classes/notices-save-progress.php:66 #: deprecated/includes/admin/notices.php:57 #: includes/Config/AdminNotices.php:16 msgid "Dismiss" msgstr "Descartar" #: deprecated/classes/notices-save-progress.php:63 msgid "" "Users are more likely to complete long forms when they can save and return " "to complete their submission later.

    The Save Progress extension for Ninja " "Forms makes this quick and easy.

    " msgstr "" "Es más probable que los usuarios llenen formularios más largos si pueden " "guardarlos y regresar más adelante para completarlos.

    La extensión Guardar " "progreso para Ninja Forms hace que esto sea rápido y sencillo.

    " #: deprecated/classes/notices-save-progress.php:64 msgid "Learn More About Save Progress" msgstr "Obtén más información acerca de Guardar progreso" #: deprecated/classes/notification-email.php:19 includes/Actions/Email.php:35 #: includes/Config/MergeTagsUser.php:66 includes/Database/MockData.php:81 #: includes/Database/MockData.php:262 includes/Database/MockData.php:294 #: includes/Database/MockData.php:663 includes/Fields/Email.php:26 msgid "Email" msgstr "Dirección de correo electrónico" #: deprecated/classes/notification-email.php:56 #: includes/Config/ActionEmailSettings.php:70 msgid "From Name" msgstr "Nombre de quién procede el correo" #: deprecated/classes/notification-email.php:58 #: includes/Config/ActionEmailSettings.php:71 msgid "Name or fields" msgstr "Nombre o campos" #: deprecated/classes/notification-email.php:59 msgid "Email will appear to be from this name." msgstr "Correo electrónico aparecerá ser de este nombre." #: deprecated/classes/notification-email.php:63 #: includes/Config/ActionEmailSettings.php:85 msgid "From Address" msgstr "Dirección de que proviene el correo" #: deprecated/classes/notification-email.php:65 #: deprecated/classes/notification-email.php:141 #: includes/Config/ActionEmailSettings.php:86 msgid "One email address or field" msgstr "Solamente una dirección de correo electrónico o uno campo " #: deprecated/classes/notification-email.php:66 msgid "Email will appear to be from this email address." msgstr "Correo electrónico aparecerá ser de esta dirección." #: deprecated/classes/notification-email.php:70 #: includes/Config/ActionEmailSettings.php:19 msgid "To" msgstr "Para" #: deprecated/classes/notification-email.php:72 #: deprecated/classes/notification-email.php:147 #: deprecated/classes/notification-email.php:153 msgid "Email addresses or search for a field" msgstr "Direcciónes de correos electrónicos o buscar un campo" #: deprecated/classes/notification-email.php:73 msgid "Who should this email be sent to?" msgstr "¿Quién debe recibir este correo electrónico?" #: deprecated/classes/notification-email.php:77 #: includes/Config/ActionEmailSettings.php:34 msgid "Subject" msgstr "Sujeto" #: deprecated/classes/notification-email.php:79 msgid "Subject Text or search for a field" msgstr "Texto de Sujeto o buscar un campo" #: deprecated/classes/notification-email.php:80 msgid "This will be the subject of the email." msgstr "Esto será el sujeto del correo electrónico." #: deprecated/classes/notification-email.php:84 #: includes/Config/ActionEmailSettings.php:49 msgid "Email Message" msgstr "Mensaje de Correo Electrónico" #: deprecated/classes/notification-email.php:95 msgid "Attachments" msgstr "Archivos Adjuntos" #: deprecated/classes/notification-email.php:101 msgid "Submission CSV" msgstr "Submisión CSV" #: deprecated/classes/notification-email.php:126 #: deprecated/includes/admin/edit-field/li.php:428 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:88 #: includes/Config/PluginSettingsGroups.php:17 msgid "Advanced Settings" msgstr "Configuración Avanzada" #: deprecated/classes/notification-email.php:130 #: includes/Config/ActionEmailSettings.php:117 #: includes/Config/FieldSettings.php:378 msgid "Format" msgstr "Formato" #: deprecated/classes/notification-email.php:133 #: deprecated/includes/fields/calc.php:95 #: includes/Config/ActionEmailSettings.php:113 includes/Fields/HTML.php:37 #: includes/Fields/Note.php:31 msgid "HTML" msgstr "HTML" #: deprecated/classes/notification-email.php:134 #: includes/Config/ActionEmailSettings.php:114 msgid "Plain Text" msgstr "Texto sin formato" #: deprecated/classes/notification-email.php:139 #: includes/Config/ActionEmailSettings.php:99 msgid "Reply To" msgstr "Responder a" #: deprecated/classes/notification-email.php:145 #: includes/Config/ActionEmailSettings.php:130 msgid "Cc" msgstr "Cc" #: deprecated/classes/notification-email.php:151 #: includes/Config/ActionEmailSettings.php:144 msgid "Bcc" msgstr "Bcc" #: deprecated/classes/notification-redirect.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:243 #: includes/Actions/Redirect.php:35 msgid "Redirect" msgstr "Redirigir" #: deprecated/classes/notification-redirect.php:33 msgid "Url" msgstr "Url" #: deprecated/classes/notification-success-message.php:19 #: deprecated/includes/admin/upgrades/convert-notifications.php:234 #: includes/Actions/SuccessMessage.php:35 #: includes/Config/FormActionDefaults.php:7 includes/Database/MockData.php:953 #: includes/Database/MockData.php:1014 includes/Database/MockData.php:1117 #: includes/Database/MockData.php:1156 msgid "Success Message" msgstr "Mensaje de Exito" #: deprecated/classes/notification-success-message.php:35 msgid "Before Form" msgstr "Formulario Anterior" #: deprecated/classes/notification-success-message.php:36 msgid "After Form" msgstr "Formulario Posterior" #: deprecated/classes/notification-success-message.php:41 msgid "Location" msgstr "Ubicación" #: deprecated/classes/notification-success-message.php:55 #: includes/Config/ActionSuccessMessageSettings.php:13 #: includes/Database/MockData.php:105 msgid "Message" msgstr "Mensaje" #: deprecated/classes/notification.php:116 msgid "duplicate" msgstr "Duplicar" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:222 #: deprecated/classes/notifications.php:170 msgid "Deactivate" msgstr "Desactivar" #: deprecated/classes/notifications-table.php:117 #: deprecated/classes/notifications-table.php:221 #: deprecated/classes/notifications.php:169 #: includes/Templates/admin-menu-settings-licenses.html.php:27 msgid "Activate" msgstr "Activar" #: deprecated/classes/notifications-table.php:129 #: deprecated/classes/subs-cpt.php:389 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:188 #: includes/Templates/admin-menu-all-forms-column-title.html.php:10 #: includes/Templates/admin-menu-new-form.html.php:144 #: includes/Templates/ui-item-controls.html.php:4 msgid "Edit" msgstr "Editar" #: deprecated/classes/notifications-table.php:130 #: deprecated/classes/notifications-table.php:223 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:102 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 #: includes/Admin/AllFormsTable.php:216 includes/Admin/Menus/Settings.php:80 #: includes/Templates/admin-menu-all-forms-column-title.html.php:15 #: includes/Templates/ui-item-controls.html.php:2 #: includes/Templates/ui-nf-drawer-buttons.html.php:2 msgid "Delete" msgstr "Borrar" #: deprecated/classes/notifications-table.php:131 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 #: includes/Templates/admin-menu-all-forms-column-title.html.php:19 #: includes/Templates/ui-item-controls.html.php:3 #: includes/Templates/ui-nf-drawer-buttons.html.php:3 msgid "Duplicate" msgstr "Duplicar" #: deprecated/classes/notifications-table.php:175 #: includes/Database/MockData.php:66 includes/Database/MockData.php:255 #: includes/Templates/admin-menu-new-form.html.php:154 msgid "Name" msgstr "Nombre" #: deprecated/classes/notifications-table.php:176 #: deprecated/classes/notifications.php:259 #: includes/Config/FieldSettings.php:745 #: includes/Templates/admin-menu-new-form.html.php:155 msgid "Type" msgstr "Escribir" #: deprecated/classes/notifications-table.php:177 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:160 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:220 msgid "Date Updated" msgstr "Fecha Actualizado" #: deprecated/classes/notifications-table.php:241 msgid "- View All Types" msgstr "Ver Todos los Tipos" #: deprecated/classes/notifications-table.php:250 msgid "Get More Types" msgstr "Obtener más tipos" #: deprecated/classes/notifications.php:78 #: deprecated/classes/notifications.php:219 msgid "Email & Actions" msgstr "Dirección de Correo Electrónico y Acciónes" #: deprecated/classes/notifications.php:219 #: deprecated/classes/subs-cpt.php:118 deprecated/includes/admin/admin.php:6 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/fields/list.php:149 #: includes/Admin/CPT/Submission.php:47 includes/Config/FieldSettings.php:153 #: includes/Config/FieldSettings.php:950 #: includes/Config/FormCalculationSettings.php:12 msgid "Add New" msgstr "Añadir Nuevo" #: deprecated/classes/notifications.php:242 msgid "New Action" msgstr "Nueva Acción" #: deprecated/classes/notifications.php:245 msgid "Edit Action" msgstr "Editar Acción" #: deprecated/classes/notifications.php:249 msgid "Back To List" msgstr "Regresar a la Lista" #: deprecated/classes/notifications.php:255 #: includes/Config/ActionSettings.php:13 msgid "Action Name" msgstr "Nombre de Acción" #: deprecated/classes/notifications.php:270 msgid "Get More Actions" msgstr "Obtener más acciones" #: deprecated/classes/notifications.php:334 #: deprecated/classes/notifications.php:339 msgid "Action Updated" msgstr "Acción Actualizada" #: deprecated/classes/notifications.php:500 msgid "Select a field or type to search" msgstr "Seleccionar un campo o escribir para buscar" #: deprecated/classes/notifications.php:513 msgid "Insert Field" msgstr "Insertar un Campo" #: deprecated/classes/notifications.php:513 msgid "Insert All Fields" msgstr "Insertar Todos los Campos" #: deprecated/classes/subs-cpt.php:103 includes/Admin/CPT/Submission.php:249 msgid "Please select a form to view submissions" msgstr "Favor de seleccionar un formulario para ver las sumisiones." #: deprecated/classes/subs-cpt.php:105 includes/Admin/CPT/Submission.php:251 msgid "No Submissions Found" msgstr "Ninguna Sumisión Encontrada" #: deprecated/classes/subs-cpt.php:108 deprecated/classes/subs-cpt.php:195 #: deprecated/includes/admin/admin.php:120 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:6 #: includes/Admin/CPT/Submission.php:40 includes/Admin/CPT/Submission.php:42 #: includes/Admin/CPT/Submission.php:43 msgid "Submissions" msgstr "Sumisiones" #: deprecated/classes/subs-cpt.php:117 includes/Admin/CPT/Submission.php:41 #: includes/Admin/CPT/Submission.php:57 msgid "Submission" msgstr "Sumisión" #: deprecated/classes/subs-cpt.php:119 msgid "Add New Submission" msgstr "Añadir Sumisión Nueva" #: deprecated/classes/subs-cpt.php:120 msgid "Edit Submission" msgstr "Editar Sumisión" #: deprecated/classes/subs-cpt.php:121 msgid "New Submission" msgstr "Sumisión Nueva" #: deprecated/classes/subs-cpt.php:122 msgid "View Submission" msgstr "Ver Sumisión" #: deprecated/classes/subs-cpt.php:123 msgid "Search Submissions" msgstr "Buscar Sumisiones" #: deprecated/classes/subs-cpt.php:125 msgid "No Submissions Found In The Trash" msgstr "No Sumisiones Encontradas en la Basura" #: deprecated/classes/subs-cpt.php:279 deprecated/classes/subs-cpt.php:993 #: deprecated/classes/subs.php:174 includes/Admin/CPT/Submission.php:92 #: includes/Admin/Menus/Submissions.php:77 msgid "#" msgstr "#" #: deprecated/classes/subs-cpt.php:315 #: deprecated/includes/fields/textbox.php:175 #: includes/Admin/CPT/Submission.php:111 #: includes/Admin/Menus/Submissions.php:92 #: includes/Config/FieldSettings.php:214 #: includes/Config/MergeTagsSystem.php:27 includes/Database/MockData.php:620 #: includes/Fields/Date.php:30 msgid "Date" msgstr "Fecha" #: deprecated/classes/subs-cpt.php:389 msgid "Edit this item" msgstr "Editar este artículo" #: deprecated/classes/subs-cpt.php:390 msgid "Export this item" msgstr "Exportar este artículo" #: deprecated/classes/subs-cpt.php:390 deprecated/classes/subs-cpt.php:691 #: deprecated/classes/subs-cpt.php:692 #: includes/Admin/Menus/Submissions.php:234 #: includes/Admin/Menus/Submissions.php:235 msgid "Export" msgstr "Exportar" #: deprecated/classes/subs-cpt.php:396 msgid "Move this item to the Trash" msgstr "Mover este artículo a la Basura" #: deprecated/classes/subs-cpt.php:396 msgid "Trash" msgstr "Basura" #: deprecated/classes/subs-cpt.php:402 msgid "Restore this item from the Trash" msgstr "Restaurar este artículo de la Basura" #: deprecated/classes/subs-cpt.php:402 msgid "Restore" msgstr "Restaurar" #: deprecated/classes/subs-cpt.php:403 msgid "Delete this item permanently" msgstr "Borrar este artículo permanentemente" #: deprecated/classes/subs-cpt.php:403 msgid "Delete Permanently" msgstr "Borrar permanentemente" #: deprecated/classes/subs-cpt.php:410 msgid "Unpublished" msgstr "Inédito" #: deprecated/classes/subs-cpt.php:420 #, php-format msgid "%s ago" msgstr "%s atrás" #: deprecated/classes/subs-cpt.php:432 deprecated/classes/subs-cpt.php:998 msgid "Submitted" msgstr "Presentado" #: deprecated/classes/subs-cpt.php:492 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:67 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:9 msgid "Select a form" msgstr "Seleccionar un formulario" #: deprecated/classes/subs-cpt.php:501 msgid "Begin Date" msgstr "Fecha de Comenzar" #: deprecated/classes/subs-cpt.php:502 #: includes/Templates/admin-menu-subs-filter.html.php:13 msgid "End Date" msgstr "Fecha de Terminar" #: deprecated/classes/subs-cpt.php:646 deprecated/classes/subs-cpt.php:649 #, php-format msgid "%s updated." msgstr "%s actualizada." #: deprecated/classes/subs-cpt.php:647 msgid "Custom field updated." msgstr "Campo personalizado actualiza." #: deprecated/classes/subs-cpt.php:648 msgid "Custom field deleted." msgstr "Campo personalizado borrada." #: deprecated/classes/subs-cpt.php:651 #, php-format msgid "%1$s restored to revision from %2$s." msgstr "%1$s restaurado para revisión desde %2$s." #: deprecated/classes/subs-cpt.php:652 #, php-format msgid "%s published." msgstr "%s publicado." #: deprecated/classes/subs-cpt.php:653 #, php-format msgid "%s saved." msgstr "%s guardado." #: deprecated/classes/subs-cpt.php:654 #, php-format msgid "%1$s submitted. Preview %3$s" msgstr "%1$s enviado. Vista previa%3$s" #: deprecated/classes/subs-cpt.php:655 #, php-format msgid "" "%1$s scheduled for: %2$s. Preview %4$s" msgstr "" "%1$s programado para: %2$s. Vista previa%4$s" #: deprecated/classes/subs-cpt.php:656 #, php-format msgid "%1$s draft updated. Preview %3$s" msgstr "" "%1$s borrador actualizado. Vista previa" "%3$s" #: deprecated/classes/subs-cpt.php:709 #: includes/Admin/Menus/Submissions.php:252 msgid "Download All Submissions" msgstr "Descargar Todas las Sumisiónes" #: deprecated/classes/subs-cpt.php:807 msgid "Back to list" msgstr "Regresar a la lista" #: deprecated/classes/subs-cpt.php:865 includes/Admin/CPT/Submission.php:174 msgid "User Submitted Values" msgstr "Valores Presentados por el Usuario " #: deprecated/classes/subs-cpt.php:867 msgid "Submission Stats" msgstr "Estadísticas de Sumisión" #: deprecated/classes/subs-cpt.php:897 #: includes/Templates/admin-menu-forms.html.php:7 #: includes/Templates/admin-metabox-sub-fields.html.php:7 msgid "Field" msgstr "Campo" #: deprecated/classes/subs-cpt.php:898 deprecated/includes/fields/list.php:103 #: deprecated/includes/fields/list.php:588 #: includes/Config/FieldSettings.php:169 includes/Config/FieldSettings.php:965 #: includes/Templates/admin-metabox-sub-fields.html.php:8 msgid "Value" msgstr "Valor" #: deprecated/classes/subs-cpt.php:997 msgid "Status" msgstr "Estatus" #: deprecated/classes/subs-cpt.php:1002 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: includes/Admin/AllFormsTable.php:20 #: includes/Admin/Menus/ImportExport.php:99 includes/MergeTags/Form.php:15 msgid "Form" msgstr "Formulario" #: deprecated/classes/subs-cpt.php:1007 msgid "Submitted on" msgstr "Presentado el" #: deprecated/classes/subs-cpt.php:1013 msgid "Modified on" msgstr "Modificado el" #: deprecated/classes/subs-cpt.php:1021 msgid "Submitted By" msgstr "Presentado Por" #: deprecated/classes/subs-cpt.php:1035 deprecated/classes/subs-cpt.php:1036 #: includes/Templates/admin-metabox-sub-info.html.php:27 msgid "Update" msgstr "Actualización" #: deprecated/classes/subs.php:177 includes/Database/Models/Submission.php:293 msgid "Date Submitted" msgstr "Fecha Presentado" #: deprecated/includes/activation.php:216 msgid "" "Ninja Forms cannot be network activated. Please visit each site's dashboard " "to activate the plugin." msgstr "" "Ninja Forms no puede ser activado por un red. Favor de visitar el tablero " "(dashboard) de cada sitio para activar el plugin. " #: deprecated/includes/class-extension-updater.php:65 msgid "You will find this included with your purchase email." msgstr "Usted encontrará éste incluido con su correo electrónico de compra." #: deprecated/includes/class-extension-updater.php:75 msgid "Key" msgstr "Clave" #: deprecated/includes/class-extension-updater.php:152 #: includes/Integrations/EDD/class-extension-updater.php:88 msgid "Could not activate license. Please verify your license key" msgstr "" "No se pudo activar la licencia . Verifique por favor su número de licencia " #: deprecated/includes/class-extension-updater.php:276 msgid "Deactivate License" msgstr "Desactivar Licencia" #: deprecated/includes/deprecated.php:466 #: deprecated/includes/deprecated.php:475 msgid "User Submitted Values:" msgstr "Valores Presentados por Usuarios" #: deprecated/includes/deprecated.php:664 msgid "Thank you for filling out this form." msgstr "Gracias por completar este formulario." #: deprecated/includes/EDD_SL_Plugin_Updater.php:177 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:177 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details." msgstr "" "Hay una nueva versión de %1$s disponible. Ver detalles de la versión %3$s." #: deprecated/includes/EDD_SL_Plugin_Updater.php:184 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:184 #, php-format msgid "" "There is a new version of %1$s available. View version %3$s details or update now." msgstr "" "Hay una nueva versión de %1$s disponible. Ver detalles de la versión %3$s o actualizar ahora." #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "You do not have permission to install plugin updates" msgstr "" "No tienes autorización para instalar las actualizaciones de complementos" #: deprecated/includes/EDD_SL_Plugin_Updater.php:324 #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:35 #: includes/Integrations/EDD/EDD_SL_Plugin_Updater.php:324 msgid "Error" msgstr "Error" #: deprecated/includes/field-type-groups.php:5 msgid "Standard Fields" msgstr "Campos Estándares" #: deprecated/includes/field-type-groups.php:10 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/layout-fields.php:6 msgid "Layout Elements" msgstr "Elementos de Disposición" #: deprecated/includes/field-type-groups.php:19 msgid "Post Creation" msgstr "Creación de Puesto" #: deprecated/includes/functions.php:526 #, php-format msgid "" "Please rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this " "plugin free. Thank you from the WP Ninjas team!" msgstr "" "Favor de calificar %sNinja Forms%s %s on %sWordPress.org%s para ayudarnos " "guardar este plugin gratis. iGracias del equipo WP Ninjas!" #: deprecated/includes/widget.php:14 deprecated/includes/admin/welcome.php:364 #: includes/Widget.php:14 msgid "Ninja Forms Widget" msgstr "Ninja Forms Widget" #: deprecated/includes/widget.php:89 includes/Widget.php:82 msgid "Display Title" msgstr "Título de Visualización" #: deprecated/includes/widget.php:96 #: deprecated/includes/admin/post-metabox.php:39 #: deprecated/includes/admin/edit-field/desc.php:40 #: deprecated/includes/admin/edit-field/user-info-fields.php:27 #: deprecated/includes/fields/hidden.php:55 #: deprecated/includes/fields/number.php:72 #: deprecated/includes/fields/textbox.php:125 #: deprecated/includes/fields/textbox.php:173 includes/Widget.php:89 #: includes/Admin/Metaboxes/AppendAForm.php:55 #: includes/Config/PluginSettingsAdvanced.php:58 msgid "None" msgstr "Ninguno" #: deprecated/includes/admin/admin.php:4 deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/admin.php:101 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:6 #: includes/Admin/AllFormsTable.php:21 msgid "Forms" msgstr "Formularios" #: deprecated/includes/admin/admin.php:5 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:28 msgid "All Forms" msgstr "Todos los Formularios" #: deprecated/includes/admin/admin.php:8 msgid "Ninja Forms Upgrades" msgstr "Actualizaciones (Upgrades) de Ninja Forms" #: deprecated/includes/admin/admin.php:8 msgid "Upgrades" msgstr "Actualizaciones" #: deprecated/includes/admin/admin.php:29 msgid "Import/Export" msgstr "Importar/Exportar" #: deprecated/includes/admin/admin.php:29 #: includes/Templates/admin-menu-import-export.html.php:3 msgid "Import / Export" msgstr "Importar/Exportar" #: deprecated/includes/admin/admin.php:30 msgid "Ninja Form Settings" msgstr "Ajustes de Ninja Forms" #: deprecated/includes/admin/admin.php:30 #: deprecated/includes/admin/welcome.php:335 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:7 #: includes/Admin/Menus/Settings.php:25 includes/Config/FieldSettings.php:754 #: includes/Templates/admin-menu-settings.html.php:3 #: includes/Templates/ui-nf-header.html.php:7 #: includes/Templates/ui-nf-menu-drawer.html.php:8 msgid "Settings" msgstr "Ajustes" #: deprecated/includes/admin/admin.php:31 msgid "System Status" msgstr "Estado del Sistema" #: deprecated/includes/admin/admin.php:32 #: includes/Templates/admin-menu-addons.html.php:3 msgid "Add-Ons" msgstr "Complementos" #: deprecated/includes/admin/admin.php:119 includes/Display/Preview.php:40 #: includes/Templates/ui-nf-menu-drawer.html.php:9 msgid "Preview" msgstr "Preestrenar" #: deprecated/includes/admin/admin.php:178 #: deprecated/includes/admin/scripts.php:75 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:7 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/edit-field-ul.php:19 #: includes/Actions/Save.php:35 msgid "Save" msgstr "Guardar" #: deprecated/includes/admin/ajax.php:180 msgid "character(s) left" msgstr "tipos restantes" #: deprecated/includes/admin/ajax.php:631 msgid "Do not show these terms" msgstr "No mostrar estes artículos." #: deprecated/includes/admin/display-screen-options.php:87 msgid "Save Options" msgstr "Guardar Opciones" #: deprecated/includes/admin/form-preview.php:39 #: includes/Templates/admin-menu-all-forms-column-title.html.php:23 msgid "Preview Form" msgstr "Preestrenar el Formulario" #: deprecated/includes/admin/notices.php:23 #: deprecated/upgrade/class-submenu.php:57 msgid "Upgrade to Ninja Forms THREE" msgstr "Actualiza a Ninja Forms THREE" #: deprecated/includes/admin/notices.php:24 #, php-format msgid "" "You are eligible to upgrade to the Ninja Forms THREE Release Candidate! " "%sUpgrade Now%s" msgstr "" "¡Cumples los requisitos para actualizar a Ninja Forms THREE versión " "Candidate! %sActualizar ahora%s" #: deprecated/includes/admin/notices.php:38 msgid "THREE is coming!" msgstr "¡Ya llega THREE!" #: deprecated/includes/admin/notices.php:39 #, php-format msgid "" "A major update is coming to Ninja Forms. %sLearn more about new features, " "backwards compatibility, and more Frequently Asked Questions.%s" msgstr "" "Se está por hacer una actualización importante a Ninja Forms. %sObtén más " "información acerca de las nuevas funciones, la compatibilidad con versiones " "anteriores y las preguntas frecuentes.%s" #: deprecated/includes/admin/notices.php:53 #: includes/Config/AdminNotices.php:12 msgid "How's It Going?" msgstr "¿Cómo va eso?" #: deprecated/includes/admin/notices.php:54 #: includes/Config/AdminNotices.php:13 msgid "" "Thank you for using Ninja Forms! We hope that you've found everything you " "need, but if you have any questions:" msgstr "" "¡Gracias por usar Ninja Forms! Esperamos que hayas encontrado todo lo que " "necesitas, pero si tienes alguna pregunta:" #: deprecated/includes/admin/notices.php:55 #: includes/Config/AdminNotices.php:14 msgid "Check out our documentation" msgstr "Revisa nuestra documentación" #: deprecated/includes/admin/notices.php:56 #: includes/Config/AdminNotices.php:15 msgid "Get Some Help" msgstr "Obtén ayuda" #: deprecated/includes/admin/output-tab-metabox.php:47 #: deprecated/includes/admin/sidebar.php:57 #: deprecated/includes/admin/edit-field/li.php:109 #: includes/Templates/admin-menu-settings.html.php:33 msgid "Edit Menu Item" msgstr "Editar Artículo del Menu" #: deprecated/includes/admin/output-tab-metabox.php:290 msgid "Select All" msgstr "Seleccionar Todo" #: deprecated/includes/admin/post-metabox.php:12 #: deprecated/includes/admin/post-metabox.php:20 msgid "Append A Ninja Form" msgstr "Anexar Un Ninja Form" #: deprecated/includes/admin/scripts.php:52 msgid "What would you like to name this favorite?" msgstr "¿Qué te gustaría llamar a este favorito? " #: deprecated/includes/admin/scripts.php:52 msgid "You must supply a name for this favorite." msgstr "Debe proporcionar un nombre para este favorito." #: deprecated/includes/admin/scripts.php:52 msgid "Really deactivate all licenses?" msgstr "¿Realmente desactivar todas las licencias?" #: deprecated/includes/admin/scripts.php:53 msgid "Reset the form conversion process for v2.9+" msgstr "Restablecer el proceso de conversión de formulario para v2.9+" #: deprecated/includes/admin/scripts.php:54 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:93 #: includes/Config/PluginSettingsAdvanced.php:14 msgid "Remove ALL Ninja Forms data upon uninstall?" msgstr "¿Eliminar TODOS los datos de Ninja Forms sobre desinstalación?" #: deprecated/includes/admin/scripts.php:75 includes/Admin/Menus/Forms.php:158 msgid "Edit Form" msgstr "Editar Formulario" #: deprecated/includes/admin/scripts.php:75 msgid "Saved" msgstr "Guardado" #: deprecated/includes/admin/scripts.php:75 msgid "Saving..." msgstr "Guardando..." #: deprecated/includes/admin/scripts.php:75 msgid "Remove this field? It will be removed even if you do not save." msgstr "¿Eliminar este campo? Será eliminado aún si usted no lo guarda." #: deprecated/includes/admin/sidebar.php:155 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:192 #: includes/Templates/admin-menu-all-forms-column-title.html.php:27 msgid "View Submissions" msgstr "Ver Sumisiones" #: deprecated/includes/admin/step-processing.php:11 msgid "Ninja Forms Processing" msgstr "Ninja Forms Está Procesando" #: deprecated/includes/admin/step-processing.php:78 #: deprecated/includes/admin/upgrades/upgrades.php:34 msgid "Ninja Forms - Processing" msgstr "Ninja Forms- Está Procesando" #: deprecated/includes/admin/step-processing.php:111 msgid "Loading..." msgstr "Cargando..." #: deprecated/includes/admin/step-processing.php:116 msgid "No Action Specified..." msgstr "No Acción Especificado" #: deprecated/includes/admin/step-processing.php:141 #: deprecated/includes/admin/upgrades/upgrades.php:39 #: deprecated/includes/admin/upgrades/upgrades.php:53 msgid "" "The process has started, please be patient. This could take several minutes. " "You will be automatically redirected when the process is finished." msgstr "" "El proceso ha comenzado; favor de tener paciencia. Esto puede tomar varios " "minutos. Usted será redirigida cuando finalice el proceso. " #: deprecated/includes/admin/welcome.php:42 #: deprecated/includes/admin/welcome.php:412 #, php-format msgid "Welcome to Ninja Forms %s" msgstr "Bienvenido a Ninja Forms %s" #: deprecated/includes/admin/welcome.php:43 #, php-format msgid "" "Thank you for updating! Ninja Forms %s makes form building easier than ever " "before!" msgstr "" "iGracias por actualizar! iNinja Forms %s hace construir formularios más " "fácil que nunca !" #: deprecated/includes/admin/welcome.php:57 #: deprecated/includes/admin/welcome.php:58 msgid "Welcome to Ninja Forms" msgstr "Bienvenido a Ninja Forms" #: deprecated/includes/admin/welcome.php:66 #: deprecated/includes/admin/welcome.php:67 msgid "Ninja Forms Changelog" msgstr "Ninja Forms Historial de Cambios" #: deprecated/includes/admin/welcome.php:75 #: deprecated/includes/admin/welcome.php:76 msgid "Getting started with Ninja Forms" msgstr "Primeros pasos con Ninja Forms" #: deprecated/includes/admin/welcome.php:84 #: deprecated/includes/admin/welcome.php:85 msgid "The people who build Ninja Forms" msgstr "Las personas que construyen Ninja Forms" #: deprecated/includes/admin/welcome.php:165 msgid "What's New" msgstr "Qué Hay de Nuevo" #: deprecated/includes/admin/welcome.php:168 msgid "Getting Started" msgstr "Empezando " #: deprecated/includes/admin/welcome.php:171 msgid "Credits" msgstr "Créditos" #: deprecated/includes/admin/welcome.php:189 #: deprecated/includes/admin/welcome.php:283 #: deprecated/includes/admin/welcome.php:315 #: deprecated/includes/admin/welcome.php:414 #, php-format msgid "Version %s" msgstr "Versión %s" #: deprecated/includes/admin/welcome.php:198 msgid "A simplified and more powerful form building experience." msgstr "Una experiencia simplificada y más poderosa de construir formularios." #: deprecated/includes/admin/welcome.php:204 msgid "New Builder Tab" msgstr "Etiqueta de Constructor Nuevo" #: deprecated/includes/admin/welcome.php:205 msgid "" "When creating and editing forms, go directly to the section that matters " "most." msgstr "" "Al crear y editar formularios, vaya directamente a la sección que más " "importa." #: deprecated/includes/admin/welcome.php:210 msgid "Better Organized Field Settings" msgstr "Ajustes de Campo Mejor-Organizados " #: deprecated/includes/admin/welcome.php:211 msgid "" "The most common settings are shown immediately, while other, non-essential, " "settings are tucked away inside expandable sections." msgstr "" "Los ajustes más comunes se muestran inmediatamente, mientras que otros " "ajustes, no esenciales, se encuentran escondidos en el interior de las " "secciones expandibles." #: deprecated/includes/admin/welcome.php:222 msgid "Improved clarity" msgstr "Claridad Mejorada" #: deprecated/includes/admin/welcome.php:223 msgid "" "Along with the \"Build Your Form\" tab, we've removed \"Notifications\" in " "favor of \"Emails & Actions.\" This is a much clearer indication of what can " "be done on this tab." msgstr "" "Junto con la ficha \"Construir su formulario\", hemos eliminado " "\"Notificaciones\" en favor de \"Los correos electrónicos y acciones.\" Esta " "es una indicación mucho más clara de lo que puede hacerse en esta ficha. " #: deprecated/includes/admin/welcome.php:228 msgid "Remove all Ninja Forms data" msgstr "Eliminar Todos los Datos de Ninja Forms" #: deprecated/includes/admin/welcome.php:229 msgid "" "We've added the option to remove all Ninja Forms data (submissions, forms, " "fields, options) when you delete the plugin. We call it the nuclear option." msgstr "" "Hemos añadido la opción para eliminar todos los datos de Ninja Forms " "(presentaciones, formularios, campos , opciones ) cuando se elimina el " "plugin. Lo llamamos la opción nuclear." #: deprecated/includes/admin/welcome.php:234 msgid "Better license management" msgstr "Mejor Administración de Licencias" #: deprecated/includes/admin/welcome.php:235 msgid "" "Deactivate Ninja Forms extension licenses individually or as a group from " "the settings tab." msgstr "" "Desactivar las licencias de extensión de Ninja Forms de forma individual o " "en grupo a partir de la ficha de configuración ." #: deprecated/includes/admin/welcome.php:245 msgid "More to come" msgstr "Más por venir " #: deprecated/includes/admin/welcome.php:246 msgid "" "The interface updates in this version lay the groundwork for some great " "improvements in the future. Version 3.0 will build on these changes to make " "Ninja Forms an even more stable, powerful, and user-friendly form builder." msgstr "" "Las actualizaciones de la interfaz de esta versión sientan las bases para " "algunas grandes mejoras en el futuro. La versión 3.0 se apoyará en estos " "cambios para hacer Ninja Forms un constructor de la forma más estable, " "potente y fácil de usar." #: deprecated/includes/admin/welcome.php:250 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:65 #: includes/Templates/admin-menu-addons.html.php:46 msgid "Documentation" msgstr "Documentación" #: deprecated/includes/admin/welcome.php:251 msgid "Take a look at our in-depth Ninja Forms documentation below." msgstr "" "Echa un vistazo a nuestra documentación de Ninja Forms en profundidad más " "adelante." #: deprecated/includes/admin/welcome.php:253 msgid "Ninja Forms Documentation" msgstr "Documentación de Ninja Forms" #: deprecated/includes/admin/welcome.php:254 msgid "Get Support" msgstr "Obtener soporte " #: deprecated/includes/admin/welcome.php:263 msgid "Return to Ninja Forms" msgstr "Regresar a Ninja Forms" #: deprecated/includes/admin/welcome.php:264 msgid "View the Full Changelog" msgstr "Ver la lista completa de cambios " #: deprecated/includes/admin/welcome.php:288 msgid "Full Changelog" msgstr "Historial de Cambios Completo" #: deprecated/includes/admin/welcome.php:296 msgid "Go to Ninja Forms" msgstr "Ir a Ninja Forms" #: deprecated/includes/admin/welcome.php:319 msgid "" "Use the tips below to get started using Ninja Forms. You will be up and " "running in no time!" msgstr "" "Utilice los siguientes consejos para empezar a usar Ninja Forms. iVa a estar " "en funcionamiento en muy poco tiempo!" #: deprecated/includes/admin/welcome.php:324 msgid "All About Forms" msgstr "Todo Sobre Formularios" #: deprecated/includes/admin/welcome.php:327 #, php-format msgid "" "The Forms menu is your access point for all things Ninja Forms. We've " "already created your first %scontact form%s so that you have an example. You " "can also create your own by clicking %sAdd New%s." msgstr "" "El menú de los formularios es su punto de acceso para todas las cosas de " "Ninja Forms. Ya hemos creado tu primera %s contact form%s quedando con un " "ejemplo. También puede crear su propio haciendo clic %sAdd New%s." #: deprecated/includes/admin/welcome.php:329 #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:11 msgid "Build Your Form" msgstr "Construya Su Formulario" #: deprecated/includes/admin/welcome.php:330 msgid "" "This is where you'll build your form by adding fields and dragging them into " "the order you want them to appear. Each field will have an assortment of " "options such as label, label position, and placeholder." msgstr "" "Aquí es donde se va a construir tu formulario añadiendo campos y " "arrastrándolos a la orden que desea que aparezcan. Cada campo tendrá una " "variedad de opciones, tales como etiquetas, posición de la etiqueta , y " "marcador de posición." #: deprecated/includes/admin/welcome.php:332 #: includes/Templates/ui-nf-header.html.php:6 #: includes/Templates/ui-nf-menu-drawer.html.php:7 msgid "Emails & Actions" msgstr "Emails y Acciones" #: deprecated/includes/admin/welcome.php:333 msgid "" "If you would like for your form to notify you via email when a user clicks " "submit, you can set those up on this tab. You can create an unlimited number " "of emails, including emails sent to the user who filled out the form." msgstr "" "Si usted quisiera que su formulario le notifique a través de correo " "electrónico cuando un usuario hace clic en Enviar, usted puede configurar " "esto en esta ficha. Usted puede crear un número ilimitado de mensajes de " "correo electrónico, incluyendo mensajes de correo electrónico enviados al " "usuario que llenó el formulario ." #: deprecated/includes/admin/welcome.php:336 msgid "" "This tab hold general form settings, such as title and submission method, as " "well as display settings like hiding a form when it is successfully " "completed." msgstr "" "Esta ficha mantenga la configuración general de formulario, como el título y " "el método de envío, así como los ajustes de pantalla, como ocultar un " "formulario cuando se haya completado con éxito ." #: deprecated/includes/admin/welcome.php:345 msgid "Displaying Your Form" msgstr "Visualización de su Formulario " #: deprecated/includes/admin/welcome.php:350 msgid "Append to Page" msgstr "Anexar a la Página" #: deprecated/includes/admin/welcome.php:351 msgid "" "Under Basic Form Behavior in the Form Settings you can easily select a page " "that you would like the form automatically appended to the end of that " "page's content. A similiar option is avaiable in every content edit screen " "in its sidebar." msgstr "" "En Comportamiento Básico de Formularios en la Configuración del Formulario, " "usted puede seleccionar fácilmente una página que le gustaría que el " "formulario anexa automáticamente al final del contenido de esa página. Una " "opción similar es disponible en cada pantalla de edición de contenidos en su " "barra lateral." #: deprecated/includes/admin/welcome.php:355 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:158 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:218 #: includes/Admin/AllFormsTable.php:69 msgid "Shortcode" msgstr "Código Corto" #: deprecated/includes/admin/welcome.php:356 #, php-format msgid "" "Place %s in any area that accepts shortcodes to display your form anywhere " "you like. Even in the middle of your page or posts content." msgstr "" "Coloque %s en cualquier área que acepte códigos cortos para mostrar su forma " "en cualquier lugar que desee. Incluso en medio de su página o mensajes de " "contenido." #: deprecated/includes/admin/welcome.php:365 msgid "" "Ninja Forms provides a widget that you can place in any widgetized area of " "your site and select exactly which form you would like displayed in that " "space." msgstr "" "Ninja Forms proporciona un widget que se puede colocar en cualquier área " "Widgetized de su sitio y seleccionar exactamente qué formulario usted desea " "que se muestren en ese espacio." #: deprecated/includes/admin/welcome.php:369 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:159 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:219 msgid "Template Function" msgstr "Función de Plantilla" #: deprecated/includes/admin/welcome.php:370 #, php-format msgid "" "Ninja Forms also comes with a simple template function that can be placed " "directly into a php template file. %s" msgstr "" "Ninja Forms también viene con una plantilla simple de función que se puede " "colocar directamente en un archivo de plantilla php. %s" #: deprecated/includes/admin/welcome.php:380 msgid "Need Help?" msgstr "¿Necesita ayuda?" #: deprecated/includes/admin/welcome.php:385 msgid "Growing Documentation" msgstr "Documentación Creciente" #: deprecated/includes/admin/welcome.php:386 #, php-format msgid "" "Documentation is available covering everything from %sTroubleshooting%s to " "our %sDeveloper API%s. New Documents are always being added." msgstr "" "La documentación está disponible abarca desde %sTroubleshooting%s a nuestro " "%sDeveloper API%s. Nuevos documentos se puede añadir cada día." #: deprecated/includes/admin/welcome.php:390 msgid "Best Support in the Business" msgstr "El Mejor Soporte en el Negocio" #: deprecated/includes/admin/welcome.php:391 #, php-format msgid "" "We do all we can to provide every Ninja Forms user with the best support " "possible. If you encounter a problem or have a question, %splease contact us" "%s." msgstr "" "Nosotros haremos todo lo posible para proporcionar a cada usuario de Ninja " "Forms con el mejor apoyo posible. Si encuentra un problema o tiene alguna " "pregunta, póngase en contacto con nosotros, %splease contact us%s." #: deprecated/includes/admin/welcome.php:413 #, php-format msgid "" "Thank you for updating to the latest version! Ninja Forms %s is primed to " "make your experience managing submissions an enjoyable one!" msgstr "" "iGracias por actualizar a la versión más reciente! iNinja Forms %s está " "preparado para hacer de su experiencia en la gestión de sumisiones una " "agradable!" #: deprecated/includes/admin/welcome.php:418 msgid "" "Ninja Forms is created by a worldwide team of developers who aim to provide " "the #1 WordPress community form creation plugin." msgstr "" "Ninja Forms es creado por un equipo mundial de desarrolladores que tienen " "como objetivo proporcionar al # 1 WordPress comunidad de creación de " "formularios plugin." #: deprecated/includes/admin/welcome.php:436 msgid "No valid changelog was found." msgstr "No se encontró cambios válidos." #: deprecated/includes/admin/welcome.php:474 #, php-format msgid "View %s" msgstr "Ver %s" #: deprecated/includes/admin/edit-field/autocomplete-off.php:16 #: includes/Config/FieldSettings.php:695 msgid "Disable Browser Autocomplete" msgstr "Desactivar Autocompletador del Navegador" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "%sChecked%s Calculation Value" msgstr "%sChecked%s Valor de Cálculo" #: deprecated/includes/admin/edit-field/calc.php:44 #, php-format msgid "This is the value that will be used if %sChecked%s." msgstr "Este es el valor que se utilizará si %sChecked%s." #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "%sUnchecked%s Calculation Value" msgstr "%sUnchecked%s Valor de Cálculo" #: deprecated/includes/admin/edit-field/calc.php:45 #, php-format msgid "This is the value that will be used if %sUnchecked%s." msgstr "Este es el valor que se utilizará si %sUnchecked%s." #: deprecated/includes/admin/edit-field/calc.php:48 msgid "Include in the auto-total? (If enabled)" msgstr "¿Incluir en la auto- totales? (Si está activado)" #: deprecated/includes/admin/edit-field/custom-class.php:20 msgid "Custom CSS Classes" msgstr "Clases CSS Personalizadas" #: deprecated/includes/admin/edit-field/desc.php:41 msgid "Before Everything" msgstr "Antes de Todo" #: deprecated/includes/admin/edit-field/desc.php:43 msgid "Before Label" msgstr "Etiqueta Anterior" #: deprecated/includes/admin/edit-field/desc.php:44 msgid "After Label" msgstr "Etiqueta Posterior" #: deprecated/includes/admin/edit-field/desc.php:46 msgid "After Everything" msgstr "Después de Todo" #: deprecated/includes/admin/edit-field/desc.php:52 #, php-format msgid "" "If \"desc text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the desc text." msgstr "" "Si \" texto desc\" está activado, habrá un signo de interrogación %s " "colocado al lado del campo de entrada. Al pasar por encima de este signo de " "interrogación se mostrará el texto desc." #: deprecated/includes/admin/edit-field/desc.php:53 msgid "Add Description" msgstr "Añadir Descripción" #: deprecated/includes/admin/edit-field/desc.php:62 msgid "Description Position" msgstr "Posición de Descripción " #: deprecated/includes/admin/edit-field/desc.php:63 msgid "Description Content" msgstr "Contenido de Descripción " #: deprecated/includes/admin/edit-field/help.php:32 #: deprecated/includes/fields/calc.php:278 #, php-format msgid "" "If \"help text\" is enabled, there will be a question mark %s placed next to " "the input field. Hovering over this question mark will show the help text." msgstr "" "Si \"el texto de ayuda\" está activado, habrá un signo de interrogación %s " "colocado al lado del campo de entrada. Al pasar por encima de este signo de " "interrogación se mostrará el texto de ayuda." #: deprecated/includes/admin/edit-field/help.php:33 #: deprecated/includes/fields/calc.php:279 msgid "Show Help Text" msgstr "Mostrar Texto de Ayuda" #: deprecated/includes/admin/edit-field/help.php:37 #: deprecated/includes/display/fields/help.php:26 #: deprecated/includes/fields/calc.php:283 #: includes/Config/FieldSettings.php:475 msgid "Help Text" msgstr "Texto de Ayuda" #: deprecated/includes/admin/edit-field/input-limit.php:38 msgid "If you leave the box empty, no limit will be used" msgstr "Si deja la casilla vacía, se utilizará ningún límite" #: deprecated/includes/admin/edit-field/input-limit.php:39 msgid "Limit input to this number" msgstr "Limite de entrada a este número" #: deprecated/includes/admin/edit-field/input-limit.php:40 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:119 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "of" msgstr "de" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Characters" msgstr "Tipos" #: deprecated/includes/admin/edit-field/input-limit.php:40 msgid "Words" msgstr "Palabras" #: deprecated/includes/admin/edit-field/input-limit.php:42 msgid "Text to appear after character/word counter" msgstr "Texto que aparece después del contador de tipos/palabras" #: deprecated/includes/admin/edit-field/label.php:39 #: deprecated/includes/fields/calc.php:122 #: deprecated/includes/fields/checkbox.php:29 #: includes/Config/FieldSettings.php:50 #: includes/Config/FormDisplaySettings.php:81 msgid "Left of Element" msgstr "A la Izquierda del Elemento" #: deprecated/includes/admin/edit-field/label.php:40 #: deprecated/includes/fields/calc.php:123 #: deprecated/includes/fields/checkbox.php:30 #: includes/Config/FieldSettings.php:42 #: includes/Config/FormDisplaySettings.php:73 msgid "Above Element" msgstr "Arriba del Elemento" #: deprecated/includes/admin/edit-field/label.php:41 #: deprecated/includes/fields/calc.php:124 #: deprecated/includes/fields/checkbox.php:31 #: includes/Config/FieldSettings.php:46 #: includes/Config/FormDisplaySettings.php:77 msgid "Below Element" msgstr "Debajo del Elemento" #: deprecated/includes/admin/edit-field/label.php:42 #: deprecated/includes/fields/calc.php:125 #: deprecated/includes/fields/checkbox.php:32 #: includes/Config/FieldSettings.php:54 #: includes/Config/FormDisplaySettings.php:85 msgid "Right of Element" msgstr "A la Derecha del Elemento" #: deprecated/includes/admin/edit-field/label.php:43 msgid "Inside Element" msgstr "Dentro del Elemento" #: deprecated/includes/admin/edit-field/label.php:56 #: deprecated/includes/fields/calc.php:127 #: includes/Config/FieldSettings.php:35 #: includes/Templates/admin-menu-forms.html.php:25 msgid "Label Position" msgstr "Posición de la Etiqueta" #: deprecated/includes/admin/edit-field/li.php:332 msgid "Field ID" msgstr "Identificación del Campo" #: deprecated/includes/admin/edit-field/li.php:426 msgid "Restriction Settings" msgstr "Configuración de Restricciones" #: deprecated/includes/admin/edit-field/li.php:427 msgid "Calculation Settings" msgstr "Ajustes de Cálculo" #: deprecated/includes/admin/edit-field/li.php:506 #: deprecated/includes/admin/edit-field/remove-button.php:13 msgid "Remove" msgstr "Eliminar" #: deprecated/includes/admin/edit-field/list-terms.php:45 msgid "Populate this with the taxonomy" msgstr "Rellenar esto con la taxonomía " #: deprecated/includes/admin/edit-field/list-terms.php:48 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:32 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:33 #: deprecated/includes/fields/calc.php:93 msgid "- None" msgstr "- Ninguno" #: deprecated/includes/admin/edit-field/placeholder.php:19 #: includes/Config/FieldSettings.php:311 msgid "Placeholder" msgstr "Marcador de Posición" #: deprecated/includes/admin/edit-field/req.php:21 msgid "Required" msgstr "Necesario" #: deprecated/includes/admin/edit-field/save-button.php:5 msgid "Save Field Settings" msgstr "Guardar Configuración de Campo" #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "Sort as numeric" msgstr "Clasificar como numérico " #: deprecated/includes/admin/edit-field/sub-settings.php:31 msgid "" "If this box is checked, this column in the submissions table will sort by " "number." msgstr "" "Si esta casilla está activada, esta columna en la tabla de sumisiones " "ordenará por número." #: deprecated/includes/admin/edit-field/sub-settings.php:68 #: includes/Config/FieldSettings.php:461 msgid "Admin Label" msgstr "Etiqueta de Administración" #: deprecated/includes/admin/edit-field/sub-settings.php:68 msgid "This is the label used when viewing/editing/exporting submissions." msgstr "" "Esta es la etiqueta que se utiliza durante la visualización/ la edición/ la " "exportación de sumisiones." #: deprecated/includes/admin/edit-field/user-info-fields.php:28 msgid "Billing" msgstr "Facturación" #: deprecated/includes/admin/edit-field/user-info-fields.php:29 #: includes/Database/MockData.php:724 includes/Database/MockData.php:925 #: includes/Database/MockData.php:986 includes/Database/MockData.php:1089 #: includes/Fields/Shipping.php:30 msgid "Shipping" msgstr "Envío" #: deprecated/includes/admin/edit-field/user-info-fields.php:30 #: deprecated/includes/fields/hidden.php:65 #: deprecated/includes/fields/number.php:75 #: deprecated/includes/fields/textbox.php:135 #: deprecated/includes/fields/textbox.php:177 includes/Actions/Custom.php:35 #: includes/Config/FieldSettings.php:218 msgid "Custom" msgstr "Personalización" #: deprecated/includes/admin/edit-field/user-info-fields.php:51 msgid "User Info Field Group" msgstr "Campo de Grupo de Información del Usuario" #: deprecated/includes/admin/edit-field/user-info-fields.php:52 msgid "Custom Field Group" msgstr "Grupo de Campos Personalizados" #: deprecated/includes/admin/pages/system-status-html.php:3 #: includes/Templates/admin-menu-system-status.html.php:14 msgid "Please include this information when requesting support:" msgstr "Por favor, incluya esta información cuando soliciten apoyo:" #: deprecated/includes/admin/pages/system-status-html.php:4 #: includes/Templates/admin-menu-system-status.html.php:16 msgid "Get System Report" msgstr "Obtener Informe del Sistema" #: deprecated/includes/admin/pages/system-status-html.php:12 #: includes/Templates/admin-menu-system-status.html.php:29 msgid "Environment" msgstr "Ambiente" #: deprecated/includes/admin/pages/system-status-html.php:17 #: includes/Admin/Menus/SystemStatus.php:111 msgid "Home URL" msgstr "URL de Inicio" #: deprecated/includes/admin/pages/system-status-html.php:21 #: includes/Admin/Menus/SystemStatus.php:112 msgid "Site URL" msgstr "URL de Sitio" #: deprecated/includes/admin/pages/system-status-html.php:25 #: includes/Admin/Menus/SystemStatus.php:113 msgid "Ninja Forms Version" msgstr "Versión de Ninja Forms" #: deprecated/includes/admin/pages/system-status-html.php:29 #: includes/Admin/Menus/SystemStatus.php:114 msgid "WP Version" msgstr "Versión de WP" #: deprecated/includes/admin/pages/system-status-html.php:33 #: includes/Admin/Menus/SystemStatus.php:115 msgid "WP Multisite Enabled" msgstr "WP Multisitio Activado" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:27 #: includes/Admin/Menus/SystemStatus.php:44 #: includes/Admin/Menus/SystemStatus.php:64 msgid "Yes" msgstr "Sí" #: deprecated/includes/admin/pages/system-status-html.php:34 #: deprecated/includes/admin/pages/system-status-html.php:73 #: deprecated/includes/admin/pages/system-status-html.php:102 #: includes/Admin/Menus/SystemStatus.php:29 #: includes/Admin/Menus/SystemStatus.php:46 #: includes/Admin/Menus/SystemStatus.php:66 msgid "No" msgstr "No" #: deprecated/includes/admin/pages/system-status-html.php:37 #: includes/Admin/Menus/SystemStatus.php:116 msgid "Web Server Info" msgstr "Información del Servidor Web" #: deprecated/includes/admin/pages/system-status-html.php:41 #: includes/Admin/Menus/SystemStatus.php:117 msgid "PHP Version" msgstr "Versión PHP" #: deprecated/includes/admin/pages/system-status-html.php:45 #: includes/Admin/Menus/SystemStatus.php:119 msgid "MySQL Version" msgstr "Versión MySQL" #: deprecated/includes/admin/pages/system-status-html.php:55 #: includes/Admin/Menus/SystemStatus.php:120 msgid "PHP Locale" msgstr "Sitio PHP" #: deprecated/includes/admin/pages/system-status-html.php:64 #: includes/Admin/Menus/SystemStatus.php:122 msgid "WP Memory Limit" msgstr "Límite de Memoria de WP" #: deprecated/includes/admin/pages/system-status-html.php:72 #: includes/Admin/Menus/SystemStatus.php:123 msgid "WP Debug Mode" msgstr "Modo de Depuración de WP" #: deprecated/includes/admin/pages/system-status-html.php:76 #: includes/Admin/Menus/SystemStatus.php:124 msgid "WP Language" msgstr "Lenguaje de WP" #: deprecated/includes/admin/pages/system-status-html.php:77 #: includes/Admin/Menus/SystemStatus.php:53 msgid "Default" msgstr "Defecto" #: deprecated/includes/admin/pages/system-status-html.php:80 #: includes/Admin/Menus/SystemStatus.php:125 msgid "WP Max Upload Size" msgstr "Tamaño Máximo de Carga de WP" #: deprecated/includes/admin/pages/system-status-html.php:85 #: includes/Admin/Menus/SystemStatus.php:126 msgid "PHP Post Max Size" msgstr "Tamaño Máximo de Puesto PHP" #: deprecated/includes/admin/pages/system-status-html.php:89 #: includes/Admin/Menus/SystemStatus.php:127 msgid "Max Input Nesting Level" msgstr "Nivel Máximo de Entrada de la Anidación" #: deprecated/includes/admin/pages/system-status-html.php:93 #: includes/Admin/Menus/SystemStatus.php:128 msgid "PHP Time Limit" msgstr "PHP Límite de Tiempo" #: deprecated/includes/admin/pages/system-status-html.php:97 #: includes/Admin/Menus/SystemStatus.php:129 msgid "PHP Max Input Vars" msgstr "PHP Entrada Máxima Vars" #: deprecated/includes/admin/pages/system-status-html.php:101 #: includes/Admin/Menus/SystemStatus.php:130 msgid "SUHOSIN Installed" msgstr "SUHOSIN Instalado" #: deprecated/includes/admin/pages/system-status-html.php:105 #: includes/Admin/Menus/SystemStatus.php:133 msgid "SMTP" msgstr "SMTP" #: deprecated/includes/admin/pages/system-status-html.php:114 #: includes/Admin/Menus/SystemStatus.php:135 msgid "Default Timezone" msgstr "Zona Horaria por Defecto" #: deprecated/includes/admin/pages/system-status-html.php:118 #, php-format msgid "Default timezone is %s - it should be UTC" msgstr "Por defecto la zona horaria es %s - debe ser UTC" #: deprecated/includes/admin/pages/system-status-html.php:120 #, php-format msgid "Default timezone is %s" msgstr "Por defecto la zona horaria es %s" #: deprecated/includes/admin/pages/system-status-html.php:131 msgid "Your server has fsockopen and cURL enabled." msgstr "Su servidor tiene fsockopen y cURL habilitados." #: deprecated/includes/admin/pages/system-status-html.php:133 msgid "Your server has fsockopen enabled, cURL is disabled." msgstr "Su servidor tiene fsockopen y cURL discapacitados." #: deprecated/includes/admin/pages/system-status-html.php:135 msgid "Your server has cURL enabled, fsockopen is disabled." msgstr "Su servidor tiene permitido cURL , fsockopen está deshabilitado." #: deprecated/includes/admin/pages/system-status-html.php:139 msgid "" "Your server does not have fsockopen or cURL enabled - PayPal IPN and other " "scripts which communicate with other servers will not work. Contact your " "hosting provider." msgstr "" "Su servidor no tiene fsockopen o cURL habilitado - PayPal IPN y otras " "secuencias de comandos que se comunican con otros servidores no funcionarán. " "Comuníquese con su proveedor de hosting." #: deprecated/includes/admin/pages/system-status-html.php:144 msgid "SOAP Client" msgstr "Cliente SOAP" #: deprecated/includes/admin/pages/system-status-html.php:146 msgid "Your server has the SOAP Client class enabled." msgstr "El servidor tiene habilitado la clase de Cliente SOAP." #: deprecated/includes/admin/pages/system-status-html.php:149 #, php-format msgid "" "Your server does not have the %sSOAP Client%s class enabled - some gateway " "plugins which use SOAP may not work as expected." msgstr "" "Su servidor no tiene la clase %sSOAP Client%s habilitado - algunos plugins " "de entrada que utilizan SOAP no van a funcionar como se espera." #: deprecated/includes/admin/pages/system-status-html.php:154 msgid "WP Remote Post" msgstr "Puesto Remoto de WP" #: deprecated/includes/admin/pages/system-status-html.php:165 msgid "wp_remote_post() was successful - PayPal IPN is working." msgstr "wp_remote_post() fue un éxito - PayPal IPN está funcionando." #: deprecated/includes/admin/pages/system-status-html.php:168 msgid "" "wp_remote_post() failed. PayPal IPN won't work with your server. Contact " "your hosting provider. Error:" msgstr "" "wp_remote_post() ha fallado. PayPal IPN no funcionará con el servidor. " "Comuníquese con su proveedor de hosting. Error:" #: deprecated/includes/admin/pages/system-status-html.php:171 msgid "wp_remote_post() failed. PayPal IPN may not work with your server." msgstr "" "wp_remote_post() ha fallado. PayPal IPN no puede funcionar con su servidor." #: deprecated/includes/admin/pages/system-status-html.php:178 #: includes/Templates/admin-menu-system-status.html.php:42 msgid "Plugins" msgstr "Plugins " #: deprecated/includes/admin/pages/system-status-html.php:183 #: includes/Templates/admin-menu-system-status.html.php:47 msgid "Installed Plugins" msgstr "Plugins Instalados" #: deprecated/includes/admin/pages/system-status-html.php:203 #: includes/Admin/Menus/SystemStatus.php:93 msgid "Visit plugin homepage" msgstr "Visitar la Página Web de plugin" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "by" msgstr "por" #: deprecated/includes/admin/pages/system-status-html.php:206 #: includes/Admin/Menus/SystemStatus.php:96 msgid "version" msgstr "versión" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:44 msgid "Give your form a title. This is how you'll find the form later." msgstr "" "Dale a su formulario de un título. Así es como econtrará el formulario luego." #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php:49 msgid "You have not added a submit button to your form." msgstr "Usted no ha añadido un botón de envío a su formulario. " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:7 #: deprecated/includes/fields/textbox.php:170 #: includes/Config/FieldSettings.php:200 msgid "Input Mask" msgstr "Máscara de Entrada" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:15 msgid "" "Any character you place in the \"custom mask\" box that is not in the list " "below will be automatically entered for the user as they type and will not " "be removeable" msgstr "" "Cualquier tipo que usted deposita en la caja \"máscara personalizada\" que " "no está en la lista de abajo se introducirá automáticamente para el usuario " "mientrás se escribe y no será desmontable" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:16 msgid "These are the predefined masking characters" msgstr "Estos son los tipos de máscara predefinidos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:18 msgid "" "a - Represents an alpha character (A-Z,a-z) - Only allows letters to be " "entered" msgstr "" "a - Representa un tipo alfabético (AZ , az ) - Sólo permite que las letras " "que se introducirán" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:19 msgid "" "9 - Represents a numeric character (0-9) - Only allows numbers to be entered" msgstr "" "9 - Representa un tipo numérico ( 0-9 ) - Sólo permite números para ingresar" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:20 msgid "" "* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both " "numbers and letters to be entered" msgstr "" "* - Representa un tipo alfanumérico (AZ , az, 0-9 ) - Esto permite que ambos " "números y letras que se introduzcan" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "So, if you wanted to create a mask for an American Social Security Number, " "you would type 999-99-9999 into the box" msgstr "" "Así que, si querías hacer una máscara para un Número de Seguro Social de " "América, que pondría 999-99-9999 en la caja" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "" "The 9s would represent any number, and the -s would be automatically added" msgstr "" "Los 9s representarían cualquier número, y la -s se añade automáticamente " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:24 msgid "This would prevent the user from putting in anything other than numbers" msgstr "Esto impediría al usuario de la puesta en otra cosa que números " #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "You can also combine these for specific applications" msgstr "También se pueden combinar estos para aplicaciones específicas" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/help.php:27 msgid "" "For instance, if you had a product key that was in the form of A4B51.989." "B.43C, you could mask it with: a9a99.999.a.99a, which would force all the " "a's to be letters and the 9s to be numbers" msgstr "" "Por ejemplo, si has tenido una clave de producto que se encontraba en forma " "de A4B51.989.B.43C, puede enmascarar con: a9a99.999.a.99a, lo que obligaría " "a todos a's a ser letras y las 9s a ser números" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/def-fields.php:6 msgid "Defined Fields" msgstr "Campos Definidos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/fav-fields.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:7 #: includes/Admin/Menus/ImportExport.php:100 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:9 msgid "Favorite Fields" msgstr "Los Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/payment-fields.php:12 msgid "Payment Fields" msgstr "Los Campos de Pago" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/template-fields.php:6 msgid "Template Fields" msgstr "Los Campos de la Plantilla" #: deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/sidebars/user-info.php:12 msgid "User Information" msgstr "Información del Usuario" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:96 msgid "All" msgstr "Todos" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:101 msgid "Bulk Actions" msgstr "Acciones en Bloque" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:104 msgid "Apply" msgstr "Aplicar " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:112 msgid "Forms Per Page" msgstr "Formularios Por Página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:113 msgid "Go" msgstr "Ir" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:142 msgid "Go to the first page" msgstr "Ir a la primera página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:143 msgid "Go to the previous page" msgstr "Ir a la página anterior " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:144 msgid "Current page" msgstr "Página corriente" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:145 msgid "Go to the next page" msgstr "Ir a la página siguiente " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:146 msgid "Go to the last page" msgstr "Ir a la última página " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:157 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:217 #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:55 #: includes/Admin/AllFormsTable.php:68 #: includes/Config/FormDisplaySettings.php:12 msgid "Form Title" msgstr "Título de Formulario" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:189 msgid "Delete this form" msgstr "Eliminar este formulario " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:190 msgid "Duplicate Form" msgstr "Duplicar Formulario " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:236 msgid "Forms Deleted" msgstr "Formluarios Eliminados" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-list/form-list.php:238 msgid "Form Deleted" msgstr "Formulario Eliminado" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-preview/form-preview.php:11 msgid "Form Preview" msgstr "Prevista de Formulario " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:49 #: includes/Config/SettingsGroups.php:24 msgid "Display" msgstr "Visualización" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:60 #: includes/Config/FormDisplaySettings.php:26 msgid "Display Form Title" msgstr "Título del Formulario de Visualización " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:66 msgid "Add form to this page" msgstr "Añadir formulario a esta página" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:75 msgid "Submit via AJAX (without page reload)?" msgstr "¿Presentar a través de AJAX (sin recarga de la página)?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:83 #: includes/Config/FormDisplaySettings.php:40 msgid "Clear successfully completed form?" msgstr "¿Eliminar el formulario completado con éxito?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:85 #: includes/Config/FormDisplaySettings.php:44 msgid "" "If this box is checked, Ninja Forms will clear the form values after it has " "been successfully submitted." msgstr "" "Si se selecciona esta casilla, Ninja Forms despejará los valores del " "formulario después de que ha sido enviado correctamente. " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:92 #: includes/Config/FormDisplaySettings.php:54 msgid "Hide successfully completed form?" msgstr "¿Ocultar el formulario completado con éxito?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:94 #: includes/Config/FormDisplaySettings.php:58 msgid "" "If this box is checked, Ninja Forms will hide the form after it has been " "successfully submitted." msgstr "" "Si se selecciona esta casilla, Ninja Forms ocultará la forma después de " "haber sido enviado correctamente ." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:105 #: includes/Config/FormSettingsTypes.php:12 #: includes/Config/SettingsGroups.php:19 msgid "Restrictions" msgstr "Restricciones " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:112 #: includes/Config/FormRestrictionSettings.php:20 msgid "Require user to be logged in to view form?" msgstr "¿El usuario deberá estar registrado para ver el formulario?" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:119 #: includes/Config/FormRestrictionSettings.php:34 msgid "Not Logged-In Message" msgstr "Mensaje de No Estar Registrado " #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:120 msgid "" "Message shown to users if the \"logged in\" checkbox above is checked and " "they are not logged-in." msgstr "" "Mensaje mostrado a los usuarios si la casilla \"registrado\" de arribe se " "comprueba y que no está en el sistema de entrada." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:127 #: includes/Config/FormRestrictionSettings.php:45 msgid "Limit Submissions" msgstr "Limite las Sumisiones" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:129 msgid "" "Select the number of submissions that this form will accept. Leave empty for " "no limit." msgstr "" "Seleccione el número de sumisiones que este formulario aceptará. Dejar en " "blanco para ningún límite." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:137 #: includes/Config/FormRestrictionSettings.php:74 msgid "Limit Reached Message" msgstr "Mensaje de que el Límite llegó" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:138 msgid "" "Please enter a message that you want displayed when this form has reached " "its submission limit and will not accept new submissions." msgstr "" "Por favor, introduzca un mensaje que desea mostrar cuando este formulario ha " "llegado a su límite de sumisión y no aceptará nuevas sumisiones." #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/form-settings.php:160 msgid "Form Settings Saved" msgstr "Ajustes del Formulario Guardados" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:7 msgid "Basic Settings" msgstr "Ajustes Básicos" #: deprecated/includes/admin/pages/ninja-forms/tabs/form-settings/help.php:15 msgid "Ninja Forms basic help goes here." msgstr "La ayuda básica de Ninja Forms va aquí." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:6 msgid "Extend Ninja Forms" msgstr "Ampliar Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:67 #: includes/Templates/admin-menu-addons.html.php:49 msgid "Documentation coming soon." msgstr "Documentación próximamente ." #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:72 #: includes/Config/ActionSettings.php:27 #: includes/Templates/admin-menu-addons.html.php:57 msgid "Active" msgstr "Activo" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:74 #: includes/Config/i18nBuilder.php:12 #: includes/Templates/admin-menu-addons.html.php:61 msgid "Installed" msgstr "Instalado" #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:76 #: deprecated/includes/admin/pages/ninja-forms-addons/tabs/addons/addons.php:79 #: includes/Templates/admin-menu-addons.html.php:65 #: includes/Templates/admin-menu-addons.html.php:71 msgid "Learn More" msgstr "Aprende Más" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:6 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:20 msgid "Backup / Restore" msgstr "Reservar / Restaurar" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:22 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:24 msgid "Backup Ninja Forms" msgstr "Reservar Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:32 msgid "Restore Ninja Forms" msgstr "Restaurar Ninja Forms" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-backup/impexp-backup.php:37 msgid "Data restored successfully!" msgstr "iDatos restaurados con exito!" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:23 #: includes/Admin/Menus/ImportExport.php:142 msgid "Import Favorite Fields" msgstr "Importar Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:28 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:27 #: includes/Config/i18nFrontEnd.php:13 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:9 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:9 msgid "Select a file" msgstr "Seleccione un archivo" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:36 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:132 msgid "Import Favorites" msgstr "Importar Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:57 msgid "No Favorite Fields Found" msgstr "No Campos Favoritos Encontrados" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:63 #: includes/Admin/Menus/ImportExport.php:149 msgid "Export Favorite Fields" msgstr "Exportar Campos Favoritos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:81 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:93 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:24 #: includes/Templates/admin-metabox-import-export-favorite-fields-export.html.php:27 msgid "Export Fields" msgstr "Exportar Campos" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:130 msgid "Please select favorite fields to export." msgstr "Por favor, seleccione los campos favoritos para exportar." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:144 msgid "Favorites imported successfully." msgstr "Favoritos importados correctamente." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-fields/impexp-fields.php:146 msgid "Please select a valid favorite fields file." msgstr "Por favor, seleccione un archivo de campos favoritos válida." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:22 msgid "Import a form" msgstr "Importar un formulario" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:35 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:162 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:17 #: includes/Templates/admin-metabox-import-export-forms-import.html.php:20 msgid "Import Form" msgstr "Importar Formulario" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:62 msgid "Export a form" msgstr "Exportar un formulario" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:75 #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:156 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:21 #: includes/Templates/admin-metabox-import-export-forms-export.html.php:24 msgid "Export Form" msgstr "Exportar Formulario" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:160 msgid "Please select a form." msgstr "Por favor, seleccione un formulario." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:166 #: includes/Templates/admin-notice-form-import.html.php:3 msgid "Form Imported Successfully." msgstr "Formulario Importado con éxito." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-forms/impexp-forms.php:169 msgid "Please select a valid exported form file." msgstr "Por favor, seleccione un archivo de formulario exportado válida." #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:18 msgid "Import / Export Submissions" msgstr "Importar / Exportar Sumisiones" #: deprecated/includes/admin/pages/ninja-forms-impexp/tabs/impexp-subs/impexp-subs.php:20 msgid "Date Settings" msgstr "Ajustes de Fecha" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:6 msgid "General" msgstr "General" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:29 #: includes/Config/PluginSettingsGroups.php:7 msgid "General Settings" msgstr "Configuración General" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:34 #: includes/Config/PluginSettingsGeneral.php:14 msgid "Version" msgstr "Versión" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:40 #: includes/Config/PluginSettingsGeneral.php:27 msgid "Date Format" msgstr "Formato de Fecha" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:41 #: includes/Config/PluginSettingsGeneral.php:28 #, php-format msgid "" "Tries to follow the %sPHP date() function%s specifications, but not every " "format is supported." msgstr "" "Trata de seguir las especificaciones de %sPHP date() function%s, pero no " "todos los formatos son compatibles." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:46 #: includes/Config/PluginSettingsGeneral.php:40 msgid "Currency Symbol" msgstr "Símbolo de Moneda" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:57 msgid "reCAPTCHA Settings" msgstr "Configuración de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:62 #: includes/Config/PluginSettingsReCaptcha.php:14 msgid "reCAPTCHA Site Key" msgstr "Clave de sitio de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:63 #: includes/Config/PluginSettingsReCaptcha.php:15 #, php-format msgid "Get a site key for your domain by registering %shere%s" msgstr "Obtén una clave de sitio para tu dominio registrándote %saquí%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:68 #: includes/Config/PluginSettingsReCaptcha.php:27 msgid "reCAPTCHA Secret Key" msgstr "Clave secreta de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:74 #: includes/Config/PluginSettingsReCaptcha.php:40 msgid "reCAPTCHA Language" msgstr "Idioma de reCAPTCHA" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:75 #: includes/Config/PluginSettingsReCaptcha.php:41 #, php-format msgid "" "Language used by reCAPTCHA. To get the code for your language click %shere%s" msgstr "" "Idioma usado por reCAPTCHA Para obtener el código para tu idioma, haz clic " "%saquí%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:94 #: includes/Config/PluginSettingsAdvanced.php:15 #, php-format msgid "" "If this box is checked, ALL Ninja Forms data will be removed from the " "database upon deletion. %sAll form and submission data will be unrecoverable." "%s" msgstr "" "Si se marca esta casilla, todos los datos de Ninja Forms serán eliminados de " "la base de datos debido a la supresión. %sAll form and submission data will " "be unrecoverable.%s" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:104 #: includes/Config/PluginSettingsAdvanced.php:42 msgid "Disable Admin Notices" msgstr "Desactivar notificaciones del administrador" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:105 #: includes/Config/PluginSettingsAdvanced.php:43 msgid "" "Never see an admin notice on the dashboard from Ninja Forms. Uncheck to see " "them again." msgstr "" "No veas ninguna notificación del administrador en el panel de control de " "Ninja Forms. Desmarca esta opción para verlas nuevamente." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:119 #: includes/Config/PluginSettingsAdvanced.php:27 msgid "" "This setting will COMPLETELY remove anything Ninja Forms related upon plugin " "deletion. This includes SUBMISSIONS and FORMS. It cannot be undone." msgstr "" "Esta configuración eliminará COMPLETAMENTE cualquier cosa relacionada con " "Ninja Forms después de eliminar el complemento. Esto incluye los ENVÍOS y " "FORMULARIOS. Esta acción no se puede deshacer." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:126 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:74 msgid "Continue" msgstr "Continuar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/general-settings/general-settings.php:141 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:102 msgid "Settings Saved" msgstr "Ajustes Guardados" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:6 msgid "Labels" msgstr "Etiquetas " #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:23 msgid "Message Labels" msgstr "Etiquetas de Mensaje" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:28 msgid "Required Field Label" msgstr "Etiqueta Obligatoria de Campo" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:35 msgid "Required field symbol" msgstr "Símbolo Obligatorio de Campo" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:40 msgid "Error message given if all required fields are not completed" msgstr "" "Mensaje de error dado si todos los campos obligatorios no son completados" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:45 msgid "Required Field Error" msgstr "Error de Campo Obligatorio" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:51 msgid "Anti-spam error message" msgstr "Mensaje de Anti-Spam" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:57 msgid "Honeypot error message" msgstr "Mensaje de error Honeypot " #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:63 msgid "Timer error message" msgstr "Mensaje de Error del Minutero" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:69 msgid "JavaScript disabled error message" msgstr "Mensaje de error de JavaScript discapacitado" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:75 msgid "Please enter a valid email address" msgstr "Por favor, introduce una dirección de correo electrónico válida" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:81 msgid "Processing Submission Label" msgstr "Procesando Etiqueta de Sumisiones" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:82 msgid "" "This message is shown inside the submit button whenever a user clicks " "\"submit\" to let them know it is processing." msgstr "" "Este mensaje se muestra dentro del botón de enviar cada vez que un usuario " "hace clic en \"enviar\" para hacerles saber que está procesando." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:87 msgid "Password Mismatch Label" msgstr "Etiqueta de Discrepancia de Contraseña " #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/label-settings/label-settings.php:88 msgid "" "This message is shown to a user when non-matching values are placed in the " "password field." msgstr "" "Este mensaje se muestra a un usuario cuando los valores no coincidentes se " "colocan en el campo de la contraseña." #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:4 #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:21 #: includes/Admin/Menus/Settings.php:26 msgid "Licenses" msgstr "Licencias" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:60 msgid "Save & Activate" msgstr "Guardar y Activar" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:66 msgid "Deactivate All Licenses" msgstr "Desactivar Todas las Licencias" #: deprecated/includes/admin/pages/ninja-forms-settings/tabs/license-settings/license-settings.php:84 #: includes/Templates/admin-menu-settings-licenses.html.php:3 #, php-format msgid "" "To activate licenses for Ninja Forms extensions you must first %sinstall and " "activate%s the chosen extension. License settings will then appear below." msgstr "" "Para activar licencias para las extensiones de Ninja Forms primero debes " "%sinstalar y activar%s la extensión que desees. La configuración de la " "licencia se mostrará más abajo." #: deprecated/includes/admin/upgrades/convert-forms-reset.php:24 msgid "Reset Forms Conversion" msgstr "Restablecer conversión de formularios" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:46 #: deprecated/includes/admin/upgrades/convert-forms-reset.php:58 msgid "Reset Form Conversion" msgstr "Restablecer conversión de formulario" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:60 msgid "" "If your forms are \"missing\" after updating to 2.9, this button will " "attempt to reconvert your old forms to show them in 2.9. All current forms " "will remain in the \"All Forms\" table." msgstr "" "Si tienes formularios \"faltantes\" después de actualizar a la versión 2.9, " "este botón intentará recuperar tus antiguos formularios para que se muestren " "en esa versión. Todos los formularios actuales permanecerán en la tabla " "\"Todos los formularios\"" #: deprecated/includes/admin/upgrades/convert-forms-reset.php:65 msgid "" "All current forms will remain in the \"All Forms\" table. In some cases some " "forms may be duplicated during this process." msgstr "" "Todos los formularios actuales permanecerán en la tabla \"Todos los " "formularios\" En algunos casos, algunos formularios pueden duplicarse " "durante este proceso." #: deprecated/includes/admin/upgrades/convert-notifications.php:102 #: includes/Config/FormActionDefaults.php:16 #: includes/Config/MergeTagsSystem.php:14 msgid "Admin Email" msgstr "E-mail de Administración" #: deprecated/includes/admin/upgrades/convert-notifications.php:194 msgid "User Email" msgstr "E-mail del Usuario" #: deprecated/includes/admin/upgrades/upgrade-functions.php:31 #, php-format msgid "" "Ninja Forms needs to upgrade your form notifications, click %shere%s to " "start the upgrade." msgstr "" "Ninja Forms tiene que actualizar sus notificaciones de formulario, haga clic " "en %shere%s para iniciar la actualización ." #: deprecated/includes/admin/upgrades/upgrade-functions.php:40 #, php-format msgid "" "Ninja Forms needs to update your email settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms tiene que actualizar la configuración de correo electrónico, " "haga clic en %shere%s para iniciar la actualización ." #: deprecated/includes/admin/upgrades/upgrade-functions.php:55 #, php-format msgid "" "Ninja Forms needs to upgrade the submissions table, click %shere%s to start " "the upgrade." msgstr "" "Ninja Forms necesita actualizar la tabla de presentaciones, haga clic en " "%shere%s para iniciar la actualización ." #: deprecated/includes/admin/upgrades/upgrade-functions.php:64 msgid "" "Thank you for updating to version 2.7 of Ninja Forms. Please update any " "Ninja Forms extensions from " msgstr "" "Gracias por actualizar a la versión 2.7 de Ninja Forms. Por favor, actualice " "cualquier extensiones de Ninja Forms de" #: deprecated/includes/admin/upgrades/upgrade-functions.php:70 msgid "" "Your version of the Ninja Forms File Upload extension isn't compatible with " "version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please " "update this extension at " msgstr "" "Su versión de la extensión de carga de archivos de Ninja Forms no es " "compatible con la versión 2.7 de Ninja Forms. Tiene que ser al menos la " "versión 1.3.5. Por favor, actualice esta extensión en" #: deprecated/includes/admin/upgrades/upgrade-functions.php:74 msgid "" "Your version of the Ninja Forms Save Progress extension isn't compatible " "with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. " "Please update this extension at " msgstr "" "Su versión de la extensión de Ninja Forms de Guardar el Progreso no es " "compatible con la versión 2.7 de Ninja Forms. Tiene que ser por lo menos la " "versión 1.1.3. Por favor, actualice esta extensión en" #: deprecated/includes/admin/upgrades/upgrade-functions.php:80 msgid "Updating Form Database" msgstr "Actualizando el Base de datos de Formularios" #: deprecated/includes/admin/upgrades/upgrade-functions.php:82 #, php-format msgid "" "Ninja Forms needs to upgrade your form settings, click %shere%s to start the " "upgrade." msgstr "" "Ninja Forms tiene que actualizar la configuración de formulario, haga clic " "en %shere%s para iniciar la actualización." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:3 msgid "Ninja Forms Upgrade Processing" msgstr "Procesamiento de actualización de Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:41 #, php-format msgid "Please %scontact support%s with the error seen above." msgstr "" "%sPonte en contacto con asistencia técnica%s e indica el error que se " "muestra más arriba." #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:52 msgid "Ninja Forms has completed all available upgrades!" msgstr "¡Ninja Forms realizó todas las actualizaciones disponibles!" #: deprecated/includes/admin/upgrades/upgrade-handler-page.html.php:56 msgid "Go to Forms" msgstr "Ir a Formularios" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:17 msgid "Ninja Forms Upgrade" msgstr "Actualización de Ninja Forms" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:18 #: deprecated/upgrade/class-submenu.php:56 msgid "Upgrade" msgstr "Actualizar" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:68 msgid "Upgrades Complete" msgstr "Actualización completa" #: deprecated/includes/admin/upgrades/upgrade-handler-page.php:113 #, php-format msgid "" "Ninja Forms needs to process %s upgrade(s). This may take a few minutes to " "complete. %sStart Upgrade%s" msgstr "" "Ninja Forms necesita procesar %s actualización(es). Esto puede demorar unos " "minutos en completarse. %sComenzar a actualizar%s" #: deprecated/includes/admin/upgrades/upgrades.php:41 #, php-format msgid "Step %d of approximately %d running" msgstr "Paso %d de aproximadamente %d funcionando" #: deprecated/includes/classes/class-nf-system-status.php:36 msgid "Ninja Forms System Status" msgstr "Estado del Sistema de Ninja Forms" #: deprecated/includes/display/scripts.php:274 #: deprecated/includes/fields/password.php:128 msgid "Strength indicator" msgstr "Indicador de Fuerza" #: deprecated/includes/display/scripts.php:275 msgid "Very weak" msgstr "Muy débil " #: deprecated/includes/display/scripts.php:276 msgid "Weak" msgstr "Débil" #: deprecated/includes/display/scripts.php:278 msgid "Medium" msgstr "Medio" #: deprecated/includes/display/scripts.php:279 msgid "Strong" msgstr "Fuerte" #: deprecated/includes/display/scripts.php:280 msgid "Mismatch" msgstr "Discrepancia " #: deprecated/includes/display/fields/list-term-filter.php:51 #: deprecated/includes/fields/country.php:11 msgid "- Select One" msgstr "- Seleccione Uno" #: deprecated/includes/display/form/honeypot.php:14 #: deprecated/includes/fields/honeypot.php:10 msgid "If you are a human and are seeing this field, please leave it blank." msgstr "" "Si usted es un humano y está viendo este ámbito, por favor deje en blanco." #: deprecated/includes/display/form/required-label.php:16 msgid "Fields marked with a * are required." msgstr "Campos marcados con un * son obligatorios." #: deprecated/includes/display/processing/req-fields-pre-process.php:65 #: includes/Config/i18nFrontEnd.php:15 msgid "This is a required field." msgstr "Esto es un campo obligatorio." #: deprecated/includes/display/processing/req-fields-pre-process.php:71 msgid "Please check required fields." msgstr "Por favor, marque los campos obligatorios." #: deprecated/includes/fields/calc.php:10 #: deprecated/includes/fields/calc.php:70 #: deprecated/includes/fields/calc.php:111 msgid "Calculation" msgstr "Cálculo" #: deprecated/includes/fields/calc.php:42 msgid "Number of decimal places." msgstr "Número de cifras decimales." #: deprecated/includes/fields/calc.php:94 #: deprecated/includes/fields/textbox.php:4 includes/Database/MockData.php:356 #: includes/Database/MockData.php:361 includes/Database/MockData.php:521 #: includes/Templates/admin-menu-forms.html.php:48 #: includes/Templates/admin-menu-forms.html.php:49 #: includes/Templates/admin-menu-forms.html.php:50 #: includes/Templates/admin-menu-forms.html.php:51 #: includes/Templates/admin-menu-forms.html.php:52 #: includes/Templates/admin-menu-forms.html.php:58 #: includes/Templates/admin-menu-forms.html.php:86 #: includes/Templates/admin-menu-forms.html.php:114 #: includes/Templates/admin-menu-forms.html.php:142 #: includes/Templates/admin-menu-forms.html.php:170 msgid "Textbox" msgstr "Cuadro de texto " #: deprecated/includes/fields/calc.php:100 msgid "Output calculation as" msgstr "Cálculo de salida como " #: deprecated/includes/fields/calc.php:113 #: deprecated/includes/fields/list.php:98 #: deprecated/includes/fields/list.php:193 #: deprecated/includes/fields/list.php:585 #: deprecated/includes/fields/timed-submit.php:9 #: deprecated/includes/fields/timed-submit.php:17 #: includes/Config/FieldSettings.php:21 includes/Config/FieldSettings.php:164 #: includes/Config/FieldSettings.php:618 includes/Config/FieldSettings.php:634 #: includes/Config/FieldSettings.php:960 msgid "Label" msgstr "Etiqueta" #: deprecated/includes/fields/calc.php:135 msgid "Disable input?" msgstr "¿Desactivar la entrada?" #: deprecated/includes/fields/calc.php:151 msgid "" "Use the following shortcode to insert the final calculation: " "[ninja_forms_calc]" msgstr "" "Utiliza el siguiente código corto para insertar el cálculo final: " "[ninja_forms_calc]" #: deprecated/includes/fields/calc.php:188 #, php-format msgid "" "You can enter calculation equations here using field_x where x is the ID of " "the field you want to use. For example, %sfield_53 + field_28 + field_65%s." msgstr "" "Puede introducir ecuaciones de cálculo aquí usando campo_x donde x es el ID " "del campo que desea utilizar. Por ejemplo, %sfield_53 + field_28 + " "field_65%s." #: deprecated/includes/fields/calc.php:189 #, php-format msgid "" "Complex equations can be created by adding parentheses: %s( field_45 * " "field_2 ) / 2%s." msgstr "" "Ecuaciones complejas pueden ser creados añadiendo entre paréntesis: %s" "( field_45 * field_2 ) / 2%s." #: deprecated/includes/fields/calc.php:190 msgid "" "Please use these operators: + - * /. This is an advanced feature. Watch out " "for things like division by 0." msgstr "" "Por favor, use estos operadores: + - * / . Esta es una característica " "avanzada. Cuidado con cosas como la división por 0 ." #: deprecated/includes/fields/calc.php:192 msgid "Automatically Total Calculation Values" msgstr "Automáticamente Da el Total de Valores de cálculo" #: deprecated/includes/fields/calc.php:193 msgid "Specify Operations And Fields (Advanced)" msgstr "Especifique Operaciones Y Campos (Avanzado ) " #: deprecated/includes/fields/calc.php:194 msgid "Use An Equation (Advanced)" msgstr "Use Una Ecuación ( Avanzado) " #: deprecated/includes/fields/calc.php:196 msgid "Calculation Method" msgstr "Método de Cálculo" #: deprecated/includes/fields/calc.php:202 msgid "Field Operations" msgstr "Operaciones de Campo " #: deprecated/includes/fields/calc.php:202 msgid "Add Operation" msgstr "Añadir Operación " #: deprecated/includes/fields/calc.php:220 msgid "Advanced Equation" msgstr "Ecuación Avanzada" #: deprecated/includes/fields/calc.php:238 msgid "Calculation name" msgstr "Nombre del Cálculo" #: deprecated/includes/fields/calc.php:238 msgid "" "This is the programmatic name of your field. Examples are: my_calc, " "price_total, user-total." msgstr "" "Este es el nombre de programación de su campo . Ejemplos son: my_calc, " "price_total, user-total." #: deprecated/includes/fields/calc.php:239 #: deprecated/includes/fields/checkbox.php:19 #: deprecated/includes/fields/desc.php:11 #: deprecated/includes/fields/hidden.php:53 #: deprecated/includes/fields/number.php:69 #: deprecated/includes/fields/number.php:83 #: deprecated/includes/fields/textarea.php:11 #: deprecated/includes/fields/textbox.php:122 #: includes/Config/FieldSettings.php:129 includes/Config/FieldSettings.php:326 #: includes/Fields/ListCountry.php:30 msgid "Default Value" msgstr "Valor de Defecto" #: deprecated/includes/fields/calc.php:275 msgid "Custom CSS Class" msgstr "Clase CSS Personalizada" #: deprecated/includes/fields/calc.php:392 msgid "- Select a Field" msgstr "- Seleccione un Campo" #: deprecated/includes/fields/checkbox.php:4 #: includes/Database/MockData.php:443 includes/Database/MockData.php:531 #: includes/Templates/admin-menu-forms.html.php:64 #: includes/Templates/admin-menu-forms.html.php:92 #: includes/Templates/admin-menu-forms.html.php:120 #: includes/Templates/admin-menu-forms.html.php:148 #: includes/Templates/admin-menu-forms.html.php:176 msgid "Checkbox" msgstr "Casilla" #: deprecated/includes/fields/checkbox.php:10 #: includes/Config/FieldSettings.php:132 msgid "Unchecked" msgstr "No marcado" #: deprecated/includes/fields/checkbox.php:14 #: includes/Config/FieldSettings.php:136 msgid "Checked" msgstr "Marcado" #: deprecated/includes/fields/checkbox.php:44 #: deprecated/includes/fields/list.php:35 #: deprecated/includes/fields/recaptcha.php:25 msgid "Show This" msgstr "Presentar Este" #: deprecated/includes/fields/checkbox.php:49 #: deprecated/includes/fields/list.php:40 #: deprecated/includes/fields/recaptcha.php:30 msgid "Hide This" msgstr "Ocultar Este" #: deprecated/includes/fields/checkbox.php:54 #: deprecated/includes/fields/hidden.php:23 msgid "Change Value" msgstr "Cambiar el Valor" #: deprecated/includes/fields/country.php:12 #: deprecated/includes/fields/country.php:315 #: includes/Config/CountryList.php:11 msgid "Afghanistan" msgstr "Afganistán " #: deprecated/includes/fields/country.php:13 #: deprecated/includes/fields/country.php:316 #: includes/Config/CountryList.php:12 msgid "Albania" msgstr "Albania " #: deprecated/includes/fields/country.php:14 #: deprecated/includes/fields/country.php:317 #: includes/Config/CountryList.php:13 msgid "Algeria" msgstr "Argelia " #: deprecated/includes/fields/country.php:15 #: deprecated/includes/fields/country.php:318 #: includes/Config/CountryList.php:14 msgid "American Samoa" msgstr "Samoa Americana " #: deprecated/includes/fields/country.php:16 #: deprecated/includes/fields/country.php:319 #: includes/Config/CountryList.php:15 msgid "Andorra" msgstr "Andorra " #: deprecated/includes/fields/country.php:17 #: deprecated/includes/fields/country.php:320 #: includes/Config/CountryList.php:16 msgid "Angola" msgstr "Angola " #: deprecated/includes/fields/country.php:18 #: deprecated/includes/fields/country.php:321 #: includes/Config/CountryList.php:17 msgid "Anguilla" msgstr "Anguila" #: deprecated/includes/fields/country.php:19 #: deprecated/includes/fields/country.php:322 #: includes/Config/CountryList.php:18 msgid "Antarctica" msgstr "Antártida " #: deprecated/includes/fields/country.php:20 #: deprecated/includes/fields/country.php:323 #: includes/Config/CountryList.php:19 msgid "Antigua And Barbuda" msgstr "Antigua y Barbuda " #: deprecated/includes/fields/country.php:21 #: deprecated/includes/fields/country.php:324 #: includes/Config/CountryList.php:20 msgid "Argentina" msgstr "Argentina " #: deprecated/includes/fields/country.php:22 #: deprecated/includes/fields/country.php:325 #: includes/Config/CountryList.php:21 msgid "Armenia" msgstr "Armenia " #: deprecated/includes/fields/country.php:23 #: deprecated/includes/fields/country.php:326 #: includes/Config/CountryList.php:22 msgid "Aruba" msgstr "Aruba" #: deprecated/includes/fields/country.php:24 #: deprecated/includes/fields/country.php:327 #: includes/Config/CountryList.php:23 msgid "Australia" msgstr "Australia " #: deprecated/includes/fields/country.php:25 #: deprecated/includes/fields/country.php:328 #: includes/Config/CountryList.php:24 msgid "Austria" msgstr "Austria" #: deprecated/includes/fields/country.php:26 #: deprecated/includes/fields/country.php:329 #: includes/Config/CountryList.php:25 msgid "Azerbaijan" msgstr "Azerbaiyán " #: deprecated/includes/fields/country.php:27 #: deprecated/includes/fields/country.php:330 #: includes/Config/CountryList.php:26 msgid "Bahamas" msgstr "Bahamas" #: deprecated/includes/fields/country.php:28 #: deprecated/includes/fields/country.php:331 #: includes/Config/CountryList.php:27 msgid "Bahrain" msgstr "Bahrein " #: deprecated/includes/fields/country.php:29 #: deprecated/includes/fields/country.php:332 #: includes/Config/CountryList.php:28 msgid "Bangladesh" msgstr "Bangladesh" #: deprecated/includes/fields/country.php:30 #: deprecated/includes/fields/country.php:333 #: includes/Config/CountryList.php:29 msgid "Barbados" msgstr "Barbados" #: deprecated/includes/fields/country.php:31 #: deprecated/includes/fields/country.php:334 #: includes/Config/CountryList.php:30 msgid "Belarus" msgstr "Belarús " #: deprecated/includes/fields/country.php:32 #: deprecated/includes/fields/country.php:335 #: includes/Config/CountryList.php:31 msgid "Belgium" msgstr "Bélgica " #: deprecated/includes/fields/country.php:33 #: deprecated/includes/fields/country.php:336 #: includes/Config/CountryList.php:32 msgid "Belize" msgstr "Belice" #: deprecated/includes/fields/country.php:34 #: deprecated/includes/fields/country.php:337 #: includes/Config/CountryList.php:33 msgid "Benin" msgstr "Benin" #: deprecated/includes/fields/country.php:35 #: deprecated/includes/fields/country.php:338 #: includes/Config/CountryList.php:34 msgid "Bermuda" msgstr "Bermudas" #: deprecated/includes/fields/country.php:36 #: deprecated/includes/fields/country.php:339 #: includes/Config/CountryList.php:35 msgid "Bhutan" msgstr "Bután " #: deprecated/includes/fields/country.php:37 #: deprecated/includes/fields/country.php:340 #: includes/Config/CountryList.php:36 msgid "Bolivia" msgstr "Bolivia" #: deprecated/includes/fields/country.php:38 #: deprecated/includes/fields/country.php:341 #: includes/Config/CountryList.php:37 msgid "Bosnia And Herzegowina" msgstr "Bosnia y Herzegovina " #: deprecated/includes/fields/country.php:39 #: deprecated/includes/fields/country.php:342 #: includes/Config/CountryList.php:38 msgid "Botswana" msgstr "Botswana" #: deprecated/includes/fields/country.php:40 #: deprecated/includes/fields/country.php:343 #: includes/Config/CountryList.php:39 msgid "Bouvet Island" msgstr "Isla Bouvet " #: deprecated/includes/fields/country.php:41 #: deprecated/includes/fields/country.php:344 #: includes/Config/CountryList.php:40 msgid "Brazil" msgstr "Brasil" #: deprecated/includes/fields/country.php:42 #: deprecated/includes/fields/country.php:345 #: includes/Config/CountryList.php:41 msgid "British Indian Ocean Territory" msgstr "Territorio Británico del Océano Índico " #: deprecated/includes/fields/country.php:43 #: deprecated/includes/fields/country.php:346 #: includes/Config/CountryList.php:42 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" #: deprecated/includes/fields/country.php:44 #: deprecated/includes/fields/country.php:347 #: includes/Config/CountryList.php:43 msgid "Bulgaria" msgstr "Bulgaria" #: deprecated/includes/fields/country.php:45 #: deprecated/includes/fields/country.php:348 #: includes/Config/CountryList.php:44 msgid "Burkina Faso" msgstr "Burkina Faso" #: deprecated/includes/fields/country.php:46 #: deprecated/includes/fields/country.php:349 #: includes/Config/CountryList.php:45 msgid "Burundi" msgstr "Burundi" #: deprecated/includes/fields/country.php:47 #: deprecated/includes/fields/country.php:350 #: includes/Config/CountryList.php:46 msgid "Cambodia" msgstr "Camboya " #: deprecated/includes/fields/country.php:48 #: deprecated/includes/fields/country.php:351 #: includes/Config/CountryList.php:47 msgid "Cameroon" msgstr "Camerún " #: deprecated/includes/fields/country.php:49 #: deprecated/includes/fields/country.php:352 #: includes/Config/CountryList.php:48 msgid "Canada" msgstr "Canadá " #: deprecated/includes/fields/country.php:50 #: deprecated/includes/fields/country.php:353 #: includes/Config/CountryList.php:49 msgid "Cape Verde" msgstr "Cabo Verde" #: deprecated/includes/fields/country.php:51 #: deprecated/includes/fields/country.php:354 #: includes/Config/CountryList.php:50 msgid "Cayman Islands" msgstr "Islas Caimán " #: deprecated/includes/fields/country.php:52 #: deprecated/includes/fields/country.php:355 #: includes/Config/CountryList.php:51 msgid "Central African Republic" msgstr "República Centroafricana " #: deprecated/includes/fields/country.php:53 #: deprecated/includes/fields/country.php:356 #: includes/Config/CountryList.php:52 msgid "Chad" msgstr "Chad" #: deprecated/includes/fields/country.php:54 #: deprecated/includes/fields/country.php:357 #: includes/Config/CountryList.php:53 msgid "Chile" msgstr "Chile" #: deprecated/includes/fields/country.php:55 #: deprecated/includes/fields/country.php:358 #: includes/Config/CountryList.php:54 msgid "China" msgstr "China" #: deprecated/includes/fields/country.php:56 #: deprecated/includes/fields/country.php:359 #: includes/Config/CountryList.php:55 msgid "Christmas Island" msgstr "La Isla de Navidad" #: deprecated/includes/fields/country.php:57 #: deprecated/includes/fields/country.php:360 #: includes/Config/CountryList.php:56 msgid "Cocos (Keeling) Islands" msgstr "Islas Cocos ( Keeling) " #: deprecated/includes/fields/country.php:58 #: deprecated/includes/fields/country.php:361 #: includes/Config/CountryList.php:57 msgid "Colombia" msgstr "Colombia" #: deprecated/includes/fields/country.php:59 #: deprecated/includes/fields/country.php:362 #: includes/Config/CountryList.php:58 msgid "Comoros" msgstr "Comoras" #: deprecated/includes/fields/country.php:60 #: deprecated/includes/fields/country.php:363 #: includes/Config/CountryList.php:59 msgid "Congo" msgstr "Congo" #: deprecated/includes/fields/country.php:61 #: deprecated/includes/fields/country.php:364 #: includes/Config/CountryList.php:60 msgid "Congo, The Democratic Republic Of The" msgstr "La República Democrática del Congo " #: deprecated/includes/fields/country.php:62 #: deprecated/includes/fields/country.php:365 #: includes/Config/CountryList.php:61 msgid "Cook Islands" msgstr "Islas Cook" #: deprecated/includes/fields/country.php:63 #: deprecated/includes/fields/country.php:366 #: includes/Config/CountryList.php:62 msgid "Costa Rica" msgstr "Costa Rica" #: deprecated/includes/fields/country.php:64 #: deprecated/includes/fields/country.php:367 #: includes/Config/CountryList.php:63 msgid "Cote D'Ivoire" msgstr "Costa de Marfil " #: deprecated/includes/fields/country.php:65 #: deprecated/includes/fields/country.php:368 #: includes/Config/CountryList.php:64 msgid "Croatia (Local Name: Hrvatska)" msgstr "Croacia (Nombre Local: Hrvatska)" #: deprecated/includes/fields/country.php:66 #: deprecated/includes/fields/country.php:369 #: includes/Config/CountryList.php:65 msgid "Cuba" msgstr "Cuba" #: deprecated/includes/fields/country.php:67 #: deprecated/includes/fields/country.php:370 #: includes/Config/CountryList.php:66 msgid "Cyprus" msgstr "Cyprus" #: deprecated/includes/fields/country.php:68 #: deprecated/includes/fields/country.php:371 #: includes/Config/CountryList.php:67 msgid "Czech Republic" msgstr "República Checa " #: deprecated/includes/fields/country.php:69 #: deprecated/includes/fields/country.php:372 #: includes/Config/CountryList.php:68 msgid "Denmark" msgstr "Dinamarca" #: deprecated/includes/fields/country.php:70 #: deprecated/includes/fields/country.php:373 #: includes/Config/CountryList.php:69 msgid "Djibouti" msgstr "Djibouti" #: deprecated/includes/fields/country.php:71 #: deprecated/includes/fields/country.php:374 #: includes/Config/CountryList.php:70 msgid "Dominica" msgstr "Dominica" #: deprecated/includes/fields/country.php:72 #: deprecated/includes/fields/country.php:375 #: includes/Config/CountryList.php:71 msgid "Dominican Republic" msgstr "República Dominicana" #: deprecated/includes/fields/country.php:73 #: deprecated/includes/fields/country.php:376 #: includes/Config/CountryList.php:72 msgid "Timor-Leste (East Timor)" msgstr "Timor-Leste (Timor Oriental)" #: deprecated/includes/fields/country.php:74 #: deprecated/includes/fields/country.php:377 #: includes/Config/CountryList.php:73 msgid "Ecuador" msgstr "Ecuador" #: deprecated/includes/fields/country.php:75 #: deprecated/includes/fields/country.php:378 #: includes/Config/CountryList.php:74 msgid "Egypt" msgstr "Egipcia" #: deprecated/includes/fields/country.php:76 #: deprecated/includes/fields/country.php:379 #: includes/Config/CountryList.php:75 msgid "El Salvador" msgstr "El Salvador" #: deprecated/includes/fields/country.php:77 #: deprecated/includes/fields/country.php:380 #: includes/Config/CountryList.php:76 msgid "Equatorial Guinea" msgstr "Guinea Ecuatorial" #: deprecated/includes/fields/country.php:78 #: deprecated/includes/fields/country.php:381 #: includes/Config/CountryList.php:77 msgid "Eritrea" msgstr "Eritrea" #: deprecated/includes/fields/country.php:79 #: deprecated/includes/fields/country.php:382 #: includes/Config/CountryList.php:78 msgid "Estonia" msgstr "Estonia" #: deprecated/includes/fields/country.php:80 #: deprecated/includes/fields/country.php:383 #: includes/Config/CountryList.php:79 msgid "Ethiopia" msgstr "Etiopía " #: deprecated/includes/fields/country.php:81 #: deprecated/includes/fields/country.php:384 #: includes/Config/CountryList.php:80 msgid "Falkland Islands (Malvinas)" msgstr "Islas Malvinas ( Falkland) " #: deprecated/includes/fields/country.php:82 #: deprecated/includes/fields/country.php:385 #: includes/Config/CountryList.php:81 msgid "Faroe Islands" msgstr "Islas Feroe " #: deprecated/includes/fields/country.php:83 #: deprecated/includes/fields/country.php:386 #: includes/Config/CountryList.php:82 msgid "Fiji" msgstr "Fiji" #: deprecated/includes/fields/country.php:84 #: deprecated/includes/fields/country.php:387 #: includes/Config/CountryList.php:83 msgid "Finland" msgstr "Finlandia" #: deprecated/includes/fields/country.php:85 #: deprecated/includes/fields/country.php:388 #: includes/Config/CountryList.php:84 msgid "France" msgstr "Francia" #: deprecated/includes/fields/country.php:86 #: deprecated/includes/fields/country.php:389 #: includes/Config/CountryList.php:85 msgid "France, Metropolitan" msgstr "Francia, Metropolitana " #: deprecated/includes/fields/country.php:87 #: deprecated/includes/fields/country.php:390 #: includes/Config/CountryList.php:86 msgid "French Guiana" msgstr "Guayana Francés" #: deprecated/includes/fields/country.php:88 #: deprecated/includes/fields/country.php:391 #: includes/Config/CountryList.php:87 msgid "French Polynesia" msgstr "Polinesia Francés" #: deprecated/includes/fields/country.php:89 #: deprecated/includes/fields/country.php:392 #: includes/Config/CountryList.php:88 msgid "French Southern Territories" msgstr "Territorios Franceses del Sur " #: deprecated/includes/fields/country.php:90 #: deprecated/includes/fields/country.php:393 #: includes/Config/CountryList.php:89 msgid "Gabon" msgstr "Gabón " #: deprecated/includes/fields/country.php:91 #: deprecated/includes/fields/country.php:394 #: includes/Config/CountryList.php:90 msgid "Gambia" msgstr "Gambia" #: deprecated/includes/fields/country.php:92 #: deprecated/includes/fields/country.php:395 #: includes/Config/CountryList.php:91 msgid "Georgia" msgstr "Georgia" #: deprecated/includes/fields/country.php:93 #: deprecated/includes/fields/country.php:396 #: includes/Config/CountryList.php:92 msgid "Germany" msgstr "Alemania" #: deprecated/includes/fields/country.php:94 #: deprecated/includes/fields/country.php:397 #: includes/Config/CountryList.php:93 msgid "Ghana" msgstr "Ghana" #: deprecated/includes/fields/country.php:95 #: deprecated/includes/fields/country.php:398 #: includes/Config/CountryList.php:94 msgid "Gibraltar" msgstr "Gibraltar" #: deprecated/includes/fields/country.php:96 #: deprecated/includes/fields/country.php:399 #: includes/Config/CountryList.php:95 msgid "Greece" msgstr "Grecia" #: deprecated/includes/fields/country.php:97 #: deprecated/includes/fields/country.php:400 #: includes/Config/CountryList.php:96 msgid "Greenland" msgstr "Groenlandia " #: deprecated/includes/fields/country.php:98 #: deprecated/includes/fields/country.php:401 #: includes/Config/CountryList.php:97 msgid "Grenada" msgstr "Granada" #: deprecated/includes/fields/country.php:99 #: deprecated/includes/fields/country.php:402 #: includes/Config/CountryList.php:98 msgid "Guadeloupe" msgstr "Guadalupe" #: deprecated/includes/fields/country.php:100 #: deprecated/includes/fields/country.php:403 #: includes/Config/CountryList.php:99 msgid "Guam" msgstr "Guam" #: deprecated/includes/fields/country.php:101 #: deprecated/includes/fields/country.php:404 #: includes/Config/CountryList.php:100 msgid "Guatemala" msgstr "Guatemala" #: deprecated/includes/fields/country.php:102 #: deprecated/includes/fields/country.php:405 #: includes/Config/CountryList.php:101 msgid "Guinea" msgstr "Guinea" #: deprecated/includes/fields/country.php:103 #: deprecated/includes/fields/country.php:406 #: includes/Config/CountryList.php:102 msgid "Guinea-Bissau" msgstr "Guinea-Bissau " #: deprecated/includes/fields/country.php:104 #: deprecated/includes/fields/country.php:407 #: includes/Config/CountryList.php:103 msgid "Guyana" msgstr "Guayana" #: deprecated/includes/fields/country.php:105 #: deprecated/includes/fields/country.php:408 #: includes/Config/CountryList.php:104 msgid "Haiti" msgstr "Haití " #: deprecated/includes/fields/country.php:106 #: deprecated/includes/fields/country.php:409 #: includes/Config/CountryList.php:105 msgid "Heard And Mc Donald Islands" msgstr "Islas Heard y Mc Donald" #: deprecated/includes/fields/country.php:107 #: deprecated/includes/fields/country.php:410 #: includes/Config/CountryList.php:106 msgid "Holy See (Vatican City State)" msgstr "Santa Sede (Ciudad del Vaticano)" #: deprecated/includes/fields/country.php:108 #: deprecated/includes/fields/country.php:411 #: includes/Config/CountryList.php:107 msgid "Honduras" msgstr "Honduras" #: deprecated/includes/fields/country.php:109 #: deprecated/includes/fields/country.php:412 #: includes/Config/CountryList.php:108 msgid "Hong Kong" msgstr "Hong Kong" #: deprecated/includes/fields/country.php:110 #: deprecated/includes/fields/country.php:413 #: includes/Config/CountryList.php:109 msgid "Hungary" msgstr "Hungría" #: deprecated/includes/fields/country.php:111 #: deprecated/includes/fields/country.php:414 #: includes/Config/CountryList.php:110 msgid "Iceland" msgstr "Islandia " #: deprecated/includes/fields/country.php:112 #: deprecated/includes/fields/country.php:415 #: includes/Config/CountryList.php:111 msgid "India" msgstr "India" #: deprecated/includes/fields/country.php:113 #: deprecated/includes/fields/country.php:416 #: includes/Config/CountryList.php:112 msgid "Indonesia" msgstr "Indonesia" #: deprecated/includes/fields/country.php:114 #: deprecated/includes/fields/country.php:417 #: includes/Config/CountryList.php:113 msgid "Iran (Islamic Republic Of)" msgstr "Irán ( República Islámica del) " #: deprecated/includes/fields/country.php:115 #: deprecated/includes/fields/country.php:418 #: includes/Config/CountryList.php:114 msgid "Iraq" msgstr "Irak" #: deprecated/includes/fields/country.php:116 #: deprecated/includes/fields/country.php:419 #: includes/Config/CountryList.php:115 msgid "Ireland" msgstr "Irlanda" #: deprecated/includes/fields/country.php:117 #: deprecated/includes/fields/country.php:420 #: includes/Config/CountryList.php:116 msgid "Israel" msgstr "Israel" #: deprecated/includes/fields/country.php:118 #: deprecated/includes/fields/country.php:421 #: includes/Config/CountryList.php:117 msgid "Italy" msgstr "Italia" #: deprecated/includes/fields/country.php:119 #: deprecated/includes/fields/country.php:422 #: includes/Config/CountryList.php:118 msgid "Jamaica" msgstr "Jamaica" #: deprecated/includes/fields/country.php:120 #: deprecated/includes/fields/country.php:423 #: includes/Config/CountryList.php:119 msgid "Japan" msgstr "Japón " #: deprecated/includes/fields/country.php:121 #: deprecated/includes/fields/country.php:424 #: includes/Config/CountryList.php:120 msgid "Jordan" msgstr "Jordania" #: deprecated/includes/fields/country.php:122 #: deprecated/includes/fields/country.php:425 #: includes/Config/CountryList.php:121 msgid "Kazakhstan" msgstr "Kazajstán " #: deprecated/includes/fields/country.php:123 #: deprecated/includes/fields/country.php:426 #: includes/Config/CountryList.php:122 msgid "Kenya" msgstr "Kenia" #: deprecated/includes/fields/country.php:124 #: deprecated/includes/fields/country.php:427 #: includes/Config/CountryList.php:123 msgid "Kiribati" msgstr "Kiribati" #: deprecated/includes/fields/country.php:125 #: deprecated/includes/fields/country.php:428 #: includes/Config/CountryList.php:124 msgid "Korea, Democratic People's Republic Of" msgstr "República Popular Democrática de Corea " #: deprecated/includes/fields/country.php:126 #: deprecated/includes/fields/country.php:429 #: includes/Config/CountryList.php:125 msgid "Korea, Republic Of" msgstr "República de Corea " #: deprecated/includes/fields/country.php:127 #: deprecated/includes/fields/country.php:430 #: includes/Config/CountryList.php:126 msgid "Kuwait" msgstr "Kuwait " #: deprecated/includes/fields/country.php:128 #: deprecated/includes/fields/country.php:431 #: includes/Config/CountryList.php:127 msgid "Kyrgyzstan" msgstr "Kirguistán " #: deprecated/includes/fields/country.php:129 #: deprecated/includes/fields/country.php:432 #: includes/Config/CountryList.php:128 msgid "Lao People's Democratic Republic" msgstr "República Democrática Popular Lao" #: deprecated/includes/fields/country.php:130 #: deprecated/includes/fields/country.php:433 #: includes/Config/CountryList.php:129 msgid "Latvia" msgstr "Letonia " #: deprecated/includes/fields/country.php:131 #: deprecated/includes/fields/country.php:434 #: includes/Config/CountryList.php:130 msgid "Lebanon" msgstr "Líbano " #: deprecated/includes/fields/country.php:132 #: deprecated/includes/fields/country.php:435 #: includes/Config/CountryList.php:131 msgid "Lesotho" msgstr "Lesoto" #: deprecated/includes/fields/country.php:133 #: deprecated/includes/fields/country.php:436 #: includes/Config/CountryList.php:132 msgid "Liberia" msgstr "Liberia" #: deprecated/includes/fields/country.php:134 #: deprecated/includes/fields/country.php:437 #: includes/Config/CountryList.php:133 msgid "Libyan Arab Jamahiriya" msgstr "Jamahiriya Árabe Libia " #: deprecated/includes/fields/country.php:135 #: deprecated/includes/fields/country.php:438 #: includes/Config/CountryList.php:134 msgid "Liechtenstein" msgstr "Liechtenstein " #: deprecated/includes/fields/country.php:136 #: deprecated/includes/fields/country.php:439 #: includes/Config/CountryList.php:135 msgid "Lithuania" msgstr "Lituania " #: deprecated/includes/fields/country.php:137 #: deprecated/includes/fields/country.php:440 #: includes/Config/CountryList.php:136 msgid "Luxembourg" msgstr "Luxemburgo " #: deprecated/includes/fields/country.php:138 #: deprecated/includes/fields/country.php:441 #: includes/Config/CountryList.php:137 msgid "Macau" msgstr "Macau" #: deprecated/includes/fields/country.php:139 #: deprecated/includes/fields/country.php:442 #: includes/Config/CountryList.php:138 msgid "Macedonia, Former Yugoslav Republic Of" msgstr "Antigua República Yugoslava de Macedonia " #: deprecated/includes/fields/country.php:140 #: deprecated/includes/fields/country.php:443 #: includes/Config/CountryList.php:139 msgid "Madagascar" msgstr "Madagascar" #: deprecated/includes/fields/country.php:141 #: deprecated/includes/fields/country.php:444 #: includes/Config/CountryList.php:140 msgid "Malawi" msgstr "Malawi" #: deprecated/includes/fields/country.php:142 #: deprecated/includes/fields/country.php:445 #: includes/Config/CountryList.php:141 msgid "Malaysia" msgstr "Malaysia" #: deprecated/includes/fields/country.php:143 #: deprecated/includes/fields/country.php:446 #: includes/Config/CountryList.php:142 msgid "Maldives" msgstr "Maldivas" #: deprecated/includes/fields/country.php:144 #: deprecated/includes/fields/country.php:447 #: includes/Config/CountryList.php:143 msgid "Mali" msgstr "Malí " #: deprecated/includes/fields/country.php:145 #: deprecated/includes/fields/country.php:448 #: includes/Config/CountryList.php:144 msgid "Malta" msgstr "Malta" #: deprecated/includes/fields/country.php:146 #: deprecated/includes/fields/country.php:449 #: includes/Config/CountryList.php:145 msgid "Marshall Islands" msgstr "Islas Marshall" #: deprecated/includes/fields/country.php:147 #: deprecated/includes/fields/country.php:450 #: includes/Config/CountryList.php:146 msgid "Martinique" msgstr "Martinica " #: deprecated/includes/fields/country.php:148 #: deprecated/includes/fields/country.php:451 #: includes/Config/CountryList.php:147 msgid "Mauritania" msgstr "Mauritania " #: deprecated/includes/fields/country.php:149 #: deprecated/includes/fields/country.php:452 #: includes/Config/CountryList.php:148 msgid "Mauritius" msgstr "Mauricio " #: deprecated/includes/fields/country.php:150 #: deprecated/includes/fields/country.php:453 #: includes/Config/CountryList.php:149 msgid "Mayotte" msgstr "Mayotte " #: deprecated/includes/fields/country.php:151 #: deprecated/includes/fields/country.php:454 #: includes/Config/CountryList.php:150 msgid "Mexico" msgstr "México " #: deprecated/includes/fields/country.php:152 #: deprecated/includes/fields/country.php:455 #: includes/Config/CountryList.php:151 msgid "Micronesia, Federated States Of" msgstr "Estados Federados de Micronesia " #: deprecated/includes/fields/country.php:153 #: deprecated/includes/fields/country.php:456 #: includes/Config/CountryList.php:152 msgid "Moldova, Republic Of" msgstr "República de Moldova " #: deprecated/includes/fields/country.php:154 #: deprecated/includes/fields/country.php:457 #: includes/Config/CountryList.php:153 msgid "Monaco" msgstr "Mónaco " #: deprecated/includes/fields/country.php:155 #: deprecated/includes/fields/country.php:458 #: includes/Config/CountryList.php:154 msgid "Mongolia" msgstr "Mongolia" #: deprecated/includes/fields/country.php:156 #: deprecated/includes/fields/country.php:459 #: includes/Config/CountryList.php:155 msgid "Montenegro" msgstr "Montenegro" #: deprecated/includes/fields/country.php:157 #: deprecated/includes/fields/country.php:460 #: includes/Config/CountryList.php:156 msgid "Montserrat" msgstr "Montserrat " #: deprecated/includes/fields/country.php:158 #: deprecated/includes/fields/country.php:461 #: includes/Config/CountryList.php:157 msgid "Morocco" msgstr "Marruecos " #: deprecated/includes/fields/country.php:159 #: deprecated/includes/fields/country.php:462 #: includes/Config/CountryList.php:158 msgid "Mozambique" msgstr "Mozambique " #: deprecated/includes/fields/country.php:160 #: deprecated/includes/fields/country.php:463 #: includes/Config/CountryList.php:159 msgid "Myanmar" msgstr "Myanmar " #: deprecated/includes/fields/country.php:161 #: deprecated/includes/fields/country.php:464 #: includes/Config/CountryList.php:160 msgid "Namibia" msgstr "Namibia" #: deprecated/includes/fields/country.php:162 #: deprecated/includes/fields/country.php:465 #: includes/Config/CountryList.php:161 msgid "Nauru" msgstr "Nauru" #: deprecated/includes/fields/country.php:163 #: deprecated/includes/fields/country.php:466 #: includes/Config/CountryList.php:162 msgid "Nepal" msgstr "Nepal " #: deprecated/includes/fields/country.php:164 #: deprecated/includes/fields/country.php:467 #: includes/Config/CountryList.php:163 msgid "Netherlands" msgstr "Países Bajos (Holanda)" #: deprecated/includes/fields/country.php:165 #: deprecated/includes/fields/country.php:468 #: includes/Config/CountryList.php:164 msgid "Netherlands Antilles" msgstr "Antillas Holandesas " #: deprecated/includes/fields/country.php:166 #: deprecated/includes/fields/country.php:469 #: includes/Config/CountryList.php:165 msgid "New Caledonia" msgstr "Nueva Caledonia" #: deprecated/includes/fields/country.php:167 #: deprecated/includes/fields/country.php:470 #: includes/Config/CountryList.php:166 msgid "New Zealand" msgstr "Nueva Zelanda" #: deprecated/includes/fields/country.php:168 #: deprecated/includes/fields/country.php:471 #: includes/Config/CountryList.php:167 msgid "Nicaragua" msgstr "Nicaragua" #: deprecated/includes/fields/country.php:169 #: deprecated/includes/fields/country.php:472 #: includes/Config/CountryList.php:168 msgid "Niger" msgstr "Níger " #: deprecated/includes/fields/country.php:170 #: deprecated/includes/fields/country.php:473 #: includes/Config/CountryList.php:169 msgid "Nigeria" msgstr "Nigeria" #: deprecated/includes/fields/country.php:171 #: deprecated/includes/fields/country.php:474 #: includes/Config/CountryList.php:170 msgid "Niue" msgstr "Niue" #: deprecated/includes/fields/country.php:172 #: deprecated/includes/fields/country.php:475 #: includes/Config/CountryList.php:171 msgid "Norfolk Island" msgstr "Isla Norfolk " #: deprecated/includes/fields/country.php:173 #: deprecated/includes/fields/country.php:476 #: includes/Config/CountryList.php:172 msgid "Northern Mariana Islands" msgstr "Islas Marianas del Norte" #: deprecated/includes/fields/country.php:174 #: deprecated/includes/fields/country.php:477 #: includes/Config/CountryList.php:173 msgid "Norway" msgstr "Noruega" #: deprecated/includes/fields/country.php:175 #: deprecated/includes/fields/country.php:478 #: includes/Config/CountryList.php:174 msgid "Oman" msgstr "Omán " #: deprecated/includes/fields/country.php:176 #: deprecated/includes/fields/country.php:479 #: includes/Config/CountryList.php:175 msgid "Pakistan" msgstr "Pakistán " #: deprecated/includes/fields/country.php:177 #: deprecated/includes/fields/country.php:480 #: includes/Config/CountryList.php:176 msgid "Palau" msgstr "Palau" #: deprecated/includes/fields/country.php:178 #: deprecated/includes/fields/country.php:481 #: includes/Config/CountryList.php:177 msgid "Panama" msgstr "Panama" #: deprecated/includes/fields/country.php:179 #: deprecated/includes/fields/country.php:482 #: includes/Config/CountryList.php:178 msgid "Papua New Guinea" msgstr "Papúa Nueva Guinea " #: deprecated/includes/fields/country.php:180 #: deprecated/includes/fields/country.php:483 #: includes/Config/CountryList.php:179 msgid "Paraguay" msgstr "Paraguay" #: deprecated/includes/fields/country.php:181 #: deprecated/includes/fields/country.php:484 #: includes/Config/CountryList.php:180 msgid "Peru" msgstr "Perú " #: deprecated/includes/fields/country.php:182 #: deprecated/includes/fields/country.php:485 #: includes/Config/CountryList.php:181 msgid "Philippines" msgstr "Filipinas " #: deprecated/includes/fields/country.php:183 #: deprecated/includes/fields/country.php:486 #: includes/Config/CountryList.php:182 msgid "Pitcairn" msgstr "Pitcairn " #: deprecated/includes/fields/country.php:184 #: deprecated/includes/fields/country.php:487 #: includes/Config/CountryList.php:183 msgid "Poland" msgstr "Polonia" #: deprecated/includes/fields/country.php:185 #: deprecated/includes/fields/country.php:488 #: includes/Config/CountryList.php:184 msgid "Portugal" msgstr "Portugal" #: deprecated/includes/fields/country.php:186 #: deprecated/includes/fields/country.php:489 #: includes/Config/CountryList.php:185 msgid "Puerto Rico" msgstr "Puerto Rico" #: deprecated/includes/fields/country.php:187 #: deprecated/includes/fields/country.php:490 #: includes/Config/CountryList.php:186 msgid "Qatar" msgstr "Qatar" #: deprecated/includes/fields/country.php:188 #: deprecated/includes/fields/country.php:491 #: includes/Config/CountryList.php:187 msgid "Reunion" msgstr "Reunión" #: deprecated/includes/fields/country.php:189 #: deprecated/includes/fields/country.php:492 #: includes/Config/CountryList.php:188 msgid "Romania" msgstr "Rumania" #: deprecated/includes/fields/country.php:190 #: deprecated/includes/fields/country.php:493 #: includes/Config/CountryList.php:189 msgid "Russian Federation" msgstr "Federación de Rusia" #: deprecated/includes/fields/country.php:191 #: deprecated/includes/fields/country.php:494 #: includes/Config/CountryList.php:190 msgid "Rwanda" msgstr "Ruanda" #: deprecated/includes/fields/country.php:192 #: deprecated/includes/fields/country.php:495 #: includes/Config/CountryList.php:191 msgid "Saint Kitts And Nevis" msgstr "San Cristóbal y Nieves " #: deprecated/includes/fields/country.php:193 #: deprecated/includes/fields/country.php:496 #: includes/Config/CountryList.php:192 msgid "Saint Lucia" msgstr "Santa Lucía " #: deprecated/includes/fields/country.php:194 #: deprecated/includes/fields/country.php:497 #: includes/Config/CountryList.php:193 msgid "Saint Vincent And The Grenadines" msgstr "San Vicente y las Granadinas " #: deprecated/includes/fields/country.php:195 #: deprecated/includes/fields/country.php:498 #: includes/Config/CountryList.php:194 msgid "Samoa" msgstr "Samoa" #: deprecated/includes/fields/country.php:196 #: deprecated/includes/fields/country.php:499 #: includes/Config/CountryList.php:195 msgid "San Marino" msgstr "San Marino" #: deprecated/includes/fields/country.php:197 #: deprecated/includes/fields/country.php:500 #: includes/Config/CountryList.php:196 msgid "Sao Tome And Principe" msgstr "Santo Tomé y Príncipe " #: deprecated/includes/fields/country.php:198 #: deprecated/includes/fields/country.php:501 #: includes/Config/CountryList.php:197 msgid "Saudi Arabia" msgstr "Arabia Saudita " #: deprecated/includes/fields/country.php:199 #: deprecated/includes/fields/country.php:502 #: includes/Config/CountryList.php:198 msgid "Senegal" msgstr "Senegal" #: deprecated/includes/fields/country.php:200 #: deprecated/includes/fields/country.php:503 #: includes/Config/CountryList.php:199 msgid "Serbia" msgstr "Serbia" #: deprecated/includes/fields/country.php:201 #: deprecated/includes/fields/country.php:504 #: includes/Config/CountryList.php:200 msgid "Seychelles" msgstr "Seychelles " #: deprecated/includes/fields/country.php:202 #: deprecated/includes/fields/country.php:505 #: includes/Config/CountryList.php:201 msgid "Sierra Leone" msgstr "Sierra Leona " #: deprecated/includes/fields/country.php:203 #: deprecated/includes/fields/country.php:506 #: includes/Config/CountryList.php:202 msgid "Singapore" msgstr "Singapur " #: deprecated/includes/fields/country.php:204 #: deprecated/includes/fields/country.php:507 #: includes/Config/CountryList.php:203 msgid "Slovakia (Slovak Republic)" msgstr "Eslovaquia (República Eslovaca)" #: deprecated/includes/fields/country.php:205 #: deprecated/includes/fields/country.php:508 #: includes/Config/CountryList.php:204 msgid "Slovenia" msgstr "Eslovenia " #: deprecated/includes/fields/country.php:206 #: deprecated/includes/fields/country.php:509 #: includes/Config/CountryList.php:205 msgid "Solomon Islands" msgstr "Islas Salomón" #: deprecated/includes/fields/country.php:207 #: deprecated/includes/fields/country.php:510 #: includes/Config/CountryList.php:206 msgid "Somalia" msgstr "Somalia" #: deprecated/includes/fields/country.php:208 #: deprecated/includes/fields/country.php:511 #: includes/Config/CountryList.php:207 msgid "South Africa" msgstr "Sudáfrica " #: deprecated/includes/fields/country.php:209 #: deprecated/includes/fields/country.php:512 #: includes/Config/CountryList.php:208 msgid "South Georgia, South Sandwich Islands" msgstr "Georgias del Sur, Islas Sandwich del Sur" #: deprecated/includes/fields/country.php:210 #: deprecated/includes/fields/country.php:514 #: includes/Config/CountryList.php:209 msgid "Spain" msgstr "España " #: deprecated/includes/fields/country.php:211 #: deprecated/includes/fields/country.php:515 #: includes/Config/CountryList.php:210 msgid "Sri Lanka" msgstr "Sri Lanka" #: deprecated/includes/fields/country.php:212 #: deprecated/includes/fields/country.php:516 #: includes/Config/CountryList.php:211 msgid "St. Helena" msgstr "St. Helena " #: deprecated/includes/fields/country.php:213 #: deprecated/includes/fields/country.php:517 #: includes/Config/CountryList.php:212 msgid "St. Pierre And Miquelon" msgstr "San Pedro y Miquelón" #: deprecated/includes/fields/country.php:214 #: deprecated/includes/fields/country.php:518 #: includes/Config/CountryList.php:213 msgid "Sudan" msgstr "Sudán " #: deprecated/includes/fields/country.php:215 #: deprecated/includes/fields/country.php:519 #: includes/Config/CountryList.php:214 msgid "Suriname" msgstr "Suriname" #: deprecated/includes/fields/country.php:216 #: deprecated/includes/fields/country.php:520 #: includes/Config/CountryList.php:215 msgid "Svalbard And Jan Mayen Islands" msgstr "Islas Svalbard y Jan Mayen" #: deprecated/includes/fields/country.php:217 #: deprecated/includes/fields/country.php:521 #: includes/Config/CountryList.php:216 msgid "Swaziland" msgstr "Swazilandia" #: deprecated/includes/fields/country.php:218 #: deprecated/includes/fields/country.php:522 #: includes/Config/CountryList.php:217 msgid "Sweden" msgstr "Suecia" #: deprecated/includes/fields/country.php:219 #: deprecated/includes/fields/country.php:523 #: includes/Config/CountryList.php:218 msgid "Switzerland" msgstr "Suiza" #: deprecated/includes/fields/country.php:220 #: deprecated/includes/fields/country.php:524 #: includes/Config/CountryList.php:219 msgid "Syrian Arab Republic" msgstr "República Árabe Siria" #: deprecated/includes/fields/country.php:221 #: deprecated/includes/fields/country.php:525 #: includes/Config/CountryList.php:220 msgid "Taiwan" msgstr "Taiwán " #: deprecated/includes/fields/country.php:222 #: deprecated/includes/fields/country.php:526 #: includes/Config/CountryList.php:221 msgid "Tajikistan" msgstr "Tayikistán " #: deprecated/includes/fields/country.php:223 #: deprecated/includes/fields/country.php:527 #: includes/Config/CountryList.php:222 msgid "Tanzania, United Republic Of" msgstr "República Unida de Tanzania" #: deprecated/includes/fields/country.php:224 #: deprecated/includes/fields/country.php:528 #: includes/Config/CountryList.php:223 msgid "Thailand" msgstr "Tailandia " #: deprecated/includes/fields/country.php:225 #: deprecated/includes/fields/country.php:529 #: includes/Config/CountryList.php:224 msgid "Togo" msgstr "Togo" #: deprecated/includes/fields/country.php:226 #: deprecated/includes/fields/country.php:530 #: includes/Config/CountryList.php:225 msgid "Tokelau" msgstr "Tokelau " #: deprecated/includes/fields/country.php:227 #: deprecated/includes/fields/country.php:531 #: includes/Config/CountryList.php:226 msgid "Tonga" msgstr "Tonga" #: deprecated/includes/fields/country.php:228 #: deprecated/includes/fields/country.php:532 #: includes/Config/CountryList.php:227 msgid "Trinidad And Tobago" msgstr "Trinidad y Tobago " #: deprecated/includes/fields/country.php:229 #: deprecated/includes/fields/country.php:533 #: includes/Config/CountryList.php:228 msgid "Tunisia" msgstr "Túnez " #: deprecated/includes/fields/country.php:230 #: deprecated/includes/fields/country.php:534 #: includes/Config/CountryList.php:229 msgid "Turkey" msgstr "Turquía " #: deprecated/includes/fields/country.php:231 #: deprecated/includes/fields/country.php:535 #: includes/Config/CountryList.php:230 msgid "Turkmenistan" msgstr "Turkmenistán" #: deprecated/includes/fields/country.php:232 #: deprecated/includes/fields/country.php:536 #: includes/Config/CountryList.php:231 msgid "Turks And Caicos Islands" msgstr "Islas Turcas y Caicos " #: deprecated/includes/fields/country.php:233 #: deprecated/includes/fields/country.php:537 #: includes/Config/CountryList.php:232 msgid "Tuvalu" msgstr "Tuvalu" #: deprecated/includes/fields/country.php:234 #: deprecated/includes/fields/country.php:538 #: includes/Config/CountryList.php:233 msgid "Uganda" msgstr "Uganda" #: deprecated/includes/fields/country.php:235 #: deprecated/includes/fields/country.php:539 #: includes/Config/CountryList.php:234 msgid "Ukraine" msgstr "Ucrania " #: deprecated/includes/fields/country.php:236 #: deprecated/includes/fields/country.php:540 #: includes/Config/CountryList.php:235 msgid "United Arab Emirates" msgstr "Emiratos Árabes Unidos " #: deprecated/includes/fields/country.php:237 #: deprecated/includes/fields/country.php:541 #: includes/Config/CountryList.php:236 msgid "United Kingdom" msgstr "Reino Unido " #: deprecated/includes/fields/country.php:238 #: deprecated/includes/fields/country.php:542 #: includes/Config/CountryList.php:237 msgid "United States" msgstr "Estados Unidos " #: deprecated/includes/fields/country.php:239 #: deprecated/includes/fields/country.php:543 #: includes/Config/CountryList.php:238 msgid "United States Minor Outlying Islands" msgstr "Las Islas menores alejadas de los Estados Unidos " #: deprecated/includes/fields/country.php:240 #: deprecated/includes/fields/country.php:544 #: includes/Config/CountryList.php:239 msgid "Uruguay" msgstr "Uruguay" #: deprecated/includes/fields/country.php:241 #: deprecated/includes/fields/country.php:545 #: includes/Config/CountryList.php:240 msgid "Uzbekistan" msgstr "Uzbekistán " #: deprecated/includes/fields/country.php:242 #: deprecated/includes/fields/country.php:546 #: includes/Config/CountryList.php:241 msgid "Vanuatu" msgstr "Vanuatu " #: deprecated/includes/fields/country.php:243 #: deprecated/includes/fields/country.php:547 #: includes/Config/CountryList.php:242 msgid "Venezuela" msgstr "Venezuela" #: deprecated/includes/fields/country.php:244 #: deprecated/includes/fields/country.php:548 #: includes/Config/CountryList.php:243 msgid "Viet Nam" msgstr "Vietnam" #: deprecated/includes/fields/country.php:245 #: deprecated/includes/fields/country.php:549 #: includes/Config/CountryList.php:244 msgid "Virgin Islands (British)" msgstr "Islas Vírgenes (británicas)" #: deprecated/includes/fields/country.php:246 #: deprecated/includes/fields/country.php:550 #: includes/Config/CountryList.php:245 msgid "Virgin Islands (U.S.)" msgstr "Islas Vírgenes ( EE.UU. )" #: deprecated/includes/fields/country.php:247 #: deprecated/includes/fields/country.php:551 #: includes/Config/CountryList.php:246 msgid "Wallis And Futuna Islands" msgstr "Islas Wallis y Futuna " #: deprecated/includes/fields/country.php:248 #: deprecated/includes/fields/country.php:552 #: includes/Config/CountryList.php:247 msgid "Western Sahara" msgstr "Sáhara Occidental " #: deprecated/includes/fields/country.php:249 #: deprecated/includes/fields/country.php:553 #: includes/Config/CountryList.php:248 msgid "Yemen" msgstr "Yemen " #: deprecated/includes/fields/country.php:250 #: deprecated/includes/fields/country.php:554 #: includes/Config/CountryList.php:249 msgid "Yugoslavia" msgstr "Yugoslavia" #: deprecated/includes/fields/country.php:251 #: deprecated/includes/fields/country.php:555 #: includes/Config/CountryList.php:250 msgid "Zambia" msgstr "Zambia" #: deprecated/includes/fields/country.php:252 #: deprecated/includes/fields/country.php:556 #: includes/Config/CountryList.php:251 msgid "Zimbabwe" msgstr "Zimbabue " #: deprecated/includes/fields/country.php:260 #: includes/Fields/ListCountry.php:22 msgid "Country" msgstr "País" #: deprecated/includes/fields/country.php:270 msgid "Default Country" msgstr "País Predeterminado" #: deprecated/includes/fields/country.php:277 #: includes/Config/FieldSettings.php:721 msgid "Use a custom first option" msgstr "Utilice una primera opción personalizada " #: deprecated/includes/fields/country.php:283 #: includes/Config/FieldSettings.php:734 msgid "Custom first option" msgstr "Primera Opción Personalizada " #: deprecated/includes/fields/country.php:513 msgid "South Sudan" msgstr "Sudán del Sur" #: deprecated/includes/fields/credit-card.php:14 #: includes/Fields/CreditCard.php:26 msgid "Credit Card" msgstr "Tarjeta De Crédito" #: deprecated/includes/fields/credit-card.php:35 msgid "Card Number Label" msgstr "Etiqueta del Número de la Tarjeta " #: deprecated/includes/fields/credit-card.php:36 #: deprecated/includes/fields/credit-card.php:145 msgid "Card Number" msgstr "Número de la Tarjeta" #: deprecated/includes/fields/credit-card.php:43 msgid "Card Number Description" msgstr "Descripción del Número de la Tarjeta" #: deprecated/includes/fields/credit-card.php:44 #: deprecated/includes/fields/credit-card.php:146 msgid "The (typically) 16 digits on the front of your credit card." msgstr "" "Los (típicamente) 16 dígitos en la parte delantera de su tarjeta de crédito." #: deprecated/includes/fields/credit-card.php:51 msgid "Card CVC Label" msgstr "Etiqueta CVC de la Tarjeta" #: deprecated/includes/fields/credit-card.php:52 #: deprecated/includes/fields/credit-card.php:148 msgid "CVC" msgstr "CVC" #: deprecated/includes/fields/credit-card.php:59 msgid "Card CVC Description" msgstr "Descripción CVC de la Tarjeta" #: deprecated/includes/fields/credit-card.php:60 #: deprecated/includes/fields/credit-card.php:149 msgid "The 3 digit (back) or 4 digit (front) value on your card." msgstr "Los 3 dígitos (tras) o los 4 dígitos (frente) de valor en su tarjeta." #: deprecated/includes/fields/credit-card.php:67 msgid "Card Name Label" msgstr "Etiqueta de Nombre de la Tarjeta" #: deprecated/includes/fields/credit-card.php:68 #: deprecated/includes/fields/credit-card.php:151 msgid "Name on the card" msgstr "Nombre en la Tarjeta" #: deprecated/includes/fields/credit-card.php:75 msgid "Card Name Description" msgstr "Descripción del Nombre de la Tarjeta" #: deprecated/includes/fields/credit-card.php:76 #: deprecated/includes/fields/credit-card.php:152 msgid "The name printed on the front of your credit card." msgstr "El nombre impreso en la parte delantera de su tarjeta de crédito." #: deprecated/includes/fields/credit-card.php:83 msgid "Card Expiry Month Label" msgstr "Etiqueta del Mes de Caducidad de la Tarjeta" #: deprecated/includes/fields/credit-card.php:84 #: deprecated/includes/fields/credit-card.php:154 msgid "Expiration month (MM)" msgstr "Mes de Caducidad (MM)" #: deprecated/includes/fields/credit-card.php:91 msgid "Card Expiry Month Description" msgstr "Descripción del Mes de Caducidad de la Tarjeta" #: deprecated/includes/fields/credit-card.php:92 #: deprecated/includes/fields/credit-card.php:155 msgid "The month your credit card expires, typically on the front of the card." msgstr "" "El mes que vence su tarjeta, por lo general en el frente de la tarjeta." #: deprecated/includes/fields/credit-card.php:99 msgid "Card Expiry Year Label" msgstr "Etiqueta del Año de Caducidad de la Tarjeta" #: deprecated/includes/fields/credit-card.php:100 #: deprecated/includes/fields/credit-card.php:157 msgid "Expiration year (YYYY)" msgstr "Año de Caducidad (YYYY)" #: deprecated/includes/fields/credit-card.php:107 msgid "Card Expiry Year Description" msgstr "Descripción del Año de Caducidad de la Tarjeta" #: deprecated/includes/fields/credit-card.php:108 #: deprecated/includes/fields/credit-card.php:158 msgid "The year your credit card expires, typically on the front of the card." msgstr "" "El año que su tarjeta de crédito expira, típicamente en la parte frontal de " "la tarjeta." #: deprecated/includes/fields/desc.php:4 msgid "Text" msgstr "Texto" #: deprecated/includes/fields/desc.php:18 msgid "Text Element" msgstr "Elemento de Texto" #: deprecated/includes/fields/hidden.php:4 #: includes/Templates/admin-menu-forms.html.php:76 #: includes/Templates/admin-menu-forms.html.php:104 #: includes/Templates/admin-menu-forms.html.php:132 #: includes/Templates/admin-menu-forms.html.php:160 #: includes/Templates/admin-menu-forms.html.php:188 msgid "Hidden Field" msgstr "Campo Ocultado" #: deprecated/includes/fields/hidden.php:56 #: deprecated/includes/fields/number.php:73 #: deprecated/includes/fields/textbox.php:126 msgid "User ID (If logged in)" msgstr "ID de usuario (si está conectado)" #: deprecated/includes/fields/hidden.php:57 #: deprecated/includes/fields/textbox.php:127 msgid "User Firstname (If logged in)" msgstr "Nombre de usuario (si está conectado) " #: deprecated/includes/fields/hidden.php:58 #: deprecated/includes/fields/textbox.php:128 msgid "User Lastname (If logged in)" msgstr "Apellido del Usuario (si está conectado)" #: deprecated/includes/fields/hidden.php:59 #: deprecated/includes/fields/textbox.php:129 msgid "User Display Name (If logged in)" msgstr "Nombre de Visualización de Usuario (si está conectado)" #: deprecated/includes/fields/hidden.php:60 #: deprecated/includes/fields/textbox.php:130 msgid "User Email (If logged in)" msgstr "Correo electrónico del Usuario (si está conectado)" #: deprecated/includes/fields/hidden.php:61 #: deprecated/includes/fields/number.php:74 #: deprecated/includes/fields/textbox.php:131 msgid "Post / Page ID (If available)" msgstr "Puesto / ID de página (si está disponible)" #: deprecated/includes/fields/hidden.php:62 #: deprecated/includes/fields/textbox.php:132 msgid "Post / Page Title (If available)" msgstr "Puesto / Título de página (si está disponible)" #: deprecated/includes/fields/hidden.php:63 #: deprecated/includes/fields/textbox.php:133 msgid "Post / Page URL (If available)" msgstr "Puesto / URL de la página (si está disponible) " #: deprecated/includes/fields/hidden.php:64 #: deprecated/includes/fields/textbox.php:134 msgid "Today's Date" msgstr "La Fecha de Hoy" #: deprecated/includes/fields/hidden.php:66 #: deprecated/includes/fields/textbox.php:136 msgid "Querystring Variable" msgstr "Variable de cadena de consulta" #: deprecated/includes/fields/hidden.php:74 #: deprecated/includes/fields/textbox.php:145 msgid "This keyword is reserved by WordPress. Please try another." msgstr "Esta es una palabra clave reservada de WordPress. Intenta con otra." #: deprecated/includes/fields/hidden.php:94 msgid "Is this an email address?" msgstr "¿Es esta una dirección de correo electrónico?" #: deprecated/includes/fields/hidden.php:102 msgid "" "If this box is checked, Ninja Forms will validate this input as an email " "address." msgstr "" "Si se selecciona esta casilla, Ninja Forms validará esta entrada como una " "dirección de correo electrónico." #: deprecated/includes/fields/hidden.php:109 msgid "Send a copy of the form to this address?" msgstr "¿Enviar una copia del formulario a esta dirección?" #: deprecated/includes/fields/hidden.php:117 msgid "" "If this box is checked, Ninja Forms will send a copy of this form (and any " "messages attached) to this address." msgstr "" "Si se selecciona esta casilla, Ninja Forms enviará una copia de este " "formulario (y cualquier mensaje adjunta) a esta dirección." #: deprecated/includes/fields/honeypot.php:4 msgid "Honey Pot" msgstr "Honey Pot" #: deprecated/includes/fields/hr.php:4 msgid "hr" msgstr "hr " #: deprecated/includes/fields/list.php:4 includes/Database/MockData.php:152 msgid "List" msgstr "Lista" #: deprecated/includes/fields/list.php:17 #: deprecated/includes/fields/textbox.php:68 msgid "This is the user's state" msgstr "Este es el estado del usuario." #: deprecated/includes/fields/list.php:45 msgid "Selected Value" msgstr "Valor Seleccionado" #: deprecated/includes/fields/list.php:50 msgid "Add Value" msgstr "Añadir Valor" #: deprecated/includes/fields/list.php:55 msgid "Remove Value" msgstr "Eliminar Valor" #: deprecated/includes/fields/list.php:112 #: deprecated/includes/fields/list.php:591 msgid "Calc" msgstr "Calc" #: deprecated/includes/fields/list.php:134 #: includes/Templates/admin-menu-forms.html.php:67 #: includes/Templates/admin-menu-forms.html.php:95 #: includes/Templates/admin-menu-forms.html.php:123 #: includes/Templates/admin-menu-forms.html.php:151 #: includes/Templates/admin-menu-forms.html.php:179 msgid "Dropdown" msgstr "Desplegable" #: deprecated/includes/fields/list.php:135 msgid "Radio" msgstr "Radio" #: deprecated/includes/fields/list.php:136 msgid "Checkboxes" msgstr "Casillas" #: deprecated/includes/fields/list.php:137 #: includes/Fields/ListMultiSelect.php:24 msgid "Multi-Select" msgstr "Multi-Seleccionar" #: deprecated/includes/fields/list.php:140 msgid "List Type" msgstr "Tipo de Lista" #: deprecated/includes/fields/list.php:145 msgid "Multi-Select Box Size" msgstr "Tamaño de la Casilla de Multi-Seleccionar" #: deprecated/includes/fields/list.php:150 msgid "Import List Items" msgstr "Importar Lista de Artículos" #: deprecated/includes/fields/list.php:156 msgid "Show list item values" msgstr "Mostrar Valores de los Artículos de la Lista" #: deprecated/includes/fields/list.php:175 msgid "Import" msgstr "Importar" #: deprecated/includes/fields/list.php:177 msgid "To use this feature, you can paste your CSV into the textarea above." msgstr "" "Para utilizar esta función, puede pegar su CSV en el área de texto de arriba." #: deprecated/includes/fields/list.php:178 msgid "The format should look like the following:" msgstr "El formato debe ser similar al siguiente:" #: deprecated/includes/fields/list.php:181 msgid "Label,Value,Calc" msgstr "Etiqueta,Valor,Calc" #: deprecated/includes/fields/list.php:190 msgid "" "If you want to send an empty value or calc, you should use '' for those." msgstr "" "Si desea enviar un valor vacío o calc, debe utilizar ' ' para aquellos." #: deprecated/includes/fields/list.php:594 msgid "Selected" msgstr "Seleccionado" #: deprecated/includes/fields/number.php:4 includes/Database/MockData.php:625 #: includes/Fields/Number.php:28 msgid "Number" msgstr "Número" #: deprecated/includes/fields/number.php:12 msgid "Minimum Value" msgstr "Valor mínimo " #: deprecated/includes/fields/number.php:18 msgid "Maximum Value" msgstr "Valor máximo " #: deprecated/includes/fields/number.php:24 msgid "Step (amount to increment by)" msgstr "Paso (cantidad para incrementar por)" #: deprecated/includes/fields/organizer.php:6 msgid "Organizer" msgstr "Organizador" #: deprecated/includes/fields/password.php:4 includes/Fields/Password.php:22 msgid "Password" msgstr "Contraseña" #: deprecated/includes/fields/password.php:28 msgid "Use this as a registration password field" msgstr "Use esto como un campo de contraseña de registro " #: deprecated/includes/fields/password.php:30 msgid "" "If this box is checked, both password and re-password textboxes will be " "output." msgstr "" "Si se marca esta casilla, ambos los cuadros de texto contraseña y re-" "contraseña se emitirán." #: deprecated/includes/fields/password.php:36 msgid "Re-enter Password Label" msgstr "Volver a Introducir la Etiqueta de Contraseña" #: deprecated/includes/fields/password.php:38 msgid "Re-enter Password" msgstr "Escriba la Contraseña otra vez" #: deprecated/includes/fields/password.php:44 msgid "Show Password Strength Indicator" msgstr "Mostrar Indicador de la Fuerza de la Contraseña" #: deprecated/includes/fields/password.php:129 msgid "" "Hint: The password should be at least seven characters long. To make it " "stronger, use upper and lower case letters, numbers and symbols like ! \" ? " "$ % ^ & )." msgstr "" "Sugerencia: La contraseña debe tener al menos siete tipos. Para hacerlo más " "fuerte, use letras mayúsculas y minúsculas, números y símbolos como ! ? \" $" "% ^ & Amp; ) ." #: deprecated/includes/fields/password.php:147 #: includes/Fields/PasswordConfirm.php:72 msgid "Passwords do not match" msgstr "Contraseñas no son iguales" #: deprecated/includes/fields/rating.php:4 includes/Database/MockData.php:768 #: includes/Fields/StarRating.php:36 msgid "Star Rating" msgstr "Grado de la Estrella " #: deprecated/includes/fields/rating.php:13 #: includes/Config/FieldSettings.php:682 msgid "Number of stars" msgstr "Número de estrellas " #: deprecated/includes/fields/recaptcha.php:6 msgid "reCAPTCHA" msgstr "reCAPTCHA" #: deprecated/includes/fields/recaptcha.php:12 msgid "Confirm that you are not a bot" msgstr "Sirve para confirmar que no eres un bot" #: deprecated/includes/fields/recaptcha.php:87 msgid "Please complete the captcha field" msgstr "Llena el campo captcha" #: deprecated/includes/fields/recaptcha.php:98 #: includes/Fields/Recaptcha.php:63 msgid "Please make sure you have entered your Site & Secret keys correctly" msgstr "" "Asegúrate de ingresar las claves tus clases Sitio y Secreto correctamente" #: deprecated/includes/fields/recaptcha.php:100 #: includes/Fields/Recaptcha.php:65 msgid "Captcha mismatch. Please enter the correct value in captcha field" msgstr "" "El código Captcha no coincide. Ingresa el valor correcto en el campo captcha" #: deprecated/includes/fields/spam.php:4 includes/Fields/Spam.php:24 msgid "Anti-Spam" msgstr "Anti-Spam" #: deprecated/includes/fields/spam.php:29 #: deprecated/includes/fields/spam.php:65 msgid "Spam Question" msgstr "Pregunta de Spam" #: deprecated/includes/fields/spam.php:36 #: deprecated/includes/fields/spam.php:71 msgid "Spam Answer" msgstr "Respuesta de Spam" #: deprecated/includes/fields/submit.php:4 #: deprecated/includes/fields/timed-submit.php:11 #: deprecated/includes/fields/timed-submit.php:36 #: deprecated/includes/fields/timed-submit.php:81 #: includes/Database/MockData.php:165 includes/Database/MockData.php:483 #: includes/Database/MockData.php:802 includes/Fields/Submit.php:26 msgid "Submit" msgstr "Presentar" #: deprecated/includes/fields/tax.php:11 msgid "Tax" msgstr "Impuesto" #: deprecated/includes/fields/tax.php:21 msgid "Tax Percentage" msgstr "Porcentaje de Impuesto" #: deprecated/includes/fields/tax.php:23 msgid "Should be entered as a percentage. e.g. 8.25%, 4%" msgstr "Debe introducirse como un porcentaje. por ejemplo 8,25 % , 4 % " #: deprecated/includes/fields/textarea.php:4 #: includes/Database/MockData.php:382 includes/Database/MockData.php:526 #: includes/Templates/admin-menu-forms.html.php:61 #: includes/Templates/admin-menu-forms.html.php:89 #: includes/Templates/admin-menu-forms.html.php:117 #: includes/Templates/admin-menu-forms.html.php:145 #: includes/Templates/admin-menu-forms.html.php:173 msgid "Textarea" msgstr "Area de Texto" #: deprecated/includes/fields/textarea.php:18 #: includes/Config/FieldSettings.php:777 msgid "Show Rich Text Editor" msgstr "Mostrar Editor de Texto Enriquecido" #: deprecated/includes/fields/textarea.php:23 #: includes/Config/FieldSettings.php:787 msgid "Show Media Upload Button" msgstr "Mostrar Botón de Carga de Medios" #: deprecated/includes/fields/textarea.php:28 #: includes/Config/FieldSettings.php:799 msgid "Disable Rich Text Editor on Mobile" msgstr "Desactivar Editor de Texto Enriquecido para Móvil " #: deprecated/includes/fields/textbox.php:52 msgid "Validate as an email address? (Field must be required)" msgstr "" "¿Validar como una dirección de correo electrónico? (El campo debe ser " "necesario)" #: deprecated/includes/fields/textbox.php:56 #: includes/Config/FieldSettings.php:707 msgid "Disable Input" msgstr "Desactivar Entrada" #: deprecated/includes/fields/textbox.php:64 msgid "Datepicker" msgstr "Recogedor de Fecha" #: deprecated/includes/fields/textbox.php:174 msgid "Phone - (555) 555-5555" msgstr "Teléfono - (555) 555-5555" #: deprecated/includes/fields/textbox.php:176 msgid "Currency" msgstr "Moneda" #: deprecated/includes/fields/textbox.php:185 msgid "Custom Mask Definition" msgstr "Definición de Máscara Personalizada" #: deprecated/includes/fields/textbox.php:185 msgid "Help" msgstr "Ayuda" #: deprecated/includes/fields/timed-submit.php:4 msgid "Timed Submit" msgstr "Enviar Programado" #: deprecated/includes/fields/timed-submit.php:10 msgid "Submit button text after timer expires" msgstr "Presentar el texto del botón después de que expire el minutero" #: deprecated/includes/fields/timed-submit.php:18 #: deprecated/includes/fields/timed-submit.php:69 #: includes/Config/FieldSettings.php:636 msgid "Please wait %n seconds" msgstr "Por favor, espere %n segundos" #: deprecated/includes/fields/timed-submit.php:19 msgid "%n will be used to signify the number of seconds" msgstr "%n se utilizará para significar el número de segundos" #: deprecated/includes/fields/timed-submit.php:26 msgid "Number of seconds for countdown" msgstr "Número de segundos para la cuenta atrás " #: deprecated/includes/fields/timed-submit.php:27 msgid "This is how long a user must wait to submit the form" msgstr "" "Este es el tiempo que un usuario debe esperar para enviar el formulario " #: deprecated/includes/fields/timed-submit.php:102 msgid "If you are a human, please slow down." msgstr "Si usted es un ser humano, por favor, más despacio." #: deprecated/includes/fields/timed-submit.php:108 msgid "" "You need JavaScript to submit this form. Please enable it and try again." msgstr "" "Necesitas JavaScript para presentar este formulario. Por favor, activa y " "vuelve a intentarlo." #: includes/Abstracts/ActionNewsletter.php:113 msgid "js-newsletter-list-update extra" msgstr "js-newsletter-list-update extra" #: includes/Abstracts/ActionNewsletter.php:113 msgid "dashicons dashicons-update" msgstr "dashicons dashicons-update" #: includes/Abstracts/ActionNewsletter.php:142 msgid "List Field Mapping" msgstr "Mapeo del campo lista" #: includes/Abstracts/ActionNewsletter.php:150 msgid "Interest Groups" msgstr "Grupos de interés" #: includes/Abstracts/FieldOptIn.php:39 msgid "Single" msgstr "una sola" #: includes/Abstracts/FieldOptIn.php:43 msgid "Multiple" msgstr "Múltiple" #: includes/Abstracts/FieldOptIn.php:51 msgid "Lists" msgstr "Listas" #: includes/Abstracts/FieldOptIn.php:51 msgid "refresh" msgstr "Actualizar" #: includes/Abstracts/Metabox.php:25 msgid "Metabox" msgstr "Metabox" #: includes/Abstracts/SubmissionMetabox.php:21 msgid "Submission Metabox" msgstr "Envío de Metabox" #: includes/Abstracts/UserInfo.php:25 msgid "User Meta (if logged in)" msgstr "Usuario Meta (si iniciaste sesión)" #: includes/Actions/CollectPayment.php:40 msgid "Collect Payment" msgstr "Recibir pago" #: includes/Admin/AllFormsTable.php:27 msgid "No forms found." msgstr "No se ha encontrado ningun formulario." #: includes/Admin/AllFormsTable.php:70 msgid "Date Created" msgstr "Creado el" #: includes/Admin/AllFormsTable.php:94 msgid "title" msgstr "título" #: includes/Admin/AllFormsTable.php:95 msgid "updated" msgstr "actualizado" #: includes/Admin/AllFormsTable.php:232 includes/Admin/AllFormsTable.php:248 #: includes/Admin/AllFormsTable.php:267 msgid "Go get a life, script kiddies" msgstr "Intento fallido" #: includes/Admin/CPT/Submission.php:44 msgid "Parent Item:" msgstr "Elemento Padre:" #: includes/Admin/CPT/Submission.php:45 msgid "All Items" msgstr "Todos los Ítems" #: includes/Admin/CPT/Submission.php:46 msgid "Add New Item" msgstr "Añadir nuevo" #: includes/Admin/CPT/Submission.php:48 msgid "New Item" msgstr "Nuevo" #: includes/Admin/CPT/Submission.php:49 msgid "Edit Item" msgstr "Editar elemento" #: includes/Admin/CPT/Submission.php:50 msgid "Update Item" msgstr "Actualizar" #: includes/Admin/CPT/Submission.php:51 msgid "View Item" msgstr "Ver" #: includes/Admin/CPT/Submission.php:52 msgid "Search Item" msgstr "Buscar Item" #: includes/Admin/CPT/Submission.php:54 msgid "Not found in Trash" msgstr "No es troba a la paperera" #: includes/Admin/CPT/Submission.php:58 msgid "Form Submissions" msgstr "Envíos de formularios" #: includes/Admin/CPT/Submission.php:183 msgid "Submission Info" msgstr "Información del envío" #: includes/Admin/Menus/Forms.php:77 msgid "Add New Form" msgstr "Añadir nueva forma" #: includes/Admin/Menus/Forms.php:100 msgid "Form Template Import Error." msgstr "Error de importación de plantilla de formularios" #: includes/Admin/Menus/Forms.php:416 includes/MergeTags/Fields.php:13 msgid "Fields" msgstr "Campos" #: includes/Admin/Menus/ImportExport.php:37 msgid "There uploaded file is not a valid format." msgstr "El archivo cargado no tiene un formato válido." #: includes/Admin/Menus/ImportExport.php:38 msgid "Invalid Form Upload." msgstr "Carga de formulario inválido." #: includes/Admin/Menus/ImportExport.php:125 msgid "Import Forms" msgstr "Importar formularios" #: includes/Admin/Menus/ImportExport.php:132 msgid "Export Forms" msgstr "Formas de exportación" #: includes/Admin/Menus/ImportExport.php:216 msgid "Equation (Advanced)" msgstr "Ecuación (avanzado)" #: includes/Admin/Menus/ImportExport.php:219 msgid "Operations and Fields (Advanced)" msgstr "Operaciones y campos (avanzado)" #: includes/Admin/Menus/ImportExport.php:222 msgid "Auto-Total Fields" msgstr "Campos total automático" #: includes/Admin/Menus/ImportExport.php:340 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "El archivo cargado supera la directiva upload_max_filesize en php.ini." #: includes/Admin/Menus/ImportExport.php:343 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "El archivo cargado supera la directiva MAX_FILE_SIZE que se especificó en el " "formulario HTML." #: includes/Admin/Menus/ImportExport.php:346 msgid "The uploaded file was only partially uploaded." msgstr "El archivo solo se pudo cargar de forma parcial." #: includes/Admin/Menus/ImportExport.php:349 msgid "No file was uploaded." msgstr "No se cargó ningún archivo." #: includes/Admin/Menus/ImportExport.php:352 msgid "Missing a temporary folder." msgstr "Falta una carpeta temporal." #: includes/Admin/Menus/ImportExport.php:355 msgid "Failed to write file to disk." msgstr "No se pudo escribir el archivo en el disco." #: includes/Admin/Menus/ImportExport.php:358 msgid "File upload stopped by extension." msgstr "Carga de archivo detenida por extensión." #: includes/Admin/Menus/ImportExport.php:361 msgid "Unknown upload error." msgstr "Error de carga desconocido." #: includes/Admin/Menus/ImportExport.php:366 msgid "File Upload Error" msgstr "Error al cargar el archivo" #: includes/Admin/Menus/Licenses.php:46 msgid "Add-On Licenses" msgstr "Licencias de complementos" #: includes/Admin/Menus/MockData.php:33 msgid "Migrations and Mock Data complete. " msgstr "Migraciones y datos falsos completos. " #: includes/Admin/Menus/MockData.php:34 msgid "View Forms" msgstr "Ver formularios" #: includes/Admin/Menus/Settings.php:39 msgid "Save Settings" msgstr "Guardar configuración" #: includes/Admin/Menus/Submissions.php:252 msgid "button-secondary nf-download-all" msgstr "button-secondary nf-download-all" #: includes/Admin/Menus/SystemStatus.php:131 msgid "Server IP Address" msgstr "Dirección IP del servidor" #: includes/Admin/Menus/SystemStatus.php:132 msgid "Host Name" msgstr "Nombre del host" #: includes/Admin/Menus/SystemStatus.php:134 msgid "smtp_port" msgstr "smtp_port" #: includes/Admin/Metaboxes/AppendAForm.php:11 msgid "Append a Ninja Forms" msgstr "Anexar un Ninja Forms" #: includes/AJAX/Controllers/Form.php:16 msgid "Form Not Found" msgstr "No se encontró el formulario" #: includes/AJAX/Controllers/SavedFields.php:17 #: includes/AJAX/Controllers/SavedFields.php:38 #: includes/AJAX/Controllers/SavedFields.php:50 msgid "Field Not Found" msgstr "No se encontró el campo" #: includes/AJAX/Controllers/Submission.php:44 msgid "An unexpected error occurred." msgstr "Ocurrió un error inesperado." #: includes/AJAX/Controllers/Submission.php:62 msgid "Preview does not exist." msgstr "Esta vista previa no existe." #: includes/Config/ActionCollectPaymentSettings.php:14 msgid "Payment Gateways" msgstr "Pasarela de Pago" #: includes/Config/ActionCollectPaymentSettings.php:35 msgid "Payment Total" msgstr "Pago total" #: includes/Config/ActionCustomSettings.php:13 msgid "Hook Tag" msgstr "Etiqueta de gancho" #: includes/Config/ActionEmailSettings.php:20 msgid "Email address or search for a field" msgstr "Dirección de correo electrónico o buscar un campo" #: includes/Config/ActionEmailSettings.php:35 msgid "Subject Text or seach for a field" msgstr "Texto del asunto o buscar un campo" #: includes/Config/ActionEmailSettings.php:158 msgid "Attach CSV" msgstr "Adjuntar CSV" #: includes/Config/ActionRedirectSettings.php:13 msgid "URL" msgstr "URL" #: includes/Config/AdminNotices.php:16 msgid "one_week_support" msgstr "one_week_support" #: includes/Config/Example.php:21 msgid "Label Here" msgstr "Etiqueta aquí" #: includes/Config/Example.php:25 msgid "Help Text Here" msgstr "Texto de ayuda aquí" #: includes/Config/FieldSettings.php:25 msgid "" "Enter the label of the form field. This is how users will identify " "individual fields." msgstr "" "Ingresa la etiqueta del campo del formulario. Así es cómo los usuarios " "identificarán los campos individuales." #: includes/Config/FieldSettings.php:38 msgid "Form Default" msgstr "Formulario predeterminado" #: includes/Config/FieldSettings.php:58 includes/Config/FieldSettings.php:923 #: includes/Config/FormDisplaySettings.php:89 #: includes/Database/MockData.php:376 includes/Database/MockData.php:633 #: includes/Fields/Hidden.php:38 msgid "Hidden" msgstr "Oculta" #: includes/Config/FieldSettings.php:65 msgid "Select the position of your label relative to the field element itself." msgstr "" "Selecciona la posición de tu etiqueta relativa al elemento del campo en sí." #: includes/Config/FieldSettings.php:76 msgid "Required Field" msgstr "Campo obligatorio" #: includes/Config/FieldSettings.php:80 msgid "" "Ensure that this field is completed before allowing the form to be submitted." msgstr "" "Asegúrate de que este campo esté completo antes de permitir que se envíe el " "formulario." #: includes/Config/FieldSettings.php:90 msgid "Number Options" msgstr "Opciones numéricas" #: includes/Config/FieldSettings.php:98 msgid "Min" msgstr "Mín" #: includes/Config/FieldSettings.php:105 msgid "Max" msgstr "Máx" #: includes/Config/FieldSettings.php:113 msgid "Step" msgstr "Paso" #: includes/Config/FieldSettings.php:153 msgid "Options" msgstr "Opciónes" #: includes/Config/FieldSettings.php:158 includes/Config/FieldSettings.php:954 #: includes/Database/MockData.php:127 msgid "One" msgstr "Uno" #: includes/Config/FieldSettings.php:158 msgid "one" msgstr "uno" #: includes/Config/FieldSettings.php:159 includes/Config/FieldSettings.php:955 #: includes/Database/MockData.php:134 msgid "Two" msgstr "Dos" #: includes/Config/FieldSettings.php:159 msgid "two" msgstr "dos" #: includes/Config/FieldSettings.php:160 includes/Config/FieldSettings.php:956 #: includes/Database/MockData.php:141 msgid "Three" msgstr "Tres" #: includes/Config/FieldSettings.php:160 msgid "three" msgstr "tres" #: includes/Config/FieldSettings.php:173 msgid "Calc Value" msgstr "Valor calc" #: includes/Config/FieldSettings.php:203 msgid "Restricts the kind of input your users can put into this field." msgstr "" "Restringe el tipo de entrada que tus usuarios pueden ingresar en este campo." #: includes/Config/FieldSettings.php:206 msgid "none" msgstr "nada" #: includes/Config/FieldSettings.php:210 msgid "US Phone" msgstr "Teléfono de EE. UU." #: includes/Config/FieldSettings.php:219 msgid "custom" msgstr "personalizado" #: includes/Config/FieldSettings.php:231 msgid "Custom Mask" msgstr "Máscara personalizada" #: includes/Config/FieldSettings.php:240 msgid "" "
      \n" "
    • a - Represents an alpha character (A-Z,a-z) " "- Only allows letters to be entered.
    • \n" "
    • 9 - Represents a numeric character (0-9) - " "Only allows numbers to be entered.
    • \n" "
    • * - Represents an alphanumeric character (A-" "Z,a-z,0-9) - This allows both numbers and\n" " letters to be entered.
    • \n" "
    " msgstr "" "
      \n" "
    • a - Representa un carácter alfa (A-Z,a-z) - " "Solo permite ingresar letras.
    • \n" "
    • 9 - Representa un carácter numérico (0-9) - " "Solo permite ingresar números.
    • \n" "
    • * - Representa un carácter alfanumérico (A-Z," "a-z,0-9) - Esto permite ingresar\n" " tanto números como letras.
    • \n" "
    " #: includes/Config/FieldSettings.php:255 msgid "Limit Input to this Number" msgstr "Límite de entrada para este número" #: includes/Config/FieldSettings.php:271 msgid "Character(s)" msgstr "Carácter(es)" #: includes/Config/FieldSettings.php:275 msgid "Word(s)" msgstr "Palabra(s)" #: includes/Config/FieldSettings.php:285 msgid "Text to Appear After Counter" msgstr "Texto que se muestra después del contador" #: includes/Config/FieldSettings.php:286 includes/Config/FieldSettings.php:288 msgid "Character(s) left" msgstr "Caracteres restantes" #: includes/Config/FieldSettings.php:315 msgid "" "Enter text you would like displayed in the field before a user enters any " "data." msgstr "" "Ingresa el texto que deseas mostrar en el campo antes de que un usuario " "ingrese datos." #: includes/Config/FieldSettings.php:344 #: includes/Config/FormDisplaySettings.php:103 msgid "Custom Class Names" msgstr "Nombres de clase personalizados" #: includes/Config/FieldSettings.php:352 msgid "Container" msgstr "Contenedor" #: includes/Config/FieldSettings.php:356 includes/Fields/Recaptcha.php:35 msgid "Adds an extra class to your field wrapper." msgstr "Agrega una clase adicional a tu capa de campo." #: includes/Config/FieldSettings.php:361 #: includes/Config/FormDisplaySettings.php:119 msgid "Element" msgstr "Elemento" #: includes/Config/FieldSettings.php:366 msgid "Adds an extra class to your field element." msgstr "Agrega una clase adicional a tu elemento del campo." #: includes/Config/FieldSettings.php:383 msgid "DD/MM/YYYY" msgstr "DD/MM/YYYY" #: includes/Config/FieldSettings.php:387 msgid "DD-MM-YYYY" msgstr "DD-MM-AAAA" #: includes/Config/FieldSettings.php:391 msgid "MM/DD/YYYY" msgstr "DD/MM/AAAA" #: includes/Config/FieldSettings.php:395 msgid "MM-DD-YYYY" msgstr "MM-DD-AAAA" #: includes/Config/FieldSettings.php:399 msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: includes/Config/FieldSettings.php:403 msgid "YYYY/MM/DD" msgstr "YYYY/MM/DD" #: includes/Config/FieldSettings.php:407 msgid "Friday, November 18, 2019" msgstr "Viernes, 18 de noviembre de 2019" #: includes/Config/FieldSettings.php:421 msgid "Default To Current Date" msgstr "Valor predeterminado para la fecha actual" #: includes/Config/FieldSettings.php:433 msgid "Number of seconds for timed submit." msgstr "Cantidad de segundos para el envío programado." #: includes/Config/FieldSettings.php:447 msgid "Field Key" msgstr "Clave del Campo" #: includes/Config/FieldSettings.php:451 msgid "" "Creates a unique key to identify and target your field for custom " "development." msgstr "" "Crea una clave única para identificar y orientar tu campo para desarrollo " "personalizado." #: includes/Config/FieldSettings.php:465 msgid "Label used when viewing and exporting submissions." msgstr "Etiqueta usada al ver y exportar envíos." #: includes/Config/FieldSettings.php:477 msgid "Shown to users as a hover." msgstr "Se muestra a los usuarios como un posicionamiento" #: includes/Config/FieldSettings.php:502 msgid "Description" msgstr "Decripción" #: includes/Config/FieldSettings.php:561 msgid "Sort as Numeric" msgstr "Ordenar como numérico" #: includes/Config/FieldSettings.php:565 msgid "This column in the submissions table will sort by number." msgstr "Esta columna en la tabla de envíos se ordenará por número." #: includes/Config/FieldSettings.php:649 msgid "Number of seconds for the countdown" msgstr "Cantidad de segundos para la cuenta regresiva" #: includes/Config/FieldSettings.php:666 msgid "" "Use this as a reistration password field. If this box is check, both\n" " password and re-password textboxes will be output" msgstr "" "Usa esto como un campo de contraseña de registro. Si el cuadro está marcado, " "los cuadros de texto\n" " contraseña y reingresar la contraseña serán salida" #: includes/Config/FieldSettings.php:763 includes/Database/Models/Form.php:505 msgid "Confirm" msgstr "Confirmar" #: includes/Config/FieldSettings.php:781 msgid "Allows rich text input." msgstr "Permite la entrada de texto." #: includes/Config/FieldSettings.php:817 msgid "Processing Label" msgstr "Etiqueta de procesamiento" #: includes/Config/FieldSettings.php:832 msgid "Checked Calculation Value" msgstr "Valor de cálculo marcado" #: includes/Config/FieldSettings.php:835 msgid "This number will be used in calculations if the box is checked." msgstr "Este número se usará en cálculos si el cuadro se marca." #: includes/Config/FieldSettings.php:841 msgid "Unchecked Calculation Value" msgstr "Valor de cálculo desmarcado" #: includes/Config/FieldSettings.php:844 msgid "This number will be used in calculations if the box is unchecked." msgstr "Este número se usará en cálculos si el cuadro se desmarca." #: includes/Config/FieldSettings.php:855 msgid "Display This Calculation Variable" msgstr "Muestra esta variable de cálculo" #: includes/Config/FieldSettings.php:861 msgid "- Select a Variable" msgstr "- Selecciona una variable" #: includes/Config/FieldSettings.php:874 msgid "Price" msgstr "Costa" #: includes/Config/FieldSettings.php:887 msgid "Use Quantity" msgstr "Cantidad de uso" #: includes/Config/FieldSettings.php:891 msgid "Allows users to choose more than one of this product." msgstr "Permite a los usuarios elegir más de una unidad de este producto." #: includes/Config/FieldSettings.php:898 msgid "Product Type" msgstr "Tipo de producto" #: includes/Config/FieldSettings.php:903 msgid "Single Product (default)" msgstr "Producto único (predeterminado)" #: includes/Config/FieldSettings.php:907 msgid "Multi Product - Dropdown" msgstr "Producto múltiple - menú desplegable" #: includes/Config/FieldSettings.php:911 msgid "Multi Product - Choose Many" msgstr "Producto múltiple - elige muchos" #: includes/Config/FieldSettings.php:915 msgid "Multi Product - Choose One" msgstr "Producto múltiple - elige uno" #: includes/Config/FieldSettings.php:919 msgid "User Entry" msgstr "Entrada de usuario" #: includes/Config/FieldSettings.php:934 msgid "Cost" msgstr "Coste " #: includes/Config/FieldSettings.php:950 msgid "Cost Options" msgstr "Opciones de costo" #: includes/Config/FieldSettings.php:979 msgid "Single Cost" msgstr "Costo único" #: includes/Config/FieldSettings.php:983 msgid "Cost Dropdown" msgstr "Menú desplegable de costo" #: includes/Config/FieldSettings.php:987 msgid "Cost Type" msgstr "Tipo de costo" #: includes/Config/FieldSettings.php:996 includes/Database/MockData.php:898 #: includes/Database/MockData.php:974 includes/Fields/Product.php:32 msgid "Product" msgstr "Producto" #: includes/Config/FieldSettings.php:1002 msgid "- Select a Product" msgstr "- Selecciona un producto" #: includes/Config/FieldSettings.php:1019 msgid "Answer" msgstr "Respuesta" #: includes/Config/FieldSettings.php:1023 msgid "A case sensitive answer to help prevent spam submissions of your form." msgstr "" "Una respuesta que distingue mayúsculas y minúsculas para prevenir los envíos " "de tu formulario." #: includes/Config/FieldSettings.php:1039 msgid "Taxonomy" msgstr "Taxonomía" #: includes/Config/FieldSettings.php:1057 msgid "Add New Terms" msgstr "Agregar nuevas condiciones" #: includes/Config/FieldSettings.php:1071 msgid "This is a user's state." msgstr "Este es el estado del usuario." #: includes/Config/FieldSettings.php:1075 msgid "Used for marking a field for processing." msgstr "Usado para hacer un campo para procesamiento." #: includes/Config/FieldTypeSections.php:13 #: includes/Config/PluginSettingsGroups.php:22 msgid "Saved Fields" msgstr "Campos guardados" #: includes/Config/FieldTypeSections.php:26 msgid "Common Fields" msgstr "Campos comunes" #: includes/Config/FieldTypeSections.php:38 includes/Database/MockData.php:648 msgid "User Information Fields" msgstr "Campos de información de usuario" #: includes/Config/FieldTypeSections.php:50 includes/Database/MockData.php:696 msgid "Pricing Fields" msgstr "Campos de precios" #: includes/Config/FieldTypeSections.php:62 msgid "Layout Fields" msgstr "Campos de diseño" #: includes/Config/FieldTypeSections.php:74 includes/Database/MockData.php:763 msgid "Miscellaneous Fields" msgstr "Campos de miceláneas" #: includes/Config/FormActionDefaults.php:9 msgid "Your form has been successfully submitted." msgstr "Tu formulario se ha enviado correctamente" #: includes/Config/FormActionDefaults.php:19 msgid "Ninja Forms Submission" msgstr "Presentación de formularios ninja" #: includes/Config/FormActionDefaults.php:27 msgid "Save Submission" msgstr "Guardar presentación" #: includes/Config/FormCalculationSettings.php:18 msgid "Variable Name" msgstr "Nombre variable" #: includes/Config/FormCalculationSettings.php:22 msgid "Equation" msgstr "ecuación" #: includes/Config/FormDisplaySettings.php:68 msgid "Default Label Position" msgstr "Posición predeterminada de la etiqueta" #: includes/Config/FormDisplaySettings.php:111 #: includes/Fields/Recaptcha.php:30 msgid "Wrapper" msgstr "Envoltura" #: includes/Config/FormDisplaySettings.php:135 msgid "Form Key" msgstr "Clave Formulario" #: includes/Config/FormDisplaySettings.php:139 msgid "Programmatic name that can be used to reference this form." msgstr "" "Nombre programático que se puede usar para hacer referencia a este " "formulario." #: includes/Config/FormDisplaySettings.php:149 msgid "Add Submit Button" msgstr "Agregar botón Enviar" #: includes/Config/FormDisplaySettings.php:153 msgid "" "We've noticed that don't have a submit button on your form. We can add one " "for your automatically." msgstr "" "Hemos advertido que tu formulario no tiene ningún botón Enviar. Podemos " "agregar uno por ti automáticamente." #: includes/Config/FormRestrictionSettings.php:8 msgid "Logged In" msgstr "Conectado" #: includes/Config/FormRestrictionSettings.php:24 msgid "Does apply to form preview." msgstr "Aplica a la vista previa del formulario." #: includes/Config/FormRestrictionSettings.php:57 msgid "Submission Limit" msgstr "Límite de envío" #: includes/Config/FormRestrictionSettings.php:61 msgid "Does NOT apply to form preview." msgstr "NO aplica a la vista previa del formulario." #: includes/Config/FormSettingsTypes.php:7 msgid "Display Settings" msgstr "Opciones de visualización" #: includes/Config/FormSettingsTypes.php:17 includes/MergeTags/Calcs.php:15 msgid "Calculations" msgstr "Cálculos" #: includes/Config/i18nBuilder.php:5 includes/Config/i18nFrontEnd.php:5 msgid "Ninja Forms" msgstr "Ninja Forms" #: includes/Config/i18nBuilder.php:6 msgid "Price:" msgstr "Precio:" #: includes/Config/i18nBuilder.php:7 msgid "Quantity:" msgstr "Cantidad:" #: includes/Config/i18nBuilder.php:8 #: includes/Templates/admin-menu-new-form.html.php:263 msgid "Add" msgstr "Añadir" #: includes/Config/i18nBuilder.php:9 msgid "Open in new window" msgstr "Abrir en una nueva ventana" #: includes/Config/i18nBuilder.php:10 msgid "If you are a human seeing this field, please leave it empty." msgstr "" "Si eres un ser humano y estás viendo este campo, por favor déjalo vacío." #: includes/Config/i18nBuilder.php:11 msgid "Available" msgstr "Disponible" #: includes/Config/i18nFrontEnd.php:6 msgid "Please enter a valid email address!" msgstr "Introduce una dirección de correo electrónico válida." #: includes/Config/i18nFrontEnd.php:7 msgid "These fields must match!" msgstr "Estos campos deben coincidir." #: includes/Config/i18nFrontEnd.php:8 msgid "Number Min Error" msgstr "Error de número mínimo" #: includes/Config/i18nFrontEnd.php:9 msgid "Number Max Error" msgstr "Error de número máximo" #: includes/Config/i18nFrontEnd.php:10 msgid "Please increment by " msgstr "Increméntalo por " #: includes/Config/i18nFrontEnd.php:11 msgid "Insert Link" msgstr "Insertar enlace" #: includes/Config/i18nFrontEnd.php:12 msgid "Insert Media" msgstr "Insertar medios" #: includes/Config/i18nFrontEnd.php:14 msgid "Please correct errors before submitting this form." msgstr "Corrige los errores antes de enviar este formulario." #: includes/Config/i18nFrontEnd.php:16 msgid "Honeypot Error" msgstr "Error de Honeypot" #: includes/Config/i18nFrontEnd.php:17 msgid "File Upload in Progress." msgstr "Carga de archivo en curso." #: includes/Config/i18nFrontEnd.php:18 msgid "FILE UPLOAD" msgstr "CARGA DE ARCHIVO" #: includes/Config/MergeTagsFields.php:14 msgid "All Fields" msgstr "Todos los Campos" #: includes/Config/MergeTagsForm.php:14 msgid "Sub Sequence" msgstr "Subsecuencia" #: includes/Config/MergeTagsPost.php:14 msgid "Post ID" msgstr "Mensaje ID" #: includes/Config/MergeTagsPost.php:27 msgid "Post Title" msgstr "Título de Publicar" #: includes/Config/MergeTagsPost.php:40 msgid "Post URL" msgstr "URL" #: includes/Config/MergeTagsSystem.php:40 msgid "IP Address" msgstr "Dirección de IP" #: includes/Config/MergeTagsUser.php:14 msgid "User ID" msgstr "ID de Usuario" #: includes/Config/MergeTagsUser.php:27 includes/Database/MockData.php:366 #: includes/Database/MockData.php:653 includes/Fields/FirstName.php:25 msgid "First Name" msgstr "Primer Nombre" #: includes/Config/MergeTagsUser.php:40 includes/Database/MockData.php:371 #: includes/Database/MockData.php:658 includes/Fields/LastName.php:25 msgid "Last Name" msgstr "Apellido" #: includes/Config/MergeTagsUser.php:53 msgid "Display Name" msgstr "Nombre mostrado" #: includes/Config/PluginSettingsAdvanced.php:55 msgid "Opinionated Styles" msgstr "Estilos para obstinados" #: includes/Config/PluginSettingsAdvanced.php:62 #: includes/Config/PluginSettingsReCaptcha.php:54 msgid "Light" msgstr "Sencillo" #: includes/Config/PluginSettingsAdvanced.php:66 #: includes/Config/PluginSettingsReCaptcha.php:55 msgid "Dark" msgstr "Ocuro" #: includes/Config/PluginSettingsAdvanced.php:70 msgid "Use default Ninja Forms styling conventions." msgstr "Usa las conversiones predeterminadas de Ninja Forms." #: includes/Config/PluginSettingsAdvanced.php:83 msgid "Rollback" msgstr "Reducción de precios" #: includes/Config/PluginSettingsAdvanced.php:84 msgid "Rollback to v2.9.x" msgstr "Reducción de precios para v2.9.x" #: includes/Config/PluginSettingsAdvanced.php:85 msgid "Rollback to the most recent 2.9.x release." msgstr "Reducción de precios para las versiones 2.9.x más recientes." #: includes/Config/PluginSettingsDefaults.php:5 includes/Fields/Date.php:51 #: includes/Fields/Date.php:53 msgid "m/d/Y" msgstr "m/d/Y" #: includes/Config/PluginSettingsGroups.php:12 msgid "reCaptcha Settings" msgstr "Ajustes reCAPTCHA" #: includes/Config/PluginSettingsReCaptcha.php:57 msgid "reCAPTCHA Theme" msgstr "Tema de reCAPTCHA" #: includes/Config/SettingsGroups.php:14 msgid "Rich Text Editor (RTE)" msgstr "Panel del Editor de texto enriquecido (RTE)" #: includes/Config/SettingsGroups.php:30 msgid "Advanced" msgstr "Avanzadas" #: includes/Config/SettingsGroups.php:36 msgid "Administration" msgstr "Administración" #: includes/Database/MockData.php:14 msgid "Foo" msgstr "Foo" #: includes/Database/MockData.php:21 msgid "Bar" msgstr "Bar" #: includes/Database/MockData.php:28 msgid "Baz" msgstr "Baz" #: includes/Database/MockData.php:42 msgid "Blank Forms" msgstr "Formularios en blanco" #: includes/Database/MockData.php:54 msgid "Contact Me" msgstr "Comuníquense conmigo" #: includes/Database/MockData.php:176 msgid "Mock Success Message Action" msgstr "Acción de mensaje de falso éxito" #: includes/Database/MockData.php:178 msgid "Thank you {field:name} for filling out my form!" msgstr "¡Gracias, {field:name}, por completar mi formulario!" #: includes/Database/MockData.php:190 msgid "Mock Email Action" msgstr "Acción de correo falso" #: includes/Database/MockData.php:193 msgid "This is an email action." msgstr "Esta es una acción de correo electrónico." #: includes/Database/MockData.php:194 msgid "Hello, Ninja Forms!" msgstr "¡Hola, Formularios Ninja!" #: includes/Database/MockData.php:206 includes/Database/MockData.php:332 #: includes/Database/MockData.php:490 includes/Database/MockData.php:810 msgid "Mock Save Action" msgstr "Acción de guardado falso" #: includes/Database/MockData.php:216 includes/Database/MockData.php:220 msgid "Foo Bar" msgstr "Foo Bar" #: includes/Database/MockData.php:217 msgid "foo@wpninjas.com" msgstr "foo@wpninjas.com" #: includes/Database/MockData.php:218 msgid "This is a test" msgstr "Esta es una prueba" #: includes/Database/MockData.php:227 includes/Database/MockData.php:231 msgid "John Doe" msgstr "Juan Pérez" #: includes/Database/MockData.php:228 msgid "user@gmail.com" msgstr "usuario@gmail.com" #: includes/Database/MockData.php:229 msgid "This is another test." msgstr "Esta es otra prueba." #: includes/Database/MockData.php:242 #: includes/Templates/admin-menu-system-status.html.php:3 msgid "Get Help" msgstr "Obtener Ayuda" #: includes/Database/MockData.php:269 msgid "What Can We Help You With?" msgstr "¿En qué te podemos ayudar?" #: includes/Database/MockData.php:276 msgid "Agree?" msgstr "¿De acuerdo?" #: includes/Database/MockData.php:283 msgid "Best Contact Method?" msgstr "¿Mejor método de contacto?" #: includes/Database/MockData.php:287 includes/Database/MockData.php:668 #: includes/Fields/Phone.php:24 msgid "Phone" msgstr "Teléfono" #: includes/Database/MockData.php:301 msgid "Snail Mail" msgstr "Correo postal" #: includes/Database/MockData.php:315 msgid "Send" msgstr "Enviar" #: includes/Database/MockData.php:343 msgid "Kitchen Sink" msgstr "Kitchen Sink" #: includes/Database/MockData.php:387 includes/Database/MockData.php:536 msgid "Select List" msgstr "Seleccionar de la lista" #: includes/Database/MockData.php:390 includes/Database/MockData.php:418 #: includes/Database/MockData.php:539 includes/Database/MockData.php:567 #: includes/Database/MockData.php:595 msgid "Option One" msgstr "Opción uno" #: includes/Database/MockData.php:397 includes/Database/MockData.php:425 #: includes/Database/MockData.php:546 includes/Database/MockData.php:574 #: includes/Database/MockData.php:602 msgid "Option Two" msgstr "Opción dos" #: includes/Database/MockData.php:404 includes/Database/MockData.php:432 #: includes/Database/MockData.php:553 includes/Database/MockData.php:581 #: includes/Database/MockData.php:609 msgid "Option Three" msgstr "Opción tres" #: includes/Database/MockData.php:415 includes/Database/MockData.php:564 #: includes/Fields/ListRadio.php:24 #: includes/Templates/admin-menu-forms.html.php:73 #: includes/Templates/admin-menu-forms.html.php:101 #: includes/Templates/admin-menu-forms.html.php:129 #: includes/Templates/admin-menu-forms.html.php:157 #: includes/Templates/admin-menu-forms.html.php:185 msgid "Radio List" msgstr "Lista de opciones" #: includes/Database/MockData.php:501 msgid "Bathroom Sink" msgstr "Lavabo" #: includes/Database/MockData.php:592 includes/Fields/ListCheckbox.php:26 msgid "Checkbox List" msgstr "Lista del cuadro de verificación" #: includes/Database/MockData.php:649 msgid "These are all the fields in the User Information section." msgstr "Estos son todos los campos de la sección de Información del usuario." #: includes/Database/MockData.php:673 includes/Fields/Address.php:25 msgid "Address" msgstr "Dirección" #: includes/Database/MockData.php:678 includes/Fields/City.php:25 msgid "City" msgstr "Ciudad" #: includes/Database/MockData.php:688 msgid "Zip Code" msgstr "Código postal" #: includes/Database/MockData.php:697 msgid "These are all the fields in the Pricing section." msgstr "Estos son todos los campos de la sección Precios." #: includes/Database/MockData.php:701 msgid "Product (quanitity included)" msgstr "Producto (cantidad incluida)" #: includes/Database/MockData.php:708 msgid "Product (seperate quantity)" msgstr "Producto (cantidad separada)" #: includes/Database/MockData.php:715 includes/Database/MockData.php:910 #: includes/Fields/Quantity.php:30 msgid "Quantity" msgstr "Cantidad" #: includes/Database/MockData.php:730 includes/Database/MockData.php:934 #: includes/Database/MockData.php:995 includes/Database/MockData.php:1098 #: includes/Fields/Total.php:28 msgid "Total" msgstr "Total" #: includes/Database/MockData.php:735 #: includes/Fields/CreditCardFullName.php:25 msgid "Credit Card Full Name" msgstr "Nombre completo de la tarjeta de crédito" #: includes/Database/MockData.php:740 includes/Fields/CreditCardNumber.php:25 msgid "Credit Card Number" msgstr "Número de tarjeta de crédito" #: includes/Database/MockData.php:745 msgid "Credit Card CVV" msgstr "Código de verificación de la tarjeta de crédito" #: includes/Database/MockData.php:750 #: includes/Fields/CreditCardExpiration.php:26 msgid "Credit Card Expiration" msgstr "Vencimiento de la tarjeta de crédito" #: includes/Database/MockData.php:755 msgid "Credit Card Zip Code" msgstr "Código postal de la tarjeta de crédito" #: includes/Database/MockData.php:764 msgid "These are various special fields." msgstr "Estos son diversos campos especiales." #: includes/Database/MockData.php:774 msgid "Anti-Spam Question (Answer = answer)" msgstr "Pregunta antispam (Respuesta = respuesta)" #: includes/Database/MockData.php:776 msgid "answer" msgstr "respuesta" #: includes/Database/MockData.php:805 msgid "processing" msgstr "procesando" #: includes/Database/MockData.php:822 msgid "Long Form - " msgstr "Formulario largo - " #: includes/Database/MockData.php:822 #: includes/Templates/admin-menu-new-form.html.php:364 msgid " Fields" msgstr " Campos" #: includes/Database/MockData.php:835 msgid "Field #" msgstr "Campo #" #: includes/Database/MockData.php:851 msgid "Email Subscription Form" msgstr "Formulario de suscripción de correo electrónico" #: includes/Database/MockData.php:863 msgid "Email Address" msgstr "Dirección de email" #: includes/Database/MockData.php:867 msgid "Enter your email address" msgstr "Ingresa tu dirección de correo electrónico" #: includes/Database/MockData.php:876 msgid "Subscribe" msgstr "Suscribirse" #: includes/Database/MockData.php:888 msgid "Product Form (with Quantity Field)" msgstr "Formulario de productos (con campo de cantidad)" #: includes/Database/MockData.php:943 includes/Database/MockData.php:1004 #: includes/Database/MockData.php:1107 includes/Database/MockData.php:1150 msgid "Purchase" msgstr "Comprar" #: includes/Database/MockData.php:955 includes/Database/MockData.php:1016 #: includes/Database/MockData.php:1119 msgid "You purchased " msgstr "Compraste " #: includes/Database/MockData.php:956 msgid "product(s) for " msgstr "producto(s) para " #: includes/Database/MockData.php:964 msgid "Product Form (Inline Quantity)" msgstr "Formulario del producto (cantidad en línea)" #: includes/Database/MockData.php:1017 msgid " product(s) for " msgstr " producto(s) para " #: includes/Database/MockData.php:1025 msgid "Product Form (Multiple Products)" msgstr "Formulario de productos (varios productos)" #: includes/Database/MockData.php:1035 msgid "Product A" msgstr "Producto A" #: includes/Database/MockData.php:1047 msgid "Quantity for Product A" msgstr "Cantidad para el Producto A" #: includes/Database/MockData.php:1062 msgid "Product B" msgstr "Producto B" #: includes/Database/MockData.php:1074 msgid "Quantity for Product B" msgstr "Cantidad para el Producto B" #: includes/Database/MockData.php:1120 msgid "of Product A and " msgstr "del Producto A y " #: includes/Database/MockData.php:1121 msgid "of Product B for $" msgstr "del Producto B por $" #: includes/Database/MockData.php:1132 msgid "Form with Calculations" msgstr "Formulario con cálculos" #: includes/Database/MockData.php:1136 msgid "My First Calculation" msgstr "Mi primer cálculo" #: includes/Database/MockData.php:1140 msgid "My Second Calculation" msgstr "Mi segundo cálculo" #: includes/Database/MockData.php:1158 msgid "" "Calculations are returned with the AJAX response ( response -> data -> calcs" msgstr "" "Los cálculos se devuelven con la respuesta AJAX ( respuesta -> datos -> calcs" #: includes/Database/Models/Form.php:117 msgid "copy" msgstr "Copiar" #: includes/Database/Models/Form.php:267 msgid "Save Form" msgstr "Guardar formulario" #: includes/Database/Models/Form.php:529 includes/Fields/CreditCardZip.php:23 msgid "Credit Card Zip" msgstr "Código postal de la tarjeta de crédito" #: includes/Display/Preview.php:48 msgid "You must be logged in to preview a form." msgstr "Para tener una vista previa de un formulario debes iniciar sesión." #: includes/Display/Render.php:80 includes/Display/Render.php:246 msgid "No Fields Found." msgstr "No se encontró ningún campo." #: includes/Display/Shortcodes.php:36 msgid "Notice: Ninja Forms shortcode used without specifying a form." msgstr "Aviso: Código de Ninja Forms usado sin especificar un formulario." #: includes/Display/Shortcodes.php:43 msgid "Ninja Forms shortcode used without specifying a form." msgstr "Código de Ninja Forms usado sin especificar un formulario." #: includes/Fields/Address2.php:23 msgid "Address 2" msgstr "Dirección 2" #: includes/Fields/Button.php:26 #: includes/Templates/admin-menu-forms.html.php:79 #: includes/Templates/admin-menu-forms.html.php:107 #: includes/Templates/admin-menu-forms.html.php:135 #: includes/Templates/admin-menu-forms.html.php:163 #: includes/Templates/admin-menu-forms.html.php:191 msgid "Button" msgstr "Botón" #: includes/Fields/Checkbox.php:30 msgid "Single Checkbox" msgstr "Cuadro de verificación único" #: includes/Fields/Checkbox.php:49 msgid "checked" msgstr "marcado" #: includes/Fields/Checkbox.php:49 msgid "unchecked" msgstr "desmarcado" #: includes/Fields/CreditCardCVC.php:25 msgid "Credit Card CVC" msgstr "Código de verificación de la tarjeta de crédito" #: includes/Fields/Date.php:52 msgid "d-m-Y" msgstr "d-m-Y" #: includes/Fields/Date.php:54 msgid "m-d-Y" msgstr "m-d-Y" #: includes/Fields/Date.php:55 msgid "Y-m-d" msgstr "Y-m-d" #: includes/Fields/Date.php:56 msgid "Y/m/d" msgstr "Y/m/d" #: includes/Fields/Date.php:57 msgid "l, F d Y" msgstr "l, F d Y" #: includes/Fields/hr.php:28 msgid "Divider" msgstr "Divisor" #: includes/Fields/ListSelect.php:26 msgid "Select" msgstr "Seleccionar" #: includes/Fields/ListState.php:26 msgid "State" msgstr "Estado / Región" #: includes/Fields/Note.php:43 msgid "Note text can be edited in the note field's advanced settings below." msgstr "" "El texto de la nota se puede modificar en las configuraciones avanzadas del " "campo Nota a continuación." #: includes/Fields/Note.php:45 msgid "Note" msgstr "Nota" #: includes/Fields/PasswordConfirm.php:24 msgid "Password Confirm" msgstr "Confirmación de contraseña" #: includes/Fields/PasswordConfirm.php:26 msgid "password" msgstr "contraseña" #: includes/Fields/Recaptcha.php:24 msgid "Recaptcha" msgstr "Recaptcha" #: includes/Fields/Recaptcha.php:51 msgid "Please complete the recaptcha" msgstr "Llena el código recaptcha" #: includes/Fields/Shipping.php:41 msgid "Advanced Shipping" msgstr "Envío avanzado" #: includes/Fields/Spam.php:27 msgid "Question" msgstr "Pregunta" #: includes/Fields/Spam.php:28 msgid "Question Position" msgstr "Posición de la pregunta" #: includes/Fields/Spam.php:57 msgid "Incorrect Answer" msgstr "Respuesta incorrecta" #: includes/Fields/StarRating.php:28 msgid "Number of Stars" msgstr "Cantidad de estrellas" #: includes/Fields/Terms.php:31 msgid "Terms List" msgstr "Lista de términos" #: includes/Fields/Terms.php:84 #, php-format msgid "No available terms for this taxonomy. %sAdd a term%s" msgstr "" "No hay términos disponibles para esta taxonomía. %sAgregar un término%s" #: includes/Fields/Terms.php:99 msgid "No taxonomy selected." msgstr "No se seleccionó ninguna taxonomía." #: includes/Fields/Terms.php:108 msgid "Available Terms" msgstr "Términos disponibles" #: includes/Fields/Textarea.php:26 msgid "Paragraph Text" msgstr "Texto del párrafo" #: includes/Fields/Textbox.php:28 msgid "Single Line Text" msgstr "Texto de una sola línea" #: includes/Fields/Zip.php:25 msgid "Zip" msgstr "Código postal" #: includes/MergeTags/Post.php:13 msgid "Post" msgstr "puesto" #: includes/MergeTags/QueryStrings.php:13 msgid "Query Strings" msgstr "Cadena de consultas" #: includes/MergeTags/QueryStrings.php:18 msgid "Query String" msgstr "Cadena de consulta" #: includes/MergeTags/System.php:13 msgid "System" msgstr "Sistema" #: includes/MergeTags/User.php:13 msgid "User" msgstr "usuario:" #: includes/Templates/admin-menu-addons.html.php:9 msgid " requires an update. You have version " msgstr " requiere una actualización Tienes la versión " #: includes/Templates/admin-menu-addons.html.php:9 msgid " installed. The current version is " msgstr " instalada. La versión actual es " #: includes/Templates/admin-menu-forms.html.php:17 msgid "Editing Field" msgstr "Edición del campo" #: includes/Templates/admin-menu-forms.html.php:21 msgid "Label Name" msgstr "Nombre de la etiqueta" #: includes/Templates/admin-menu-forms.html.php:27 msgid "Above Field" msgstr "Arriba del campo" #: includes/Templates/admin-menu-forms.html.php:28 msgid "Below Field" msgstr "Debajo del campo" #: includes/Templates/admin-menu-forms.html.php:29 msgid "Left of Field" msgstr "Izquierda del campo" #: includes/Templates/admin-menu-forms.html.php:30 msgid "Right of Field" msgstr "Derecha del campo" #: includes/Templates/admin-menu-forms.html.php:31 msgid "Hide Label" msgstr "Ocultar etiqueta" #: includes/Templates/admin-menu-forms.html.php:35 msgid "Class Name" msgstr "Nombre de la clase" #: includes/Templates/admin-menu-forms.html.php:55 #: includes/Templates/admin-menu-forms.html.php:83 #: includes/Templates/admin-menu-forms.html.php:111 #: includes/Templates/admin-menu-forms.html.php:139 #: includes/Templates/admin-menu-forms.html.php:167 msgid "Basic Fields" msgstr "Campos básicos" #: includes/Templates/admin-menu-forms.html.php:70 #: includes/Templates/admin-menu-forms.html.php:98 #: includes/Templates/admin-menu-forms.html.php:126 #: includes/Templates/admin-menu-forms.html.php:154 #: includes/Templates/admin-menu-forms.html.php:182 msgid "Mult-Select" msgstr "Selección múltiple" #: includes/Templates/admin-menu-new-form.html.php:30 #: includes/Templates/admin-menu-new-form.html.php:32 #: includes/Templates/ui-nf-header.html.php:17 msgid "Add new field" msgstr "Añadir campo nuevo" #: includes/Templates/admin-menu-new-form.html.php:37 #: includes/Templates/admin-menu-new-form.html.php:39 msgid "Add new action" msgstr "Añadir acción nueva" #: includes/Templates/admin-menu-new-form.html.php:60 msgid "Expand Menu" msgstr "Ampliar menú" #: includes/Templates/admin-menu-new-form.html.php:64 #: includes/Templates/admin-menu-new-form.html.php:179 #: includes/Templates/admin-menu-new-form.html.php:355 #: includes/Templates/ui-nf-menu-drawer.html.php:3 msgid "Publish" msgstr "Publicar" #: includes/Templates/admin-menu-new-form.html.php:64 msgid "PUBLISH" msgstr "PUBLICAR" #: includes/Templates/admin-menu-new-form.html.php:68 msgid "Loading" msgstr "Cargando" #: includes/Templates/admin-menu-new-form.html.php:80 msgid "View Changes" msgstr "Ver cambios" #: includes/Templates/admin-menu-new-form.html.php:97 msgid "Add form fields" msgstr "Añadir campos al formulario" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Get started by adding your first form field." msgstr "Comienza agregando el primer campo de tu formulario." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Add New Field" msgstr "Añadir campo nuevo" #: includes/Templates/admin-menu-new-form.html.php:98 msgid "Just click here and select the fields you want." msgstr "Simplemente haz clic aquí y selecciona los campos que desees." #: includes/Templates/admin-menu-new-form.html.php:98 msgid "It's that easy. Or..." msgstr "Es así de fácil. O bien..." #: includes/Templates/admin-menu-new-form.html.php:99 msgid "Start from a template" msgstr "Comienza a partir de una plantilla" #: includes/Templates/admin-menu-new-form.html.php:102 msgid "Contact Us" msgstr "Comunícate con nosotros" #: includes/Templates/admin-menu-new-form.html.php:103 msgid "" "Allow your users to contact you with this simple contact form. You can add " "and remove fields as needed." msgstr "" "Permite que tus usuarios se comuniquen contigo utilizando este sencillo " "formulario de contacto. Puedes agregar o eliminar campos según sea necesario." #: includes/Templates/admin-menu-new-form.html.php:109 msgid "Quote Request" msgstr "Solicitud de cotización" #: includes/Templates/admin-menu-new-form.html.php:110 msgid "" "Manage quote requests from your website easily with this remplate. You can " "add and remove fields as needed." msgstr "" "Administra las solicitudes de cotización desde tu sitio web fácilmente con " "esta plantilla. Puedes agregar o eliminar campos según sea necesario." #: includes/Templates/admin-menu-new-form.html.php:115 msgid "Event Registration" msgstr "Registro de eventos" #: includes/Templates/admin-menu-new-form.html.php:116 msgid "" "Allow user to register for your next event this easy to complete form. You " "can add and remove fields as needed." msgstr "" "Permite al usuario registrarse para tu próximo evento utilizando este " "formulario fácil de completar. Puedes agregar o eliminar campos según sea " "necesario." #: includes/Templates/admin-menu-new-form.html.php:121 msgid "Newsletter Sign Up Form" msgstr "Formulario de inscripción al boletín informativo" #: includes/Templates/admin-menu-new-form.html.php:122 msgid "" "Add subscribers and grow your email list with this newsletter signup form. " "You can add and remove fields as needed." msgstr "" "Añade suscriptores e incrementa tu lista de correos electrónicos mediante " "este formulario de inscripción al boletín informativo. Puedes agregar o " "eliminar campos según sea necesario." #: includes/Templates/admin-menu-new-form.html.php:131 msgid "Add form actions" msgstr "Añadir acciones al formulario" #: includes/Templates/admin-menu-new-form.html.php:132 msgid "" "Get started by adding your first form field. Just click the plus and select " "the actions you want. It's that easy." msgstr "" "Comienza agregando el primer campo de tu formulario. Simplemente haz clic en " "el signo positivo y selecciona las acciones que desees. Es así de fácil." #: includes/Templates/admin-menu-new-form.html.php:145 msgid "Duplicate (^ + C + click)" msgstr "Duplicar (^ + C + clic)" #: includes/Templates/admin-menu-new-form.html.php:146 msgid "Delete (^ + D + click)" msgstr "Eliminar (^ + D + clic)" #: includes/Templates/admin-menu-new-form.html.php:156 msgid "Actions" msgstr "Acciones" #: includes/Templates/admin-menu-new-form.html.php:191 msgid "Toggle Drawer" msgstr "Conmuta la gaveta" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Full screen" msgstr "Pantalla completa" #: includes/Templates/admin-menu-new-form.html.php:192 #: includes/Templates/ui-nf-toggle-drawer.html.php:2 msgid "Half screen" msgstr "Mitad de la pantalla" #: includes/Templates/admin-menu-new-form.html.php:231 msgid "Undo" msgstr "Deshacer" #: includes/Templates/admin-menu-new-form.html.php:324 #: includes/Templates/admin-menu-new-form.html.php:330 #: includes/Templates/admin-menu-new-form.html.php:339 msgid "Done" msgstr "Hecho" #: includes/Templates/admin-menu-new-form.html.php:337 msgid "Undo All" msgstr "Deshacer todo" #: includes/Templates/admin-menu-new-form.html.php:337 msgid " Undo All" msgstr " Deshacer todo" #: includes/Templates/admin-menu-new-form.html.php:345 msgid "Almost there..." msgstr "Ya casi..." #: includes/Templates/admin-menu-new-form.html.php:353 msgid "Not Yet" msgstr "Aún no" #: includes/Templates/admin-menu-new-form.html.php:626 msgid " Open in new window" msgstr " Abrir en una nueva ventana" #: includes/Templates/admin-menu-settings-licenses.html.php:29 msgid "De-activate" msgstr "Desactivar" #: includes/Templates/admin-menu-settings.html.php:25 msgid "Fix it." msgstr "Arreglar esto" #: includes/Templates/admin-menu-subs-filter.html.php:2 msgid "- Select a form" msgstr "- Selecciona un formulario" #: includes/Templates/admin-menu-subs-filter.html.php:11 msgid "Being Date" msgstr "Fecha de inicio" #: includes/Templates/admin-menu-system-status.html.php:4 msgid "Before requesting help from our support team please review:" msgstr "" "Antes de solicitar ayuda de nuestro equipo de Asistencia técnica consulta lo " "siguiente:" #: includes/Templates/admin-menu-system-status.html.php:6 msgid "Ninja Forms THREE documentation" msgstr "La documentación de Ninja Forms THREE" #: includes/Templates/admin-menu-system-status.html.php:7 msgid "What to try before contacting support" msgstr "Lo que debes intentar antes de comunicarte con Asistencia técnica" #: includes/Templates/admin-menu-system-status.html.php:8 msgid "Our Scope of Support" msgstr "El alcance de nuestra Asistencia técnica" #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:17 #: includes/Templates/admin-metabox-import-export-favorite-fields-import.html.php:20 msgid "Import Fields" msgstr "Importar campos" #: includes/Templates/admin-metabox-sub-info.html.php:17 msgid "Updated on: " msgstr "Actualizado el: " #: includes/Templates/admin-metabox-sub-info.html.php:18 msgid "Submitted on: " msgstr "Enviado el: " #: includes/Templates/admin-metabox-sub-info.html.php:20 msgid "Submitted by: " msgstr "Enviado por: " #: includes/Templates/admin-metabox-submission-example.php:1 msgid "Submission Data" msgstr "Datos del envío" #: includes/Templates/admin-notice-form-import.html.php:4 msgid "View" msgstr "Ver" #: includes/Templates/admin-wp-die.html.php:7 msgid "Show More" msgstr "Mostrar más" #: includes/Templates/ui-item-controls.html.php:4 msgid "Editing field" msgstr "Edición del campo" #: includes/Templates/ui-nf-header.html.php:5 #: includes/Templates/ui-nf-menu-drawer.html.php:6 msgid "Form Fields" msgstr "Campos del formulario" #: includes/Templates/ui-nf-header.html.php:8 msgid "Preview Changes" msgstr "Vista previa de los cambios" #: includes/Templates/ui-nf-header.html.php:18 msgid "Contact Form" msgstr "Formulario de contacto" #: lib/NF_AddonChecker.php:42 #, php-format msgid "" "Oops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More" "%s." msgstr "" "¡Uy! El complemento no es compatible con Ninja Forms THREE %sMás información" "%s." #: lib/NF_AddonChecker.php:43 #, php-format msgid "%s was deactivated." msgstr "Se desactivó %s." #: lib/NF_Tracking.php:78 msgid "Please help us improve Ninja Forms!" msgstr "¡Ayúdanos a mejorar Ninja Forms!" #: lib/NF_Tracking.php:80 msgid "" "If you opt-in, some data about your installation of Ninja Forms will be sent " "to NinjaForms.com (this does NOT include your submissions)." msgstr "" "Si te suscribes, algunos datos sobre la instalación de Ninja Forms se " "enviarán a NinjaForms.com (esto NO incluye tu envío)." #: lib/NF_Tracking.php:81 msgid "If you skip this, that's okay! Ninja Forms will still work just fine." msgstr "Si omites esto, ¡no hay problema! Ninja Forms aún así funcionará bien." #: lib/NF_Tracking.php:84 #, php-format msgid "%sAllow%s" msgstr "%sPermitir%s" #: lib/NF_Tracking.php:85 #, php-format msgid "%sDo not allow%s" msgstr "%sNo permitir%s" #: lib/NF_VersionSwitcher.php:24 lib/NF_VersionSwitcher.php:40 msgid "You do not have permission." msgstr "No tienes autorización." #: lib/NF_VersionSwitcher.php:25 lib/NF_VersionSwitcher.php:41 msgid "Permission Denied" msgstr "Autorización denegada" #: lib/NF_VersionSwitcher.php:70 msgid "Ninja Forms Dev" msgstr "Ninja Forms Dev" #: lib/NF_VersionSwitcher.php:80 msgid "DEBUG: Switch to 2.9.x" msgstr "DEPURAR: Cambiar a 2.9.x" #: lib/NF_VersionSwitcher.php:83 msgid "DEBUG: Switch to 3.0.x" msgstr "DEPURAR: Cambiar a 3.0.x" #: includes/Config/i18nBuilder.php:17 includes/Config/i18nDashboard.php:5 #: includes/Config/i18nFrontEnd.php:30 msgid "Previous Month" msgstr "Previo Mes" #: includes/Config/i18nBuilder.php:18 includes/Config/i18nDashboard.php:6 #: includes/Config/i18nFrontEnd.php:31 msgid "Next Month" msgstr "Siguiente Mes" #: includes/Config/i18nBuilder.php:20 includes/Config/i18nDashboard.php:8 #: includes/Config/i18nFrontEnd.php:33 msgid "January" msgstr "Enero" #: includes/Config/i18nBuilder.php:21 includes/Config/i18nDashboard.php:9 #: includes/Config/i18nFrontEnd.php:34 msgid "February" msgstr "Febrero" #: includes/Config/i18nBuilder.php:22 includes/Config/i18nDashboard.php:10 #: includes/Config/i18nFrontEnd.php:35 msgid "March" msgstr "Marzo" #: includes/Config/i18nBuilder.php:23 includes/Config/i18nDashboard.php:11 #: includes/Config/i18nFrontEnd.php:36 msgid "April" msgstr "Abril" #: includes/Config/i18nBuilder.php:24 includes/Config/i18nBuilder.php:38 #: includes/Config/i18nDashboard.php:12 includes/Config/i18nDashboard.php:26 #: includes/Config/i18nFrontEnd.php:37 includes/Config/i18nFrontEnd.php:51 msgid "May" msgstr "Mayo" #: includes/Config/i18nBuilder.php:25 includes/Config/i18nDashboard.php:13 #: includes/Config/i18nFrontEnd.php:38 msgid "June" msgstr "Junio" #: includes/Config/i18nBuilder.php:26 includes/Config/i18nDashboard.php:14 #: includes/Config/i18nFrontEnd.php:39 msgid "July" msgstr "Julio" #: includes/Config/i18nBuilder.php:27 includes/Config/i18nDashboard.php:15 #: includes/Config/i18nFrontEnd.php:40 msgid "August" msgstr "Agosto" #: includes/Config/i18nBuilder.php:28 includes/Config/i18nDashboard.php:16 #: includes/Config/i18nFrontEnd.php:41 msgid "September" msgstr "Septiembre" #: includes/Config/i18nBuilder.php:29 includes/Config/i18nDashboard.php:17 #: includes/Config/i18nFrontEnd.php:42 msgid "October" msgstr "Octubre" #: includes/Config/i18nBuilder.php:30 includes/Config/i18nDashboard.php:18 #: includes/Config/i18nFrontEnd.php:43 msgid "November" msgstr "Noviembre" #: includes/Config/i18nBuilder.php:31 includes/Config/i18nDashboard.php:19 #: includes/Config/i18nFrontEnd.php:44 msgid "December" msgstr "Diciembre" #: includes/Config/i18nBuilder.php:34 includes/Config/i18nDashboard.php:22 #: includes/Config/i18nFrontEnd.php:47 msgid "Jan" msgstr "Ene" #: includes/Config/i18nBuilder.php:35 includes/Config/i18nDashboard.php:23 #: includes/Config/i18nFrontEnd.php:48 msgid "Feb" msgstr "Feb" #: includes/Config/i18nBuilder.php:36 includes/Config/i18nDashboard.php:24 #: includes/Config/i18nFrontEnd.php:49 msgid "Mar" msgstr "Mar" #: includes/Config/i18nBuilder.php:37 includes/Config/i18nDashboard.php:25 #: includes/Config/i18nFrontEnd.php:50 msgid "Apr" msgstr "Abr" #: includes/Config/i18nBuilder.php:39 includes/Config/i18nDashboard.php:27 #: includes/Config/i18nFrontEnd.php:52 msgid "Jun" msgstr "Jun" #: includes/Config/i18nBuilder.php:40 includes/Config/i18nDashboard.php:28 #: includes/Config/i18nFrontEnd.php:53 msgid "Jul" msgstr "Jul" #: includes/Config/i18nBuilder.php:41 includes/Config/i18nDashboard.php:29 #: includes/Config/i18nFrontEnd.php:54 msgid "Aug" msgstr "Ago" #: includes/Config/i18nBuilder.php:42 includes/Config/i18nDashboard.php:30 #: includes/Config/i18nFrontEnd.php:55 msgid "Sep" msgstr "Sep" #: includes/Config/i18nBuilder.php:43 includes/Config/i18nDashboard.php:31 #: includes/Config/i18nFrontEnd.php:56 msgid "Oct" msgstr "Oct" #: includes/Config/i18nBuilder.php:44 includes/Config/i18nDashboard.php:32 #: includes/Config/i18nFrontEnd.php:57 msgid "Nov" msgstr "Nov" #: includes/Config/i18nBuilder.php:45 includes/Config/i18nDashboard.php:33 #: includes/Config/i18nFrontEnd.php:58 msgid "Dec" msgstr "Dic" #: includes/Config/i18nBuilder.php:48 includes/Config/i18nDashboard.php:36 #: includes/Config/i18nFrontEnd.php:61 msgid "Sunday" msgstr "Domingo" #: includes/Config/i18nBuilder.php:49 includes/Config/i18nDashboard.php:37 #: includes/Config/i18nFrontEnd.php:62 msgid "Monday" msgstr "Lunes" #: includes/Config/i18nBuilder.php:50 includes/Config/i18nDashboard.php:38 #: includes/Config/i18nFrontEnd.php:63 msgid "Tuesday" msgstr "Martes" #: includes/Config/i18nBuilder.php:51 includes/Config/i18nDashboard.php:39 #: includes/Config/i18nFrontEnd.php:64 msgid "Wednesday" msgstr "Miércoles" #: includes/Config/i18nBuilder.php:52 includes/Config/i18nDashboard.php:40 #: includes/Config/i18nFrontEnd.php:65 msgid "Thursday" msgstr "Jueves" #: includes/Config/i18nBuilder.php:53 includes/Config/i18nDashboard.php:41 #: includes/Config/i18nFrontEnd.php:66 msgid "Friday" msgstr "Viernes" #: includes/Config/i18nBuilder.php:54 includes/Config/i18nDashboard.php:42 #: includes/Config/i18nFrontEnd.php:67 msgid "Saturday" msgstr "Sabado" #: includes/Config/i18nBuilder.php:57 includes/Config/i18nDashboard.php:45 #: includes/Config/i18nFrontEnd.php:70 msgid "Sun" msgstr "Dom" #: includes/Config/i18nBuilder.php:58 includes/Config/i18nDashboard.php:46 #: includes/Config/i18nFrontEnd.php:71 msgid "Mon" msgstr "Lun" #: includes/Config/i18nBuilder.php:59 includes/Config/i18nDashboard.php:47 #: includes/Config/i18nFrontEnd.php:72 msgid "Tue" msgstr "Mar" #: includes/Config/i18nBuilder.php:60 includes/Config/i18nDashboard.php:48 #: includes/Config/i18nFrontEnd.php:73 msgid "Wed" msgstr "Mie" #: includes/Config/i18nBuilder.php:61 includes/Config/i18nDashboard.php:49 #: includes/Config/i18nFrontEnd.php:74 msgid "Thu" msgstr "Jue" #: includes/Config/i18nBuilder.php:62 includes/Config/i18nDashboard.php:50 #: includes/Config/i18nFrontEnd.php:75 msgid "Fri" msgstr "Vie" #: includes/Config/i18nBuilder.php:63 includes/Config/i18nDashboard.php:51 #: includes/Config/i18nFrontEnd.php:76 msgid "Sat" msgstr "Sab" #: includes/Config/i18nBuilder.php:66 includes/Config/i18nDashboard.php:54 #: includes/Config/i18nFrontEnd.php:79 msgid "Su" msgstr "Do" #: includes/Config/i18nBuilder.php:67 includes/Config/i18nDashboard.php:55 #: includes/Config/i18nFrontEnd.php:80 msgid "Mo" msgstr "Lu" #: includes/Config/i18nBuilder.php:68 includes/Config/i18nDashboard.php:56 #: includes/Config/i18nFrontEnd.php:81 msgid "Tu" msgstr "Ma" #: includes/Config/i18nBuilder.php:69 includes/Config/i18nDashboard.php:57 #: includes/Config/i18nFrontEnd.php:82 msgid "We" msgstr "Mi" #: includes/Config/i18nBuilder.php:70 includes/Config/i18nDashboard.php:58 #: includes/Config/i18nFrontEnd.php:83 msgid "Th" msgstr "Ju" #: includes/Config/i18nBuilder.php:71 includes/Config/i18nDashboard.php:59 #: includes/Config/i18nFrontEnd.php:84 msgid "Fr" msgstr "Vi" #: includes/Config/i18nBuilder.php:72 includes/Config/i18nDashboard.php:60 #: includes/Config/i18nFrontEnd.php:85 msgid "Sa" msgstr "Sa" lang/ninja-forms-hi_IN.mo000064400000273131152331132460011240 0ustar00,(X FX*PX*{X X XXXXXX YY )Y 4Y@YGYOYWY[Y kY vY YwYoZgrZZ5Z([8[[[ \\\$\ +\ 6\$@\e\}\\3]G]\]k] q]{]] ] ] ]]]&] ]] ^ ^ ^*^;^N^V^ ^^i^m^ v^^ ^^^^ ^ ^;^ _ _%_-_5_ <_ J_V_\_d_y_____ ___ ` `!`(`G`Y`i` r` ````` ` ```` `LaNaWa`aga naAyaaaaab2bIb_b ob{bbbbbb b bb c c cm GmQmkmzmm m m mmmm m mm mn nn !n /n=n#Un%yn0n'nn oMoO`oUop p+p4pHpZpbp<hpppp pppq q q .q :q GqUqfq yqqq qq qqr r rr/r@r$Gr(lrrrr!rr rrssss s s sstt +t8tLt]t ytttt tttt ttuu 6u CuMu \uhunuuu}uuuuuu u uu7u,+vqXvv vv w? wKwNw lwxwwwwww www xx x(x /x=xDxIx Oxwxx xxx x x x!xxyyy yyy yz zz#z +z6z>zzj{h|`i|n|Q9}O}Q}D-~<r~%~1~EHʁ   (5 G Uc't‚ Ȃ ҂݂   +5GWl|Ńۃ!/! Q\bf o&| Ȅ ΄ ل2&7L>  ͅ ۅ!'/ ?MU]t }†Ԇ  ! )4 = G T _ ju&{ Ƈˇkч= N Y dnr _ʈ*29#Y} ɉۉ )0 9 D O\d Ί  ( >LTYjy  W  ,:C R^ v nj݌5Ooˍoލ!Ncp1Ԏ|fUX@ZUJ5 #:Sd!y4В */>W^t|D0ٓ= HO`q#ʔ#"'+NF ɕ ܕ  & <GZl {Ŗ Ζۖ $3 DRd iu{ " .59/o!ߘ200a"##,#P8t"šCy)(̛)+ (8ja̜ 2;@ ^  ȝН   !,=Ya~  ͞" :Y amv| ʟ؟  '9Q q{+ Ġ>*(S\k+ء A V?cآ*,?GZa fr ǣ ͣأ  $ . ;IY _ l v Ԥ VGgǥ(̥ .9 B1L~ Ѧ  " /9@ P\m r1AIY i%v  (Ȩ  .:PV]#b ˩!ө" #2BRcv &&   *4DJS r|  ʫ ѫ<ܫ6:IRb t +ڬ$dSnX/Ǯ;93Jm*}Gϱ2P$ ɲZYG.F+rx *09+!Gi9ն/4EBz\335g:kqZ?sA&"GI ѼԼDk ˽нؽ޽^I]e ly Ⱦҿ׿ $7 MY ` ly ,OK[)!(  $/MUl 6   (2 : EOX] e r }  2BW fq$b#3Jds%* N!9[ciqw } W4*64.0J({)H5&*\{-4+4 .?n OH Ops  ':>O Xc s}  "1B9f|8 #&>C@$Z?0Du  k L<F>8   '6Oo   .8IYo ~s   (*4*_ )! B S ^jq  woZg25J&"NYq ! 6$@e5}Ui~ !5Q&c 'FJ c(p  ;  !,B[ k y' :F_v[4$Yi%  !6 GLT"A bw3K"]D  'C L Zem ( "45E ^lW%E/e, "  $ 1;[:{ N ,<S2i%&L\m CW ey  (/ X dr (1[t ),;Kbu ".(6_"r2!  ('@h +G.`  ) 5 ?IXh w "  #%B0h'(MOIU= -9B.V< # 6BXo  PRn  $(9 boy*DLPX  ( 5A]f u   /"D1gJ  %$ JWp25, ; IU7g,q> X y?  .CWk #"6Y"l       )  4 !> `   =  S ] l          ( h `' n Q OIQD<0%m1ENH q~     ''8`q     , <8u  .;K![}/!&;bu'  2 L# p !-@ P^q, GT gqw+1% '4 P [ f&s k/~   ! / ;HXh_w#< LZoG ':Sr  , ERh{    ; K 7d W   +!;!D!S!r!!!!! !! "!"1"K"8b"""""##1#oD#!#c#1:$|l$f$UP%X%Z%UZ&&5K' ' '''''!'4(KH(((((.(8)X)k))) )D)0*=2*p*w******#*#+:+ J+W+^+Ny++ ++ , , ',2, E,O,d, z,,,,,%,, -#-)3-]-l- ----9-.. (.6. H.U. n.{... "/"./5Q////!//200H0y0Z0#X1[|1#18152"J2Cm2y2(+3T3)j3+3(3j3T4k4444445 5@5 _5m5 55!55 55566%6D6U6q666 6 66 6"7 57:B7%}7%7"7 77 8 878 K8 X8f8{88 88 8888 93 9T9+g9 99>99*:/:%H:n:::::+:1;9; M;n; ;?;;;;<'<6<*?<j<}<<<< <<3<=K4= ==<===>(> <>F>+d>%>> >*> ??'?7? Q? ]? ~? ??V?G@Y@i@x@(@@@@@@A$A=A1PAAAA AA B B!B^Q^X^k^~^^^ ^^^%__2_+)`.U`$`` `` ` ``% a1aNagaya}aa aa,aOb[Rb)bb(gcc c cc cdd&d=dSddd|ddddd'e6eef f$f@f Wf bflf uff f f ffffFf,gBg Xg fgrgggg gKghhb@i iiii%ij%/j*Uj jNj!jjk kkk k *k 5k ?kWIk4kk6nl4ll0l('m)PmHzmm5mznn{)o4o+o4p.;pjpq$qq! r ,r9rOMr r rrrs+ s9sIsOs jstsssssss ssst tt2tQt atkt~ttttt%t u uu)u 0u:uPu_uBvufu8 v Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2016-08-29 08:57-0500 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 1.8.8 X-Poedit-Keywordslist: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-Sourcecharset: UTF-8 X-Poedit-Searchpath-0: . Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s पहले%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction Updatedक्रियाएंसक्रिय करेंसक्रियजोड़ेंAdd DescriptionAdd Formनया जोड़ेAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On Licensesएड-ऑनपतापता 2Adds an extra class to your field element.Adds an extra class to your field wrapper.एडमिन ईमेलAdmin LabelAdministrationउन्नतAdvanced Equationउन्नत सेटिंग्स Advanced Shippingअफगानिस्तानAfter EverythingAfter FormAfter LabelAgree?अल्बानियाअल्जीरियासभीAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.लगभग पहुंच गए...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.अमेरिकन समोआकोई अनपेक्षित त्रुटि उत्पन्न हुई.एंडोराअंगोलाएंगुइलाजवाबअंटार्कटिकाAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageएंटीगुआ और बार्बूडाAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to Pageलागू करेंअर्जेंटीनाअर्मीनियाअरूबाAttach CSVसंलग्नकऑस्ट्रेलियाऑस्ट्रियाAuto-Total FieldsAutomatically Total Calculation Valuesउपलब्धAvailable Termsअज़रबैजानBack To ListBack to listBackup / RestoreBackup Ninja Formsबहामाबहरीनबांग्लादेशBarबारबाडोसBasic Fieldsबेसिक सेटिंग्सBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing Dateबेलारूसबेल्जियमबेलीज़Below ElementBelow Fieldबेनिनबरमू़डाBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementभूटानबिलिंगBlank FormsबोलीवियाBosnia And Herzegowinaबोत्सवानाबॉवेट द्वीपब्राजीलब्रिटेन और भारतीय समुद्री क्षेत्रब्रुनेई दारुस्सलामBuild Your Formबुल्गारियाबल्क नीलामीबुर्किना फासोबुरूंडीबटनCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsकंबोडियाकैमरूनकनाडाकैंसिल करें tक्रेप वर्देCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name Labelकार्ड नंबरCard Number DescriptionCard Number Labelकेमैन आईलैंडCcकेंद्रीय अफ्रीकन गणराज्यचादChange ValueCharacter(s)वर्ण छूटेवर्णCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation Valueचिलीचीनक्रिसमस आइलैंडशहर Class NameClear successfully completed form?कोकोस (कीलिंग) द्वीपCollect PaymentकोलंबियाCommon FieldsकोमोरोसComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.पुष्टि करेंConfirm that you are not a botCongoCongo, The Democratic Republic Of Theसंपर्क पत्रमुझसे संपर्क करेंहमसे संपर्क करेंContainerजारी रखेंकुक आइलैंड्सलागतCost DropdownCost OptionsCost Typeकोस्टा रिकाआइवरी कोस्टCould not activate license. Please verify your license keyदेश Creates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full Nameक्रेडिट कार्ड नंबरCredit Card ZipCredit Card Zip Codeश्रेयCroatia (Local Name: Hrvatska)क्यूबामुद्राCurrency Symbolवर्तमान पृष्ठविशेषCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask Definitionकस्टम क्षेत्र मिटाया गया.कस्टम क्षेत्र का अद्यतन किया गया.Custom first optionसाइप्रसचेक गणराज्यDD-MM-YYYYdd/mm/yyyyDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xगहराData restored successfully!दिनांकनिर्माण दिनांकDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateनिष्क्रिय करेंDeactivate All Licensesलाइसेंस निष्क्रियDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.डिफ़ॉल्टDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsहटाएँDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyडेनमार्कविवरणDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?Dismissप्रदर्शित करेंDisplay Form Titleप्रदर्शन नामडिस्प्ले सेटिंग्स Display This Calculation VariableDisplay TitleDisplaying Your FormDividerजिबूतीDo not show these termsदस्तावेज़ीकरणDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.डोमिनिकाडोमिनिकन गणराज्यपूर्णDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate Formइक्वेडोरएडिट करें tEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldमिश्रएल साल्वाडोरElementईमेलEmail & ActionsईमेलEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & Actionsसमाप्ति दिनांकEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.अपना ईमेल पता दर्ज करेंEnvironmentEquationEquation (Advanced)भूमध्यवर्ती गिनीइरिट्रियात्रुटिError message given if all required fields are not completedएस्टोनियाइथोपियाEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)निर्यातExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADडिस्क पर फ़ाइल लिखने में विफल।Falkland Islands (Malvinas)फ़ैरो द्वीपFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField Operationsफ़ील्डFields marked with a * are required.Fields marked with an %s*%s are requiredफ़िजीFile Upload ErrorFile Upload in Progress.फ़ाइल अपलोड एक्सटेंशन द्वारा बंद कर दिया गया।फिनलैंडप्रथम नामFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatफ़ॉर्मForms DeletedForms Per Pageफ़्रांसFrance, Metropolitanफ्रेंच गुआनाफ़्रेंच पॉलीनेशियाफ़्रांसीसी दक्षिणी क्षेत्रFriday, November 18, 2019From AddressFrom NameFull Changelogपूर्ण स्क्रीनगैबनगाम्बियासामान्यसामान्य सेटिंग्स ttजार्जियाजर्मनीसहायता प्राप्त करेंGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.आरंभ करनाGetting started with Ninja Formsघानाजिब्राल्टरGive your form a title. This is how you'll find the form later.जाएँGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageयूनानग्रीनलैंडग्रेनाडाGrowing Documentationगुआदेलूपगुआमग्वाटेमालागिन्नीगिन्नी-बिसाऊगुयानाएच टी एम एल (HTML)हैतीHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!सहायता Help TextHelp Text Hereछिपा हुआHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)होम यूआरएलहोंडुरसHoney PotHoneypot ErrorHoneypot error messageहॉगकॉगHook Tagहोस्ट नामHow's It Going?हंगरीIP पताआइसलैंडIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.आयातImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsभारतइंडोनेशियाInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside Elementइंस्टाल किया गयाइनस्टॉल किये गए प्लगइनInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)इराकआयरलैंडIs this an email address?इज़राइलIt's that easy. Or...इटलीजमैकाजापानJavaScript disabled error messageJohn Doeजॉर्डनJust click here and select the fields you want.कजाखस्तानकेन्याकुंजीकिरिबातीकिचन सिंकKorea, Democratic People's Republic OfKorea, Republic Ofकुवैतकिर्गिज़स्तानLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicउपनामलाटवियाLayout ElementsLayout Fieldsऔर जानेंLearn More About Multi-Part FormsLearn More About Save ProgressलेबनानLeft of ElementLeft of FieldलिसोटोलाइबेरियाLibyan Arab Jamahiriyaलाइसेंसलिचेंस्टीनहल्काLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberसूचीList Field MappingList TypeListsलिथुआनियालोड हो रहा रहा हैलोड किया जा रहा है...स्थानपहले से लोगिन Long Form - लक्ज़मबर्गMM-DD-YYYYMM/DD/YYYYमकाऊMacedonia, Former Yugoslav Republic Ofमेडागास्करमलावीमलेशियामालदीवमालीमाल्टाManage quote requests from your website easily with this remplate. You can add and remove fields as needed.मार्शल द्वीप समूहमार्टीनिकमॉरिटानियामौरिशसउच्चMax Input Nesting LevelMaximum ValueMaybe Laterमैयटमध्यमसंदेशMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.Metaboxमैक्सिकोMicronesia, Federated States OfMigrations and Mock Data complete. निम्नMinimum ValueMiscellaneous Fieldsबेमेलएक अस्थायी फ़ोल्डर नहीं है.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic Ofमोनाकोमंगोलियामॉन्टेंगरोमोंटसेराटMore to comeमोरक्कोMove this item to the Trashमोजाम्बिकMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeएकाधिकMy First CalculationMy Second CalculationMySQL Versionम्यांमारनामName on the cardName or fieldsनामीबियानाउरूमदद चाहिए?नेपालनीदरलैंडनीदरलैंड्स एंटाइल्सNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder Tabन्यू कैलेडोनियाNew ItemNew Submissionन्यूजीलैंडNewsletter Sign Up FormनिकारागुआनाइजरनाइजीरियाNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms Processingनिंजा प्रपत्र सबमिशनNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.नियूनहींNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sकोई फाइल अपलोड नहीं किया गया.No forms found.No taxonomy selected.No valid changelog was found.कोई नहीं नॉर्फोल्क आइलैंडउत्तरी मारिआना द्वीपनार्वेNot Logged-In Messageअभी तक नहींNot found in TrashनोटNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsओमानएकOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption Twoविकल्पOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP संस्करण प्रकाशित करेंपाकिस्तानपलाउपनामापापुआ न्यू गिनीParagraph Textपराग्वेParent Item:पासवर्डPassword ConfirmPassword Mismatch Labelपासवर्ड मेल नहीं खातेPayment FieldsPayment GatewaysPayment TotalPermission Deniedपेरूफिलीपींसफ़ोनPhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.Placeholderसादा टेक्स्टPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.कृपया कोई मान्य ईमेल पता दर्ज करेंPlease enter a valid email address!कृपया कोई मान्य ईमेल पता दर्ज करें.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.प्लगिन्सपोलैंडPopulate this with the taxonomyपुर्तगालपोस्ट Post / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post Creationपोस्ट आईडीPost TitlePost URLपूर्वावलोकनPreview ChangesPreview FormPreview does not exist.मूल्यमूल्य:Pricing Fieldsप्रोसेसिंगProcessing LabelProcessing Submission Labelउत्पाद Product (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.प्रकाशित करेंप्यूर्टो रिकोख़रीदारी करेंकतरमात्राQuantity for Product AQuantity for Product Bमात्रा:Query StringQuery StringsQuerystring Variableप्रश्नQuestion PositionQuote RequestरेडियोRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?Recaptchaपुन: निर्दिष्ट करेंहटायेंRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?अनिवार्यआवश्यक फ़ील्डRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+पुनर्स्थापित करेंRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsरीयूनियनRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xरोमानियारूसी संघरवांडाSMTPSOAP ClientSUHOSIN Installedसेंट किट्स और नेविशसंत लूसियासेंट विंसेंट और ग्रेनेडाइंससमोआसैन मैरियोसाओ टोमे एंड प्रिंसिपेसऊदी अरबसेव करें tSave & ActivateSave Field SettingsSave Formविकल्प हैं:सेटिंग्स सहेजेंसबमिशन सहेजेंसहेज दियाSaved Fieldsसहेजा जा रहा है...Search ItemSearch Submissionsचुनेंसभी चुनेंSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.चयनितSelected ValueभेजेंSend a copy of the form to this address?सेनेगलसर्बियाServer IP AddressसेटिंगSettings Savedसेशेल्सशिप्पिंगलघुकोडShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload Buttonअधिक दिखाएँShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.सियरा लिओनसिंगापुरएकलSingle CheckboxSingle CostSingle Line TextSingle Product (default)साइट की यू.आर.एल.Slovakia (Slovak Republic)स्लोवेनियाSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxसोलोमन द्वीपसोमालियाSort as NumericSort as numericदक्षिण अफ़्रीकाSouth Georgia, South Sandwich Islandsदक्षिणी सुडानस्पेनSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)श्रीलंकाSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateराज्यस्थितिStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorज़ोरदार या महत्वपू्णSub SequenceविषयSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsप्रस्तुत करें|Submit button text after timer expiresSubmit via AJAX (without page reload)?सबमिट किया गयाSubmitted BySubmitted by: निवेदित तिथिSubmitted on: Subscribeसफलता संदेशसूडानसूरीनामस्वालबार्ड और जैन मायेन द्वीप समूहस्वाजीलैंडस्वीडनस्विट्जरलैंडSyrian Arab RepublicSystemसिस्टम स्टेटस THREE is coming!ताइवानतजाकिस्तानTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfकरTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms Listटेक्स्टText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxथायलैंडThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.अपलोड की गई फ़ाइल एचटीएमएल फ़ॉर्म में निर्दिष्ट(स्पेसिफ़ाइड) किए गए MAX_FILE_SIZE निर्देश(डायरेक्टिव) से अधिक है।अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश(डायरेक्टिव) से अधिक है।फाइल पूरी तरह से अपलोड नही हो पाई.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldयह अपेक्षित फ़ील्ड है.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersतीनTimed SubmitTimer error messageTimor-Leste (East Timor)इस तकTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerटोगोटोकेलाऊटोंगाकुलTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.त्रिनिदाद और टोबैगोट्यूनिशियातुर्कीतुर्कमेनिस्तानतुर्क्स और कैकोज़ द्वीपसमूहतुवालुदोप्रकारयूआरएलUS Phoneयुगांडायूक्रेनUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.पूर्ववत् करेंUndo Allसंयुक्त अरब अमीरातयूनाइटेड किंगडमयूनाइटेड स्टेट्सUnited States Minor Outlying IslandsUnknown upload error.UnpublishedअपडेटUpdate ItemUpdated on: Updating Form Databaseनवीनीकरण करेंUpgrade to Ninja Forms THREEनवीनीकृतUpgrades CompleteURLउरुग्वेUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.उपयोगकर्ताUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    उज़्बेकिस्तानValidate as an email address? (Field must be required)ValueवानुअतुVariable Nameवेनेजुएलासंस्करण Version %sVery weakViet NamदेखेView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full Changelogवर्जिन द्वीपसमूह (ब्रिटिश)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP Versionवॉलिस और फ़्यूचूना आइलैंड्सWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.सरलWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sपश्चिमी सहाराWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dd/m/Y YYYY-MM-DDYYYY/MM/DDयमनहाँYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.आपका प्रपत्र सफलतापूर्वक सबमिट कर दिया गया है.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at यूगोस्लावियाजाम्बियाज़िम्बाब्वेज़िपजिप कोडa - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredजवाबbutton-secondary nf-download-allइसके द्वारावर्ण छूटेcheckedप्रतिकृति बनायेविशेषd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Yकोई नहीइसकाof Product A and of Product B for $एकone_week_supportकूट शब्दप्रोसेसिंगproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsरीफ़्रेश करेंsmtp_portतीनशीर्षकदोuncheckedअद्यतितuser@gmail.comसंस्करण wp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.lang/ninja-forms-fr_FR.mo000064400000314172152331132460011251 0ustar00,(totg&uu5uuuvvvvvv v v$vw1wEwwwxx %x/x7x =x Hx Tx^xfx&xx xx x x xxxy y yy!y *y7y FyTyXy\y ny zy;y y yyyy y y zzz-zJzjzzz zzzz zzzz {{ &{ 3{@{H{O{S{ X{ c{o{{{ {L{| ||| "|A-|o|||||||} #}/}G}Y}h}k}} } }} }}}} } ~~~4~:~@~Q~ V~"a~~~~ ~~W~#+J%P v         :7N? р 'FKT dqx ΁%, ; FQh ̂ ۂ  "[5у )8GNex ΄ ܅" $, ?L!]  ˆن|ԇه .6 ; G Q[jz  ň Ո # %-0S'MƉOUd ӊߊ<Yaj } ԋ   -9W s  Ɍӌ$( IN`!y  ǎЎ ߎ -8OV \jy Џ  ")1BJR[l { 7,ߐq ~  ? ,>Sg{  ’͒ Ғܒ  +? DN] d q |!Jhq z  ǔה ߔh`n~QO?QD<&%c1EDHӚgn~ œ М ܜ '(Pav |  ÝН ߝ  0KPXry!ŞΞ/՞  #&0Wj q| 2ڟL ? `jq !۠  ( 1?E`v š ˡա ݡ   )&/ Vahqzk  "& > LX`go_~ޣ# 1 5CXa} Ȥݤ  4 ?Kg ǥܥ  -5 ;F LXWm ŦЦ   *4:B Vb{ҧ#7Vko!c$1|f7UXZMU5ϬԬ׬!-4Oޭ (0CDH0=%4D^#~#Ư֯ۯ߯NI \}  Űڰ  /;CLRYjy ر  )/FO ֲ 5/#S!q20"###8(a"vCyݵ(W)+(jƷ 3 R` hs| Ƹ ո 2 N Xb " Ź:ҹ !*09P g q ~ ʺ кۺ %/8+? kx>ӻ*ܻ4I_u+ Լ ?Wmu* &8 N Z{  ľ ؾ   *6I P [ g VĿGcl{(  12A Z d   !:C^ grr %* P\ b n(|   #:Xk r!" * ;G&N&u    &0 7CX _m~ < (3 8E+b$dSSn /{;9J!l*1\G;2$7 \}Z Gh.F&x*90d9+!96p4B.\q35Q:qZZ?'Ag:&GE KXlD d q^ -FMQVZcj r| $   -DLir ,O[O)(d    6G_| ~6     & 1;K\t  %?bo'%B*h N!%+ 1 <GMWQ46v40(/)XH5*;{4]+4." O $'9AFMS nx  '1DYl  Bf08n"v %$K.RZ=6 Q [gw #'  &n<qoJ.5=CKcy8!K m% 0. ,:g   ,4=$Bgw2!x6#  $(.Wr]!}$   !#= al  (/37MaQp  $* 3T#p   );Men  QT]fmuv~4.*,Y&0*' !1Sg  !=[j )   1 : I vQ  8  " 4  J X  g  q  {       @ ! `&  % $ # * 0 M k           0 P %e ' '     "-Jg"n   6{P"A$T;y %@ IUo 148Lair !   -";^1*H s}$  2IRk$!#F*j(% ]Q_o! ; ISh }T  (A^g1 ; Ucr   '?]bL    ,!Acv!/%= DPg| 4  D Q W  ^ h         !P'!8x!!?"Q"o" u"n"""#%#:#U#p### ### ## ### $$$ $($@$X$ ]$j$}$ $$$*$$%%%%%% %&&$&5& =&I&Q&*''(g5))X*gw*h*SH+M+2+=,[,R,2K-~-.//)///0'0;0 T0u000*0001 1#141=1V1f1w11 111$1$2(2E2J2R2m2u22 22+222/2 3 3&3+3 43-@3n33 33 333C34'4p.4'444445-5 F5g5m555555 55"556$,6Q6W6 s666 66 6 6 6 6 6 6757 <7G7N7W7`7e7k78 8 )848<8'@8h8 x88!888r899A9!I9,k999 99$99$ :*/: Z:f:~:: : :$::": ::5;2G;&z;;&;;;; <<#<'< ?<M<U<[<p<w<<<?='O=w= ===+= ===> >">,<>i>y>>>$>>?. ?O?n??z?,@@@@@A~AsKBpBu0CtCDHDEEJE!NEpEE'E$EGE&8F#_F F7FF FFG#G 5G@G^GggG3GUHYH`HsHHHH'H'H5IHIZI_IbInxI!I J)J:JCJLJUJ ]J#gJJ JJJJ JK KKK K;KLKUK dKqK/K$KKKLL/L 6LBLGLcLlL L MOM9eM+M3M'M6'N5^NN)2O"\O-O'OFOP(.PXWPPFQ$Q@QF3R6zR|R".S1QS SS"SSS-S'S% TFTUTdT wTTTTTT TTUU!/UQUYUuU U U'U'U)U#VJ3V~V VVVVVV VVWW:WCW[WlWrWW%W6W X X XS$XxX)XeX YL)YvY }YYYYYYC Z PZZZ-pZZ ZPZ[ -[9[S[i["|[.[[[[\\ \\*\ D\Q\q\ w\\\\\\\\]1]K]R]f]x]]]]]/]^'^4C^kx^8^ _+_A_4I_ ~___ __ _ _ _9_`.6` e`-s`*``*`Ba Ca PaZaaa pa}a$a a a aaa bbbbb(b c&c .c s,t%.t"TtDwtttt#u!$uFuI[uauZv!bv2v:v vFwDxrx@\yCyyz{E{{{#|5|D|I|u}~}}}}}} }q}9~L~T~ \~j~~~~ ~ ~~~ ~~D~' /< Q ]*i(  ɀր35"D g0uҁ,=OT>%d . O'[!"̄&7Tq"$#؅ Ɔ>ц 2< D O\di}‡ه'8Ml ~͈ cӊ7>Pm"1*|0)׌ތ   B<\Ў4-GbF*^{#!Ԑ6!+X6'Ɠ  ǔӔnܔK Tuy  ϕٕ "*-?TXi y ˖ޖ  '17= B MYhXpwɗ8A ?'YZ"vE/MT$GX'&63eq6]a}AmuoWh%|% #*a VIuJ;nAy!fVSv>FG Xx],rPP>@-rA!/a~[Jr NKb] \o^_&(7MHev.Kq"mS32yID}E.Dgx2=0zToo Jf0`K4P;7% +C#tW~~w`5$!bmO/k_o&g*]:^EiJI5EVp*B8|}(q@+I1D{'-LQ<Lh'1e}n$D?RX[61? :<LS8spcZ0z5!Cj 6hZM =XWvLT ;P> kd-,CW0=q@/eGKkxc~c/UR#%fkl(8CiBg #NO5`YM <UHl h)z]  7z w%<,ii9t}>?y8O69N'tuRmpy)xw)qz-c3&Bh#A^(`1aO|dIG:ss-FLQ2s,_$\Uj.[~! i+v_ {Qt(c< 5"&S0[T*G9 QZ\+Nb;ufa ^9B*b:YgwRMQ$n7>{=2jR\UlY reHF)xnK"VbPrCUgBm  js2X_7\lWd d9 @1d`pJ,:3.4 FAEw48lnuT@)t34k[S"YyD|Z{V+j{|F4=HfH.O?N^p; Fields Open in new window Undo All installed. The current version is product(s) for requires an update. You have version #%1$s draft updated. Preview %3$s%1$s restored to revision from %2$s.%1$s scheduled for: %2$s. Preview %4$s%1$s submitted. Preview %3$s%n will be used to signify the number of seconds%s ago%s published.%s saved.%s updated.%s was deactivated.%sAllow%s%sChecked%s Calculation Value%sDo not allow%s%sUnchecked%s Calculation Value* - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered- None- Select One- Select a Field- Select a Product- Select a Variable- Select a form- View All Types9 - Represents a numeric character (0-9) - Only allows numbers to be entered
    • a - Represents an alpha character (A-Z,a-z) - Only allows letters to be entered.
    • 9 - Represents a numeric character (0-9) - Only allows numbers to be entered.
    • * - Represents an alphanumeric character (A-Z,a-z,0-9) - This allows both numbers and letters to be entered.
    A case sensitive answer to help prevent spam submissions of your form.A major update is coming to Ninja Forms. %sLearn more about new features, backwards compatibility, and more Frequently Asked Questions.%sA simplified and more powerful form building experience.Above ElementAbove FieldAction NameAction UpdatedActionsActivateActiveAddAdd DescriptionAdd FormAdd NewAdd New FieldAdd New FormAdd New ItemAdd New SubmissionAdd New TermsAdd OperationAdd Submit ButtonAdd ValueAdd form actionsAdd form fieldsAdd form to this pageAdd new actionAdd new fieldAdd subscribers and grow your email list with this newsletter signup form. You can add and remove fields as needed.Add-On LicensesAdd-OnsAddressAddress 2Adds an extra class to your field element.Adds an extra class to your field wrapper.Admin EmailAdmin LabelAdministrationAdvancedAdvanced EquationAdvanced SettingsAdvanced ShippingAfghanistanAfter EverythingAfter FormAfter LabelAgree?AlbaniaAlgeriaAllAll About FormsAll FieldsAll FormsAll ItemsAll current forms will remain in the "All Forms" table. In some cases some forms may be duplicated during this process.Allow user to register for your next event this easy to complete form. You can add and remove fields as needed.Allow your users to contact you with this simple contact form. You can add and remove fields as needed.Allows rich text input.Allows users to choose more than one of this product.Almost there...Along with the "Build Your Form" tab, we've removed "Notifications" in favor of "Emails & Actions." This is a much clearer indication of what can be done on this tab.American SamoaAn unexpected error occurred.AndorraAngolaAnguillaAnswerAntarcticaAnti-SpamAnti-Spam Question (Answer = answer)Anti-spam error messageAntigua And BarbudaAny character you place in the "custom mask" box that is not in the list below will be automatically entered for the user as they type and will not be removeableAppend A Ninja FormAppend a Ninja FormsAppend to PageApplyArgentinaArmeniaArubaAttach CSVAttachmentsAustraliaAustriaAuto-Total FieldsAutomatically Total Calculation ValuesAvailableAvailable TermsAzerbaijanBack To ListBack to listBackup / RestoreBackup Ninja FormsBahamasBahrainBangladeshBarBarbadosBasic FieldsBasic SettingsBathroom SinkBazBccBefore EverythingBefore FormBefore LabelBefore requesting help from our support team please review:Begin DateBeing DateBelarusBelgiumBelizeBelow ElementBelow FieldBeninBermudaBest Contact Method?Best Support in the BusinessBetter Organized Field SettingsBetter license managementBhutanBillingBlank FormsBoliviaBosnia And HerzegowinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBuild Your FormBulgariaBulk ActionsBurkina FasoBurundiButtonCVCCalcCalc ValueCalculationCalculation MethodCalculation SettingsCalculation nameCalculationsCalculations are returned with the AJAX response ( response -> data -> calcsCambodiaCameroonCanadaCancelCape VerdeCaptcha mismatch. Please enter the correct value in captcha fieldCard CVC DescriptionCard CVC LabelCard Expiry Month DescriptionCard Expiry Month LabelCard Expiry Year DescriptionCard Expiry Year LabelCard Name DescriptionCard Name LabelCard NumberCard Number DescriptionCard Number LabelCayman IslandsCcCentral African RepublicChadChange ValueCharacter(s)Character(s) leftCharactersCheatin’ huh?Check out our documentationCheckboxCheckbox ListCheckboxesCheckedChecked Calculation ValueChileChinaChristmas IslandCityClass NameClear successfully completed form?Cocos (Keeling) IslandsCollect PaymentColombiaCommon FieldsComorosComplex equations can be created by adding parentheses: %s( field_45 * field_2 ) / 2%s.ConfirmConfirm that you are not a botCongoCongo, The Democratic Republic Of TheContact FormContact MeContact UsContainerContinueCook IslandsCostCost DropdownCost OptionsCost TypeCosta RicaCote D'IvoireCould not activate license. Please verify your license keyCountryCreates a unique key to identify and target your field for custom development.Credit CardCredit Card CVCCredit Card CVVCredit Card ExpirationCredit Card Full NameCredit Card NumberCredit Card ZipCredit Card Zip CodeCreditsCroatia (Local Name: Hrvatska)CubaCurrencyCurrency SymbolCurrent pageCustomCustom CSS ClassCustom CSS ClassesCustom Class NamesCustom Field GroupCustom MaskCustom Mask DefinitionCustom field deleted.Custom field updated.Custom first optionCyprusCzech RepublicDD-MM-YYYYDD/MM/YYYYDEBUG: Switch to 2.9.xDEBUG: Switch to 3.0.xDarkData restored successfully!DateDate CreatedDate FormatDate SettingsDate SubmittedDate UpdatedDatepickerDe-activateDeactivateDeactivate All LicensesDeactivate LicenseDeactivate Ninja Forms extension licenses individually or as a group from the settings tab.DefaultDefault CountryDefault Label PositionDefault TimezoneDefault To Current DateDefault ValueDefault timezone is %sDefault timezone is %s - it should be UTCDefined FieldsDeleteDelete (^ + D + click)Delete PermanentlyDelete this formDelete this item permanentlyDenmarkDescriptionDescription ContentDescription PositionDid you know that you can increase form conversion by breaking larger forms into smaller, more easily digested parts?

    The Multi-Part Forms extension for Ninja Forms makes this quick and easy.

    Disable Admin NoticesDisable Browser AutocompleteDisable InputDisable Rich Text Editor on MobileDisable input?DismissDisplayDisplay Form TitleDisplay NameDisplay SettingsDisplay This Calculation VariableDisplay TitleDisplaying Your FormDividerDjiboutiDo not show these termsDocumentationDocumentation coming soon.Documentation is available covering everything from %sTroubleshooting%s to our %sDeveloper API%s. New Documents are always being added.Does NOT apply to form preview.Does apply to form preview.DominicaDominican RepublicDoneDownload All SubmissionsDropdownDuplicateDuplicate (^ + C + click)Duplicate FormEcuadorEditEdit ActionEdit FormEdit ItemEdit Menu ItemEdit SubmissionEdit this itemEditing FieldEditing fieldEgyptEl SalvadorElementEmailEmail & ActionsEmail AddressEmail MessageEmail Subscription FormEmail address or search for a fieldEmail addresses or search for a fieldEmail will appear to be from this email address.Email will appear to be from this name.Emails & ActionsEnd DateEnsure that this field is completed before allowing the form to be submitted.Enter text you would like displayed in the field before a user enters any data.Enter the label of the form field. This is how users will identify individual fields.Enter your email addressEnvironmentEquationEquation (Advanced)Equatorial GuineaEritreaErrorError message given if all required fields are not completedEstoniaEthiopiaEvent RegistrationExpand MenuExpiration month (MM)Expiration year (YYYY)ExportExport Favorite FieldsExport FieldsExport FormExport FormsExport a formExport this itemExtend Ninja FormsFILE UPLOADFailed to write file to disk.Falkland Islands (Malvinas)Faroe IslandsFavorite FieldsFavorites imported successfully.FieldField #Field IDField KeyField Not FoundField OperationsFieldsFields marked with a * are required.Fields marked with an %s*%s are requiredFijiFile Upload ErrorFile Upload in Progress.File upload stopped by extension.FinlandFirst NameFix it.FooFoo BarFor instance, if you had a product key that was in the form of A4B51.989.B.43C, you could mask it with: a9a99.999.a.99a, which would force all the a's to be letters and the 9s to be numbersFormForm DefaultForm DeletedForm FieldsForm Imported Successfully.Form KeyForm Not FoundForm PreviewForm Settings SavedForm SubmissionsForm Template Import Error.Form TitleForm with CalculationsFormatFormsForms DeletedForms Per PageFranceFrance, MetropolitanFrench GuianaFrench PolynesiaFrench Southern TerritoriesFriday, November 18, 2019From AddressFrom NameFull ChangelogFull screenGabonGambiaGeneralGeneral SettingsGeorgiaGermanyGet HelpGet More ActionsGet More TypesGet Some HelpGet SupportGet System ReportGet a site key for your domain by registering %shere%sGet started by adding your first form field.Get started by adding your first form field. Just click the plus and select the actions you want. It's that easy.Getting StartedGetting started with Ninja FormsGhanaGibraltarGive your form a title. This is how you'll find the form later.GoGo get a life, script kiddiesGo to FormsGo to Ninja FormsGo to the first pageGo to the last pageGo to the next pageGo to the previous pageGreeceGreenlandGrenadaGrowing DocumentationGuadeloupeGuamGuatemalaGuineaGuinea-BissauGuyanaHTMLHaitiHalf screenHeard And Mc Donald IslandsHello, Ninja Forms!HelpHelp TextHelp Text HereHiddenHidden FieldHide LabelHide ThisHide successfully completed form?Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).Holy See (Vatican City State)Home URLHondurasHoney PotHoneypot ErrorHoneypot error messageHong KongHook TagHost NameHow's It Going?HungaryIP AddressIcelandIf "desc text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the desc text.If "help text" is enabled, there will be a question mark %s placed next to the input field. Hovering over this question mark will show the help text.If this box is checked, ALL Ninja Forms data will be removed from the database upon deletion. %sAll form and submission data will be unrecoverable.%sIf this box is checked, Ninja Forms will clear the form values after it has been successfully submitted.If this box is checked, Ninja Forms will hide the form after it has been successfully submitted.If this box is checked, Ninja Forms will send a copy of this form (and any messages attached) to this address.If this box is checked, Ninja Forms will validate this input as an email address.If this box is checked, both password and re-password textboxes will be output.If this box is checked, this column in the submissions table will sort by number.If you are a human and are seeing this field, please leave it blank.If you are a human seeing this field, please leave it empty.If you are a human, please slow down.If you leave the box empty, no limit will be usedIf you opt-in, some data about your installation of Ninja Forms will be sent to NinjaForms.com (this does NOT include your submissions).If you skip this, that's okay! Ninja Forms will still work just fine.If you want to send an empty value or calc, you should use '' for those.If you would like for your form to notify you via email when a user clicks submit, you can set those up on this tab. You can create an unlimited number of emails, including emails sent to the user who filled out the form.If your forms are "missing" after updating to 2.9, this button will attempt to reconvert your old forms to show them in 2.9. All current forms will remain in the "All Forms" table.ImportImport / ExportImport / Export SubmissionsImport Favorite FieldsImport FavoritesImport FieldsImport FormImport FormsImport List ItemsImport a formImport/ExportImproved clarityInclude in the auto-total? (If enabled)Incorrect AnswerIncrease ConversionsIndiaIndonesiaInput MaskInsertInsert All FieldsInsert FieldInsert LinkInsert MediaInside ElementInstalledInstalled PluginsInterest GroupsInvalid Form Upload.Invalid form idIran (Islamic Republic Of)IraqIrelandIs this an email address?IsraelIt's that easy. Or...ItalyJamaicaJapanJavaScript disabled error messageJohn DoeJordanJust click here and select the fields you want.KazakhstanKenyaKeyKiribatiKitchen SinkKorea, Democratic People's Republic OfKorea, Republic OfKuwaitKyrgyzstanLabelLabel HereLabel NameLabel PositionLabel used when viewing and exporting submissions.Label,Value,CalcLabelsLanguage used by reCAPTCHA. To get the code for your language click %shere%sLao People's Democratic RepublicLast NameLatviaLayout ElementsLayout FieldsLearn MoreLearn More About Multi-Part FormsLearn More About Save ProgressLebanonLeft of ElementLeft of FieldLesothoLiberiaLibyan Arab JamahiriyaLicensesLiechtensteinLightLimit Input to this NumberLimit Reached MessageLimit SubmissionsLimit input to this numberListList Field MappingList TypeListsLithuaniaLoadingLoading...LocationLogged InLong Form - LuxembourgMM-DD-YYYYMM/DD/YYYYMacauMacedonia, Former Yugoslav Republic OfMadagascarMalawiMalaysiaMaldivesMaliMaltaManage quote requests from your website easily with this remplate. You can add and remove fields as needed.Marshall IslandsMartiniqueMauritaniaMauritiusMaxMax Input Nesting LevelMaximum ValueMaybe LaterMayotteMediumMessageMessage LabelsMessage shown to users if the "logged in" checkbox above is checked and they are not logged-in.MetaboxMexicoMicronesia, Federated States OfMigrations and Mock Data complete. MinMinimum ValueMiscellaneous FieldsMismatchMissing a temporary folder.Mock Email ActionMock Save ActionMock Success Message ActionModified onMoldova, Republic OfMonacoMongoliaMontenegroMontserratMore to comeMoroccoMove this item to the TrashMozambiqueMult-SelectMulti Product - Choose ManyMulti Product - Choose OneMulti Product - DropdownMulti-SelectMulti-Select Box SizeMultipleMy First CalculationMy Second CalculationMySQL VersionMyanmarNameName on the cardName or fieldsNamibiaNauruNeed Help?NepalNetherlandsNetherlands AntillesNever see an admin notice on the dashboard from Ninja Forms. Uncheck to see them again.New ActionNew Builder TabNew CaledoniaNew ItemNew SubmissionNew ZealandNewsletter Sign Up FormNicaraguaNigerNigeriaNinja Form SettingsNinja FormsNinja Forms - ProcessingNinja Forms ChangelogNinja Forms DevNinja Forms DocumentationNinja Forms ProcessingNinja Forms SubmissionNinja Forms System StatusNinja Forms THREE documentationNinja Forms UpgradeNinja Forms Upgrade ProcessingNinja Forms UpgradesNinja Forms VersionNinja Forms WidgetNinja Forms also comes with a simple template function that can be placed directly into a php template file. %sNinja Forms basic help goes here.Ninja Forms cannot be network activated. Please visit each site's dashboard to activate the plugin.Ninja Forms has completed all available upgrades!Ninja Forms is created by a worldwide team of developers who aim to provide the #1 WordPress community form creation plugin.Ninja Forms needs to process %s upgrade(s). This may take a few minutes to complete. %sStart Upgrade%sNinja Forms needs to update your email settings, click %shere%s to start the upgrade.Ninja Forms needs to upgrade the submissions table, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form notifications, click %shere%s to start the upgrade.Ninja Forms needs to upgrade your form settings, click %shere%s to start the upgrade.Ninja Forms provides a widget that you can place in any widgetized area of your site and select exactly which form you would like displayed in that space.Ninja Forms shortcode used without specifying a form.NiueNoNo Action Specified...No Favorite Fields FoundNo Fields Found.No Submissions FoundNo Submissions Found In The TrashNo available terms for this taxonomy. %sAdd a term%sNo file was uploaded.No forms found.No taxonomy selected.No valid changelog was found.NoneNorfolk IslandNorthern Mariana IslandsNorwayNot Logged-In MessageNot YetNot found in TrashNoteNote text can be edited in the note field's advanced settings below.Notice: JavaScript is required for this content.Notice: Ninja Forms shortcode used without specifying a form.NumberNumber Max ErrorNumber Min ErrorNumber OptionsNumber of StarsNumber of decimal places.Number of seconds for countdownNumber of seconds for the countdownNumber of seconds for timed submit.Number of starsOmanOneOne email address or fieldOops! That addon is not yet compatible with Ninja Forms THREE. %sLearn More%s.Open in new windowOperations and Fields (Advanced)Opinionated StylesOption OneOption ThreeOption TwoOptionsOrganizerOur Scope of SupportOutput calculation asPHP LocalePHP Max Input VarsPHP Post Max SizePHP Time LimitPHP VersionPUBLISHPakistanPalauPanamaPapua New GuineaParagraph TextParaguayParent Item:PasswordPassword ConfirmPassword Mismatch LabelPasswords do not matchPayment FieldsPayment GatewaysPayment TotalPermission DeniedPeruPhilippinesPhonePhone - (555) 555-5555PitcairnPlace %s in any area that accepts shortcodes to display your form anywhere you like. Even in the middle of your page or posts content.PlaceholderPlain TextPlease %scontact support%s with the error seen above.Please answer the anti-spam question correctly.Please check required fields.Please complete the captcha fieldPlease complete the recaptchaPlease correct errors before submitting this form.Please ensure all required fields are completed.Please enter a message that you want displayed when this form has reached its submission limit and will not accept new submissions.Please enter a valid email addressPlease enter a valid email address!Please enter a valid email address.Please help us improve Ninja Forms!Please include this information when requesting support:Please increment by Please leave the spam field blank.Please make sure you have entered your Site & Secret keys correctlyPlease rate %sNinja Forms%s %s on %sWordPress.org%s to help us keep this plugin free. Thank you from the WP Ninjas team!Please select a form to view submissionsPlease select a form.Please select a valid exported form file.Please select a valid favorite fields file.Please select favorite fields to export.Please use these operators: + - * /. This is an advanced feature. Watch out for things like division by 0.Please wait %n secondsPlease wait to submit the form.PluginsPolandPopulate this with the taxonomyPortugalPostPost / Page ID (If available)Post / Page Title (If available)Post / Page URL (If available)Post CreationPost IDPost TitlePost URLPreviewPreview ChangesPreview FormPreview does not exist.PricePrice:Pricing FieldsProcessingProcessing LabelProcessing Submission LabelProductProduct (quanitity included)Product (seperate quantity)Product AProduct BProduct Form (Inline Quantity)Product Form (Multiple Products)Product Form (with Quantity Field)Product TypeProgrammatic name that can be used to reference this form.PublishPuerto RicoPurchaseQatarQuantityQuantity for Product AQuantity for Product BQuantity:Query StringQuery StringsQuerystring VariableQuestionQuestion PositionQuote RequestRadioRadio ListRe-enter PasswordRe-enter Password LabelReally deactivate all licenses?RecaptchaRedirectRemoveRemove ALL Ninja Forms data upon uninstall?Remove ValueRemove all Ninja Forms dataRemove this field? It will be removed even if you do not save.Reply ToRequire user to be logged in to view form?RequiredRequired FieldRequired Field ErrorRequired Field LabelRequired field symbolReset Form ConversionReset Forms ConversionReset the form conversion process for v2.9+RestoreRestore Ninja FormsRestore this item from the TrashRestriction SettingsRestrictionsRestricts the kind of input your users can put into this field.Return to Ninja FormsReunionRich Text Editor (RTE)Right of ElementRight of FieldRollbackRollback to the most recent 2.9.x release.Rollback to v2.9.xRomaniaRussian FederationRwandaSMTPSOAP ClientSUHOSIN InstalledSaint Kitts And NevisSaint LuciaSaint Vincent And The GrenadinesSamoaSan MarinoSao Tome And PrincipeSaudi ArabiaSaveSave & ActivateSave Field SettingsSave FormSave OptionsSave SettingsSave SubmissionSavedSaved FieldsSaving...Search ItemSearch SubmissionsSelectSelect AllSelect ListSelect a field or type to searchSelect a fileSelect a formSelect a form or type to searchSelect the number of submissions that this form will accept. Leave empty for no limit.Select the position of your label relative to the field element itself.SelectedSelected ValueSendSend a copy of the form to this address?SenegalSerbiaServer IP AddressSettingsSettings SavedSeychellesShippingShortcodeShould be entered as a percentage. e.g. 8.25%, 4%Show Help TextShow Media Upload ButtonShow MoreShow Password Strength IndicatorShow Rich Text EditorShow ThisShow list item valuesShown to users as a hover.Sierra LeoneSingaporeSingleSingle CheckboxSingle CostSingle Line TextSingle Product (default)Site URLSlovakia (Slovak Republic)SloveniaSnail MailSo, if you wanted to create a mask for an American Social Security Number, you would type 999-99-9999 into the boxSolomon IslandsSomaliaSort as NumericSort as numericSouth AfricaSouth Georgia, South Sandwich IslandsSouth SudanSpainSpam AnswerSpam QuestionSpecify Operations And Fields (Advanced)Sri LankaSt. HelenaSt. Pierre And MiquelonStandard FieldsStar RatingStart from a templateStateStatusStepStep %d of approximately %d runningStep (amount to increment by)Strength indicatorStrongSub SequenceSubjectSubject Text or seach for a fieldSubject Text or search for a fieldSubmissionSubmission CSVSubmission DataSubmission InfoSubmission LimitSubmission MetaboxSubmission StatsSubmissionsSubmitSubmit button text after timer expiresSubmit via AJAX (without page reload)?SubmittedSubmitted BySubmitted by: Submitted onSubmitted on: SubscribeSuccess MessageSudanSurinameSvalbard And Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicSystemSystem StatusTHREE is coming!TaiwanTajikistanTake a look at our in-depth Ninja Forms documentation below.Tanzania, United Republic OfTaxTax PercentageTaxonomyTemplate FieldsTemplate FunctionTerms ListTextText ElementText to Appear After CounterText to appear after character/word counterTextareaTextboxThailandThank you for filling out this form.Thank you for updating to the latest version! Ninja Forms %s is primed to make your experience managing submissions an enjoyable one!Thank you for updating to version 2.7 of Ninja Forms. Please update any Ninja Forms extensions from Thank you for updating! Ninja Forms %s makes form building easier than ever before!Thank you for using Ninja Forms! We hope that you've found everything you need, but if you have any questions:Thank you {field:name} for filling out my form!The (typically) 16 digits on the front of your credit card.The 3 digit (back) or 4 digit (front) value on your card.The 9s would represent any number, and the -s would be automatically addedThe Forms menu is your access point for all things Ninja Forms. We've already created your first %scontact form%s so that you have an example. You can also create your own by clicking %sAdd New%s.The format should look like the following:The interface updates in this version lay the groundwork for some great improvements in the future. Version 3.0 will build on these changes to make Ninja Forms an even more stable, powerful, and user-friendly form builder.The month your credit card expires, typically on the front of the card.The most common settings are shown immediately, while other, non-essential, settings are tucked away inside expandable sections.The name printed on the front of your credit card.The passwords provided do not match.The people who build Ninja FormsThe process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.The uploaded file exceeds the upload_max_filesize directive in php.ini.The uploaded file was only partially uploaded.The year your credit card expires, typically on the front of the card.There is a new version of %1$s available. View version %3$s details or update now.There is a new version of %1$s available. View version %3$s details.There uploaded file is not a valid format.These are all the fields in the Pricing section.These are all the fields in the User Information section.These are the predefined masking charactersThese are various special fields.These fields must match!This column in the submissions table will sort by number.This is a required fieldThis is a required field.This is a testThis is a user's state.This is an email action.This is another test.This is how long a user must wait to submit the formThis is the label used when viewing/editing/exporting submissions.This is the programmatic name of your field. Examples are: my_calc, price_total, user-total.This is the user's stateThis is the value that will be used if %sChecked%s.This is the value that will be used if %sUnchecked%s.This is where you'll build your form by adding fields and dragging them into the order you want them to appear. Each field will have an assortment of options such as label, label position, and placeholder.This keyword is reserved by WordPress. Please try another.This message is shown inside the submit button whenever a user clicks "submit" to let them know it is processing.This message is shown to a user when non-matching values are placed in the password field.This number will be used in calculations if the box is checked.This number will be used in calculations if the box is unchecked.This setting will COMPLETELY remove anything Ninja Forms related upon plugin deletion. This includes SUBMISSIONS and FORMS. It cannot be undone.This tab hold general form settings, such as title and submission method, as well as display settings like hiding a form when it is successfully completed.This will be the subject of the email.This would prevent the user from putting in anything other than numbersThreeTimed SubmitTimer error messageTimor-Leste (East Timor)ToTo activate licenses for Ninja Forms extensions you must first %sinstall and activate%s the chosen extension. License settings will then appear below.To use this feature, you can paste your CSV into the textarea above.Today's DateToggle DrawerTogoTokelauTongaTotalTrashTries to follow the %sPHP date() function%s specifications, but not every format is supported.Trinidad And TobagoTunisiaTurkeyTurkmenistanTurks And Caicos IslandsTuvaluTwoTypeURLUS PhoneUgandaUkraineUncheckedUnchecked Calculation ValueUnder Basic Form Behavior in the Form Settings you can easily select a page that you would like the form automatically appended to the end of that page's content. A similiar option is avaiable in every content edit screen in its sidebar.UndoUndo AllUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnknown upload error.UnpublishedUpdateUpdate ItemUpdated on: Updating Form DatabaseUpgradeUpgrade to Ninja Forms THREEUpgradesUpgrades CompleteUrlUruguayUse An Equation (Advanced)Use QuantityUse a custom first optionUse default Ninja Forms styling conventions.Use the following shortcode to insert the final calculation: [ninja_forms_calc]Use the tips below to get started using Ninja Forms. You will be up and running in no time!Use this as a registration password fieldUse this as a reistration password field. If this box is check, both password and re-password textboxes will be outputUsed for marking a field for processing.UserUser Display Name (If logged in)User EmailUser Email (If logged in)User EntryUser Firstname (If logged in)User IDUser ID (If logged in)User Info Field GroupUser InformationUser Information FieldsUser Lastname (If logged in)User Meta (if logged in)User Submitted ValuesUser Submitted Values:Users are more likely to complete long forms when they can save and return to complete their submission later.

    The Save Progress extension for Ninja Forms makes this quick and easy.

    UzbekistanValidate as an email address? (Field must be required)ValueVanuatuVariable NameVenezuelaVersionVersion %sVery weakViet NamViewView %sView ChangesView FormsView ItemView SubmissionView SubmissionsView the Full ChangelogVirgin Islands (British)Virgin Islands (U.S.)Visit plugin homepageWP Debug ModeWP LanguageWP Max Upload SizeWP Memory LimitWP Multisite EnabledWP Remote PostWP VersionWallis And Futuna IslandsWe do all we can to provide every Ninja Forms user with the best support possible. If you encounter a problem or have a question, %splease contact us%s.We've added the option to remove all Ninja Forms data (submissions, forms, fields, options) when you delete the plugin. We call it the nuclear option.We've noticed that don't have a submit button on your form. We can add one for your automatically.WeakWeb Server InfoWelcome to Ninja FormsWelcome to Ninja Forms %sWestern SaharaWhat Can We Help You With?What to try before contacting supportWhat would you like to name this favorite?What's NewWhen creating and editing forms, go directly to the section that matters most.Who should this email be sent to?Word(s)WordsWrapperY-m-dY/m/dYYYY-MM-DDYYYY/MM/DDYemenYesYou are eligible to upgrade to the Ninja Forms THREE Release Candidate! %sUpgrade Now%sYou can also combine these for specific applicationsYou can enter calculation equations here using field_x where x is the ID of the field you want to use. For example, %sfield_53 + field_28 + field_65%s.You cannot submit the form without Javascript enabled.You do not have permission to install plugin updatesYou do not have permission.You have not added a submit button to your form.You must be logged in to preview a form.You must supply a name for this favorite.You need JavaScript to submit this form. Please enable it and try again.You purchased You will find this included with your purchase email.Your form has been successfully submitted.Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.Your server does not have the %sSOAP Client%s class enabled - some gateway plugins which use SOAP may not work as expected.Your server has cURL enabled, fsockopen is disabled.Your server has fsockopen and cURL enabled.Your server has fsockopen enabled, cURL is disabled.Your server has the SOAP Client class enabled.Your version of the Ninja Forms File Upload extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.3.5. Please update this extension at Your version of the Ninja Forms Save Progress extension isn't compatible with version 2.7 of Ninja Forms. It needs to be at least version 1.1.3. Please update this extension at YugoslaviaZambiaZimbabweZipZip Codea - Represents an alpha character (A-Z,a-z) - Only allows letters to be enteredanswerbutton-secondary nf-download-allbycharacter(s) leftcheckedcopycustomd-m-Ydashicons dashicons-updateduplicatefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Ynoneofof Product A and of Product B for $oneone_week_supportpasswordprocessingproduct(s) for reCAPTCHAreCAPTCHA LanguagereCAPTCHA Secret KeyreCAPTCHA SettingsreCAPTCHA Site KeyreCAPTCHA ThemereCaptcha Settingsrefreshsmtp_portthreetitletwouncheckedupdateduser@gmail.comversionwp_remote_post() failed. PayPal IPN may not work with your server.wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider. Error:wp_remote_post() was successful - PayPal IPN is working.Project-Id-Version: Ninja Forms 3.0 POT-Creation-Date: 2016-08-29 09:53-0500 PO-Revision-Date: 2019-07-14 19:34+0100 Last-Translator: Language-Team: Language: en MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Poedit 2.2 X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;_ex X-Poedit-Basepath: . X-Poedit-SourceCharset: UTF-8 X-Poedit-SearchPath-0: . Champs Ouvrir dans une nouvelle fenêtre Tout annuler est installée. Version actuelle : produit(s) pour doit être mis à jour. La version #%1$s brouillon mis à jour. Aperçu %3$s%1$s restauré en révision à partir de %2$s.%1$s prévue pour : %2$s. Aperçu %4$s%1$s envoyé. Aperçu %3$s%n sera utilisé pour signifier le nombre de secondes.il y a %s%s publié.%s enregistré.%s mis à jour%s a été désactivé.%sAutoriser%sValeur de calcul %ssélectionnée%s%sNe pas autoriser%sValeur de calcul %snon sélectionnée%s* - Représente un caractère alpha-numérique (A-Z,a-z,0-9) - Cela permet d'accepter aussi bien les lettres et les nombres à être encodés- AucunSélectionnez une valeur- Sélectionner un ChampSélectionner un produitSélectionner une variableSélectionner un formulaire - Voir tous les types9 - Représente un caractère numérique (0-9) - Cela permet d'accepter seulement les nombres à être entrés
    • a - Représente un caractère alphabétique (A-Z, a-z) - Accepte uniquement les lettres.
    • 9 - Représente un caractère numérique (0-9) - Accepte uniquement les chiffres.
    • * - Représente un caractère alphanumérique (A-Z, -Z, a-z, 0-9) - Accepte les lettres et les chiffres.
    Réponse (sensible à la casse) permettant d'éviter que votre formulaire soit utilisé dans des actions de spam.Une mise à jour majeure de Ninja Forms sera bientôt disponible. %sDécouvrez ses nouvelles fonctionnalités, sa compatibilité descendante et sa Foire aux questions/FAQ.%sUne expérience plus simple et plus puissante pour créer des formulaires.Au-dessus de l'ElementAu-dessus du champNom de l’actionAction mise à jourActionActivéActifAjouterAjouter une descriptionAjouter un formulaireAjouterAjouter un nouveau champAjouter la nouvelle formeAjouter un nouvel objetAjouter une nouvelle soumissionAjouter de nouveaux termesAjouter OpérationAjouter le bouton "Soumettre"Ajouter une valeurAjouter des actions de formulaireAjouter des champs de formulaireAjouter le formulaire dans cette pageAjouter une nouvelle actionAjouter un nouveau champAjoutez les abonnés et développez votre liste d’emails avec ce formulaire d’inscription à la newsletter. Vous pouvez ajouter et supprimer des champs si nécessaire.Licences complémentairesModules complémentairesAdresseAdresse 2Ajoute une classe dans votre élément de champ.Ajoute une classe dans votre wrapper de champ.Adresse de contact de l’administrateurLibellé de l’adminAdministrationMode AvancéEquation AvancéeRéglages avancésNavigation avancéeAfghanistanAprès tout le contenuAprès le formulaireAprès le labelD’accord ?AlbanieAlgérieToutPour tout savoir sur les formulairesTous les champsTous les FormulairesTous les objetsLes formulaires actuels seront conservés dans le tableau "Tous les formulaires". Dans certains cas, ce processus génère des formulaires en double.Aidez vos utilisateurs à s’enregistrer en toute simplicité pour votre prochain événement afin de terminer le formulaire. Vous pouvez ajouter et supprimer des champs si nécessaire.Aidez vos utilisateurs à vous contacter avec ce formulaire de contact simple. Vous pouvez ajouter et supprimer des champs si nécessaire.Permet d'entrer du texte enrichi.Permet aux utilisateurs de choisir plusieurs produits.Vous y êtes presque...Nous avons introduit l’onglet "Création de formulaire" et nous avons remplacé "Notifications" par "Mails et actions". Ces changements décrivent beaucoup plus clairement les actions possibles dans cet onglet.American SamoaUne erreur inattendue est survenue.AndorreAngolaAnguillaRéponseAntarctiqueAnti-spamQuestion anti-spam (Réponse = réponse)Message d'erreur anti-spamAntigua-et-BarbudaQuel que soit le caractère que vous placiez dans un "masque personnalisé" qui n'est pas dans la liste plus bas sera automatiquement encodé pour l'utilisateur lorsqu'il tapera au clavier et ne sera pas supprimanteAjouter à la fin Un Ninja FormAjouter un formulaire Ninja FormsInsérer le formulaire dans une pageExécuterArgentineArménieArubaJoindre un fichier CSVPièces jointesAustralieAutricheChamps à total automatiqueCalculer Automatiquement les TotauxDisponibleTermes disponiblesAzerbaijanRetour à la listeRetour à la listeBackuper / RestaurerSauvegarder Ninja FormsBahamasBahrainBangladeshBarBarbadesChamps de baseParamètres de BaseLavaboBazCciAvant tout le contenuAvant le formulaireAvant le labelAvant de demander de l’aide à notre équipe de support technique, consultez :Date de DébutDate actuelleBiélorussieBelgiqueBelizeEn-bas de l'ElementAu-dessous du champBeninBermudesMeilleure méthode de contact ?Excellent support techniqueMeilleur agencement des paramètresMeilleure gestion des licencesBhutanFacturationFormulaires videsBolivieBosnie-HerzégovineBotswanaÎle BouvetBrésilTerritoire britannique de l'océan IndienBrunei DarussalamCréez votre formulaireBulgarieActions GroupéesBurkina FasoBurundiBoutonCVCCalcValeur de CalcType de calculMéthode de CalculParamètres de CalculNom du CalculCalculsLes calculs sont renvoyés avec la réponse AJAX (réponse -> données -> calculsCambodgeCamerounCanadaAnnulerCap VertLa valeur saisie ne correspond pas au code Captcha affiché Vous devez saisir la valeur correcte dans le champ CaptchaDescription du cryptogramme visuel (CVC) de la carteLabel du cryptogramme visuel (CVC) de la carteDescription du mois d'expiration de la carteLabel du mois d'expiration de la carteDescription de l'année d'expiration de la carteLabel de l'année d'expiration de la carteDescription du nom associé à la carteLabel du nom associé à la carteNuméro de la carteDescription du numéro de carteLabel de numéro de carteÎles CaïmansCcRépublique CentrafricaineTchadChanger la valeurCaractère(s)Caractères restantsCaractèresAlors on essaye de tricher ?Consultez notre documentationCase à cocherListe de cases à cocherCases à cocherCochéValeur de calcul (coché)ChiliChineChristmas IslandVilleNom de classeVider formulaire compléter avec succès?Îles Cocospercevoir le paiementColombieChamps communsComoresVous pouvez créer des équations complexes en utilisant des parenthèses, par exemple : %s(field_45 * field_2) / 2%s.ConfirmerConfirmez que vous n’êtes pas un robot logiciel (bot)CongoRépublique Démocratique du CongoFormulaire de contactContactez-moiContactez-nousConteneurContinuerÎles CookPrixListe déroulante des coûtsOptions de coûtType de coûtCosta RicaCote d'IvoireImpossible d'activer la licence. Vérifiez votre clé de licencePaysCrée une clé unique pour identifier et cibler votre champ (pour développement personnalisé).Carte bancaireCryptogramme visuel de carte bancaireCode de sécurité de carte bancaireDate d'expiration de carte bancaireNom complet du titulaire de carte bancaireNuméro de la carte bancaireCode postal de carte bancaireCode postal de carte bancaireCréditsCroatieCubaDeviseSymbole MonétairePage courantePersonnaliséClass CSS personnaliséesClasses CSS personnaliséesNoms de classe personnaliséesGroupe de champs personnalisésMasque personnaliséDéfinition d'un Masque PersonnaliséChamp   personnalisé   mis à jour .Champ   personnalisé   mis à jour .Première option personnaliséeChypreRépublique TchèqueDD-MM-YYYYDD/MM/YYYYDÉBOGUER : Passer à 2.9.xDÉBOGUER : Passer à 3.0.xFoncéDonnées restaurées avec succès!DateDate de créationFormat de DateParamètres de DateDate de soumissionDate de mise à jourCalendrierDésactiverDésactivéDésactiver toutes les licencesDésactiver la licenseDans l’onglet Paramètres, vous pouvez désactiver les licences des extension Ninja Formes individuellement ou en groupe.DéfautPays par défautPosition par défaut du labelFuseau horaire par défautPar défaut, la date d'aujourd'huiValeur par DéfautLe fuseau horaire par défaut est %sLe fuseau horaire par défaut est %s - Il devrait être UTCChamps définisSupprimerSupprimer (^ + D + clic)Supprimer définitivementSupprimer ce formulaireSupprimer cet article définitivementDanemarkDescriptionContenu de la descriptionPosition de la descriptionLe saviez-vous ? Vous pouvez augmenter le taux de conversion de vos visiteurs en décomposant les gros formulaires en formulaires plus petits et plus faciles à remplir. Avec

    l'extension "Multi-Part Forms for Ninja Forms"

    , c'est très facile et très rapide.Désactiver les notifications aux administrateursDésactiver la saisie semi-automatique du navigateurDésactiver l’entréeDésactiver l’éditeur de texte avancé sur mobileDésactiver entrée?RejeterAfficherAfficher Titre du FormulaireNom affichéParamètres d'affichageAfficher cette variable de calculAfficher TitreAfficher le formulaireSéparateurDjiboutiNe pas afficher ces termesDocumentationDocumentation disponible bientôt.Une documentation très complète est disponible. Elle traite de tous les sujets – du %sDépannage%s à %sl'API pour développeurs%s. Cette documentation est enrichie en permanence.Ne s’applique pas à l’aperçu du formulaire.S’applique à l’aperçu du formulaire.DominiqueRépublique DominicaineTerminéTélécharger Toutes les SoumissionsMenu déroulantDupliquerDupliquer (^ + C + clic)Formulaire en doubleÉquateurModifierModifier une actionModifier le formulaireModifierEditer l'Element du MenuModifier une soumissionModifier cet élémentModification du champModification du champÉgypteSalvadorElementAdresse de contactMails et actionsAdresse e-mailMessage e-mailEnvoyer le formulaire d’abonnementAdresse mail ou rechercher un champAdresses e-mail ou recherche pour un champE-mail de l’expéditeur du messageNom de l’expéditeur du messageMails et actionsDate de FinSi ce champ n'est pas rempli, l'utilisateur ne sera pas autorisé à soumettre le formulaire.Entrez le texte qui sera affiché à côté du champ pour guider l’utilisateur.Entrez le nom du champ de formulaire. Ces noms permettront aux utilisateurs d'identifier les différents champsEntrez votre adresse mailEnvironnementÉquationÉquation (complexe)Guinée équatorialeErythréeErreur Message d'erreur à afficher si tous les champs obligatoires ne sont pas complétésEstonieÉthiopieEnregistrements aux événementsMenu DévelopperMois d’expiration (mm)Année d’expiration (aaaa)ExporterExporter Champs FavorisExporter ChampsExporter FormulaireExporter formulairesExporter un formulaireExporter cet élémentEtendre Ninja FormsUPLOAD FICHIERLe fichier n'a pas pu être écrit sur le disque.Îles Falkland (Maldives)Îles FéroéChamps FavorisFavoris importés avec succès.ChampN° de champSection IDClé du champChamp introuvableOpérations de ChampTypes de champsLes champs avec un * sont obligatoires.Les champs marqués d’un astérisque %s*%s sont obligatoires.FijiErreur de chargement de fichierUpload du fichier en coursLe téléchargement a été interrompu a cause d'une extension incompatible.FinlandePrénomRéparez.FooFoo BarPar exemple, si vous aviez une clé de produit qui était sous le format A4B51.989.B.43C, you pourriez créer le masque suivant: a9a99.999.a.99a, ce qui forcerait tous les 'a' à être des lettres et les 9 des nombresFormulaireValeur par défaut du formulaireFormulaire SuppriméChamps de formulaireFormulaire Importé avec Succès.Clé de formulaireFormulaire introuvable.Prévisualiser FormulaireParamètres de Formulaire SauvésDonnées enregistréesErreur d’importation du modèle de formulaireTitre du FormulaireFormulaire avec calculsFormatFormulairesFormulaires SupprimésFormulaires Par PageFranceFrance métropolitaineGuyane FrançaisePolynésie FrançaiseTerres Australes FrançaisesVendredi 18 novembre 2019E-mail de l’expéditeurNom de l’expéditeurJournal completPlein écranGabonGambieGénéralParamètres GénérauxGéorgieAllemagneObtenir de l’aideInstaller d'autres actionsInstallez d'autres typesDemandez de l’aideObtenir de l’aideObtenir le rapport systèmePour associer une clé de site à votre nom de domaine, enregistrez-vous %sici%sCommencez par ajouter votre premier champ de formulaire.Commencez par ajouter votre premier champ de formulaire. Cliquez sur le signe plus et sélectionnez les actions voulues. Rien de plus simple.Par où commencerPremiers pas avec Ninja FormsGhanaGibraltarDonnez un titre à votre formulaire. Cette information vous permettra de retrouver le formulaire par la suite.AllerVotre tentative a échouéAller aux formulairesAller à Ninja FormsAller à la première pageAller à la dernière pageAller à la page suivanteAller à la page précédenteGrèceGroenlandGrenadeDocumentation complèteGuadeloupeGuamGuatemalaGuinéeGuinée-BissauGuyaneHTMLHaitiDemi-écranÎles McDonald et HeardBonjour, Ninja Forms !AideTexte d'AideTexte d’aide iciMasquerChamp cachéMasquer l’étiquetteMasquerCacher formulaire complété avec succès?Info: Le mot de passe devrait être d'une longueur d'au moins sept caractères. Afin de le renforcer, utilisez des majuscules et minuscules, des nombres et symboles comme ! ? $ % ^ &).Cité du VaticanURL de l'accueilHondurasHoneypotErreur HoneypotMessage d’erreur HoneypotHong KongBalise de connexion (hook)HôteComment ça va ?HongrieAddresse IPIslandeSi "desc text" (texte descriptif) est activé, un point d’interrogation (%s) est affiché à côté du champ d’entrée. Si vous survolez ce point d’interrogation avec la souris, le texte descriptif s’affiche.Si "aide textuelle" est activée, il y a aura un point d'interrogation %s placé juste à coté du champ. Placez votre curseur souris au-dessus de ce dernier afin d'afficher l'aide contextuelle.Si cette case est cochée, la désinstallation supprimera toutes les données Ninja Forms. %sLes données des formulaires et des soumissions ne pourront plus être récupérées.%sSi cette case est cochée, le logiciel Ninja Forms efface les valeurs du formulaire dès que l'envoi de ce dernier a été effectué avec succès.Si cette case est cochée, Ninja Forms cachera le formulaire après qu'il ai été soumis avec succès.Si cette case est cochée, Ninja Forms enverra une copie de ce formulaire (et n'importe quel message attaché) à cette adresse.Si cette case est cochée, Ninja Forms validera cette entrée en tant qu'adresse e-mail.Si cette case est cochée, le champs mot de passe et le mot de passe de vérification seront affichés.Si vous cochez cette case, cette colonne du tableau des soumissions sera triée dans l'ordre numérique.Si vous êtes un être humain et que vous voyez ce champ, merci de le laisser vide.Si vous êtes un être humain visualisant ce champ, merci de le laisser vide.Si vous êtes un être humain, merci de ralentir !Si vous laissez ce champ vide, aucune limite ne sera imposéeSi vous vous inscrivez, des données décrivant votre utilisation de Ninja Forms seront transmises à NinjaForms.com (ceci ne concerne pas vos soumissions).Vous pouvez sauter cette étape ! Ninja Forms fonctionnera toujours à merveille.Pour envoyer une valeur vide ou calc, utilisez ''.Si vous souhaitez que votre formulaire vous avertisse par mail chaque fois qu’un utilisateur clique sur "Soumettre", vous pouvez le configurer dans cet onglet. Vous pouvez créer un nombre illimité de mails, y compris les mails envoyés aux utilisateurs qui remplissent le formulaire.Si vos anciens formulaires ont disparu après la mise à jour à la version v2.9, ce bouton peut essayer de les convertir pour les faire apparaître dans la version 2.9. Les formulaires actuels seront conservés dans le tableau "Tous les formulaires".ImporterImporter / ExporterImporter / Exporter les données SoumisesImporter les Champs FavorisImporter les FavorisImporter des champsImporter FormulaireImporter des formulairesImporter des éléments de listeImporter un formulaireImporter / ExporterPlus grande clartéInclure le total automatique? (Si activé)Réponse incorrecteAugmenter le taux de conversionIndeIndonésieMasque d'entréeInsérerInsérer tous les champsInsérer champsInsérer le lienInsérer le médiaA l'Intérieur de l'ElementInstalléExtensions installéesGroupes d’intérêtsIdentifiant de formulaire non valideIdentifiant de formulaire non valideRépublique islamique d'IranIraqIrlandeEst-ce une adresse e-mail?IsraëlRien de plus simple. Ou...ItalieJamaïqueJaponMessage d’erreur "JavaScript désactivé"John DoeJordanieCliquez ici et sélectionnez les champs voulus.KazakhstanKenyaCléKiribatiFourre-toutRépublique populaire démocratique de CoréeRépublique de CoréeKoweïtKirghizistanLibelléLabel iciNom d’étiquettePosition de TitreLabel utilisé pour l'affichage et l’exportation des soumissions.Label,Valeur,CalcTitresLangue utilisée dans l’interface reCAPTCHA Pour déterminer le code associé à votre langue, cliquez %sici%sRépublique Démocratique Populaire LaoNomLettonieÉléments de mise en pageChamps de mise en pageEn apprendre plusPlus d’info sur les formulaires multi-pagesEn savoir plus sur Save ProgressLibanGauche de l'ElementÀ gauche du champLesothoLiberiaÉmirats Arabes UnisLicencesLiechtensteinLumièreLimiter l’entrée à ce nombre :Message pour limite atteinteLimiter les envoisLimiter les entrées à cette valeurListeMappage des champs de listeType de listeListesLituanieChargementEn cours de chargement…EmplacementconnectéForme longue LuxembourgMM-DD-YYYYMM/DD/YYYYMacaoAncienne république yougoslave de Macédoine (FYROM)MadagascarMalawiMalaisieMaldivesMaliMalteUtilisez ce modèle pour gérer en toute simplicité les demandes de devis à partir de votre site Web. Vous pouvez ajouter et supprimer des champs si nécessaire.Îles MarshallMartiniqueMauritanieMauriceMaxNombre max d’entrées imbriquéesValeur maximalePlus tardMayotteMoyen [ sécurité mot de passe ]MessageTitres de MessageMessage qui s’affiche si la case "Connecté" (ci-dessus) est cochée et que l’utilisateur n'est pas connecté.MetaboxMexiqueMicronésie, États Fédérés deMigrations et données fictives terminées. MinValeur minimaleChamps diversNe correspond pasIl manque un répertoire temporaire.Action pour email fictifAction pour un enregistrement fictifAction pour un message de réussite fictifModifié leRépublique de MoldavieMonacoMongolieMontenegroMontserratD'autres changements sont prévus...MarocMettre cet article à la corbeilleMozambiqueSélection multiplePlusieurs produits - Sélectionner plusieurs produitsPlusieurs produits - Sélectionner un seul produitPlusieurs produits - Liste déroulanteSélection multipleTaille de la Boite à Multi-SélectionMultipleMon premier calculMon deuxième calculVersion MySQLMyanmarNomNom gravé sur la carteNom ou champsNamibieNauruBesoin d'aide ?NépalPays-BasAntilles NéerlandaisesPour ne plus jamais voir une notification d'administrateur sur le tableau de bord des Ninja Forms. Pour réafficher ces notifications, il suffit de décocher la case.Nouvelle actionNouvel onglet "Création de formulaire"Nouvelle-CalédonieNouvel objetNouvelle soumissionNouvelle-ZélandeFormulaire d’inscription à la newsletterNicaraguaNigerNigeriaNinja Form SettingsNinja Forms Ninja Forms - TraitementLog des changements apportés à Ninja FormsNinja Forms DevDocumentation Ninja FormsTraitement des Ninja FormsFormulaires NinjaÉtat de l'environnement Ninja FormsDocumentation Ninja Forms v3Mise à niveau de Ninja FormsExécution de la mise à niveau de Ninja FormsMise à niveau des Ninja FormsVersion de Ninja FormsNinja Forms WidgetNinja Forms propose également un modèle simplifié qui peut être inséré directement dans un fichier de modèle PHP.%sL'aide de base de Ninja Forms se trouve ici.Les Ninja Forms ne peuvent pas être activées en réseau. Consultez le tableau de bord de chaque site pour activer le plug-in.++Ninja Forms a exécuté toutes les mises à niveau disponibles !Ninja Forms a été créé par une équipe internationale de développeurs qui s'efforcent de proposer à la communauté WordPress le meilleur plug-in possible en matière de création de formulaires.Ninja Forms doit exécuter %s mise(s) à niveau. Cette opération peut prendre plusieurs minutes. %sLancer la mise à niveau%sNinja Forms doit mettre à niveau vos paramètres de messagerie : cliquez %sici%s pour lancer cette mise à niveau.Ninja Forms doit mettre à niveau le tableau des soumissions : cliquez %sici%s pour lancer cette mise à niveau.Ninja Forms doit mettre à niveau vos notifications de formulaire : cliquez %sici%s pour lancer cette mise à niveau.Ninja Forms doit mettre à niveau vos paramètres de formulaires : cliquez %sici%s pour lancer cette mise à niveau.Ninja Forms propose un widget que vous pouvez placer dans n’importe quelle zone (supportant les widgets) de votre site et qui vous permet de sélectionner le formulaire que vous souhaitez faire apparaître dans cette zone.Ce shortcode Ninja Forms a été utilisé sans spécifier de formulaire.NiueNonAucune action spécifiée…Aucun Champs Favoris TrouvésAucun champ trouvé.Aucune soumission n’a été trouvée.Aucune soumission dans la Corbeille.Aucun terme n'est disponible pour cette taxonomie. %sAjouter un terme%sAucun fichier n'a été téléchargé.Aucun formulaire n'a été trouvé.Aucune taxonomie sélectionnée.Aucun journal des changements valide n'a été trouvé.AucunÎle NorfolkNorthern Mariana IslandsNorvègeMessage d'utilisateur non connectéPas encorePas trouvé dans la corbeilleRemarqueLe texte de la note peut être modifié dans les paramètres avancés du champ de la note (ci-dessous).Remarque – JavaScript est requis pour ce contenu.Remarque – Ce shortcode Ninja Forms a été utilisé sans spécifier de formulaire.NombreErreur max numéroErreur min numéroOptions numériquesNombre d'étoilesNombre de décimales.Nombre de secondes du compte à reboursNombre de secondes du compte à reboursNombre de secondes pour les soumissions temporisées.Nombre d'étoilesOmanUnUn e-mail ou un champErreur ! Ce module complémentaire n’est pas encore compatible avec Ninja Forms v3. %sPlus de détails... %sOuvrir dans une nouvelle fenêtreOpérations et champs (avancé)Styles originauxOption 1Option 3Option 2OptionsOrganiserÉtendue de notre support techniqueAfficher calcul en tant quePHP LocalePHP Max Input VarsPHP taille maximale d'envoiLimite de temps PHPVersion PHPPUBLIERPakistanPalaosPanamaPapouasie-Nouvelle-GuinéeParagraphe texteParaguayObjet parent :Mot de passeConfirmer le mot de passeLabel pour saisies de mot de passe différentesLes Mot de Pase ne correspondent pasChamps de paiementServices de paiementTotal à réglerAutorisation refuséePérouPhilippinesTélTéléphone - (555) 555-555PitcairnVous pouvez insérer %s dans toute zone qui accepte les shortcodes d'affichage de formulaire – y compris dans votre contenu de page ou de post.EtiquetteSimple texte%sContactez le support technique%s en mentionnant l'erreur affichée ci-dessus.Veuillez répondre à la question anti-spam correctement.Veuillez vérifier ces champs obligatoires.Vous devez reproduire le code Captcha dans le champVous devez reproduire le code reCAPTCHACorrigez les erreurs avant de soumettre ce formulaire.Veuillez-vous assurer d'avoir rempli tous les champs.Entrez le message que vous souhaitez afficher lorsque ce formulaire a atteint le nombre maximum de soumissions et n'accepte plus de nouvelles présentations.Veuillez entrer une adresse e-mail valideEntrez une adresse email valide !Veuillez encoder votre adresse e-mail valide.Aidez-nous à améliorer Ninja Forms !Veuillez inclure cette information lorsque vous contactez le support :Incrémenter par Veuillez laisser le champ antispam vide.Vérifiez que vous avez entré les valeurs correctes de clé de site et de clé secrèteMerci d'attribuer une note à %sNinja Forms%s %s sur %sWordPress.org%s : votre contribution nous permettra de continuer à proposer ce plug-in gratuitement. Merci de la part de l’équipe WordPress/Ninja Forms !Pour afficher les soumissions, vous devez sélectionner un formulaire.Veuillez sélectionner un formulaireVeuillez sélectionner un fichier valide de formulaire exporté.Veuillez sélectionner un fichier valide contenant des champs favoris.Veuillez sélectionner les champs favoris à exporter.Veuillez utiliser ces opérateurs: + - * /. Ceci est une fonction avancée. Vérifiez de ne pas faire de division par zéro.Merci d’attendre %n secondesVeuillez patienter pour envoyer votre formulaire.ExtensionsPologneRemplir ce champ avec la taxonomiePortugalPublierIdentifiant de post / de page (si disponible)Titre de post / de page (si disponible)URL de post / de page (si disponible)Créer un postID d’articleTitre de l'articleURL du billetPrévisualiserAperçu des modificationsPrévisualiser FormulaireL'aperçu n’existe pas.BudgetPrix :Champs de prixEn cours de traitementLabel de traitementLabel de traitement de soumissionProduitProduit (quantité incluse)Produit (quantité séparée)Produit AProduit BFormulaire produit (Quantité en ligne)Formulaire produit (Plusieurs produits)Formulaire produit (avec champ Quantité)Type de produitNom programmatique qui peut être utilisé pour pointer sur ce formulaire.PublierPuerto RicoAcheterQatarQuantitéQuantité pour produit AQuantité pour produit BQuantité :Chaîne de requêteChaînes de requêteVariable de chaîne de requêteQuestionPosition de la questionDemande de devisRadioListe de boutons radioMot de passe de vérificationTitre de Vérfication du Mot de PasseVoulez-vous vraiment désactiver toutes les licences ?RecaptchaRedirectionSupprimerVoulez-vous supprimer toutes les données Ninja Forms lors de la désinstallation ?Supprimer la valeurSupprimer toutes les données Ninja FormsVoulez-vous supprimer ce champ ? (Il sera supprimé même si vous n’enregistrez pas le formulaire.)Répondre àVoulez-vous que l’utilisateur soit connecté pour afficher ce formulaire ?RequisChamps requisChamp Erreur ObligatoireTitre de Champ ObligatoireChamp symbole obligaoireConvertir les formulairesConvertir les formulairesRéinitialiser le processus de conversion de formulaires pour v2.9+RestaurerRestaurer Ninja FormsRécupérer cet élément depuis la CorbeilleParamètres de restrictionRestrictionsConditionne le type de valeur que les utilisateurs peuvent entrer dans ce champ.Retour à Ninja FormsLa RéunionÉditeur de texte enrichiA droite de l'ElementÀ droite du champRevenir à une version antérieureRevenir à la version 2.9.x la plus récente.Revenir à v2.9.xRoumanieFédération de RussieRwandaSMTPSOAP ClientSUHOSIN installéSaint Christophe et NevisSainte-LucieSaint-Vincent et Les GrenadinesSamoaSan MarinoSao Tomé et PrincipeArabie SaouditeSauveEnregistrer et activerSauver les Paramètres du ChampEnregistrer le formulaireEnregistrer les optionsSauvegarder les réglagesEnregistrer le formulairesauvéChamps enregistrésEnregistrement...Rechercher un objetRechercher dans les soumissionsChoisirTout sélectionnerSélectionner la listeSélectionnez le champ ou le type à rechercherSélectionner un fichierSélectionner un formulaireSélectionnez le formulaire ou le type à rechercherSélectionnez le nombre de soumissions que ce formulaire acceptera (laissez vide pour un nombre illimité).Sélectionnez la position du label par rapport au champ.SélectionnéValeur sélectionnéeEnvoyerEnvoyer une copie de ce formulaire à cette adresse?SénégalSerbieAdresse IP du serveurRéglagesParamètres sauvésSeychellesLivraisonShortcodeDevrait être encodé comme un pourcentage. ex: 8.25%, 4%Affichage Aide TextuelleAfficher le bouton de mise en ligne de fichierAfficher plusAfficher l'Indicateur de Niveau de SécuritéAfficher l’éditeur de texte avancéAfficherAfficher la valeur des éléments de listeS'affiche lorsque l'utilisateur survole cette zone avec la souris.Sierra LeoneSingapourSimpleCase à cocherCoût uniqueTexte sur une ligneUn seul produit (valeur par défaut)URL du siteSlovaquie (République Slovaque)SlovénieCourrier postalPar exemple, un utilisateur qui voudrait créer un masque pour des numéros de sécurité sociale américains devrait taper 99-999-9999 dans ce champÎles SalomonSomalieTrier en mode numériqueTrier dans l'ordre numériqueAfrique du SudGéorgie du Sud et Îles Sandwich du SudSoudan du SudEspagneRéponse SPAMQuestion SPAMSpécifier les Opérations Et les Champs (Avancé)Sri LankaSainte-HélèneSt-Pierre et MiquelonChamps StandardNombre d’étoilesCommencez avec un modèleProvinceÉtatEtapeÉtape %d sur %d en cours d'exécutionPas (valeur d’incrémentation)Indicateur de niveau de sécuritéFortSous-séquenceSujetTexte d’objet ou rechercher un champTexte du sujet ou recherche pour un champSoumissionSoumission d'un fichier CSVDonnées d’envoiInfos sur la soumissionNombre de soumissionSoumission MetaboxStatistiques des soumissionsSoumissionsEnvoyerSoumettre le texte du bouton lorsque la temporisation expireSoumettre via AJAX (sans recharger la page) ?EnvoyéeEnvoyé parSoumission par : Envoyé leSoumission le : S'inscrireMessage de succèsSoudanSurinameÎles Svalbard et Jan MayenSwazilandSuèdeSuisseRépublique arabe syrienneSystèmeÉtat du systèmeLa version 3 sera bientôt disponible !TaiwanTadjikistan Pour plus de détails, consultez notre documentation Ninja Forms (ci-dessous).République Unie de TanzanieTVAPourcentage de TVATaxonomieChamps du modèleFonction de TemplateListe des termesTexteElement TexteTexte qui doit apparaître à côté du compteurTexte qui apparaîtra à côté du compteur de caractères/de motsZone de texteBoite de texteThailandeMerci d'avoir rempli ce formulaire.Merci d'avoir effectué la mise à niveau vers la version la plus récente ! Ninja Forms %s a été conçu pour vous proposer la meilleure expérience possible en matière de gestion des soumissions !Merci d'avoir effectué la mise à jour vers la version 2.7 de Ninja Forms. Vous devez mettre à jour les extensions Ninja Forms à partir de Merci pour cette mise à jour ! Avec Ninja Forms %s, la création de formulaires est plus facile que jamais !Merci d’utiliser les Ninja Forms ! Nous espérons que vous avez trouvé tout ce dont vous avez besoin, mais si vous avez des questions :Merci {field:name} de remplir mon formulaire !En général, les 16 chiffres imprimés au recto de votre carte bancaire.Bloc de chiffres imprimés sur votre carte (trois au verso ou quatre au recto).Les 9 représenteraient n'importe quel nombre, et les '-' seraient automatiquement ajoutésLe menu "Formulaires" est votre point d’accès pour toutes les activités Ninja Forms. Pour vous permettre de consulter un exemple, nous avons créé votre premier %sformulaire de contact%s. Pour créer un autre formulaire, il suffit de cliquer sur %sNouveau formulaire%s.Le format devrait ressembler à ceci:Les modifications apportées à l'interface de cette version annoncent d'importantes améliorations à l’avenir. La version 3.0 s’appuiera sur ces changements pour faire de Ninja Forms un générateur de formes encore plus stable, plus puissant et plus ergonomique.Mois de la date d'expiration de la carte (généralement gravé sur le recto de la carte).Les paramètres les plus courants sont affichés immédiatement, alors que les paramètres secondaires sont masqués dans des sections développables.Nom gravé sur le recto de votre carte bancaire.Les mots de passe fournis ne correspondent pas.Les créateurs des formulaires Ninja FormsLe processus a commencé, veuillez patienter (cette opération peut prendre plusieurs minutes). Lorsque le processus sera terminé, vous serez redirigé automatiquement.La taille du fichier uploadé est supérieure à la directive MAX_FILE_SIZE qui a été spécifiée dans le formulaire HTML.La taille du fichier uploadé est supérieure à la directive upload_max_filesize qui a été spécifiée dans le fichier php.ini.Le fichier a été partiellement chargé .Année de la date d'expiration de la carte (généralement gravé sur le recto de la carte).Une nouvelle version de %1$s est disponible. Afficher les détails de la version %3$s ou mettre à jour automatiquement.Une nouvelle version de %1$s est disponible. Afficher les détails de la version %3$s.Le format du fichier mis en ligne n’est pas valide.Tous ces champs se rapportent à la section Tarifs.Tous ces champs se rapportent à la section Infos utilisateur.Voici les caractères prédéfinis de masqueCes champs sont des champs spéciaux.Ces champs doivent correspondre !Cette colonne du tableau des soumissions sera triée numériquement.Ceci est un champ obligatoireCe champs est requis.C’est un testDécrit l'état d’un utilisateur.Il s’agit d’une action email.C'est un autre test.Temps d'attente imposé à l'utilisateur avant de soumettre le formulaireLabel utilisé lors des opérations relatives aux soumissions (consultation/modification/export).Ceci est le nom interne de votre champ. Exemples: mon_calc, prix_total, utilisateur_total.Ceci est l'état de l'utilisateurValeur qui sera utilisée si elle est %scochée%s.Valeur qui sera utilisée si elle n’est pas %scochée%s.Dans cette page, vous pouvez créer un formulaire en ajoutant des champs (vous pouvez faire glisser les champs à l'emplacement d'affichage de votre choix). Chaque champ est associé à différentes options telles que Label, Position du label, Espace réservé, etc.Ce mot-clé est réservé par WordPress. Spécifiez un autre mot-clé.Ce message s’affiche dans le bouton "Soumettre" chaque fois qu’un utilisateur clique sur ce bouton (pour indiquer que la soumission est en cours de traitement).Ce message s’affiche si l’utilisateur n'entre pas des valeurs identiques dans les deux champs de mot de passe.Ce nombre sera utilisé dans les calculs si la case est cochée.Ce nombre sera utilisé dans les calculs si la case est décochée.Ce paramètre supprime définitivement toutes les données relatives aux Ninja formes lors de la suppression des plug-ins (y compris les formulaires et les soumissions). Cette action ne peut pas être défaite.Cet onglet reçoit les paramètres généraux (par exemple, titre et méthode de la soumission) et les paramètres d'affichage (par exemple, masquer un formulaire qui a été rempli complètement et correctement).Ce sera le sujet du message.Ceci empêcherait l'utilisateur d'encoder autre chose que des nombresTroisSoumission avec temporisationMessage d’erreur du temporisateurTimor orientalPourPour activer les licences associées aux extensions Ninja Forms, vous devez d'abord %sinstaller et activer%s l'extension choisie. Les paramètres de licence apparaîtront ensuite ci-dessous.Pour utiliser cette fonctionnalité, vous pouvez faire un copier/coller de votre CSV dans la zone de texte ci-dessus.Date d'aujourd'huiBasculer le tiroirTogoTokelauTongaTotalSupprimerEssaie de suivre les spécifications de la fonction %sPHP date()%s, mais certains formats ne sont pas supportés.Trinidad et TobagoTunisieTurquieTurkménistanÎles Turques et CaïquesTuvaluDeuxTypeChamp URLTél. USAOuganda UkraineDécochéValeur de calcul (non coché)Dans la section "Comportement du formulaire" des "Paramètres du formulaire", vous pouvez sélectionner la page dans laquelle le formulaire doit être inséré automatiquement (à la suite du contenu de cette page). Une option similaire est disponible dans chaque écran de modification de contenu (dans la barre latérale).AnnulerTout annulerÉmirats Arabes UnisRoyaume UniÉtats-UnisÎles Mineures éloignées des États-UnisErreur d'upload (nature indéterminée).Non publiéMise à jourMettre à jour l'objetMise à jour le : Mise à jour de la base de données des formulairesMettre à jourMise à niveau vers Ninja Forms v3Mises à jourToutes les mises à niveau ont été effectuéesURLUruguayUtiliser Une Equation (Avancé)Utiliser une quantitéUtiliser une première option personnaliséeUtiliser les conventions de style par défaut de Ninja Forms.Utilisez le shortcode suivant pour insérer le calcul final: [ninja_forms_calc]Pour vos premiers pas avec Ninja Forms, utilisez les conseils présentés ci-dessous Vous serez opérationnel très rapidement !Utilisez ceci comme champ de mot de passe pour une inscriptionUtiliser ce champ pour le mot de passe d'inscription. Si cette case est cochée, les deux champs de mot de passe (saisir le mot de passe/confirmer le mot de passe) s'affichent.Marque un champ pour traitement.UtilisateurNom Utilisateur Affiché (Si connecté)E-mail utilisateurE-mail Utilisateur (Si connecté)Entrée utilisateurPrénom Utilisateur (Si connecté)IDID Utilisateur (Si connecté)Groupe de champs d’infos utilisateurInformation de l'utilisateurChamps d’infos utilisateurNom Utilisateur (Si connecté)Utilisateur Metabox (si connecté)Valeurs soumises par l’utilisateurValeurs Soumises par l'Utilisateur:Les utilisateurs sont plus disposés à remplir des formulaires long s'ils peuvent les enregistrer et y revenir plus tard.

    L’extension Save Progress de Ninja Forms rend ce processus simple.

    UzbekistanValider comme adresse mail ? (Le champ doit être obligatoire)ValeurVanuatuNom de la variableVenezuelaVersionVersion %sTrès faibleVietnamVoirAfficher l’%sAfficher les modificationsAfficher les formulairesAfficher l'objetAfficher la soumissionVoir les données reçuesVoir le journal complet des changementsÎles Vierges (britanniques)Îles Vierges (U.S.)Visiter la page de l'extensionMode débogage WPWP LangueWP Téléchargement max.Limite de mémoire WPWP Multisite activéWP Publication DistanteVersion WPWallis et FutunaNous faisons tout le nécessaire pour que chaque utilisateur de Ninja Forms bénéficie du meilleur support technique possible. Si vous rencontrez une difficulté (ou si vous avez une question), n'hésitez pas à %snous contacter%s.Nous avons ajouté une option qui permet de supprimer toutes les données Ninja Forms (soumissions, formulaires, champs, options) chaque fois que vous supprimez le plug-in. Pour cette raison, nous l’appelons "l'option atomique"...Votre formulaire ne comporte pas de bouton "Soumettre". Nous pouvons en ajouter un automatiquement.FaibleInfos Serveur WebBienvenue dans Ninja Forms !Bienvenue sur Ninja Forms %sSahara occidentalComment pouvons-nous vous aider ?Que faire avant de contacter le support techniqueQuel nom voulez-vous donner à ce favori ?Quoi de neuf ?Lorsque vous créez et que vous modifiez des formulaires, vous pouvez accéder directement à la section la plus pertinente.A qui ce message sera-t-il envoyé ?Mot(s)MotsHabillageY-m-dd/m/YAAAA-MM-JJYYYY/MM/DDYemenOuiVous êtes éligible à la mise à niveau vers la version Ninja Forms v3 (release candidate) ! %sEffectuer la mise à niveau maintenant%sVous pouvez aussi combiner ceci pour des applications spécifiquesVous pouvez entrer des équations mathématiques ici en utilisant field_x (où x est l’identifiant du champ à utiliser). Par exemple, %sfield_53 + field_28 + field_65%s.Impossible de valider le formulaire sans JavaScript activé.Vous n’avez pas les droits suffisants pour installer les mises à jour de l'extension.Vous ne disposez pas des autorisations nécessaires.Vous n’avez pas inséré de bouton "Soumettre" dans votre formulaire.Pour afficher l'aperçu d’un formulaire, vous devez être connecté.Vous devez fournir un nom pour ce favoris.Pour soumettre ce formulaire, vous devez activer JavaScript. Activez JavaScript et réessayez.Vous avez acheté (Inclus dans votre mail d’achat.)Votre formulaire a été envoyé.Votre serveur n'a pas fsockopen ou cURL actifs - Paypal IPN et les autres scripts qui communiquent avec d'autres serveurs ne fonctionneront pas. Contacter votre hébergeur.La classe %sSOAP Client%s n'est pas activée sur votre serveur. Certains plug-ins de passerelle qui utilisent SOAP risquent de ne pas fonctionner correctement.Votre serveur a cURL actif, fsockopen est désactivé.Votre serveur a fsockopen et cURL activés.Votre serveur a fsockopen actif, cURL est désactivé.Votre serveur a le client SOAP activé.Votre version de l’extension Ninja Forms File Upload n’est pas compatible avec la version 2.7 de Ninja Forms. Vous devez utiliser au moins la version 1.3.5. Vous devez mettre à jour cette extension à partir de la page : Votre version de l’extension Ninja Forms Save Progress n’est pas compatible avec la version 2.7 de Ninja Forms. Vous devez utiliser au moins la version 1.1.3. Vous devez mettre à jour cette extension à partir de la page : YougoslavieZambieZimbabweCode postalCode Zipa - Représente un caractère alpha (A-Z,a-z) - Cela permet d'accepter seulement les lettres à être entréesréponsebutton-secondary nf-download-allparcaractère(s) restant(s)cochéCopierpersonnaliséd-m-Ydashicons dashicons-updateen doublefoo@wpninjas.comhrjs-newsletter-list-update extral, F d Ym-d-Ym/d/Yinactifdedu produit A et du produit B pour $oneone_week_supportLe mot de passetraitementproduit(s) pour reCAPTCHALangue de reCAPTCHAClé secrète reCAPTCHAReglages reCAPTCHAClé de site reCAPTCHAThème reCAPTCHAParamètres reCAPTCHAactualisersmtp_porttroistitredeuxnon cochémis à jouruser@gmail.comversionwp_remote_post() est un échec. PayPal IPN ne devrait pas fonctionner sur votre serveur.wp_remote_post() est un échec. PayPal IPN ne fonctionnera pas sur votre serveur. Contactez votre hébergeur. Erreur : wp_remote_post() est un succès - PayPal IPN fonctionne.