Plugin Directory

Changeset 3316449


Ignore:
Timestamp:
06/23/2025 03:53:48 PM (8 months ago)
Author:
needle
Message:

Tagging version 0.7.0

Location:
civicrm-wp-profile-sync/tags/0.7.0
Files:
20 added
33 edited
1 copied

Legend:

Unmodified
Added
Removed
  • civicrm-wp-profile-sync/tags/0.7.0/civicrm-wp-profile-sync.php

    r3170636 r3316449  
    77 * Plugin URI:        https://github.com/christianwach/civicrm-wp-profile-sync
    88 * GitHub Plugin URI: https://github.com/christianwach/civicrm-wp-profile-sync
    9  * Version:           0.6.9
     9 * Version:           0.7.0
    1010 * Author:            Christian Wach
    1111 * Author URI:        https://haystack.co.uk
     
    3636
    3737// Set plugin version here.
    38 define( 'CIVICRM_WP_PROFILE_SYNC_VERSION', '0.6.9' );
     38define( 'CIVICRM_WP_PROFILE_SYNC_VERSION', '0.7.0' );
    3939
    4040// Set our bulk operations flag here.
     
    6161if ( ! defined( 'CIVICRM_WP_PROFILE_SYNC_BUDDYPRESS' ) ) {
    6262    define( 'CIVICRM_WP_PROFILE_SYNC_BUDDYPRESS', false );
    63 }
    64 
    65 // Set plugin debugging state.
    66 if ( ! defined( 'CIVICRM_WP_PROFILE_SYNC_DEBUG' ) ) {
    67     define( 'CIVICRM_WP_PROFILE_SYNC_DEBUG', false );
    6863}
    6964
     
    165160        }
    166161
    167         // Use translation.
    168         $this->translation();
    169 
    170162        // Include files.
    171163        $this->include_files();
     
    183175        // We're done.
    184176        $done = true;
    185 
    186     }
    187 
    188     /**
    189      * Enable translation.
    190      *
    191      * @since 0.1
    192      */
    193     public function translation() {
    194 
    195         // Load translations.
    196         // phpcs:ignore WordPress.WP.DeprecatedParameters.Load_plugin_textdomainParam2Found
    197         load_plugin_textdomain(
    198             'civicrm-wp-profile-sync', // Unique name.
    199             false, // Deprecated argument.
    200             dirname( plugin_basename( CIVICRM_WP_PROFILE_SYNC_FILE ) ) . '/languages/' // Relative path to files.
    201         );
    202177
    203178    }
     
    494469
    495470        // Skip if not debugging.
    496         if ( CIVICRM_WP_PROFILE_SYNC_DEBUG === false ) {
     471        if ( WP_DEBUG === false ) {
    497472            return;
    498473        }
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/acfe/classes/cwps-acf-acfe-form.php

    r3071446 r3316449  
    106106        $this->include_files();
    107107
    108         // Register Location Types.
    109         $this->register_location_types();
    110 
    111108        // Register hooks.
    112109        $this->register_hooks();
     
    137134        add_filter( 'cwps/acf/query_settings_field', [ $this, 'query_settings_field' ], 200, 3 );
    138135
    139         // Register ACFE Form Actions after ACFE does.
    140         add_filter( 'acfe/include_form_actions', [ $this, 'register_form_actions' ], 20 );
     136        // Register ACF Location Types.
     137        add_action( 'acf/init', [ $this, 'register_location_types' ] );
     138
     139        /*
     140         * Check for legacy ACF Extended.
     141         *
     142         * The Form layer has been completely rewritten in ACF Extended version 0.9 and
     143         * so new code has had to be written for compatibility with the new architecture.
     144         */
     145        $new_acfe_forms = version_compare( $this->acfe->acfe_version, '0.9', '>=' );
     146
     147        /**
     148         * Filters the check for legacy ACF Extended.
     149         *
     150         * @since 0.7.0
     151         *
     152         * @param bool $new_acfe_forms True if ACF Extended is greater than 0.9, false otherwise.
     153         */
     154        $new_acfe_forms = apply_filters( 'cwps/acf/acfe/form/acfe_version_check', $new_acfe_forms );
     155
     156        // Register ACFE Form Actions.
     157        if ( $new_acfe_forms ) {
     158            add_action( 'acf/include_field_types', [ $this, 'register_form_actions_latest' ], 50 );
     159        } else {
     160            add_action( 'acfe/include_form_actions', [ $this, 'register_form_actions_legacy' ], 50 );
     161        }
    141162
    142163        // Add Form Actions Javascript.
    143         add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_form_action_scripts' ] );
    144 
    145         /*
     164        if ( $new_acfe_forms ) {
     165            add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_form_action_scripts_latest' ] );
     166        } else {
     167            add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_form_action_scripts_legacy' ] );
     168        }
     169
    146170        // Clear Form Action Query Vars.
    147         add_action( 'acfe/form/submit', [ $this, 'form_action_query_vars_clear' ] );
    148         */
     171        if ( $new_acfe_forms ) {
     172            add_action( 'acfe/form/submit_success', [ $this, 'form_action_query_vars_clear_latest' ], 1000 );
     173        } else {
     174            add_action( 'acfe/form/submit', [ $this, 'form_action_query_vars_clear_legacy' ] );
     175        }
    149176
    150177        // Set a better Form Wrapper class.
    151         add_filter( 'acfe/form/load', [ $this, 'form_wrapper' ], 10, 2 );
    152 
    153     }
    154 
    155     /**
    156      * Clear the Form Action Query Vars.
     178        if ( $new_acfe_forms ) {
     179            add_filter( 'acfe/form/load_form', [ $this, 'form_wrapper' ], 10 );
     180        } else {
     181            add_filter( 'acfe/form/load', [ $this, 'form_wrapper' ], 10, 2 );
     182        }
     183
     184    }
     185
     186    /**
     187     * Clear the Form Action Query Vars in ACFE 0.9.x+.
    157188     *
    158189     * This means we get a fresh set of Query Vars during the load process after
    159190     * a Form has been submitted.
    160191     *
    161      * @since 0.5
    162      */
    163     public function form_action_query_vars_clear() {
    164 
     192     * @since 0.7.0
     193     */
     194    public function form_action_query_vars_clear_latest() {
     195
     196        // Clear the array of Action results.
     197        acf_set_form_data( 'acfe/form/actions', [] );
     198
     199    }
     200
     201    /**
     202     * Clear the Form Action Query Vars in ACFE 0.8.x.
     203     *
     204     * This means we get a fresh set of Query Vars during the load process after
     205     * a Form has been submitted.
     206     *
     207     * @since 0.5
     208     * @since 0.7.0 Renamed.
     209     */
     210    public function form_action_query_vars_clear_legacy() {
     211
     212        /*
    165213        // Clear the array of Action results.
    166214        set_query_var( 'acfe_form_actions', [] );
     215        */
    167216
    168217    }
     
    177226     * @return array $form The modified ACF Form data array.
    178227     */
    179     public function form_wrapper( $form, $post_id ) {
    180 
    181         // Alter the default "Success Wrapper".
     228    public function form_wrapper( $form, $post_id = 0 ) {
     229
     230        // Alter the default "Success Wrapper" in ACF Extended 0.9.x.
     231        if ( ! empty( $form['success']['wrapper'] ) ) {
     232            if ( '<div id="message" class="updated">%s</div>' === $form['success']['wrapper'] ) {
     233                $form['success']['wrapper'] = '<div id="message" class="acfe-success">%s</div>';
     234                return $form;
     235            }
     236        }
     237
     238        // Alter the default "Success Wrapper" in ACF Extended 0.8.x.
    182239        if ( '<div id="message" class="updated">%s</div>' === $form['html_updated_message'] ) {
    183240            $form['html_updated_message'] = '<div id="message" class="acfe-success">%s</div>';
     
    210267
    211268    /**
    212      * Register Form Actions.
    213      *
    214      * @since 0.5
    215      */
    216     public function register_form_actions() {
     269     * Register Form Actions for ACFE version 0.9.x.
     270     *
     271     * @since 0.7.0
     272     */
     273    public function register_form_actions_latest() {
    217274
    218275        // Include Form Action base class.
    219         include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php';
     276        include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php';
    220277
    221278        // Include Form Action classes.
    222         include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php';
    223         include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php';
     279        include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php';
     280        include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php';
     281
     282        // Register the Form Actions.
     283        acfe_register_form_action_type( 'CWPS_ACF_ACFE_Form_Action_Contact' );
     284        acfe_register_form_action_type( 'CWPS_ACF_ACFE_Form_Action_Activity' );
     285
     286        // Init Event Actions if the CiviEvent component is active.
     287        $event_active = $this->plugin->civicrm->is_component_enabled( 'CiviEvent' );
     288        if ( $event_active ) {
     289            include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php';
     290            acfe_register_form_action_type( 'CWPS_ACF_ACFE_Form_Action_Participant' );
     291            include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php';
     292            acfe_register_form_action_type( 'CWPS_ACF_ACFE_Form_Action_Event' );
     293        }
     294
     295        // Init Case Action if the CiviCase component is active.
     296        $case_active = $this->plugin->civicrm->is_component_enabled( 'CiviCase' );
     297        if ( $case_active ) {
     298            include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php';
     299            acfe_register_form_action_type( 'CWPS_ACF_ACFE_Form_Action_Case' );
     300        }
     301
     302        // Init Email Action if the "Email API" Extension is active.
     303        $email_active = $this->plugin->civicrm->is_extension_enabled( 'org.civicoop.emailapi' );
     304        if ( $email_active ) {
     305            include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php';
     306            acfe_register_form_action_type( 'CWPS_ACF_ACFE_Form_Action_Email' );
     307        }
     308
     309    }
     310
     311    /**
     312     * Register Form Actions for ACFE version 0.8.x.
     313     *
     314     * @since 0.5
     315     */
     316    public function register_form_actions_legacy() {
     317
     318        // Include Form Action base class.
     319        include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php';
     320
     321        // Include Form Action classes.
     322        include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php';
     323        include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php';
    224324
    225325        // Init Form Actions.
     
    230330        $event_active = $this->plugin->civicrm->is_component_enabled( 'CiviEvent' );
    231331        if ( $event_active ) {
    232             include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php';
     332            include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php';
    233333            new CiviCRM_Profile_Sync_ACF_ACFE_Form_Action_Participant( $this );
    234             include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php';
     334            include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php';
    235335            new CiviCRM_Profile_Sync_ACF_ACFE_Form_Action_Event( $this );
    236336        }
     
    239339        $case_active = $this->plugin->civicrm->is_component_enabled( 'CiviCase' );
    240340        if ( $case_active ) {
    241             include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php';
     341            include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php';
    242342            new CiviCRM_Profile_Sync_ACF_ACFE_Form_Action_Case( $this );
    243343        }
     
    246346        $email_active = $this->plugin->civicrm->is_extension_enabled( 'org.civicoop.emailapi' );
    247347        if ( $email_active ) {
    248             include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php';
     348            include CIVICRM_WP_PROFILE_SYNC_PATH . 'includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php';
    249349            new CiviCRM_Profile_Sync_ACF_ACFE_Form_Action_Email( $this );
    250350        }
     
    253353
    254354    /**
    255      * Enqueue Form Action Javascript.
    256      *
    257      * @since 0.5
    258      */
    259     public function enqueue_form_action_scripts() {
     355     * Enqueue Form Action Javascript for ACFE version 0.9.x.
     356     *
     357     * @since 0.7.0
     358     */
     359    public function enqueue_form_action_scripts_latest() {
    260360
    261361        // Bail if the current screen is not an Edit ACFE Form screen.
     
    271371        wp_enqueue_script(
    272372            'cwps-acfe-form-actions',
    273             plugins_url( 'assets/js/acf/acfe/form-actions/cwps-form-action-model.js', CIVICRM_WP_PROFILE_SYNC_FILE ),
     373            plugins_url( 'assets/js/acf/acfe/form-actions/acfe-0.9.x/cwps-form-action-model.js', CIVICRM_WP_PROFILE_SYNC_FILE ),
     374            [ 'acf-extended' ],
     375            CIVICRM_WP_PROFILE_SYNC_VERSION, // Version.
     376            true
     377        );
     378
     379        // Init the Contact Reference Field actions array.
     380        $contact_action_refs = [
     381            // Contact Actions must always be present.
     382            'new_field/key=field_cwps_contact_action_name' => 'newContactActionAlias',
     383            'remove_field/key=field_cwps_contact_action_name' => 'removeContactActionAlias',
     384        ];
     385
     386        /**
     387         * Query Form Action classes to build the Contact Reference Fields ACF Model actions array.
     388         *
     389         * @since 0.5
     390         *
     391         * @param array $contact_action_refs The ACF Model actions array to be populated.
     392         */
     393        $contact_actions = apply_filters( 'cwps/acf/acfe/form_actions/reference_fields/contact', $contact_action_refs );
     394
     395        // Init the Case Reference Field actions array.
     396        $case_action_refs = [
     397            // Case Actions must always be present.
     398            'new_field/key=field_cwps_case_action_name'    => 'newCaseActionAlias',
     399            'remove_field/key=field_cwps_case_action_name' => 'removeCaseActionAlias',
     400        ];
     401
     402        /**
     403         * Query Form Action classes to build the Case Reference Fields ACF Model actions array.
     404         *
     405         * @since 0.5
     406         *
     407         * @param array $case_action_refs The ACF Model actions array to be populated.
     408         */
     409        $case_actions = apply_filters( 'cwps/acf/acfe/form_actions/reference_fields/case', $case_action_refs );
     410
     411        // Init the Participant Reference Field actions array.
     412        $participant_action_refs = [
     413            // Participant Actions must always be present.
     414            'new_field/key=field_cwps_participant_action_name' => 'newParticipantActionAlias',
     415            'remove_field/key=field_cwps_participant_action_name' => 'removeParticipantActionAlias',
     416        ];
     417
     418        /**
     419         * Query Form Action classes to build the Participant Reference Fields ACF Model actions array.
     420         *
     421         * @since 0.5
     422         *
     423         * @param array $participant_action_refs The ACF Model actions array to be populated.
     424         */
     425        $participant_actions = apply_filters( 'cwps/acf/acfe/form_actions/reference_fields/participant', $participant_action_refs );
     426
     427        // Build data array.
     428        $vars = [
     429            'localisation' => [],
     430            'settings'     => [
     431                'contact_actions_reference'     => $contact_actions,
     432                'case_actions_reference'        => $case_actions,
     433                'participant_actions_reference' => $participant_actions,
     434            ],
     435        ];
     436
     437        // Localize our script.
     438        wp_localize_script(
     439            'cwps-acfe-form-actions',
     440            'CWPS_ACFE_Form_Action_Vars',
     441            $vars
     442        );
     443
     444    }
     445
     446    /**
     447     * Enqueue Form Action Javascript for ACFE version 0.9.x.
     448     *
     449     * @since 0.5
     450     */
     451    public function enqueue_form_action_scripts_legacy() {
     452
     453        // Bail if the current screen is not an Edit ACFE Form screen.
     454        $screen = get_current_screen();
     455        if ( ! ( $screen instanceof WP_Screen ) ) {
     456            return;
     457        }
     458        if ( 'post' !== $screen->base || 'acfe-form' !== $screen->id ) {
     459            return;
     460        }
     461
     462        // Add JavaScript plus dependencies.
     463        wp_enqueue_script(
     464            'cwps-acfe-form-actions',
     465            plugins_url( 'assets/js/acf/acfe/form-actions/acfe-0.8.x/cwps-form-action-model.js', CIVICRM_WP_PROFILE_SYNC_FILE ),
    274466            [ 'acf-extended' ],
    275467            CIVICRM_WP_PROFILE_SYNC_VERSION, // Version.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/acfe/classes/cwps-acf-acfe.php

    r3170636 r3316449  
    5656     */
    5757    public $form;
     58
     59    /**
     60     * ACF Extended plugin version.
     61     *
     62     * @since 0.7.0
     63     * @access public
     64     * @var string
     65     */
     66    public $acfe_version;
    5867
    5968    /**
     
    8998
    9099        // Bail if the "ACF Extended" plugin isn't found.
    91         if ( ! function_exists( 'acfe' ) ) {
     100        if ( ! defined( 'ACFE_VERSION' ) ) {
    92101            $done = true;
    93102            return;
    94103        }
     104
     105        // Store ACF Extended version.
     106        $this->acfe_version = ACFE_VERSION;
    95107
    96108        // Return early if ACF Extended Integration has been disabled.
     
    124136        do_action( 'cwps/acf/acfe/loaded' );
    125137
     138        // Okay, we're done.
     139        $done = true;
     140
    126141    }
    127142
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php

    r3170636 r3316449  
    221221            'allow_null'        => 1,
    222222            'ajax_action'       => 'cwps_get_state_field',
     223            'nonce'             => wp_create_nonce( 'cwps_get_state_field' ),
    223224            'placeholder'       => __( 'Select the State/Province Field', 'civicrm-wp-profile-sync' ),
    224225            'default_value'     => 0,
     
    321322        } else {
    322323
    323             // Get validation params.
    324             $nonce     = acf_request_arg( 'nonce', '' );
    325             $field_key = acf_request_arg( 'field_key', '' );
    326 
    327             // Back-compat for field settings.
    328             if ( ! acf_is_field_key( $field_key ) ) {
    329                 $nonce     = '';
    330                 $field_key = '';
    331             }
    332 
    333324            // Validate the new way.
    334             if ( ! acf_verify_ajax( $nonce, $field_key ) ) {
     325            $nonce = acf_request_arg( 'nonce', '' );
     326            if ( ! acf_verify_ajax( $nonce, 'cwps_get_state_field' ) ) {
    335327                die();
    336328            }
     
    459451            }
    460452
    461             // Add to choices.
     453            // Get label.
    462454            $label = acf_maybe_get( $field, 'label', $field['name'] );
    463             $title = acf_maybe_get( $container, 'label', $container['name'] );
     455
     456            // Get title from container if possible.
     457            if ( ! empty( $container['name'] ) ) {
     458                $title = acf_maybe_get( $container, 'label', $container['name'] );
     459                if ( ! empty( $title ) ) {
     460                    /* translators: %s: The Field title */
     461                    $title = sprintf( __( 'Inside: %s', 'civicrm-wp-profile-sync' ), $title );
     462                }
     463            }
     464
     465            // Maybe set default title.
    464466            if ( empty( $title ) ) {
    465467                $title = __( 'Top Level', 'civicrm-wp-profile-sync' );
    466468            }
     469
     470            // Add to choices.
    467471            $choices[ $title ][ $field['key'] ] = "{$label} ({$field['key']})";
    468472
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php

    r3170636 r3316449  
    226226            'ajax'              => 1,
    227227            'ajax_action'       => 'cwps_get_country_field',
     228            'nonce'             => wp_create_nonce( 'cwps_get_country_field' ),
    228229            'placeholder'       => __( 'Select the Country Field', 'civicrm-wp-profile-sync' ),
    229230            'default_value'     => 0,
     
    326327        } else {
    327328
    328             // Get validation params.
    329             $nonce     = acf_request_arg( 'nonce', '' );
    330             $field_key = acf_request_arg( 'field_key', '' );
    331 
    332             // Back-compat for field settings.
    333             if ( ! acf_is_field_key( $field_key ) ) {
    334                 $nonce     = '';
    335                 $field_key = '';
    336             }
    337 
    338329            // Validate the new way.
    339             if ( ! acf_verify_ajax( $nonce, $field_key ) ) {
     330            $nonce = acf_request_arg( 'nonce', '' );
     331            if ( ! acf_verify_ajax( $nonce, 'cwps_get_country_field' ) ) {
    340332                die();
    341333            }
     
    464456            }
    465457
    466             // Add to choices.
     458            // Get label.
    467459            $label = acf_maybe_get( $field, 'label', $field['name'] );
    468             $title = acf_maybe_get( $container, 'label', $container['name'] );
     460
     461            // Get title from container if possible.
     462            if ( ! empty( $container['name'] ) ) {
     463                $title = acf_maybe_get( $container, 'label', $container['name'] );
     464                if ( ! empty( $title ) ) {
     465                    /* translators: %s: The Field title */
     466                    $title = sprintf( __( 'Inside: %s', 'civicrm-wp-profile-sync' ), $title );
     467                }
     468            }
     469
     470            // Maybe set default title.
    469471            if ( empty( $title ) ) {
    470472                $title = __( 'Top Level', 'civicrm-wp-profile-sync' );
    471             } else {
    472                 /* translators: %s: The Field title */
    473                 $title = sprintf( __( 'Inside: %s', 'civicrm-wp-profile-sync' ), $title );
    474             }
     473            }
     474
     475            // Add to choices.
    475476            $choices[ $title ][ $field['key'] ] = "{$label} ({$field['key']})";
    476477
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-acf-field.php

    r3170636 r3316449  
    7474        'textarea',
    7575        'true_false',
     76        'number',
    7677        'url',
    7778        'email',
     
    361362    public function value_update( $selector, $value, $post_id ) {
    362363
    363         // Protect against (string) 'null' which CiviCRM uses for some reason.
    364         if ( 'null' === $value || 'NULL' === $value ) {
     364        // Protect against null and (string) 'null' which CiviCRM uses for some reason.
     365        if ( is_null( $value ) || 'null' === $value || 'NULL' === $value ) {
    365366            $value = '';
    366367        }
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-addresses.php

    r3071446 r3316449  
    952952        foreach ( $acf_fields['addresses'] as $selector => $address_field ) {
    953953
    954             // Get existing Field value.
     954            // Get the existing Field value.
    955955            $existing = get_field( $selector, $post_id );
     956
     957            // Cast as array when empty to avoid errors in newer PHP versions.
     958            if ( empty( $existing ) ) {
     959                $existing = [];
     960            }
    956961
    957962            // Before applying edit, make some checks.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-civicrm-membership.php

    r3071446 r3316449  
    169169            'active_only' => 1,
    170170            'options'     => [
    171                 'sort' => 'end_date ASC',
     171                'limit' => 0,
     172                'sort'  => 'end_date ASC',
    172173            ],
    173174        ];
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-civicrm.php

    r3170636 r3316449  
    816816
    817817    /**
     818     * Get ACF Field setting prefix that distinguishes Event Fields from Custom Fields.
     819     *
     820     * @since 0.7.0
     821     *
     822     * @return string $event_field_prefix The prefix of the "CiviCRM Field" value.
     823     */
     824    public function event_field_prefix() {
     825
     826        // --<
     827        return $this->event->event_field_prefix;
     828
     829    }
     830
     831    /**
    818832     * Get ACF Field setting prefix that distinguishes Participant Fields from Custom Fields.
    819833     *
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-contact-field.php

    r3170636 r3316449  
    716716                    if ( array_key_exists( $value['name'], $this->contact_fields_individual ) ) {
    717717                        if ( array_key_exists( 'Individual', $top_level ) ) {
    718                             $fields[ $top_level['Individual'] ][] = $value;
     718                            $fields[ $top_level['Individual'] ][] = $value;
    719719                        }
    720720                    }
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-custom-field.php

    r3088271 r3316449  
    550550        // --<
    551551        return $case_data;
     552
     553    }
     554
     555    // -------------------------------------------------------------------------
     556
     557    /**
     558     * Get the values for a given CiviCRM Event ID and set of Custom Fields.
     559     *
     560     * @since 0.7.0
     561     *
     562     * @param integer $event_id The numeric ID of the CiviCRM Event to query.
     563     * @param array   $custom_field_ids The Custom Field IDs to query.
     564     * @return array $case_data An array of Case data.
     565     */
     566    public function values_get_by_event_id( $event_id, $custom_field_ids = [] ) {
     567
     568        // Init return.
     569        $event_data = [];
     570
     571        // Bail if we have no Custom Field IDs.
     572        if ( empty( $custom_field_ids ) ) {
     573            return $event_data;
     574        }
     575
     576        // Try and init CiviCRM.
     577        if ( ! $this->civicrm->is_initialised() ) {
     578            return $event_data;
     579        }
     580
     581        // Format codes.
     582        $codes = [];
     583        foreach ( $custom_field_ids as $custom_field_id ) {
     584            $codes[] = 'custom_' . $custom_field_id;
     585        }
     586
     587        // Define params to get queried Case.
     588        $params = [
     589            'version'    => 3,
     590            'sequential' => 1,
     591            'id'         => $event_id,
     592            'return'     => $codes,
     593            'options'    => [
     594                'limit' => 0, // No limit.
     595            ],
     596        ];
     597
     598        // Call the API.
     599        $result = civicrm_api( 'Event', 'get', $params );
     600
     601        // Bail if there's an error.
     602        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
     603            return $event_data;
     604        }
     605
     606        // Bail if there are no results.
     607        if ( empty( $result['values'] ) ) {
     608            return $event_data;
     609        }
     610
     611        // Overwrite return.
     612        foreach ( $result['values'] as $item ) {
     613            foreach ( $item as $key => $value ) {
     614                if ( substr( $key, 0, 7 ) == 'custom_' ) {
     615                    $index                = (int) str_replace( 'custom_', '', $key );
     616                    $event_data[ $index ] = $value;
     617                }
     618            }
     619        }
     620
     621        // Maybe filter here?
     622
     623        // --<
     624        return $event_data;
    552625
    553626    }
     
    13091382        $field['choices'] = $this->radio_choices_get( $custom_field_id );
    13101383
     1384        // Custom Fields of type "Radio" can be null.
     1385        $field['allow_null'] = 1;
     1386
    13111387        // --<
    13121388        return $field;
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-event-field.php

    r3071446 r3316449  
    192192
    193193        // Listen for queries from our ACF Field class.
     194        add_filter( 'cwps/acf/field_group/field/pre_update', [ $this, 'number_settings_modify' ], 20, 2 );
    194195        add_filter( 'cwps/acf/field_group/field/pre_update', [ $this, 'select_settings_modify' ], 20, 2 );
    195196        add_filter( 'cwps/acf/field_group/field/pre_update', [ $this, 'date_time_picker_settings_modify' ], 20, 2 );
     
    205206     *
    206207     * @since 0.5.4
     208     *
     209     * @return array $public_fields The public Event Fields.
    207210     */
    208211    public function public_fields_get() {
    209212
    210213        // Only do this once.
    211         static $done;
    212         if ( isset( $done ) ) {
    213             return $done;
     214        static $public_fields;
     215        if ( isset( $public_fields ) ) {
     216            return $public_fields;
    214217        }
    215218
    216219        // Grab the Event Fields array.
    217         $done = $this->event_fields;
     220        $public_fields = $this->event_fields;
    218221
    219222        // Remove Campaign Field if the CiviCampaign component is not active.
    220223        $campaign_active = $this->civicrm->is_component_enabled( 'CiviCampaign' );
    221224        if ( ! $campaign_active ) {
    222             unset( $done['campaign_id'] );
    223         }
    224 
    225         // --<
    226         return $done;
     225            unset( $public_fields['campaign_id'] );
     226        }
     227
     228        // --<
     229        return $public_fields;
     230
     231    }
     232
     233    /**
     234     * Getter for the Event Settings Fields.
     235     *
     236     * @since 0.7.0
     237     *
     238     * @return array $settings_fields The public Event Fields.
     239     */
     240    public function settings_fields_get() {
     241
     242        // Grab the Event Settings Fields array.
     243        $settings_fields = $this->settings_fields;
     244
     245        // Remove Campaign Field if the CiviCampaign component is not active.
     246        $campaign_active = $this->civicrm->is_component_enabled( 'CiviCampaign' );
     247        if ( ! $campaign_active ) {
     248            unset( $public_fields['campaign_id'] );
     249        }
     250
     251        // TODO: Maybe filter here.
     252
     253        // --<
     254        return $settings_fields;
    227255
    228256    }
     
    288316    public function value_get_for_acf( $value, $name, $selector, $post_id ) {
    289317
     318        // Bail if value is (string) 'null' which CiviCRM uses for some reason.
     319        if ( is_null( $value ) || 'null' === $value || 'NULL' === $value ) {
     320            return '';
     321        }
     322
    290323        // Bail if empty.
    291324        if ( empty( $value ) ) {
    292325            return $value;
    293         }
    294 
    295         // Bail if value is (string) 'null' which CiviCRM uses for some reason.
    296         if ( 'null' === $value ) {
    297             return '';
    298326        }
    299327
     
    840868
    841869    /**
     870     * Modify the Settings of an ACF "Number" Field.
     871     *
     872     * @since 0.7.0
     873     *
     874     * @param array $field The existing ACF Field data array.
     875     * @param array $field_group The ACF Field Group data array.
     876     * @return array $field The modified ACF Field data array.
     877     */
     878    public function number_settings_modify( $field, $field_group ) {
     879
     880        // Bail early if not our Field Type.
     881        if ( 'number' !== $field['type'] ) {
     882            return $field;
     883        }
     884
     885        // Skip if the CiviCRM Field key isn't there or isn't populated.
     886        $key = $this->civicrm->acf_field_key_get();
     887        if ( ! array_key_exists( $key, $field ) || empty( $field[ $key ] ) ) {
     888            return $field;
     889        }
     890
     891        // Get the mapped Event Field name if present.
     892        $event_field_name = $this->civicrm->event->event_field_name_get( $field );
     893        if ( false === $event_field_name ) {
     894            return $field;
     895        }
     896
     897        // Bail if not one of our Fields. Necessary because prefix is shared.
     898        if ( ! array_key_exists( $event_field_name, $this->public_fields_get() ) ) {
     899            return $field;
     900        }
     901
     902        // Set a max for "Max Number of Participants" to be just below MySQL int(10).
     903        if ( 'max_participants' === $event_field_name ) {
     904            $field['max'] = 999999990;
     905        }
     906
     907        // --<
     908        return $field;
     909
     910    }
     911
     912    /**
    842913     * Modify the Settings of an ACF "Select" Field.
    843914     *
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-event-location.php

    r3071446 r3316449  
    167167
    168168    /**
    169      * Getter for the public Event Fields.
     169     * Getter for the public Event Location Fields.
    170170     *
    171171     * Filters out the Campaign ID when the CiviCampaign Component is not active.
    172172     *
    173173     * @since 0.5.4
     174     *
     175     * @return array $public_fields The public Event Fields.
    174176     */
    175177    public function public_fields_get() {
    176178
    177179        // Only do this once.
    178         static $done;
    179         if ( isset( $done ) ) {
    180             return $done;
     180        static $public_fields;
     181        if ( isset( $public_fields ) ) {
     182            return $public_fields;
    181183        }
    182184
    183185        // Build array of all Fields.
    184         $done  = $this->settings_fields;
    185         $done += $this->address_fields;
    186         $done += $this->email_fields;
    187         $done += $this->phone_fields;
    188 
    189         // --<
    190         return $done;
     186        $public_fields  = $this->settings_fields;
     187        $public_fields += $this->address_fields;
     188        $public_fields += $this->email_fields;
     189        $public_fields += $this->phone_fields;
     190
     191        // --<
     192        return $public_fields;
     193
     194    }
     195
     196    /**
     197     * Getter for the Event Location Settings Fields.
     198     *
     199     * @since 0.7.0
     200     *
     201     * @return array $settings_fields The public Event Fields.
     202     */
     203    public function settings_fields_get() {
     204
     205        // Grab the Event Settings Fields array.
     206        $settings_fields = $this->settings_fields;
     207
     208        // TODO: Maybe filter here.
     209
     210        // --<
     211        return $settings_fields;
    191212
    192213    }
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-event-registration.php

    r3088271 r3316449  
    147147    public $confirmation_email_fields = [
    148148        'is_email_confirm'   => 'true_false',
    149         'confirm_email_text' => 'textarea',
     149        'confirm_email_text' => 'wysiwyg',
    150150        'confirm_from_name'  => 'text',
    151151        'confirm_from_email' => 'email',
     
    197197
    198198        // Listen for queries from our ACF Field class.
     199        add_filter( 'cwps/acf/field_group/field/pre_update', [ $this, 'number_settings_modify' ], 20, 2 );
    199200        add_filter( 'cwps/acf/field_group/field/pre_update', [ $this, 'select_settings_modify' ], 20, 2 );
    200201        add_filter( 'cwps/acf/field_group/field/pre_update', [ $this, 'text_settings_modify' ], 20, 2 );
     
    208209     *
    209210     * @since 0.5.4
     211     *
     212     * @return array $public_fields The public Event Fields.
    210213     */
    211214    public function public_fields_get() {
    212215
    213216        // Only do this once.
    214         static $done;
    215         if ( isset( $done ) ) {
    216             return $done;
     217        static $public_fields;
     218        if ( isset( $public_fields ) ) {
     219            return $public_fields;
    217220        }
    218221
    219222        // Build array of all Fields.
    220         $done  = $this->settings_fields_get();
    221         $done += $this->registration_screen_fields;
    222         $done += $this->registration_screen_profiles;
    223         $done += $this->confirm_screen_fields;
    224         $done += $this->thankyou_screen_fields;
    225         $done += $this->confirmation_email_fields;
    226 
    227         // --<
    228         return $done;
     223        $public_fields  = $this->settings_fields_get();
     224        $public_fields += $this->registration_screen_fields;
     225        $public_fields += $this->registration_screen_profiles;
     226        $public_fields += $this->confirm_screen_fields;
     227        $public_fields += $this->thankyou_screen_fields;
     228        $public_fields += $this->confirmation_email_fields;
     229
     230        // --<
     231        return $public_fields;
    229232
    230233    }
     
    10331036
    10341037    /**
    1035      * Modify the Settings of an ACF "Select" Field.
    1036      *
    1037      * @since 0.5.4
     1038     * Modify the Settings of an ACF "Number" Field.
     1039     *
     1040     * @since 0.7.0
    10381041     *
    10391042     * @param array $field The existing ACF Field data array.
     
    10411044     * @return array $field The modified ACF Field data array.
    10421045     */
    1043     public function select_settings_modify( $field, $field_group ) {
     1046    public function number_settings_modify( $field, $field_group ) {
    10441047
    10451048        // Bail early if not our Field Type.
    1046         if ( 'select' !== $field['type'] ) {
     1049        if ( 'number' !== $field['type'] ) {
    10471050            return $field;
    10481051        }
     
    10541057        }
    10551058
     1059        // Get the mapped Event Field name if present.
     1060        $event_field_name = $this->civicrm->event->event_field_name_get( $field );
     1061        if ( false === $event_field_name ) {
     1062            return $field;
     1063        }
     1064
     1065        // Bail if not one of our Fields. Necessary because prefix is shared.
     1066        if ( ! array_key_exists( $event_field_name, $this->public_fields_get() ) ) {
     1067            return $field;
     1068        }
     1069
     1070        // Set a max for "Expiration Time" to be just below MySQL int(10).
     1071        if ( 'expiration_time' === $event_field_name ) {
     1072            $field['max'] = 999999990;
     1073        }
     1074
     1075        // Set a max for "Self-service Cancellation Time" to be just below MySQL int(11).
     1076        if ( 'selfcancelxfer_time' === $event_field_name ) {
     1077            $field['max'] = 9999999990;
     1078        }
     1079
     1080        // --<
     1081        return $field;
     1082
     1083    }
     1084
     1085    /**
     1086     * Modify the Settings of an ACF "Select" Field.
     1087     *
     1088     * @since 0.5.4
     1089     *
     1090     * @param array $field The existing ACF Field data array.
     1091     * @param array $field_group The ACF Field Group data array.
     1092     * @return array $field The modified ACF Field data array.
     1093     */
     1094    public function select_settings_modify( $field, $field_group ) {
     1095
     1096        // Bail early if not our Field Type.
     1097        if ( 'select' !== $field['type'] ) {
     1098            return $field;
     1099        }
     1100
     1101        // Skip if the CiviCRM Field key isn't there or isn't populated.
     1102        $key = $this->civicrm->acf_field_key_get();
     1103        if ( ! array_key_exists( $key, $field ) || empty( $field[ $key ] ) ) {
     1104            return $field;
     1105        }
     1106
    10561107        // Get the mapped Field name if present.
    10571108        $event_field_name = $this->civicrm->event->event_field_name_get( $field );
     
    10681119        $field['choices'] = $this->options_get( $event_field_name );
    10691120
    1070         // Set a default for "Dedupe Rule".
     1121        /*
     1122         * Format array for "Dedupe Rule".
     1123         *
     1124         * The array of Dedupe Rule IDs is actually a sub-array for the key "Individual".
     1125         * We extract it and prepend "CiviCRM Default" for clarity.
     1126         */
    10711127        if ( 'dedupe_rule_group_id' === $event_field_name ) {
    1072             $field['choices']       = [ '' => __( 'None', 'civicrm-wp-profile-sync' ) ] + $field['choices'];
     1128            if ( array_key_exists( 'Individual', $field['choices'] ) ) {
     1129                $choices          = array_pop( $field['choices'] );
     1130                $field['choices'] = [ '' => __( 'CiviCRM Default', 'civicrm-wp-profile-sync' ) ] + $choices;
     1131            } else {
     1132                // Retain previous logic just in case.
     1133                $field['choices'] = [ '' => __( 'CiviCRM Default', 'civicrm-wp-profile-sync' ) ] + $field['choices'];
     1134            }
    10731135            $field['default_value'] = '';
    10741136        }
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-event.php

    r3071446 r3316449  
    477477            'version'         => 3,
    478478            'options'         => [
    479                 'sort' => 'weight ASC',
     479                'limit' => 0,
     480                'sort'  => 'weight ASC',
    480481            ],
    481482        ];
     
    10161017    }
    10171018
     1019    /**
     1020     * Check if this Field Group has been mapped to the Event Post Type.
     1021     *
     1022     * @since 0.7.0
     1023     *
     1024     * @param array $field_group The Field Group to check.
     1025     * @return array|bool $is_event_field_group True if the Field Group has been mapped to the Event Post Type, or false otherwise.
     1026     */
     1027    public function is_event_field_group( $field_group ) {
     1028
     1029        // Bail if there's no Field Group ID.
     1030        if ( empty( $field_group['ID'] ) ) {
     1031            return false;
     1032        }
     1033
     1034        // Only do this once per Field Group.
     1035        static $pseudocache;
     1036        if ( isset( $pseudocache[ $field_group['ID'] ] ) ) {
     1037            return $pseudocache[ $field_group['ID'] ];
     1038        }
     1039
     1040        // Init return.
     1041        $is_event_field_group = [];
     1042
     1043        // Bail if no Location Rules exist.
     1044        if ( ! empty( $field_group['location'] ) ) {
     1045
     1046            // Define params to test for Event Location.
     1047            $params = [
     1048                'post_type' => 'event',
     1049            ];
     1050
     1051            /**
     1052             * Filter the params to test for Event Location.
     1053             *
     1054             * @since 0.7.0
     1055             *
     1056             * @param array $params The array of params to test for Event Location.
     1057             */
     1058            $params = apply_filters( 'cwps/acf/civicrm/event/is_field_group/params', $params );
     1059
     1060            // Do the check.
     1061            $is_visible = $this->acf_loader->acf->field_group->is_visible( $field_group, $params );
     1062
     1063            // If it is, then add to return array.
     1064            if ( $is_visible ) {
     1065                $is_event_field_group[] = $post_type;
     1066            }
     1067
     1068        }
     1069
     1070        // Cast as boolean on failure.
     1071        if ( empty( $is_event_field_group ) ) {
     1072            $is_event_field_group = false;
     1073        }
     1074
     1075        // Maybe add to pseudo-cache.
     1076        if ( ! isset( $pseudocache[ $field_group['ID'] ] ) ) {
     1077            $pseudocache[ $field_group['ID'] ] = $is_event_field_group;
     1078        }
     1079
     1080        // --<
     1081        return $is_event_field_group;
     1082
     1083    }
     1084
    10181085    // -------------------------------------------------------------------------
    10191086
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-im.php

    r3170636 r3316449  
    404404            'location_type_id' => $location_type_id,
    405405            'provider_id'      => $provider_id,
     406            'options'          => [
     407                'limit' => 0, // No limit.
     408            ],
    406409        ];
    407410
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-participant-cpt.php

    r3071446 r3316449  
    18341834    public function field_group_add() {
    18351835
     1836        // We do not need the ACF Fields in CiviCRM admin.
     1837        $civicrm_args = civi_wp()->get_request_args();
     1838        if ( is_admin() && ! empty( $civicrm_args['args'][0] ) && 'civicrm' === $civicrm_args['args'][0] ) {
     1839            return;
     1840        }
     1841
    18361842        // Get the ACF Field definitions.
    18371843        $register_date = $this->field_register_date_get();
     
    19921998    public function maybe_hide_field( $field ) {
    19931999
     2000        // We do not need the ACF Fields in CiviCRM admin.
     2001        $civicrm_args = civi_wp()->get_request_args();
     2002        if ( is_admin() && ! empty( $civicrm_args['args'][0] ) && 'civicrm' === $civicrm_args['args'][0] ) {
     2003            return;
     2004        }
     2005
    19942006        // Get the CiviCRM Custom Field ID.
    19952007        $custom_field_id = $this->civicrm->custom_field->custom_field_id_get( $field );
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-phone-single.php

    r3170636 r3316449  
    112112        // Register hooks.
    113113        $this->register_hooks();
    114 
    115114
    116115        /**
     
    450449
    451450        // Get all Phone Records for this Contact.
    452         $data = $this->phones_get_for_contact( $args['objectId'] );
     451        $data = $this->plugin->civicrm->phone->phones_get_for_contact( $args['objectId'] );
    453452        if ( empty( $data ) ) {
    454453            return;
     
    927926                $acf_fields['phone_single'][ $field['name'] ] = [
    928927                    'location_type_id' => $field['phone_location_type_id'],
    929                     'phone_type_id' => $field['phone_type_id'],
     928                    'phone_type_id'    => $field['phone_type_id'],
    930929                ];
    931930            }
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-relationship.php

    r3088271 r3316449  
    355355            'version'              => 3,
    356356            'relationship_type_id' => $relationship_type_id,
     357            'options'              => [
     358                'limit' => 0, // No limit.
     359            ],
    357360        ];
    358361
     
    13001303            'version'    => 3,
    13011304            'sequential' => 1,
     1305            'options'    => [
     1306                'limit' => 0, // No limit.
     1307            ],
    13021308        ];
    13031309
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/classes/cwps-acf-user.php

    r3170636 r3316449  
    947947
    948948        // Single Phone just requires an empty number.
    949         $phone->phone = '';
     949        $phone->phone         = '';
    950950        $phone->phone_numeric = '';
    951951        $this->civicrm->phone_single->fields_update( $post_id, $phone );
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/fields/cwps-acf-field-civicrm-activity-assignee.php

    r3170636 r3316449  
    237237        $field['allow_null'] = 1;
    238238        $field['multiple']   = 1;
     239        $field['nonce']      = wp_create_nonce( $field['key'] );
    239240
    240241        // Init choices array.
     
    356357        $field = acf_get_field( $options['field_key'] );
    357358
    358         // Bail if Field did not load.
    359         if ( ! $field ) {
    360             return $response;
    361         }
    362 
    363359        // Grab the Post ID.
    364360        $post_id = (int) $options['post_id'];
     
    369365        // Strip slashes - search may be an integer.
    370366        $args['search'] = wp_unslash( (string) $options['s'] );
    371 
    372         // Get the "CiviCRM Field" key.
    373         $acf_field_key = $this->acf_loader->civicrm->acf_field_key_get();
    374367
    375368        // Default to "Individual" Contact Type.
     
    386379         */
    387380        $args = apply_filters( 'acf/fields/' . $this->name . '/query', $args, $field, $post_id );
    388         $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
    389         $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     381        if ( ! empty( $field ) ) {
     382            $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
     383            $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     384        }
    390385
    391386        // Handle paging.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/fields/cwps-acf-field-civicrm-activity-creator.php

    r3170636 r3316449  
    237237        $field['allow_null'] = 1;
    238238        $field['multiple']   = 0;
     239        $field['nonce']      = wp_create_nonce( $field['key'] );
    239240
    240241        // Init choices array.
     
    356357        $field = acf_get_field( $options['field_key'] );
    357358
    358         // Bail if Field did not load.
    359         if ( ! $field ) {
    360             return $response;
    361         }
    362 
    363359        // Grab the Post ID.
    364360        $post_id = (int) $options['post_id'];
     
    369365        // Strip slashes - search may be an integer.
    370366        $args['search'] = wp_unslash( (string) $options['s'] );
    371 
    372         // Get the "CiviCRM Field" key.
    373         $acf_field_key = $this->acf_loader->civicrm->acf_field_key_get();
    374367
    375368        // Default to "Individual" Contact Type.
     
    386379         */
    387380        $args = apply_filters( 'acf/fields/' . $this->name . '/query', $args, $field, $post_id );
    388         $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
    389         $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     381        if ( ! empty( $field ) ) {
     382            $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
     383            $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     384        }
    390385
    391386        // Handle paging.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/fields/cwps-acf-field-civicrm-activity-target.php

    r3170636 r3316449  
    237237        $field['allow_null'] = 1;
    238238        $field['multiple']   = 1;
     239        $field['nonce']      = wp_create_nonce( $field['key'] );
    239240
    240241        // Init choices array.
     
    356357        $field = acf_get_field( $options['field_key'] );
    357358
    358         // Bail if Field did not load.
    359         if ( ! $field ) {
    360             return $response;
    361         }
    362 
    363359        // Grab the Post ID.
    364360        $post_id = (int) $options['post_id'];
     
    369365        // Strip slashes - search may be an integer.
    370366        $args['search'] = wp_unslash( (string) $options['s'] );
    371 
    372         // Get the "CiviCRM Field" key.
    373         $acf_field_key = $this->acf_loader->civicrm->acf_field_key_get();
    374367
    375368        // Default to "Individual" Contact Type.
     
    386379         */
    387380        $args = apply_filters( 'acf/fields/' . $this->name . '/query', $args, $field, $post_id );
    388         $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
    389         $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     381        if ( ! empty( $field ) ) {
     382            $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
     383            $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     384        }
    390385
    391386        // Handle paging.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/fields/cwps-acf-field-civicrm-contact-ref.php

    r3170636 r3316449  
    217217        $field['required']          = 0;
    218218        $field['conditional_logic'] = 0;
     219        $field['nonce']             = wp_create_nonce( $field['key'] );
    219220
    220221        // Init choices array.
     
    335336        // Load Field.
    336337        $field = acf_get_field( $options['field_key'] );
    337         if ( ! $field ) {
    338             return $response;
    339         }
    340338
    341339        // Grab the Post ID.
     
    348346        $args['search'] = wp_unslash( (string) $options['s'] );
    349347
    350         // Get the "CiviCRM Field" key.
    351         $acf_field_key = $this->civicrm->acf_field_key_get();
    352 
    353348        // Default to any Contact Type.
    354349        $args['contact_type'] = '';
     350
     351        /*
     352        // If this is a "standard" Field (i.e. not added in code) check Employer ID.
     353        if ( ! empty( $field ) ) {
     354
     355            // Get the "CiviCRM Field" key.
     356            $acf_field_key = $this->civicrm->acf_field_key_get();
     357
     358            // Restrict to target Contact Type if this Field is linked to Employer ID.
     359            if ( ! empty( $field[ $acf_field_key ] ) && $field[ $acf_field_key ] === $this->civicrm->contact_field_prefix() . 'employer_id' ) {
     360                $args['contact_type'] = 'Organization';
     361            }
     362
     363        }
     364        */
    355365
    356366        /**
     
    364374         */
    365375        $args = apply_filters( 'acf/fields/' . $this->name . '/query', $args, $field, $post_id );
    366         $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
    367         $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     376        if ( ! empty( $field ) ) {
     377            $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
     378            $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     379        }
    368380
    369381        // Handle paging.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/fields/cwps-acf-field-civicrm-contact.php

    r3170636 r3316449  
    276276        $field['required']          = 0;
    277277        $field['conditional_logic'] = 0;
     278        $field['nonce']             = wp_create_nonce( $field['key'] );
    278279
    279280        // Maybe assign "multiple" property.
     
    397398        }
    398399
    399         // Load Field.
    400         $field = acf_get_field( $options['field_key'] );
    401         if ( ! $field ) {
    402             return $response;
    403         }
    404 
    405400        // Grab the Post ID.
    406401        $post_id = (int) $options['post_id'];
     
    412407        $args['search'] = wp_unslash( (string) $options['s'] );
    413408
    414         // Get the "CiviCRM Field" key.
    415         $acf_field_key = $this->civicrm->acf_field_key_get();
    416 
    417409        // Assume any Contact Type.
    418410        $args['contact_type'] = '';
    419411
    420         // Restrict to target Contact Type if this Field is linked to Employer ID.
    421         if ( ! empty( $field[ $acf_field_key ] ) && $field[ $acf_field_key ] == $this->civicrm->contact_field_prefix() . 'employer_id' ) {
    422             $args['contact_type'] = 'Organization';
     412        // Try to load Field.
     413        $field = acf_get_field( $options['field_key'] );
     414
     415        // If this is a "standard" Field (i.e. not added in code) check Employer ID.
     416        if ( ! empty( $field ) ) {
     417
     418            // Get the "CiviCRM Field" key.
     419            $acf_field_key = $this->civicrm->acf_field_key_get();
     420
     421            // Restrict to target Contact Type if this Field is linked to Employer ID.
     422            if ( ! empty( $field[ $acf_field_key ] ) && $field[ $acf_field_key ] === $this->civicrm->contact_field_prefix() . 'employer_id' ) {
     423                $args['contact_type'] = 'Organization';
     424            }
     425
    423426        }
    424427
     
    433436         */
    434437        $args = apply_filters( 'acf/fields/' . $this->name . '/query', $args, $field, $post_id );
    435         $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
    436         $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     438        if ( ! empty( $field ) ) {
     439            $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
     440            $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     441        }
    437442
    438443        // Handle paging.
     
    446451        $groups   = [];
    447452        $advanced = [];
    448         if ( ! empty( $field[ $acf_field_key ] ) ) {
     453        if ( ! empty( $field ) && ! empty( $field[ $acf_field_key ] ) ) {
    449454
    450455            // Find the Custom Field ID.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/fields/cwps-acf-field-civicrm-event.php

    r3170636 r3316449  
    235235        $field['multiple']   = 0;
    236236        $field['required']   = 0;
     237        $field['nonce']      = wp_create_nonce( $field['key'] );
    237238
    238239        // Init choices array.
     
    348349        }
    349350
    350         // Load Field.
    351         $field = acf_get_field( $options['field_key'] );
    352 
    353         // Bail if Field did not load.
    354         if ( ! $field ) {
    355             return $response;
    356         }
    357 
    358351        // Grab the Post ID.
    359352        $post_id = (int) $options['post_id'];
     
    365358        $args['search'] = wp_unslash( (string) $options['s'] );
    366359
    367         // Get the "CiviCRM Field" key.
    368         $acf_field_key = $this->acf_loader->civicrm->acf_field_key_get();
     360        // Try to load Field.
     361        $field = acf_get_field( $options['field_key'] );
    369362
    370363        /**
     
    378371         */
    379372        $args = apply_filters( 'acf/fields/' . $this->name . '/query', $args, $field, $post_id );
    380         $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
    381         $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     373        if ( ! empty( $field ) ) {
     374            $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
     375            $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     376        }
    382377
    383378        // Get Events.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/fields/cwps-acf-field-civicrm-phone-single.php

    r3170636 r3316449  
    275275
    276276        // Change Field into a simple text Field.
    277         $field['type']       = 'text';
    278         $field['prepend']    = '';
    279         $field['append']     = '';
    280         $field['step']       = '';
     277        $field['type']    = 'text';
     278        $field['prepend'] = '';
     279        $field['append']  = '';
     280        $field['step']    = '';
    281281
    282282        // Populate Field.
     
    322322    public function load_value( $value, $post_id, $field ) {
    323323
    324 //      // Assign Phone for this Field if empty.
    325 //      if ( empty( $value ) ) {
    326 //          $value = $this->get_phone( $value, $post_id, $field );
    327 //      }
     324        /*
     325        // Assign Phone for this Field if empty.
     326        if ( empty( $value ) ) {
     327            $value = $this->get_phone( $value, $post_id, $field );
     328        }
     329        */
    328330
    329331        // --<
     
    407409        }
    408410
    409 //      // Grab just the Primary values.
    410 //      $primary_values = wp_list_pluck( $value, 'field_phone_primary' );
    411 //
    412 //      // Sanitise array contents.
    413 //      array_walk(
    414 //          $primary_values,
    415 //          function( &$item ) {
    416 //              $item = (int) trim( $item );
    417 //          }
    418 //      );
    419 //
    420 //      // Check that we have a Primary Number.
    421 //      if ( ! in_array( 1, $primary_values, true ) ) {
    422 //          $valid = __( 'Please select a Primary Number', 'civicrm-wp-profile-sync' );
    423 //          return $valid;
    424 //      }
    425 //
    426 //      // Grab just the Phone Numbers.
    427 //      $phones = wp_list_pluck( $value, 'field_phone_number' );
    428 //
    429 //      // Sanitise array contents.
    430 //      array_walk(
    431 //          $phones,
    432 //          function( &$item ) {
    433 //              $item = (string) trim( $item );
    434 //          }
    435 //      );
    436 //
    437 //      // Check that all Number Fields are populated.
    438 //      if ( in_array( '', $phones, true ) ) {
    439 //          $valid = __( 'Please enter a Phone Number', 'civicrm-wp-profile-sync' );
    440 //          return $valid;
    441 //      }
     411        /*
     412        // Grab just the Primary values.
     413        $primary_values = wp_list_pluck( $value, 'field_phone_primary' );
     414
     415        // Sanitise array contents.
     416        array_walk(
     417            $primary_values,
     418            function( &$item ) {
     419                $item = (int) trim( $item );
     420            }
     421        );
     422
     423        // Check that we have a Primary Number.
     424        if ( ! in_array( 1, $primary_values, true ) ) {
     425            $valid = __( 'Please select a Primary Number', 'civicrm-wp-profile-sync' );
     426            return $valid;
     427        }
     428
     429        // Grab just the Phone Numbers.
     430        $phones = wp_list_pluck( $value, 'field_phone_number' );
     431
     432        // Sanitise array contents.
     433        array_walk(
     434            $phones,
     435            function( &$item ) {
     436                $item = (string) trim( $item );
     437            }
     438        );
     439
     440        // Check that all Number Fields are populated.
     441        if ( in_array( '', $phones, true ) ) {
     442            $valid = __( 'Please enter a Phone Number', 'civicrm-wp-profile-sync' );
     443            return $valid;
     444        }
     445        */
    442446
    443447        // --<
     
    456460    public function load_field( $field ) {
    457461
    458 //      // Init Subfields.
    459 //      $sub_fields = [];
    460 //
    461 //      // Maybe append to Field.
    462 //      if ( ! empty( $field['sub_fields'] ) ) {
    463 //
    464 //          // Validate Field first.
    465 //          foreach ( $field['sub_fields'] as $sub_field ) {
    466 //              $sub_fields[] = acf_validate_field( $sub_field );
    467 //          }
    468 //
    469 //      }
    470 //
    471 //      // Overwrite subfields.
    472 //      $field['sub_fields'] = $sub_fields;
     462        /*
     463        // Init Subfields.
     464        $sub_fields = [];
     465
     466        // Maybe append to Field.
     467        if ( ! empty( $field['sub_fields'] ) ) {
     468
     469            // Validate Field first.
     470            foreach ( $field['sub_fields'] as $sub_field ) {
     471                $sub_fields[] = acf_validate_field( $sub_field );
     472            }
     473
     474        }
     475
     476        // Overwrite subfields.
     477        $field['sub_fields'] = $sub_fields;
     478        */
    473479
    474480        // --<
  • civicrm-wp-profile-sync/tags/0.7.0/includes/acf/fields/cwps-acf-field-civicrm-relationship.php

    r3170636 r3316449  
    253253        $field['allow_null'] = 1;
    254254        $field['multiple']   = 1;
     255        $field['nonce']      = wp_create_nonce( $field['key'] );
    255256
    256257        // Init choices array.
     
    372373        $field = acf_get_field( $options['field_key'] );
    373374
    374         // Bail if Field did not load.
    375         if ( ! $field ) {
    376             return $response;
    377         }
    378 
    379375        // Grab the ACF "Post ID".
    380376        $post_id = $options['post_id'];
     
    393389        $args['contact_sub_type'] = '';
    394390
    395         // If this has a relationship.
    396         if ( ! empty( $field[ $relationship_key ] ) ) {
     391        // If this has a Relationship.
     392        if ( ! empty( $field ) && ! empty( $field[ $relationship_key ] ) ) {
    397393
    398394            // Get the Relationship ID.
     
    433429         */
    434430        $args = apply_filters( 'acf/fields/' . $this->name . '/query', $args, $field, $post_id );
    435         $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
    436         $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     431        if ( ! empty( $field ) ) {
     432            $args = apply_filters( 'acf/fields/' . $this->name . "/query/name={$field['_name']}", $args, $field, $post_id );
     433            $args = apply_filters( 'acf/fields/' . $this->name . "/query/key={$field['key']}", $args, $field, $post_id );
     434        }
    437435
    438436        // Handle paging.
  • civicrm-wp-profile-sync/tags/0.7.0/includes/civicrm/cwps-civicrm-address.php

    r3071446 r3316449  
    656656            'version'    => 3,
    657657            'contact_id' => $contact_id,
     658            'options'    => [
     659                'limit' => 0, // No limit.
     660            ],
    658661        ];
    659662
  • civicrm-wp-profile-sync/tags/0.7.0/includes/civicrm/cwps-civicrm-contact-type.php

    r3071446 r3316449  
    292292
    293293            // Call the API.
     294            // TODO: Perhaps use 'get' instead.
    294295            $result = civicrm_api( 'ContactType', 'getsingle', $params );
    295296
  • civicrm-wp-profile-sync/tags/0.7.0/includes/civicrm/cwps-civicrm-phone.php

    r3071446 r3316449  
    161161            'location_type_id' => $location_type_id,
    162162            'phone_type_id'    => $phone_type_id,
     163            'options'          => [
     164                'limit' => 0, // No limit.
     165            ],
    163166        ];
    164167
  • civicrm-wp-profile-sync/tags/0.7.0/languages/civicrm-wp-profile-sync.pot

    r3170636 r3316449  
    1 # Copyright (C) 2024 Christian Wach
     1# Copyright (C) 2025 Christian Wach
    22# This file is distributed under the GPLv2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: CiviCRM Profile Sync 0.6.9a\n"
     5"Project-Id-Version: CiviCRM Profile Sync 0.7.0a\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/civicrm-wp-profile-sync\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-10-17T10:26:55+00:00\n"
     12"POT-Creation-Date: 2025-06-23T15:48:05+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
     
    6060
    6161#: assets/civicrm/custom_php/CRM/Contact/Form/Task/CreateWordPressUsers.php:29
    62 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1579
    63 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1993
    64 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2101
     62#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1579
     63#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1993
     64#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2101
     65#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1565
     66#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1979
     67#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2085
    6568msgid "Email"
    6669msgstr ""
     
    8891
    8992#: assets/civicrm/custom_php/CRM/Contact/Form/Task/CreateWordPressUsers.php:133
    90 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3884
    91 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3907
    92 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1376
    93 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1816
    94 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1881
    95 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1894
     93#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3884
     94#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3907
     95#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1376
     96#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1816
     97#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1881
     98#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1894
     99#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3872
     100#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3895
     101#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1299
     102#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1755
     103#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1820
     104#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1833
    96105#: includes/acf/fields/cwps-acf-field-civicrm-yes-no.php:178
    97106msgid "No"
     
    99108
    100109#: assets/civicrm/custom_php/CRM/Contact/Form/Task/CreateWordPressUsers.php:135
    101 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3883
    102 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3906
    103 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1375
    104 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1815
    105 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1880
    106 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1893
     110#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3883
     111#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3906
     112#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1375
     113#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1815
     114#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1880
     115#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1893
     116#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3871
     117#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3894
     118#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1298
     119#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1754
     120#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1819
     121#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1832
    107122#: includes/acf/fields/cwps-acf-field-civicrm-yes-no.php:177
    108123msgid "Yes"
     
    159174
    160175#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:49
    161 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2049
    162 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2349
    163 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2677
    164 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2848
     176#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2049
     177#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2349
     178#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2677
     179#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2848
     180#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2035
     181#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2331
     182#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2678
     183#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2846
    165184#: includes/acf/fields/cwps-acf-field-civicrm-address.php:496
    166185#: includes/acf/shortcodes/cwps-shortcode-address.php:210
     
    173192
    174193#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:63
    175 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2659
    176 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1688
     194#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2659
     195#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1688
     196#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2661
     197#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1628
    177198msgid "Phone Type"
    178199msgstr ""
     
    180201#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:77
    181202#: assets/templates/wordpress/metaboxes/metabox-admin-settings-profile.php:61
    182 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2202
     203#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2202
     204#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2186
    183205msgid "Website Type"
    184206msgstr ""
    185207
    186208#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:91
    187 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1482
     209#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1482
     210#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1468
    188211#: includes/acf/fields/cwps-acf-field-civicrm-contact-existing-new.php:374
    189212msgid "Contact Type"
     
    195218
    196219#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:123
    197 #: includes/acf/acfe/classes/cwps-acf-acfe-form.php:506
    198 #: includes/acf/classes/cwps-acf-acf-field.php:900
     220#: includes/acf/acfe/classes/cwps-acf-acfe-form.php:698
     221#: includes/acf/classes/cwps-acf-acf-field.php:901
    199222#: includes/acf/classes/cwps-acf-activity.php:1228
    200223#: includes/acf/classes/cwps-acf-case.php:1451
    201224#: includes/acf/classes/cwps-acf-contact.php:1450
    202 #: includes/acf/classes/cwps-acf-custom-field.php:1119
     225#: includes/acf/classes/cwps-acf-custom-field.php:1192
    203226#: includes/acf/classes/cwps-acf-multiset.php:1064
    204227#: includes/acf/classes/cwps-acf-participant.php:1192
     
    313336#: assets/templates/wordpress/pages/page-admin-acf-sync.php:18
    314337#: assets/templates/wordpress/pages/page-admin-settings.php:19
    315 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1926
    316 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1953
     338#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1926
     339#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1953
     340#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1865
     341#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1892
    317342#: includes/admin/cwps-admin.php:513
    318343#: includes/admin/cwps-admin.php:827
     
    491516#: assets/templates/wordpress/taxonomies/term-edit.php:17
    492517#: assets/templates/wordpress/taxonomies/term-edit.php:19
    493 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:633
    494 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:794
    495 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:829
    496 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:789
    497 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:824
    498 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:433
    499 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:556
    500 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:591
    501 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:982
    502 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1035
    503 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1070
    504 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:896
    505 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:931
    506 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1071
    507 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1106
    508 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1251
    509 #: includes/acf/classes/cwps-acf-event-field.php:885
    510 #: includes/acf/classes/cwps-acf-event-location.php:1221
    511 #: includes/acf/classes/cwps-acf-event-registration.php:1072
    512 #: includes/acf/classes/cwps-acf-event-registration.php:1078
    513 #: includes/acf/classes/cwps-acf-event.php:530
     518#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:633
     519#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:794
     520#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:829
     521#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:789
     522#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:824
     523#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:433
     524#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:556
     525#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:591
     526#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:982
     527#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1035
     528#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1070
     529#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:896
     530#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:931
     531#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1071
     532#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1106
     533#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1251
     534#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:646
     535#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:807
     536#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:842
     537#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:791
     538#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:826
     539#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:430
     540#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:553
     541#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:588
     542#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:915
     543#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:968
     544#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1003
     545#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:900
     546#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:935
     547#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1072
     548#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1107
     549#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1252
     550#: includes/acf/classes/cwps-acf-event-field.php:956
     551#: includes/acf/classes/cwps-acf-event-location.php:1242
     552#: includes/acf/classes/cwps-acf-event-registration.php:1140
     553#: includes/acf/classes/cwps-acf-event.php:531
    514554msgid "None"
    515555msgstr ""
     
    537577msgstr ""
    538578
    539 #: includes/acf/acfe/classes/cwps-acf-acfe-form.php:509
    540 #: includes/acf/classes/cwps-acf-acf-field.php:903
     579#: includes/acf/acfe/classes/cwps-acf-acfe-form.php:701
     580#: includes/acf/classes/cwps-acf-acf-field.php:904
    541581#: includes/acf/classes/cwps-acf-activity.php:1231
    542582#: includes/acf/classes/cwps-acf-case.php:1454
    543583#: includes/acf/classes/cwps-acf-contact.php:1453
    544 #: includes/acf/classes/cwps-acf-custom-field.php:1122
     584#: includes/acf/classes/cwps-acf-custom-field.php:1195
    545585#: includes/acf/classes/cwps-acf-multiset.php:1067
    546586#: includes/acf/classes/cwps-acf-participant.php:1195
     
    621661msgstr ""
    622662
    623 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:223
     663#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:224
    624664msgid "Select the State/Province Field"
    625665msgstr ""
    626666
    627 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:251
     667#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:252
    628668#: includes/acf/fields/cwps-acf-field-civicrm-address.php:757
    629669msgid "State/Province"
    630670msgstr ""
    631671
    632 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:254
     672#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:255
    633673msgid "Use the Counties in this State/Province."
    634674msgstr ""
    635675
    636 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:258
     676#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:259
    637677msgid "Select the State/Province"
    638678msgstr ""
    639679
    640 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:465
    641 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:470
     680#. translators: %s: The Field title
     681#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:461
     682#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:466
     683msgid "Inside: %s"
     684msgstr ""
     685
     686#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-county.php:467
     687#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:472
    642688msgid "Top Level"
    643689msgstr ""
     
    675721msgstr ""
    676722
    677 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:228
     723#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:229
    678724msgid "Select the Country Field"
    679725msgstr ""
    680726
    681 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:256
     727#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:257
    682728#: includes/acf/fields/cwps-acf-field-civicrm-address.php:731
    683729msgid "Country"
    684730msgstr ""
    685731
    686 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:259
     732#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:260
    687733msgid "Use the States/Provinces in this Country."
    688734msgstr ""
    689735
    690 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:263
     736#: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:264
    691737msgid "Select the Country"
    692738msgstr ""
    693739
    694 #. translators: %s: The Field title
    695 #: includes/acf/acfe/fields/cwps-acf-acfe-field-address-state.php:473
    696 msgid "Inside: %s"
    697 msgstr ""
    698 
    699 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:247
     740#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:247
     741#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:173
    700742msgid "CiviCRM Activity action"
    701743msgstr ""
    702744
    703 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:250
     745#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:250
     746#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:176
    704747msgid "CiviCRM Activity"
    705748msgstr ""
    706749
    707 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:531
     750#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:531
     751#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:544
    708752msgid "Activity Type"
    709753msgstr ""
    710754
    711 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:556
     755#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:556
     756#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:569
    712757msgid "Activity Status"
    713758msgstr ""
    714759
    715 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:590
    716 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3241
    717 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:747
     760#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:590
     761#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3241
     762#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:747
     763#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:603
     764#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3232
     765#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:751
    718766msgid "Campaign"
    719767msgstr ""
    720768
    721 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:620
    722 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:420
     769#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:620
     770#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:420
     771#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:633
     772#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:417
    723773#: includes/acf/classes/cwps-acf-case.php:1913
    724774msgid "Case"
    725775msgstr ""
    726776
    727 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:623
    728 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:423
     777#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:623
     778#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:423
     779#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:636
     780#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:420
    729781msgid "Select a Case Action in this Form."
    730782msgstr ""
    731783
    732 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:644
     784#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:644
     785#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:657
    733786msgid "Create Case Activity?"
    734787msgstr ""
    735788
    736 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:647
     789#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:647
     790#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:660
    737791msgid "Create a Case Activity even if the Contact already has an existing Case of the selected Type. Useful when you want to add an Activity to a Case."
    738792msgstr ""
    739793
    740 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:675
    741 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1165
    742 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:611
    743 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1606
    744 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2081
    745 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2228
    746 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2429
    747 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2709
    748 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2880
    749 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3079
    750 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3224
    751 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3385
    752 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3516
    753 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3658
    754 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:445
    755 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:873
    756 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1453
    757 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1600
    758 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1706
    759 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:773
     794#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:675
     795#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1165
     796#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:611
     797#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1606
     798#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2081
     799#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2228
     800#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2429
     801#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2709
     802#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2880
     803#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3079
     804#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3224
     805#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3385
     806#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3516
     807#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3658
     808#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:445
     809#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:873
     810#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1453
     811#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1600
     812#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1706
     813#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:773
     814#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:1295
     815#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1540
    760816msgid "Conditional On"
    761817msgstr ""
    762818
    763 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:677
    764 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1168
    765 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:613
    766 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1608
    767 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2084
    768 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2231
    769 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2432
    770 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2712
    771 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2883
    772 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3227
    773 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3388
    774 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3519
    775 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3661
    776 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:875
    777 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1455
    778 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1602
    779 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1709
    780 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:775
     819#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:677
     820#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1168
     821#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:613
     822#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1608
     823#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2084
     824#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2231
     825#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2432
     826#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2712
     827#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2883
     828#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3227
     829#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3388
     830#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3519
     831#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3661
     832#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:875
     833#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1455
     834#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1602
     835#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1709
     836#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:775
     837#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:688
     838#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1176
     839#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:612
     840#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1592
     841#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2067
     842#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2212
     843#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2411
     844#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2710
     845#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2878
     846#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3074
     847#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3217
     848#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3377
     849#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3507
     850#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3648
     851#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:806
     852#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1377
     853#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1542
     854#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1647
     855#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:777
    781856msgid "Always add"
    782857msgstr ""
    783858
    784 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:679
     859#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:679
     860#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:689
    785861msgid "To add the Activity only when a Form Field is populated (e.g. \"Subject\") link this to the Form Field. To add the Activity only when more complex conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    786862msgstr ""
    787863
    788 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:742
    789 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:880
    790 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:737
    791 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:875
    792 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:844
    793 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:982
     864#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:742
     865#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:880
     866#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:737
     867#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:875
     868#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:844
     869#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:982
     870#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:755
     871#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:890
     872#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:739
     873#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:874
     874#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:848
     875#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:983
    794876msgid "Contact References"
    795877msgstr ""
    796878
    797879#. translators: %s: The name of the Field
    798 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:769
    799 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:764
    800 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:531
    801 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:871
    802 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1226
     880#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:769
     881#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:764
     882#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:531
     883#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:871
     884#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1226
     885#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:782
     886#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:766
     887#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:528
     888#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:875
     889#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1227
    803890msgid "Use one Field to identify the %s."
    804891msgstr ""
    805892
    806 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:782
    807 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:777
    808 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:544
    809 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1023
    810 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:884
     893#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:782
     894#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:777
     895#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:544
     896#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1023
     897#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:884
     898#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:795
     899#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:779
     900#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:541
     901#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:956
     902#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:888
    811903msgid "CiviCRM Contact Action"
    812904msgstr ""
    813905
    814 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:785
    815 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:780
    816 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:547
    817 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1026
    818 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:887
     906#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:785
     907#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:780
     908#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:547
     909#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1026
     910#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:887
     911#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:798
     912#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:782
     913#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:544
     914#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:959
     915#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:891
    819916msgid "Select a Contact Action in this Form."
    820917msgstr ""
    821918
    822 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:817
    823 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:812
    824 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:579
    825 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1058
    826 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:919
     919#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:817
     920#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:812
     921#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:579
     922#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1058
     923#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:919
     924#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:830
     925#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:814
     926#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:576
     927#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:991
     928#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:923
    827929msgid "CiviCRM Contact ID"
    828930msgstr ""
    829931
    830 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:820
    831 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:815
    832 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:582
    833 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1061
    834 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:922
     932#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:820
     933#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:815
     934#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:582
     935#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1061
     936#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:922
     937#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:833
     938#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:817
     939#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:579
     940#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:994
     941#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:926
    835942msgid "Select a CiviCRM Contact ID from the database."
    836943msgstr ""
    837944
    838 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:853
    839 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:848
    840 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:615
    841 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1094
    842 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:955
     945#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:853
     946#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:848
     947#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:615
     948#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1094
     949#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:955
     950#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:863
     951#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:847
     952#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:612
     953#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1024
     954#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:956
    843955msgid "Custom Contact Reference"
    844956msgstr ""
    845957
    846 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:855
    847 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:850
    848 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:617
    849 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1096
    850 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:957
     958#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:855
     959#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:850
     960#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:617
     961#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1096
     962#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:957
     963#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:865
     964#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:849
     965#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:614
     966#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1026
     967#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:958
    851968msgid "Define a custom Contact Reference."
    852969msgstr ""
    853970
    854 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:917
    855 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:944
     971#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:917
     972#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:944
     973#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:927
     974#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:954
    856975#: includes/acf/classes/cwps-acf-activity.php:1202
    857976#: includes/acf/classes/cwps-acf-activity.php:1331
     
    860979msgstr ""
    861980
    862 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:981
    863 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1065
    864 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:976
    865 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:1060
    866 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1853
    867 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1956
    868 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2530
    869 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2566
    870 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3997
    871 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:4101
    872 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1222
    873 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1313
    874 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1421
    875 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1583
     981#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:981
     982#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1065
     983#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:976
     984#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:1060
     985#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1853
     986#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1956
     987#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2530
     988#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2566
     989#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3997
     990#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:4101
     991#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1222
     992#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1313
     993#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1421
     994#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1583
     995#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:991
     996#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1075
     997#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:975
     998#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:1059
     999#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1839
     1000#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1942
     1001#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2510
     1002#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2568
     1003#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3985
     1004#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:4089
     1005#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1152
     1006#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1236
     1007#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1422
     1008#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1584
    8761009msgid "Custom Fields"
    8771010msgstr ""
    8781011
    879 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1102
    880 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3453
     1012#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1102
     1013#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3453
     1014#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1112
     1015#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3443
    8811016msgid "Attachment(s)"
    8821017msgstr ""
    8831018
    884 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1122
    885 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3473
     1019#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1122
     1020#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3473
     1021#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1132
     1022#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3463
    8861023msgid "Attachment Actions"
    8871024msgstr ""
    8881025
    889 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1139
    890 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3490
     1026#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1139
     1027#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3490
     1028#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1149
     1029#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3480
    8911030msgid "Add Attachment action"
    8921031msgstr ""
    8931032
    894 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1150
    895 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3501
     1033#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1150
     1034#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3501
     1035#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1160
     1036#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3491
    8961037#: includes/acf/fields/cwps-acf-field-civicrm-attachment.php:609
    8971038msgid "File"
    8981039msgstr ""
    8991040
    900 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1169
     1041#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1169
     1042#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1177
    9011043msgid "To add the Attachment to the Activity only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    9021044msgstr ""
    9031045
    904 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1185
    905 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3536
     1046#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1185
     1047#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3536
     1048#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1194
     1049#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3525
    9061050msgid "Attachment"
    9071051msgstr ""
    9081052
    9091053#. translators: %s The name of the Form Action
    910 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1359
     1054#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-activity.php:1359
     1055#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-activity.php:1353
    9111056msgid "An Activity Type ID is required to create an Activity in \"%s\"."
    9121057msgstr ""
    9131058
    914 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:291
     1059#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:291
     1060#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:322
    9151061msgid "Action"
    9161062msgstr ""
    9171063
    918 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:311
     1064#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:311
     1065#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:342
    9191066msgid "Action name"
    9201067msgstr ""
    9211068
    922 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:314
     1069#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:314
     1070#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:345
    9231071msgid "(Required) Name this action so it can be referenced."
    9241072msgstr ""
    9251073
    926 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:381
     1074#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:381
     1075#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:409
    9271076msgid "Mapping"
    9281077msgstr ""
    9291078
    930 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:441
     1079#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:441
     1080#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:469
    9311081msgid "Relationships"
    9321082msgstr ""
    9331083
    934 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:511
     1084#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:511
     1085#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:538
    9351086msgid "Default"
    9361087msgstr ""
    9371088
    938 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:513
     1089#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:513
    9391090msgid "Enter a custom value or template tag. (See \"Cheatsheet\" tab)"
    9401091msgstr ""
    9411092
    9421093#. translators: %s: The name of the Field
    943 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:679
     1094#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:679
     1095#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:1130
    9441096msgid "Use one Field to identify the %s setting."
    9451097msgstr ""
    9461098
    9471099#. translators: 1: The default instructions, 2: Extra instructions.
    948 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:687
     1100#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:687
     1101#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:1138
    9491102msgid "%1$s %2$s"
    9501103msgstr ""
    9511104
    952 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:736
     1105#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:736
     1106#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:1187
    9531107msgid "Use Mapping Field"
    9541108msgstr ""
    9551109
    956 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:754
     1110#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:754
     1111#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:1205
    9571112msgid "Choose a mapping for this Setting."
    9581113msgstr ""
    9591114
    9601115#. translators: %s: The name of the Field
    961 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-base.php:761
     1116#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-base.php:761
     1117#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:1212
    9621118msgid "Map %s"
    9631119msgstr ""
    9641120
    965 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:255
     1121#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:255
     1122#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:181
    9661123msgid "CiviCRM Case action"
    9671124msgstr ""
    9681125
    969 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:258
     1126#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:258
     1127#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:184
    9701128msgid "CiviCRM Case"
    9711129msgstr ""
    9721130
    973 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:353
     1131#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:353
     1132#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:365
    9741133msgid "Case Manager"
    9751134msgstr ""
    9761135
    977 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:537
     1136#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:537
     1137#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:538
    9781138msgid "Case Type"
    9791139msgstr ""
    9801140
    981 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:562
     1141#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:562
     1142#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:563
    9821143msgid "Case Status"
    9831144msgstr ""
    9841145
    985 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:587
     1146#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:587
     1147#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:588
    9861148msgid "Activity Medium"
    9871149msgstr ""
    9881150
    989 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:615
     1151#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:615
     1152#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:613
    9901153msgid "To add the Case only when a Form Field is populated (e.g. \"Subject\") link this to the Form Field. To add the Case only when more complex conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    9911154msgstr ""
    9921155
    993 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:620
     1156#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:620
     1157#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:622
    9941158msgid "Skip creating the Case?"
    9951159msgstr ""
    9961160
    997 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:623
     1161#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:623
     1162#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:625
    9981163msgid "Skip creating a Case if the Contact already has a Case of this Type. See \"Cheatsheet\" for how to reference the \"created\" and \"skipped\" variables in this action to make other Form Actions conditional on whether the Case is created or skipped."
    9991164msgstr ""
    10001165
    1001 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:643
     1166#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:643
     1167#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:645
    10021168msgid "Message"
    10031169msgstr ""
    10041170
    1005 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:646
     1171#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:646
     1172#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:648
    10061173msgid "Message to display on the Success Page if the Case of this Type already exists. See \"Cheatsheet\" for how to reference the \"dismiss_message\" variable in this action."
    10071174msgstr ""
    10081175
    1009 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:912
    1010 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:939
     1176#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:912
     1177#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:939
     1178#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:911
     1179#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:938
    10111180#: includes/acf/classes/cwps-acf-case.php:1425
    10121181#: includes/acf/classes/cwps-acf-case.php:1554
     
    10161185
    10171186#. translators: %s The name of the Form Action
    1018 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:1230
     1187#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-case.php:1230
     1188#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-case.php:1214
    10191189msgid "A Case Type ID is required to create a Case in \"%s\"."
    10201190msgstr ""
    10211191
    1022 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:387
     1192#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:387
     1193#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:313
    10231194msgid "CiviCRM Contact action"
    10241195msgstr ""
    10251196
    1026 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:390
     1197#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:390
     1198#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:316
    10271199#: includes/acf/fields/cwps-acf-field-civicrm-contact-existing-new.php:334
    10281200msgid "CiviCRM Contact"
    10291201msgstr ""
    10301202
    1031 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:698
     1203#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:698
     1204#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:667
    10321205#: includes/acf/classes/cwps-acf-user.php:2118
    1033 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:537
     1206#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:535
    10341207msgid "All Contacts"
    10351208msgstr ""
    10361209
    1037 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1459
     1210#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1459
     1211#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1445
    10381212msgid "Submitter"
    10391213msgstr ""
    10401214
    1041 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1462
     1215#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1462
     1216#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1448
    10421217msgid "Is this Action for the Contact who is submitting the Form?"
    10431218msgstr ""
    10441219
    1045 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1507
     1220#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1507
     1221#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1493
    10461222msgid "Contact Sub Type"
    10471223msgstr ""
    10481224
    1049 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1535
     1225#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1535
     1226#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1521
    10501227msgid "Dedupe Rule"
    10511228msgstr ""
    10521229
    1053 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1549
     1230#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1549
     1231#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1535
     1232#: includes/acf/classes/cwps-acf-event-registration.php:1130
     1233#: includes/acf/classes/cwps-acf-event-registration.php:1133
    10541234msgid "CiviCRM Default"
    10551235msgstr ""
    10561236
    1057 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1560
     1237#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1560
     1238#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1546
    10581239msgid "Contact Entities"
    10591240msgstr ""
    10601241
    1061 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1580
    1062 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2146
    1063 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2248
     1242#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1580
     1243#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2146
     1244#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2248
     1245#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1566
     1246#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2130
     1247#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2230
    10641248#: includes/buddypress/cwps-bp-xprofile.php:219
    10651249msgid "Website"
    10661250msgstr ""
    10671251
    1068 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1581
    1069 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2293
    1070 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2480
    1071 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1427
    1072 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1464
     1252#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1581
     1253#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2293
     1254#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2480
     1255#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1427
     1256#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1464
     1257#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1567
     1258#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2275
     1259#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2460
     1260#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1350
     1261#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1387
    10731262#: includes/buddypress/cwps-bp-xprofile.php:217
    10741263msgid "Address"
    10751264msgstr ""
    10761265
    1077 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1582
    1078 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2603
    1079 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2729
     1266#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1582
     1267#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2603
     1268#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2729
     1269#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1568
     1270#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2605
     1271#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2728
    10801272#: includes/buddypress/cwps-bp-xprofile.php:218
    10811273msgid "Phone"
    10821274msgstr ""
    10831275
    1084 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1583
    1085 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2774
    1086 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2900
     1276#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1583
     1277#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2774
     1278#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2900
     1279#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1569
     1280#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2773
     1281#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2896
    10871282#: includes/acf/fields/cwps-acf-field-civicrm-im.php:478
    10881283msgid "Instant Messenger"
    10891284msgstr ""
    10901285
    1091 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1584
    1092 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3324
    1093 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3408
     1286#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1584
     1287#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3324
     1288#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3408
     1289#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1570
     1290#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3315
     1291#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3398
    10941292#: includes/acf/classes/cwps-acf-civicrm-note.php:372
    10951293msgid "Note"
    10961294msgstr ""
    10971295
    1098 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1585
    1099 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3573
    1100 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3678
     1296#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1585
     1297#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3573
     1298#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3678
     1299#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1571
     1300#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3562
     1301#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3666
    11011302msgid "Tag"
    11021303msgstr ""
    11031304
    1104 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1586
    1105 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2945
    1106 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3001
    1107 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3099
     1305#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1586
     1306#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2945
     1307#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3001
     1308#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3099
     1309#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1572
     1310#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2941
     1311#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2997
     1312#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3092
    11081313msgid "Group"
    11091314msgstr ""
    11101315
    1111 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1592
    1112 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3144
    1113 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3279
     1316#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1592
     1317#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3144
     1318#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3279
     1319#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1578
     1320#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3137
     1321#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3270
    11141322msgid "Free Membership"
    11151323msgstr ""
    11161324
    1117 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1610
     1325#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1610
     1326#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1593
    11181327msgid "To add the Contact only when a Form Field is populated (e.g. \"First Name\") link this to the Form Field. To add the Contact only when more complex conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    11191328msgstr ""
    11201329
    1121 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1636
     1330#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1636
     1331#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1622
    11221332msgid "Auto-fill with data from CiviCRM"
    11231333msgstr ""
    11241334
    1125 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1661
     1335#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1661
     1336#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1647
    11261337msgid "Update auto-filled Contact"
    11271338msgstr ""
    11281339
    1129 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1664
     1340#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1664
     1341#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1650
    11301342msgid "When auto-filling, the loaded Contact will be edited. Disable to create a new Contact - or let Dedupe Rules find the Contact to be edited."
    11311343msgstr ""
    11321344
    1133 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1769
    1134 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1816
     1345#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1769
     1346#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:1816
     1347#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1755
     1348#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:1802
    11351349#: includes/acf/classes/cwps-acf-contact.php:1424
    11361350#: includes/acf/classes/cwps-acf-contact.php:1618
     
    11411355msgstr ""
    11421356
    1143 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2021
     1357#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2021
     1358#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2007
    11441359msgid "Email Actions"
    11451360msgstr ""
    11461361
    1147 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2038
     1362#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2038
     1363#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2024
    11481364msgid "Add Email action"
    11491365msgstr ""
    11501366
    1151 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2085
     1367#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2085
     1368#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2068
    11521369msgid "To add the Email to the Contact only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    11531370msgstr ""
    11541371
    1155 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2174
     1372#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2174
     1373#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2158
    11561374msgid "Website Actions"
    11571375msgstr ""
    11581376
    1159 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2191
     1377#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2191
     1378#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2175
    11601379msgid "Add Website action"
    11611380msgstr ""
    11621381
    1163 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2232
     1382#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2232
     1383#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2213
    11641384msgid "To add the Website to the Contact only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    11651385msgstr ""
    11661386
    1167 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2321
     1387#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2321
     1388#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2303
    11681389msgid "Address Actions"
    11691390msgstr ""
    11701391
    1171 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2338
     1392#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2338
     1393#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2320
    11721394msgid "Add Address action"
    11731395msgstr ""
    11741396
    1175 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2375
     1397#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2375
     1398#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2356
    11761399msgid "Include empty Fields"
    11771400msgstr ""
    11781401
    1179 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2378
     1402#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2378
     1403#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2359
    11801404msgid "Enable this to include empty Fields in the data that is sent to CiviCRM. This will cause the value to be cleared."
    11811405msgstr ""
    11821406
    1183 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2401
    1184 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2446
     1407#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2401
     1408#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2446
     1409#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2382
     1410#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2426
    11851411#: includes/acf/classes/cwps-acf-address.php:319
    11861412#: includes/buddypress/cwps-bp-civicrm-address.php:579
     
    11881414msgstr ""
    11891415
    1190 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2433
     1416#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2433
     1417#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2412
    11911418msgid "To add the Address to the Contact only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    11921419msgstr ""
    11931420
    1194 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2631
     1421#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2631
     1422#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2633
    11951423msgid "Phone Actions"
    11961424msgstr ""
    11971425
    1198 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2648
     1426#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2648
     1427#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2650
    11991428msgid "Add Phone action"
    12001429msgstr ""
    12011430
    1202 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2713
     1431#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2713
     1432#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2711
    12031433msgid "To add the Phone to the Contact only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    12041434msgstr ""
    12051435
    1206 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2802
     1436#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2802
     1437#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2801
    12071438msgid "Instant Messenger Actions"
    12081439msgstr ""
    12091440
    1210 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2819
     1441#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2819
     1442#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2818
    12111443msgid "Add Instant Messenger action"
    12121444msgstr ""
    12131445
    1214 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2830
     1446#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2830
     1447#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2829
    12151448msgid "Instant Messenger Type"
    12161449msgstr ""
    12171450
    1218 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2884
     1451#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2884
     1452#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2879
    12191453msgid "To add the Instant Messenger to the Contact only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    12201454msgstr ""
    12211455
    1222 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2973
     1456#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2973
     1457#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2969
    12231458msgid "Group Actions"
    12241459msgstr ""
    12251460
    1226 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2990
     1461#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:2990
     1462#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:2986
    12271463msgid "Add Group action"
    12281464msgstr ""
    12291465
    1230 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3025
     1466#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3025
     1467#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3020
    12311468msgid "Add or Remove the Contact"
    12321469msgstr ""
    12331470
    1234 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3032
     1471#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3032
     1472#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3027
    12351473msgid "Add to Group"
    12361474msgstr ""
    12371475
    1238 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3033
     1476#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3033
     1477#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3028
    12391478msgid "Remove from Group"
    12401479msgstr ""
    12411480
    1242 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3047
     1481#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3047
     1482#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3041
    12431483msgid "Enable double opt-in?"
    12441484msgstr ""
    12451485
    1246 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3082
     1486#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3082
    12471487msgid "Always add or remove"
    12481488msgstr ""
    12491489
    1250 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3083
     1490#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3083
     1491#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3075
    12511492msgid "To add or remove the Contact to the Group only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    12521493msgstr ""
    12531494
    1254 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3172
     1495#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3172
     1496#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3165
    12551497msgid "Membership Actions"
    12561498msgstr ""
    12571499
    1258 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3189
     1500#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3189
     1501#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3182
    12591502msgid "Add Membership action"
    12601503msgstr ""
    12611504
    1262 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3200
     1505#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3200
     1506#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3193
    12631507msgid "Add Free Membership"
    12641508msgstr ""
    12651509
    1266 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3228
     1510#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3228
     1511#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3218
    12671512msgid "To add the Free Membership to the Contact only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    12681513msgstr ""
    12691514
    1270 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3352
     1515#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3352
     1516#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3343
    12711517msgid "Note Actions"
    12721518msgstr ""
    12731519
    1274 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3369
     1520#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3369
     1521#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3360
    12751522msgid "Add Note action"
    12761523msgstr ""
    12771524
    1278 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3389
     1525#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3389
     1526#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3378
    12791527msgid "To add the Note to the Contact only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    12801528msgstr ""
    12811529
    1282 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3520
     1530#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3520
     1531#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3508
    12831532msgid "To add the Attachment to the Note only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    12841533msgstr ""
    12851534
    1286 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3601
     1535#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3601
     1536#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3590
    12871537msgid "Tag Actions"
    12881538msgstr ""
    12891539
    1290 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3618
     1540#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3618
     1541#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3607
    12911542msgid "Add Tag action"
    12921543msgstr ""
    12931544
    1294 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3633
     1545#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3633
     1546#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3622
    12951547msgid "Add Tag(s) to Contact"
    12961548msgstr ""
    12971549
    1298 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3662
     1550#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3662
     1551#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3649
    12991552msgid "To add the Tag(s) to the Contact only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    13001553msgstr ""
    13011554
    1302 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3751
     1555#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3751
     1556#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3739
    13031557msgid "Relationship Actions"
    13041558msgstr ""
    13051559
    1306 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3769
     1560#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3769
     1561#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3757
    13071562msgid "Add Relationship action"
    13081563msgstr ""
    13091564
    1310 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3779
     1565#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3779
     1566#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3767
    13111567msgid "Related Contact"
    13121568msgstr ""
    13131569
    1314 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3782
     1570#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3782
     1571#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3770
    13151572msgid "Is this Contact related to another Contact?"
    13161573msgstr ""
    13171574
    1318 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3801
     1575#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3801
     1576#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3789
    13191577msgid "Not related"
    13201578msgstr ""
    13211579
    1322 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3815
    1323 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3941
     1580#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3815
     1581#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3941
     1582#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3803
     1583#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3929
    13241584msgid "Relationship Fields"
    13251585msgstr ""
    13261586
    1327 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3837
     1587#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3837
     1588#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3825
    13281589msgid "Relationship"
    13291590msgstr ""
    13301591
    1331 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3840
     1592#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3840
     1593#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3828
    13321594msgid "Select the relationship this Contact has with the related Contact"
    13331595msgstr ""
    13341596
    1335 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3872
     1597#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3872
     1598#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3860
    13361599msgid "Is Current Employee"
    13371600msgstr ""
    13381601
    1339 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3886
    1340 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3909
     1602#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3886
     1603#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3909
     1604#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3874
     1605#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3897
    13411606msgid "Use an ACF \"True/False\" Field to choose a mapping for this Setting."
    13421607msgstr ""
    13431608
    1344 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3895
     1609#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:3895
     1610#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:3883
    13451611msgid "Is Current Employer"
    13461612msgstr ""
    13471613
    13481614#. translators: %s The name of the Form Action
    1349 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:4265
     1615#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-contact.php:4265
     1616#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-contact.php:4238
    13501617msgid "Not enough data to save a Contact in \"%s\"."
    13511618msgstr ""
    13521619
    1353 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:130
     1620#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:130
     1621#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:65
    13541622msgid "CiviCRM Email action"
    13551623msgstr ""
    13561624
    1357 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:133
     1625#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:133
     1626#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:68
    13581627#: includes/acf/classes/cwps-acf-email.php:1302
    13591628msgid "CiviCRM Email"
    13601629msgstr ""
    13611630
    1362 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:149
     1631#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:149
     1632#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:72
    13631633msgid "Subject"
    13641634msgstr ""
    13651635
    1366 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:150
     1636#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:150
     1637#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:73
    13671638msgid "From Name"
    13681639msgstr ""
    13691640
    1370 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:151
     1641#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:151
     1642#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:74
    13711643msgid "From Email"
    13721644msgstr ""
    13731645
    1374 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:152
     1646#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:152
     1647#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:75
    13751648msgid "Alternative Receiver Address"
    13761649msgstr ""
    13771650
    1378 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:153
     1651#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:153
     1652#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:76
    13791653msgid "Carbon Copy"
    13801654msgstr ""
    13811655
    1382 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:154
     1656#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:154
     1657#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:77
    13831658msgid "Blind Carbon Copy"
    13841659msgstr ""
    13851660
    1386 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:166
     1661#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:166
     1662#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:84
    13871663msgid "Recipient CiviCRM Contact"
    13881664msgstr ""
    13891665
    1390 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:300
     1666#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:300
     1667#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:297
    13911668msgid "Message Template"
    13921669msgstr ""
    13931670
    1394 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:325
     1671#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:325
     1672#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:322
    13951673msgid "Disable Smarty"
    13961674msgstr ""
    13971675
    1398 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:328
     1676#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:328
     1677#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:325
    13991678msgid "Disable Smarty. Normal CiviMail tokens are still supported. By default Smarty is enabled if configured by CIVICRM_MAIL_SMARTY."
    14001679msgstr ""
    14011680
    1402 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:348
     1681#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:348
     1682#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:345
    14031683msgid "Create Activity"
    14041684msgstr ""
    14051685
    1406 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:351
     1686#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:351
     1687#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:348
    14071688msgid "Usually an Email Activity is created when an Email is sent."
    14081689msgstr ""
    14091690
    1410 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:371
     1691#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:371
     1692#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:368
    14111693msgid "Activity Details"
    14121694msgstr ""
    14131695
    1414 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:390
     1696#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:390
     1697#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:387
    14151698msgid "HTML and Text versions of the body"
    14161699msgstr ""
    14171700
    1418 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:391
     1701#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:391
     1702#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:388
    14191703msgid "Just the name of the message template"
    14201704msgstr ""
    14211705
    1422 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:392
     1706#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:392
     1707#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:389
    14231708msgid "Just the HTML version of the body"
    14241709msgstr ""
    14251710
    1426 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:393
     1711#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:393
     1712#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:390
    14271713msgid "Just the text version of the body"
    14281714msgstr ""
    14291715
    1430 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:447
     1716#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:447
     1717#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:442
    14311718msgid "Always send"
    14321719msgstr ""
    14331720
    1434 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:449
     1721#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:449
     1722#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:443
    14351723msgid "To send the Email only when a Form Field is populated (e.g. \"First Name\") link this to the Form Field. To send the Email only when more complex conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    14361724msgstr ""
    14371725
    1438 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:504
    1439 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:642
     1726#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:504
     1727#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:642
     1728#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:501
     1729#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:639
    14401730msgid "Recipient Contact Reference"
    14411731msgstr ""
    14421732
    1443 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:679
    1444 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:704
     1733#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:679
     1734#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:704
     1735#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:676
     1736#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:701
    14451737#: includes/acf/classes/cwps-acf-email.php:1463
    14461738msgid "Email Fields"
     
    14481740
    14491741#. translators: %s The name of the Form Action
    1450 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:868
     1742#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-email.php:868
     1743#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-email.php:848
    14511744msgid "A Template ID is required to send an Email in \"%s\"."
    14521745msgstr ""
    14531746
    1454 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:402
     1747#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:402
     1748#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:328
    14551749msgid "CiviCRM Event action"
    14561750msgstr ""
    14571751
    1458 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:405
     1752#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:405
     1753#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:331
    14591754#: includes/acf/fields/cwps-acf-field-civicrm-event-group.php:332
    14601755msgid "CiviCRM Event"
    14611756msgstr ""
    14621757
    1463 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:877
     1758#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:877
     1759#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:807
    14641760msgid "To add the Event only when a Form Field is populated (e.g. \"Title\") link this to the Form Field. To add the Event only when more complex conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    14651761msgstr ""
    14661762
    1467 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:944
    1468 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1121
     1763#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:944
     1764#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1121
     1765#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:877
     1766#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1051
    14691767msgid "Event Settings"
    14701768msgstr ""
    14711769
    1472 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:973
    1473 #: includes/acf/classes/cwps-acf-event-field.php:879
     1770#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:973
     1771#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:906
     1772#: includes/acf/classes/cwps-acf-event-field.php:950
    14741773msgid "Disabled"
    14751774msgstr ""
    14761775
    1477 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:983
     1776#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:983
     1777#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:916
    14781778msgid "Select"
    14791779msgstr ""
    14801780
    14811781#. translators: %s: The name of the Field
    1482 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1010
     1782#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1010
     1783#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:943
    14831784msgid "Use one Field to identify the %s. Defaults to logged-in Contact."
    14841785msgstr ""
    14851786
    1486 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1158
    1487 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1185
    1488 #: includes/acf/classes/cwps-acf-event.php:869
     1787#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1158
     1788#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1185
     1789#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1088
     1790#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1115
     1791#: includes/acf/classes/cwps-acf-event.php:870
    14891792msgid "Event Fields"
    14901793msgstr ""
    14911794
    1492 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1350
     1795#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1350
     1796#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1273
    14931797msgid "Event Location"
    14941798msgstr ""
    14951799
    1496 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1372
     1800#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1372
     1801#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1295
    14971802msgid "Show Location"
    14981803msgstr ""
    14991804
    1500 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1373
     1805#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1373
     1806#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1296
    15011807msgid "Disable to make the Location available to Event Administrators only."
    15021808msgstr ""
    15031809
    1504 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1388
     1810#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1388
     1811#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1311
    15051812msgid "Existing Location"
    15061813msgstr ""
    15071814
    1508 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1389
     1815#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1389
     1816#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1312
    15091817msgid "You cannot map a new Location if you choose an existing one."
    15101818msgstr ""
    15111819
    1512 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1402
     1820#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1402
     1821#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1325
    15131822msgid "New Location"
    15141823msgstr ""
    15151824
    1516 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1456
     1825#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1456
     1826#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1378
    15171827msgid "To add the Address to the Location only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    15181828msgstr ""
    15191829
    1520 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1489
    1521 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1525
     1830#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1489
     1831#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1525
     1832#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1412
     1833#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1465
    15221834msgid "Address Custom Fields"
    15231835msgstr ""
    15241836
    1525 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1549
     1837#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1549
     1838#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1489
    15261839msgid "Email Addresses"
    15271840msgstr ""
    15281841
    1529 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1586
     1842#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1586
     1843#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1526
    15301844msgid "Add Email"
    15311845msgstr ""
    15321846
    1533 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1603
     1847#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1603
     1848#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1543
    15341849msgid "To add the Email to the Location only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    15351850msgstr ""
    15361851
    1537 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1617
     1852#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1617
     1853#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1557
    15381854msgid "Emails"
    15391855msgstr ""
    15401856
    1541 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1639
    1542 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1724
     1857#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1639
     1858#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1724
     1859#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1579
     1860#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1663
    15431861msgid "Phone Numbers"
    15441862msgstr ""
    15451863
    1546 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1676
     1864#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1676
     1865#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1616
    15471866msgid "Add Phone"
    15481867msgstr ""
    15491868
    1550 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1710
     1869#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1710
     1870#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1648
    15511871msgid "To add the Phone to the Location only when conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    15521872msgstr ""
    15531873
    1554 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1754
     1874#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1754
     1875#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1693
    15551876#: includes/acf/fields/cwps-acf-field-civicrm-im.php:510
    15561877#: includes/acf/fields/cwps-acf-field-civicrm-phone.php:567
     
    15581879msgstr ""
    15591880
    1560 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1791
    1561 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2224
     1881#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1791
     1882#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2224
     1883#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1730
     1884#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2163
    15621885msgid "Event Registration"
    15631886msgstr ""
    15641887
    1565 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1813
     1888#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1813
     1889#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1752
    15661890msgid "Allow Online Registration"
    15671891msgstr ""
    15681892
    1569 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1828
     1893#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1828
     1894#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1767
    15701895msgid "Online Registration Configuration"
    15711896msgstr ""
    15721897
    1573 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1858
    1574 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1904
     1898#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1858
     1899#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1904
     1900#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1797
     1901#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1843
    15751902msgid "Enable Components"
    15761903msgstr ""
    15771904
    1578 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1878
     1905#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1878
     1906#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1817
    15791907msgid "Enable Confirmation Screen"
    15801908msgstr ""
    15811909
    1582 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1891
     1910#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1891
     1911#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1830
    15831912msgid "Send Confirmation Email"
    15841913msgstr ""
    15851914
    1586 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1975
    1587 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2020
     1915#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:1975
     1916#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2020
     1917#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1914
     1918#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1959
    15881919msgid "Registration Screen"
    15891920msgstr ""
    15901921
    1591 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2000
    1592 #: includes/acf/classes/cwps-acf-event.php:937
     1922#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2000
     1923#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1939
     1924#: includes/acf/classes/cwps-acf-event.php:938
    15931925msgid "Include Profile (top of page)"
    15941926msgstr ""
    15951927
    1596 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2010
    1597 #: includes/acf/classes/cwps-acf-event.php:939
     1928#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2010
     1929#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1949
     1930#: includes/acf/classes/cwps-acf-event.php:940
    15981931msgid "Include Profile (bottom of page)"
    15991932msgstr ""
    16001933
    1601 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2042
    1602 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2077
     1934#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2042
     1935#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2077
     1936#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:1981
     1937#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2016
    16031938msgid "Confirmation Screen"
    16041939msgstr ""
    16051940
    1606 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2107
    1607 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2132
     1941#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2107
     1942#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2132
     1943#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2046
     1944#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2071
    16081945msgid "Thank You Screen"
    16091946msgstr ""
    16101947
    1611 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2154
    1612 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2191
     1948#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2154
     1949#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2191
     1950#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2093
     1951#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2130
    16131952msgid "Confirmation Email"
    16141953msgstr ""
    16151954
    16161955#. translators: %s The name of the Form Action
    1617 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2401
     1956#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2401
     1957#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2325
    16181958msgid "An Event Type ID is required to create an Event in \"%s\"."
    16191959msgstr ""
    16201960
    16211961#. translators: %s The name of the Form Action
    1622 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2414
     1962#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2414
     1963#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2338
    16231964msgid "A title is required to create an Event in \"%s\"."
    16241965msgstr ""
    16251966
    16261967#. translators: %s The name of the Form Action
    1627 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2427
     1968#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2427
     1969#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2351
    16281970msgid "A start date is required to create an Event in \"%s\"."
    16291971msgstr ""
    16301972
    16311973#. translators: %s The name of the Form Action
    1632 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2995
     1974#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:2995
     1975#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2756
    16331976msgid "A Street Address is required in \"%s\"."
    16341977msgstr ""
    16351978
    16361979#. translators: %s The name of the Form Action
    1637 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3183
     1980#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:3183
     1981#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:2934
    16381982msgid "An invalid Email was found in \"%s\"."
    16391983msgstr ""
    16401984
    16411985#. translators: %s The name of the Form Action
    1642 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3350
     1986#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:3350
     1987#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:3120
    16431988msgid "A valid Phone Number is required in \"%s\"."
    16441989msgstr ""
    16451990
    16461991#. translators: %s The name of the Form Action
    1647 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3514
     1992#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:3514
     1993#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:3285
    16481994msgid "A Profile is required to enable Online Registration in \"%s\"."
    16491995msgstr ""
    16501996
    1651 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3666
     1997#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:3666
     1998#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:3391
    16521999msgid "Register Now"
    16532000msgstr ""
    16542001
    16552002#. translators: %s The name of the Form Action
    1656 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3804
     2003#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:3804
     2004#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:3555
    16572005msgid "A \"From Name\" is required to send a Confirmation Email in \"%s\"."
    16582006msgstr ""
    16592007
    16602008#. translators: %s The name of the Form Action
    1661 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3817
     2009#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-event.php:3817
     2010#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-event.php:3568
    16622011msgid "A \"From Email\" is required to send a Confirmation Email in \"%s\"."
    16632012msgstr ""
    16642013
    1665 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:297
     2014#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:297
     2015#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:223
    16662016msgid "CiviCRM Participant action"
    16672017msgstr ""
    16682018
    1669 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:300
     2019#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:300
     2020#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:226
    16702021msgid "CiviCRM Participant"
    16712022msgstr ""
    16722023
    1673 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:625
     2024#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:625
     2025#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:629
    16742026msgid "Participant Role"
    16752027msgstr ""
    16762028
    1677 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:665
     2029#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:665
     2030#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:669
    16782031msgid "Add when full?"
    16792032msgstr ""
    16802033
    1681 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:668
     2034#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:668
     2035#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:672
    16822036msgid "The selected Participant Role is included in the \"Max Number of Participants\" total. Choose whether the Participant should be added even when the \"Max Number\" has been reached."
    16832037msgstr ""
    16842038
    1685 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:688
     2039#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:688
     2040#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:692
    16862041msgid "Email receipt?"
    16872042msgstr ""
    16882043
    1689 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:711
     2044#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:711
     2045#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:715
    16902046msgid "Participant Status"
    16912047msgstr ""
    16922048
    1693 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:777
     2049#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:777
     2050#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:778
    16942051msgid "To add the Participant only when a Form Field is populated (e.g. \"Email\") link this to the Form Field. To add the Participant only when more complex conditions are met, link this to a Hidden Field with value \"1\" where the conditional logic of that Field shows it when the conditions are met."
    16952052msgstr ""
    16962053
    1697 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1019
    1698 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1159
     2054#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1019
     2055#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1159
     2056#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1020
     2057#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1160
    16992058msgid "Participant References"
    17002059msgstr ""
    17012060
    17022061#. translators: %s: The Field title
    1703 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1046
     2062#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1046
     2063#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1047
    17042064msgid "If the Participant is not the Submitter, use one Field to identify the %s."
    17052065msgstr ""
    17062066
    1707 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1059
     2067#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1059
     2068#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1060
    17082069msgid "CiviCRM Participant Action"
    17092070msgstr ""
    17102071
    1711 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1062
     2072#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1062
     2073#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1063
    17122074msgid "Select a Participant Action in this Form."
    17132075msgstr ""
    17142076
    1715 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1094
     2077#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1094
     2078#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1095
    17162079msgid "CiviCRM Participant ID"
    17172080msgstr ""
    17182081
    1719 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1097
     2082#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1097
     2083#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1098
    17202084msgid "Select a CiviCRM Participant ID from the database."
    17212085msgstr ""
    17222086
    1723 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1132
     2087#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1132
     2088#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1133
    17242089msgid "Custom Participant Reference"
    17252090msgstr ""
    17262091
    1727 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1134
     2092#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1134
     2093#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1135
    17282094msgid "Define a custom Participant Reference."
    17292095msgstr ""
    17302096
    1731 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1196
    1732 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1320
     2097#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1196
     2098#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1320
     2099#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1197
     2100#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1321
    17332101msgid "Event References"
    17342102msgstr ""
    17352103
    1736 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1239
     2104#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1239
     2105#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1240
    17372106msgid "CiviCRM Event ID"
    17382107msgstr ""
    17392108
    1740 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1242
     2109#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1242
     2110#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1243
    17412111msgid "Select a CiviCRM Event ID from the database."
    17422112msgstr ""
    17432113
    1744 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1271
     2114#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1271
     2115#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1272
    17452116msgid "Custom Event Reference"
    17462117msgstr ""
    17472118
    1748 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1273
     2119#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1273
     2120#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1274
    17492121msgid "Define a custom Event Reference."
    17502122msgstr ""
    17512123
    1752 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1292
     2124#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1292
     2125#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1295
    17532126#: includes/acf/fields/cwps-acf-field-civicrm-event-group.php:372
    17542127msgid "Event Type"
    17552128msgstr ""
    17562129
    1757 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1295
     2130#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1295
     2131#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1298
    17582132msgid "Choose the Event Type to show its Custom Fields below."
    17592133msgstr ""
    17602134
    1761 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1357
    1762 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1384
     2135#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1357
     2136#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1384
     2137#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1358
     2138#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1385
    17632139#: includes/acf/classes/cwps-acf-participant.php:1166
    17642140#: includes/acf/classes/cwps-acf-participant.php:1295
     
    17682144
    17692145#. translators: %s The name of the Form Action
    1770 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1821
     2146#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1821
     2147#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1835
    17712148msgid "An Event ID is required to create a Participant in \"%s\"."
    17722149msgstr ""
    17732150
    17742151#. translators: %s The name of the Form Action
    1775 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1834
     2152#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1834
     2153#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1848
    17762154msgid "A Participant Role ID is required to create a Participant in \"%s\"."
    17772155msgstr ""
    17782156
    17792157#. translators: %s The name of the Form Action
    1780 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1866
     2158#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1866
     2159#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1880
    17812160msgid "Could not check if the Event is full in \"%s\"."
    17822161msgstr ""
    17832162
    17842163#. translators: %s The title of the Event
    1785 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1884
     2164#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1884
     2165#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1898
    17862166msgid "Cannot add Participant because \"%s\" is full."
    17872167msgstr ""
    17882168
    17892169#. translators: %s The name of the Form Action
    1790 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1891
     2170#: includes/acf/acfe/form-actions/acfe-0.8.x/cwps-acf-acfe-form-action-participant.php:1891
     2171#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-participant.php:1905
    17912172msgid "Cannot add Participant because the Event in \"%s\" is full."
     2173msgstr ""
     2174
     2175#: includes/acf/acfe/form-actions/acfe-0.9.x/cwps-acf-acfe-form-action-base.php:540
     2176msgid "Select a field or enter a custom value or template tag."
    17922177msgstr ""
    17932178
     
    18102195
    18112196#. translators: %s: The number of characters
    1812 #: includes/acf/classes/cwps-acf-acf-field.php:424
    1813 #: includes/acf/classes/cwps-acf-acf-field.php:439
     2197#: includes/acf/classes/cwps-acf-acf-field.php:425
     2198#: includes/acf/classes/cwps-acf-acf-field.php:440
    18142199msgid "Must be maximum %s characters."
    18152200msgstr ""
    18162201
    1817 #: includes/acf/classes/cwps-acf-acf-field.php:428
    1818 #: includes/acf/classes/cwps-acf-acf-field.php:443
     2202#: includes/acf/classes/cwps-acf-acf-field.php:429
     2203#: includes/acf/classes/cwps-acf-acf-field.php:444
    18192204msgid "Must be maximum 255 characters."
    18202205msgstr ""
    18212206
    1822 #: includes/acf/classes/cwps-acf-acf-field.php:457
     2207#: includes/acf/classes/cwps-acf-acf-field.php:458
    18232208msgid "Values must all be integers."
    18242209msgstr ""
    18252210
    1826 #: includes/acf/classes/cwps-acf-acf-field.php:464
     2211#: includes/acf/classes/cwps-acf-acf-field.php:465
    18272212msgid "Values must all be less than 2147483647."
    18282213msgstr ""
    18292214
    1830 #: includes/acf/classes/cwps-acf-acf-field.php:472
     2215#: includes/acf/classes/cwps-acf-acf-field.php:473
    18312216#: includes/acf/classes/cwps-acf-activity-field.php:177
    18322217#: includes/acf/classes/cwps-acf-address.php:423
    18332218#: includes/acf/classes/cwps-acf-case-field.php:177
    1834 #: includes/acf/classes/cwps-acf-event-field.php:264
    1835 #: includes/acf/classes/cwps-acf-event-location.php:228
    1836 #: includes/acf/classes/cwps-acf-event-registration.php:313
     2219#: includes/acf/classes/cwps-acf-event-field.php:292
     2220#: includes/acf/classes/cwps-acf-event-location.php:249
     2221#: includes/acf/classes/cwps-acf-event-registration.php:316
    18372222msgid "Must be an integer."
    18382223msgstr ""
    18392224
    1840 #: includes/acf/classes/cwps-acf-acf-field.php:477
     2225#: includes/acf/classes/cwps-acf-acf-field.php:478
    18412226msgid "Must be less than 2147483647."
    18422227msgstr ""
    18432228
    1844 #: includes/acf/classes/cwps-acf-acf-field.php:490
     2229#: includes/acf/classes/cwps-acf-acf-field.php:491
    18452230msgid "Values must all be numbers."
    18462231msgstr ""
    18472232
    1848 #: includes/acf/classes/cwps-acf-acf-field.php:498
     2233#: includes/acf/classes/cwps-acf-acf-field.php:499
    18492234msgid "Must be a number."
    18502235msgstr ""
    18512236
    1852 #: includes/acf/classes/cwps-acf-acf-field.php:513
     2237#: includes/acf/classes/cwps-acf-acf-field.php:514
    18532238msgid "All values must be a valid money format."
    18542239msgstr ""
    18552240
    1856 #: includes/acf/classes/cwps-acf-acf-field.php:521
     2241#: includes/acf/classes/cwps-acf-acf-field.php:522
    18572242msgid "All values must have only two decimal places."
    18582243msgstr ""
    18592244
    1860 #: includes/acf/classes/cwps-acf-acf-field.php:530
     2245#: includes/acf/classes/cwps-acf-acf-field.php:531
    18612246msgid "Must be a valid money format."
    18622247msgstr ""
    18632248
    1864 #: includes/acf/classes/cwps-acf-acf-field.php:538
     2249#: includes/acf/classes/cwps-acf-acf-field.php:539
    18652250msgid "Only two decimal places please."
    18662251msgstr ""
    18672252
    1868 #: includes/acf/classes/cwps-acf-acf-field.php:949
     2253#: includes/acf/classes/cwps-acf-acf-field.php:950
    18692254msgid "Placeholder Text"
    18702255msgstr ""
    18712256
    1872 #: includes/acf/classes/cwps-acf-acf-field.php:950
     2257#: includes/acf/classes/cwps-acf-acf-field.php:951
    18732258msgid "Appears within the input"
    18742259msgstr ""
    18752260
    1876 #: includes/acf/classes/cwps-acf-acf-field.php:953
     2261#: includes/acf/classes/cwps-acf-acf-field.php:954
    18772262msgctxt "verb"
    18782263msgid "Select"
    18792264msgstr ""
    18802265
    1881 #: includes/acf/classes/cwps-acf-acf-field.php:978
     2266#: includes/acf/classes/cwps-acf-acf-field.php:979
    18822267msgid "Select Multiple"
    18832268msgstr ""
    18842269
    1885 #: includes/acf/classes/cwps-acf-acf-field.php:979
     2270#: includes/acf/classes/cwps-acf-acf-field.php:980
    18862271msgid "Allow content editors to select multiple values"
    18872272msgstr ""
     
    20952480msgstr ""
    20962481
    2097 #: includes/acf/classes/cwps-acf-civicrm-membership.php:313
     2482#: includes/acf/classes/cwps-acf-civicrm-membership.php:314
    20982483msgid "A numeric ID must be present to update a Membership."
    20992484msgstr ""
     
    21312516msgstr ""
    21322517
    2133 #: includes/acf/classes/cwps-acf-event-location.php:575
     2518#: includes/acf/classes/cwps-acf-event-location.php:596
    21342519msgid "A numeric ID must be present to update an Event Location."
    21352520msgstr ""
     
    21392524msgstr ""
    21402525
    2141 #: includes/acf/classes/cwps-acf-event.php:888
     2526#: includes/acf/classes/cwps-acf-event.php:889
    21422527msgid "Event Location Fields"
    21432528msgstr ""
    21442529
    2145 #: includes/acf/classes/cwps-acf-event.php:896
     2530#: includes/acf/classes/cwps-acf-event.php:897
    21462531msgid "Event Location Address Fields"
    21472532msgstr ""
    21482533
    2149 #: includes/acf/classes/cwps-acf-event.php:904
     2534#: includes/acf/classes/cwps-acf-event.php:905
    21502535msgid "Event Location Email Fields"
    21512536msgstr ""
    21522537
    2153 #: includes/acf/classes/cwps-acf-event.php:912
     2538#: includes/acf/classes/cwps-acf-event.php:913
    21542539msgid "Event Location Phone Fields"
    21552540msgstr ""
    21562541
    2157 #: includes/acf/classes/cwps-acf-event.php:920
     2542#: includes/acf/classes/cwps-acf-event.php:921
    21582543msgid "Event Registration Fields"
    21592544msgstr ""
    21602545
    2161 #: includes/acf/classes/cwps-acf-event.php:928
    2162 #: includes/acf/classes/cwps-acf-event.php:936
     2546#: includes/acf/classes/cwps-acf-event.php:929
     2547#: includes/acf/classes/cwps-acf-event.php:937
    21632548msgid "Event Registration Screen Fields"
    21642549msgstr ""
    21652550
    2166 #: includes/acf/classes/cwps-acf-event.php:945
     2551#: includes/acf/classes/cwps-acf-event.php:946
    21672552msgid "Event Registration Confirmation Screen Fields"
    21682553msgstr ""
    21692554
    2170 #: includes/acf/classes/cwps-acf-event.php:953
     2555#: includes/acf/classes/cwps-acf-event.php:954
    21712556msgid "Event Registration Thank You Screen Fields"
    21722557msgstr ""
    21732558
    2174 #: includes/acf/classes/cwps-acf-event.php:961
     2559#: includes/acf/classes/cwps-acf-event.php:962
    21752560msgid "Event Registration Confirmation Email Fields"
    21762561msgstr ""
    21772562
    2178 #: includes/acf/classes/cwps-acf-event.php:1002
     2563#: includes/acf/classes/cwps-acf-event.php:1003
    21792564msgid "Event Types"
    21802565msgstr ""
    21812566
    2182 #: includes/acf/classes/cwps-acf-event.php:1006
     2567#: includes/acf/classes/cwps-acf-event.php:1007
    21832568msgid "Any Event Type"
    21842569msgstr ""
     
    22132598msgstr ""
    22142599
    2215 #: includes/acf/classes/cwps-acf-im.php:1551
     2600#: includes/acf/classes/cwps-acf-im.php:1554
    22162601msgid "Instant Messenger Fields"
    22172602msgstr ""
     
    24872872msgstr ""
    24882873
    2489 #: includes/acf/classes/cwps-acf-participant-cpt.php:1871
     2874#: includes/acf/classes/cwps-acf-participant-cpt.php:1877
    24902875msgid "Participant Data"
    24912876msgstr ""
    24922877
    2493 #: includes/acf/classes/cwps-acf-participant-cpt.php:1906
     2878#: includes/acf/classes/cwps-acf-participant-cpt.php:1912
    24942879msgid "Registration Date"
    24952880msgstr ""
    24962881
    2497 #: includes/acf/classes/cwps-acf-participant-cpt.php:1909
     2882#: includes/acf/classes/cwps-acf-participant-cpt.php:1915
    24982883msgid "Use the Date Picker to choose the Date and Time of the Registration."
    24992884msgstr ""
    25002885
    2501 #: includes/acf/classes/cwps-acf-participant-cpt.php:1934
     2886#: includes/acf/classes/cwps-acf-participant-cpt.php:1940
    25022887msgid "Status"
    25032888msgstr ""
    25042889
    2505 #: includes/acf/classes/cwps-acf-participant-cpt.php:1965
     2890#: includes/acf/classes/cwps-acf-participant-cpt.php:1971
    25062891msgid "Source"
    25072892msgstr ""
    25082893
    2509 #: includes/acf/classes/cwps-acf-participant-cpt.php:1968
     2894#: includes/acf/classes/cwps-acf-participant-cpt.php:1974
    25102895msgid "The source of this event registration."
    25112896msgstr ""
     
    25382923msgstr ""
    25392924
    2540 #: includes/acf/classes/cwps-acf-relationship.php:946
     2925#: includes/acf/classes/cwps-acf-relationship.php:949
    25412926msgid "A numeric ID must be present to update a Relationship."
    25422927msgstr ""
    25432928
    2544 #: includes/acf/classes/cwps-acf-relationship.php:1871
     2929#: includes/acf/classes/cwps-acf-relationship.php:1877
    25452930#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:155
    25462931msgid "CiviCRM Relationship"
    25472932msgstr ""
    25482933
    2549 #: includes/acf/classes/cwps-acf-relationship.php:1874
     2934#: includes/acf/classes/cwps-acf-relationship.php:1880
    25502935msgid "Choose the CiviCRM Relationship that this ACF Field should sync with. (Optional)"
    25512936msgstr ""
     
    25562941#: includes/acf/classes/cwps-acf-user.php:2174
    25572942#: includes/acf/classes/cwps-acf-user.php:2189
    2558 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:552
    2559 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:590
    2560 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:601
    2561 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:618
     2943#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:550
     2944#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:588
     2945#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:599
     2946#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:616
    25622947#: includes/cai/cwps-cai.php:1783
    25632948#: includes/cai/cwps-cai.php:1793
     
    25702955#: includes/acf/classes/cwps-acf-user.php:2216
    25712956#: includes/acf/classes/cwps-acf-user.php:2231
    2572 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:564
    2573 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:639
    2574 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:650
    2575 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:667
     2957#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:562
     2958#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:637
     2959#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:648
     2960#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:665
    25762961#: includes/cai/cwps-cai.php:1806
    25772962#: includes/cai/cwps-cai.php:1816
  • civicrm-wp-profile-sync/tags/0.7.0/readme.txt

    r3170636 r3316449  
    11=== CiviCRM Profile Sync ===
    2 Contributors: needle, cuny-academic-commons, kcristiano, tadpolecc
    3 Donate link: https://www.paypal.me/interactivist
    4 Tags: civicrm, buddypress, acf, profile, sync
     2Contributors:      needle, cuny-academic-commons, kcristiano, tadpolecc
     3Donate link:       https://www.paypal.me/interactivist
     4Tags:              civicrm, buddypress, acf, profile, sync
     5Requires PHP:      7.4
    56Requires at least: 4.9
    6 Tested up to: 6.6
    7 Requires PHP: 7.1
    8 Stable tag: 0.6.9
    9 License: GPLv2 or later
    10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
     7Tested up to:      6.8
     8Stable tag:        0.7.0
     9License:           GPLv2 or later
     10License URI:       https://www.gnu.org/licenses/gpl-2.0.html
    1111
    1212Keeps a WordPress User profile in sync with a CiviCRM Contact and integrates WordPress and CiviCRM Entities when using Advanced Custom Fields.
     
    3838CiviCRM Profile Sync enables Forms to be built for the front-end of your website with the UI provided by the ACF Extended plugin. These Forms can send their data directly to CiviCRM in a similar (though more limited) way to Caldera Forms CiviCRM.
    3939
    40 Form building with ACF Extended is at an early stage of development and is currently limited to submitting data for Contacts, Participants, Activities and Cases. This does, however, provide enough functionality to build some fairly powerful and useful Forms.
     40Form building with ACF Extended is currently limited to submitting data for Contacts, Participants, Activities and Cases. This does, however, provide enough functionality to build some fairly powerful and useful Forms.
    4141
    4242Please refer to the [ACFE Form-building Documentation](https://github.com/christianwach/civicrm-wp-profile-sync/blob/master/docs/ACFE.md) for details.
     
    8787== Changelog ==
    8888
     89= 0.7.0 =
     90
     91* Adds compatibility with ACF Extended 0.9.x Form Actions
     92* Enables syncing of ACF "Number" Fields
     93* Misc bug fixes and improvements
     94
    8995= 0.6.9 =
    9096
Note: See TracChangeset for help on using the changeset viewer.