Plugin Directory

Changeset 3088271


Ignore:
Timestamp:
05/17/2024 11:42:42 AM (22 months ago)
Author:
needle
Message:

Release 0.6.8

Location:
civicrm-wp-profile-sync/trunk
Files:
17 edited

Legend:

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

    r3071446 r3088271  
    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.7
     9 * Version:           0.6.8
    1010 * Author:            Christian Wach
    1111 * Author URI:        https://haystack.co.uk
     
    2121
    2222// Set plugin version here.
    23 define( 'CIVICRM_WP_PROFILE_SYNC_VERSION', '0.6.7' );
     23define( 'CIVICRM_WP_PROFILE_SYNC_VERSION', '0.6.8' );
    2424
    2525// Set our bulk operations flag here.
  • civicrm-wp-profile-sync/trunk/includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php

    r3071446 r3088271  
    137137     */
    138138    public $attachment_fields;
     139
     140    /**
     141     * Files to examine for possible deletion.
     142     *
     143     * @since 0.5.2
     144     * @access public
     145     * @var integer
     146     */
     147    public $file_fields_empty;
    139148
    140149    /**
     
    18621871            wp_delete_attachment( $attachment_id, true );
    18631872
     1873            // Declare variable type.
     1874            if ( ! is_array( $attachments ) ) {
     1875                $attachments = [];
     1876            }
     1877
    18641878            // Get the full Attachment data.
    18651879            $attachments[] = $this->civicrm->attachment->get_by_id( $result['id'] );
  • civicrm-wp-profile-sync/trunk/includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php

    r3071446 r3088271  
    128128     */
    129129    public $custom_field_ids;
     130
     131    /**
     132     * Files to examine for possible deletion.
     133     *
     134     * @since 0.5.2
     135     * @access public
     136     * @var integer
     137     */
     138    public $file_fields_empty;
    130139
    131140    /**
  • civicrm-wp-profile-sync/trunk/includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php

    r3071446 r3088271  
    344344     */
    345345    public $employer_type_id;
     346
     347    /**
     348     * Files to examine for possible deletion.
     349     *
     350     * @since 0.5.2
     351     * @access public
     352     * @var integer
     353     */
     354    public $file_fields_empty;
    346355
    347356    /**
     
    50305039            }
    50315040
     5041            // Declare variable type.
     5042            if ( ! is_array( $emails ) ) {
     5043                $emails = [];
     5044            }
     5045
    50325046            // Get the full Email data.
    50335047            $emails[] = $this->civicrm->email->email_get_by_id( $result['id'] );
     
    55105524            }
    55115525
     5526            // Declare variable type.
     5527            if ( ! is_array( $relationships ) ) {
     5528                $relationships = [];
     5529            }
     5530
    55125531            // Get the full Relationship data.
    55135532            $relationships[] = $this->civicrm->relationship->get_by_id( $result['id'] );
     
    59705989            }
    59715990
     5991            // Declare variable type.
     5992            if ( ! is_array( $websites ) ) {
     5993                $websites = [];
     5994            }
     5995
    59725996            // Get the full Website data.
    59735997            $websites[] = $this->civicrm->website->website_get_by_id( $result['id'] );
     
    61316155            }
    61326156
     6157            // Declare variable type.
     6158            if ( ! is_array( $addresses ) ) {
     6159                $addresses = [];
     6160            }
     6161
    61336162            // Get the full Address data.
    61346163            $addresses[] = $this->plugin->civicrm->address->address_get_by_id( $result['id'] );
     
    62696298            }
    62706299
     6300            // Declare variable type.
     6301            if ( ! is_array( $phones ) ) {
     6302                $phones = [];
     6303            }
     6304
    62716305            // Get the full Phone data.
    62726306            $phones[] = $this->plugin->civicrm->phone->phone_get_by_id( $result['id'] );
     
    64076441            if ( false === $result ) {
    64086442                continue;
     6443            }
     6444
     6445            // Declare variable type.
     6446            if ( ! is_array( $ims ) ) {
     6447                $ims = [];
    64096448            }
    64106449
     
    67106749            }
    67116750
     6751            // Declare variable type.
     6752            if ( ! is_array( $memberships ) ) {
     6753                $memberships = [];
     6754            }
     6755
    67126756            // Add the full Membership data.
    67136757            $memberships[] = $this->civicrm->membership->get_by_id( $result['id'] );
     
    68426886            // Add Note "Attachment(s)".
    68436887            $note_full->attachments = $this->form_note_attachments_save( $note_full, $note['attachments'] );
     6888
     6889            // Declare variable type.
     6890            if ( ! is_array( $notes ) ) {
     6891                $notes = [];
     6892            }
    68446893
    68456894            // Add the full Note data.
     
    69827031            wp_delete_attachment( $attachment_id, true );
    69837032
     7033            // Declare variable type.
     7034            if ( ! is_array( $attachments ) ) {
     7035                $attachments = [];
     7036            }
     7037
    69847038            // Get the full Attachment data.
    69857039            $attachments[] = $this->civicrm->attachment->get_by_id( $result['id'] );
  • civicrm-wp-profile-sync/trunk/includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php

    r3071446 r3088271  
    281281     */
    282282    public $campaign_choices;
     283
     284    /**
     285     * Files to examine for possible deletion.
     286     *
     287     * @since 0.5.4
     288     * @access public
     289     * @var integer
     290     */
     291    public $file_fields_empty;
     292
    283293    /**
    284294     * Data transient key.
  • civicrm-wp-profile-sync/trunk/includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php

    r3071446 r3088271  
    200200     */
    201201    public $transient_key = 'cwps_acf_acfe_form_action_participant';
     202
     203    /**
     204     * Files to examine for possible deletion.
     205     *
     206     * @since 0.5.2
     207     * @access public
     208     * @var integer
     209     */
     210    public $file_fields_empty;
    202211
    203212    /**
  • civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-civicrm-campaign.php

    r3071446 r3088271  
    237237        // Build params.
    238238        $params = [
     239            'version'    => 3,
    239240            'sequential' => 1,
    240241            'is_active'  => 1,
     
    247248
    248249        // Call the CiviCRM API.
    249         $result = civicrm_api3( 'Campaign', 'get', $params );
     250        $result = civicrm_api( 'Campaign', 'get', $params );
    250251
    251252        // Return early if something went wrong.
    252         if ( ! empty( $result['error'] ) ) {
     253        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
    253254            $e     = new \Exception();
    254255            $trace = $e->getTraceAsString();
  • civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-contact.php

    r3071446 r3088271  
    613613
    614614        // Format the return as per "getlist".
     615        $contact_data = [];
    615616        foreach ( $result['values'] as $value ) {
    616617            $data = [
     
    624625            }
    625626            $contact_data[] = $data;
     627        }
     628
     629        // Cast as boolean if empty.
     630        if ( empty( $contact_data ) ) {
     631            $contact_data = false;
    626632        }
    627633
  • civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-custom-field.php

    r3071446 r3088271  
    848848                $custom_fields = [];
    849849                foreach ( $args['custom_fields'] as $key => $field ) {
    850                     $custom_fields[ $key ] = $field['custom_field_id'];
     850                    $custom_fields[ $key ] = (int) $field['custom_field_id'];
    851851                }
    852852
     
    855855
    856856                    // Skip if it isn't mapped to a Custom Field.
    857                     if ( ! in_array( $custom_field_ref, $custom_fields, true ) ) {
     857                    if ( ! in_array( (int) $custom_field_ref, $custom_fields, true ) ) {
    858858                        continue;
    859859                    }
  • civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-event-registration.php

    r3071446 r3088271  
    11791179
    11801180        // Return early if we get an error.
    1181         if ( ! empty( $result['is_error'] ) ) {
     1181        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
    11821182            return $profile;
    11831183        }
     
    12471247
    12481248        // Log and bail if there's an error.
    1249         if ( ! empty( $result['is_error'] ) ) {
     1249        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
    12501250            $e     = new Exception();
    12511251            $trace = $e->getTraceAsString();
  • civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-post-tax.php

    r3071446 r3088271  
    342342        // Sanity check.
    343343        $filtered = array_unique( $filtered );
     344        $filtered = array_map( 'intval', $filtered );
    344345
    345346        // Build Groups.
     
    12511252                    $terms_in_post    = $this->terms_get_for_post( $post_id );
    12521253                    $term_ids_in_post = wp_list_pluck( $terms_in_post, 'term_id' );
     1254                    $term_ids_in_post = array_map( 'intval', $term_ids_in_post );
    12531255
    12541256                    // If the term(s) need to be added.
  • civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-relationship.php

    r3071446 r3088271  
    11571157            }
    11581158
     1159            // Make sure values are integers.
     1160            $existing = array_map( 'intval', $existing );
     1161
    11591162            // Assign the correct Target Contact ID.
    11601163            if ( 'ab' === $relationship_direction ) {
    1161                 $target_contact_id = $relationship->contact_id_b;
     1164                $target_contact_id = (int) $relationship->contact_id_b;
    11621165            } else {
    1163                 $target_contact_id = $relationship->contact_id_a;
     1166                $target_contact_id = (int) $relationship->contact_id_a;
    11641167            }
    11651168
  • civicrm-wp-profile-sync/trunk/includes/buddypress/cwps-bp-civicrm-custom-field.php

    r3071446 r3088271  
    450450
    451451            // Skip if it isn't mapped to an edited Custom Field.
    452             if ( ! in_array( $bp_field['custom_field_id'], $custom_fields, true ) ) {
     452            if ( ! in_array( (int) $bp_field['custom_field_id'], $custom_fields, true ) ) {
    453453                continue;
    454454            }
  • civicrm-wp-profile-sync/trunk/includes/civicrm/cwps-civicrm-email.php

    r3071446 r3088271  
    383383
    384384        // Log and bail if there's an error.
    385         if ( ! empty( $result['is_error'] ) ) {
     385        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
    386386            $e     = new Exception();
    387387            $trace = $e->getTraceAsString();
     
    482482
    483483        // Bail if there's an error.
    484         if ( ! empty( $result['is_error'] ) ) {
     484        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
    485485            $e     = new Exception();
    486486            $trace = $e->getTraceAsString();
  • civicrm-wp-profile-sync/trunk/includes/civicrm/cwps-civicrm-website.php

    r3071446 r3088271  
    547547
    548548        // Log and bail if there's an error.
    549         if ( ! empty( $result['is_error'] ) ) {
     549        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
    550550            $e     = new Exception();
    551551            $trace = $e->getTraceAsString();
     
    646646
    647647        // Bail if there's an error.
    648         if ( ! empty( $result['is_error'] ) ) {
     648        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
    649649            $e     = new Exception();
    650650            $trace = $e->getTraceAsString();
     
    754754
    755755        // Bail on failure.
    756         if ( ! empty( $result['is_error'] ) ) {
     756        if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) {
    757757            return $website;
    758758        }
  • civicrm-wp-profile-sync/trunk/languages/civicrm-wp-profile-sync.pot

    r3071446 r3088271  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: CiviCRM Profile Sync 0.6.7a\n"
     5"Project-Id-Version: CiviCRM Profile Sync 0.6.8a\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-04-16T09:26:38+00:00\n"
     12"POT-Creation-Date: 2024-05-17T11:40:28+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.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:1570
    63 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1984
    64 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2092
     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
    6565msgid "Email"
    6666msgstr ""
     
    8888
    8989#: assets/civicrm/custom_php/CRM/Contact/Form/Task/CreateWordPressUsers.php:133
    90 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3875
    91 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3898
    92 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1366
    93 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1806
    94 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1871
    95 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1884
     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
    9696#: includes/acf/fields/cwps-acf-field-civicrm-yes-no.php:178
    9797msgid "No"
     
    9999
    100100#: assets/civicrm/custom_php/CRM/Contact/Form/Task/CreateWordPressUsers.php:135
    101 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3874
    102 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3897
    103 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1365
    104 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1805
    105 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1870
    106 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1883
     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
    107107#: includes/acf/fields/cwps-acf-field-civicrm-yes-no.php:177
    108108msgid "Yes"
     
    159159
    160160#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:49
    161 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2040
    162 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2340
    163 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2668
    164 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2839
     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
    165165#: includes/acf/fields/cwps-acf-field-civicrm-address.php:496
    166166#: includes/acf/shortcodes/cwps-shortcode-address.php:210
     
    173173
    174174#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:63
    175 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2650
    176 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1678
     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
    177177msgid "Phone Type"
    178178msgstr ""
     
    180180#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:77
    181181#: assets/templates/wordpress/metaboxes/metabox-admin-settings-profile.php:61
    182 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2193
     182#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2202
    183183msgid "Website Type"
    184184msgstr ""
    185185
    186186#: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:91
    187 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1473
     187#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1482
    188188#: includes/acf/fields/cwps-acf-field-civicrm-contact-existing-new.php:374
    189189msgid "Contact Type"
     
    199199#: includes/acf/classes/cwps-acf-activity.php:1228
    200200#: includes/acf/classes/cwps-acf-case.php:1451
    201 #: includes/acf/classes/cwps-acf-contact.php:1444
     201#: includes/acf/classes/cwps-acf-contact.php:1450
    202202#: includes/acf/classes/cwps-acf-custom-field.php:1119
    203203#: includes/acf/classes/cwps-acf-multiset.php:1064
     
    313313#: assets/templates/wordpress/pages/page-admin-acf-sync.php:18
    314314#: assets/templates/wordpress/pages/page-admin-settings.php:19
    315 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1916
    316 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1943
     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
    317317#: includes/admin/cwps-admin.php:513
    318318#: includes/admin/cwps-admin.php:827
     
    491491#: assets/templates/wordpress/taxonomies/term-edit.php:17
    492492#: assets/templates/wordpress/taxonomies/term-edit.php:19
    493 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:624
    494 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:785
    495 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:820
    496 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:780
    497 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:815
     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
    498498#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:433
    499499#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:556
    500500#: 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:972
    502 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1025
    503 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1060
    504 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:887
    505 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:922
    506 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1062
    507 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1097
    508 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1242
     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
    509509#: includes/acf/classes/cwps-acf-event-field.php:885
    510510#: includes/acf/classes/cwps-acf-event-location.php:1221
     
    541541#: includes/acf/classes/cwps-acf-activity.php:1231
    542542#: includes/acf/classes/cwps-acf-case.php:1454
    543 #: includes/acf/classes/cwps-acf-contact.php:1447
     543#: includes/acf/classes/cwps-acf-contact.php:1453
    544544#: includes/acf/classes/cwps-acf-custom-field.php:1122
    545545#: includes/acf/classes/cwps-acf-multiset.php:1067
     
    697697msgstr ""
    698698
    699 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:238
     699#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:247
    700700msgid "CiviCRM Activity action"
    701701msgstr ""
    702702
    703 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:241
     703#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:250
    704704msgid "CiviCRM Activity"
    705705msgstr ""
    706706
    707 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:522
     707#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:531
    708708msgid "Activity Type"
    709709msgstr ""
    710710
    711 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:547
     711#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:556
    712712msgid "Activity Status"
    713713msgstr ""
    714714
    715 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:581
    716 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3232
    717 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:738
     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
    718718msgid "Campaign"
    719719msgstr ""
    720720
    721 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:611
     721#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:620
    722722#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:420
    723723#: includes/acf/classes/cwps-acf-case.php:1913
     
    725725msgstr ""
    726726
    727 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:614
     727#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:623
    728728#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:423
    729729msgid "Select a Case Action in this Form."
    730730msgstr ""
    731731
    732 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:635
     732#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:644
    733733msgid "Create Case Activity?"
    734734msgstr ""
    735735
    736 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:638
     736#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:647
    737737msgid "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."
    738738msgstr ""
    739739
    740 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:666
    741 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1156
    742 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:602
    743 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1597
    744 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2072
    745 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2219
    746 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2420
    747 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2700
    748 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2871
    749 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3070
    750 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3215
    751 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3376
    752 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3507
    753 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3649
     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
    754754#: 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:863
    756 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1443
    757 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1590
    758 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1696
    759 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:764
     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
    760760msgid "Conditional On"
    761761msgstr ""
    762762
    763 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:668
    764 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1159
    765 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:604
    766 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1599
    767 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2075
    768 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2222
    769 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2423
    770 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2703
    771 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2874
    772 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3218
    773 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3379
    774 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3510
    775 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3652
    776 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:865
    777 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1445
    778 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1592
    779 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1699
    780 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:766
     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
    781781msgid "Always add"
    782782msgstr ""
    783783
    784 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:670
     784#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:679
    785785msgid "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."
    786786msgstr ""
    787787
    788 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:733
    789 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:871
    790 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:728
    791 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:866
    792 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:835
    793 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:973
     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
    794794msgid "Contact References"
    795795msgstr ""
    796796
    797797#. translators: %s: The name of the Field
    798 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:760
    799 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:755
     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
    800800#: 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:862
    802 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1217
     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
    803803msgid "Use one Field to identify the %s."
    804804msgstr ""
    805805
    806 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:773
    807 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:768
     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
    808808#: 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:1013
    810 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:875
     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
    811811msgid "CiviCRM Contact Action"
    812812msgstr ""
    813813
    814 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:776
    815 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:771
     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
    816816#: 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:1016
    818 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:878
     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
    819819msgid "Select a Contact Action in this Form."
    820820msgstr ""
    821821
    822 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:808
    823 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:803
     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
    824824#: 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:1048
    826 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:910
     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
    827827msgid "CiviCRM Contact ID"
    828828msgstr ""
    829829
    830 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:811
    831 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:806
     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
    832832#: 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:1051
    834 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:913
     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
    835835msgid "Select a CiviCRM Contact ID from the database."
    836836msgstr ""
    837837
    838 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:844
    839 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:839
     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
    840840#: 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:1084
    842 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:946
     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
    843843msgid "Custom Contact Reference"
    844844msgstr ""
    845845
    846 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:846
    847 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:841
     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
    848848#: 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:1086
    850 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:948
     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
    851851msgid "Define a custom Contact Reference."
    852852msgstr ""
    853853
    854 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:908
    855 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:935
     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
    856856#: includes/acf/classes/cwps-acf-activity.php:1202
    857857#: includes/acf/classes/cwps-acf-activity.php:1331
     
    860860msgstr ""
    861861
    862 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:972
    863 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1056
    864 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:967
    865 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:1051
    866 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1844
    867 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1947
    868 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2521
    869 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2557
    870 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3988
    871 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:4092
    872 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1212
    873 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1303
    874 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1412
    875 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1574
     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
    876876msgid "Custom Fields"
    877877msgstr ""
    878878
    879 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1093
    880 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3444
     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
    881881msgid "Attachment(s)"
    882882msgstr ""
    883883
    884 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1113
    885 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3464
     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
    886886msgid "Attachment Actions"
    887887msgstr ""
    888888
    889 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1130
    890 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3481
     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
    891891msgid "Add Attachment action"
    892892msgstr ""
    893893
    894 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1141
    895 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3492
     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
    896896#: includes/acf/fields/cwps-acf-field-civicrm-attachment.php:609
    897897msgid "File"
    898898msgstr ""
    899899
    900 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1160
     900#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1169
    901901msgid "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."
    902902msgstr ""
    903903
    904 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1176
    905 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3527
     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
    906906msgid "Attachment"
    907907msgstr ""
    908908
    909909#. translators: %s The name of the Form Action
    910 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1350
     910#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1359
    911911msgid "An Activity Type ID is required to create an Activity in \"%s\"."
    912912msgstr ""
     
    963963msgstr ""
    964964
    965 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:246
     965#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:255
    966966msgid "CiviCRM Case action"
    967967msgstr ""
    968968
    969 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:249
     969#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:258
    970970msgid "CiviCRM Case"
    971971msgstr ""
    972972
    973 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:344
     973#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:353
    974974msgid "Case Manager"
    975975msgstr ""
    976976
    977 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:528
     977#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:537
    978978msgid "Case Type"
    979979msgstr ""
    980980
    981 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:553
     981#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:562
    982982msgid "Case Status"
    983983msgstr ""
    984984
    985 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:578
     985#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:587
    986986msgid "Activity Medium"
    987987msgstr ""
    988988
    989 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:606
     989#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:615
    990990msgid "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."
    991991msgstr ""
    992992
    993 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:611
     993#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:620
    994994msgid "Skip creating the Case?"
    995995msgstr ""
    996996
    997 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:614
     997#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:623
    998998msgid "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."
    999999msgstr ""
    10001000
    1001 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:634
     1001#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:643
    10021002msgid "Message"
    10031003msgstr ""
    10041004
    1005 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:637
     1005#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:646
    10061006msgid "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."
    10071007msgstr ""
    10081008
    1009 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:903
    1010 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:930
     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
    10111011#: includes/acf/classes/cwps-acf-case.php:1425
    10121012#: includes/acf/classes/cwps-acf-case.php:1554
     
    10161016
    10171017#. translators: %s The name of the Form Action
    1018 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:1221
     1018#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:1230
    10191019msgid "A Case Type ID is required to create a Case in \"%s\"."
    10201020msgstr ""
    10211021
    1022 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:378
     1022#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:387
    10231023msgid "CiviCRM Contact action"
    10241024msgstr ""
    10251025
    1026 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:381
     1026#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:390
    10271027#: includes/acf/fields/cwps-acf-field-civicrm-contact-existing-new.php:334
    10281028msgid "CiviCRM Contact"
    10291029msgstr ""
    10301030
    1031 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:689
     1031#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:698
    10321032#: includes/acf/classes/cwps-acf-user.php:2112
    10331033#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:515
     
    10351035msgstr ""
    10361036
    1037 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1450
     1037#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1459
    10381038msgid "Submitter"
    10391039msgstr ""
    10401040
    1041 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1453
     1041#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1462
    10421042msgid "Is this Action for the Contact who is submitting the Form?"
    10431043msgstr ""
    10441044
    1045 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1498
     1045#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1507
    10461046msgid "Contact Sub Type"
    10471047msgstr ""
    10481048
    1049 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1526
     1049#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1535
    10501050msgid "Dedupe Rule"
    10511051msgstr ""
    10521052
    1053 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1540
     1053#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1549
    10541054msgid "CiviCRM Default"
    10551055msgstr ""
    10561056
    1057 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1551
     1057#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1560
    10581058msgid "Contact Entities"
    10591059msgstr ""
    10601060
    1061 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1571
    1062 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2137
    1063 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2239
     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
    10641064#: includes/buddypress/cwps-bp-xprofile.php:219
    10651065msgid "Website"
    10661066msgstr ""
    10671067
    1068 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1572
    1069 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2284
    1070 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2471
    1071 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1417
    1072 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1454
     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
    10731073#: includes/buddypress/cwps-bp-xprofile.php:217
    10741074msgid "Address"
    10751075msgstr ""
    10761076
    1077 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1573
    1078 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2594
    1079 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2720
     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
    10801080#: includes/buddypress/cwps-bp-xprofile.php:218
    10811081msgid "Phone"
    10821082msgstr ""
    10831083
    1084 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1574
    1085 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2765
    1086 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2891
     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
    10871087#: includes/acf/fields/cwps-acf-field-civicrm-im.php:478
    10881088msgid "Instant Messenger"
    10891089msgstr ""
    10901090
    1091 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1575
    1092 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3315
    1093 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3399
     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
    10941094#: includes/acf/classes/cwps-acf-civicrm-note.php:372
    10951095msgid "Note"
    10961096msgstr ""
    10971097
    1098 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1576
    1099 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3564
    1100 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3669
     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
    11011101msgid "Tag"
    11021102msgstr ""
    11031103
    1104 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1577
    1105 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2936
    1106 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2992
    1107 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3090
     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
    11081108msgid "Group"
    11091109msgstr ""
    11101110
    1111 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1583
    1112 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3135
    1113 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3270
     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
    11141114msgid "Free Membership"
    11151115msgstr ""
    11161116
    1117 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1601
     1117#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1610
    11181118msgid "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."
    11191119msgstr ""
    11201120
    1121 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1627
     1121#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1636
    11221122msgid "Auto-fill with data from CiviCRM"
    11231123msgstr ""
    11241124
    1125 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1652
     1125#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1661
    11261126msgid "Update auto-filled Contact"
    11271127msgstr ""
    11281128
    1129 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1655
     1129#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1664
    11301130msgid "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."
    11311131msgstr ""
    11321132
    1133 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1760
    1134 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1807
    1135 #: includes/acf/classes/cwps-acf-contact.php:1418
    1136 #: includes/acf/classes/cwps-acf-contact.php:1612
    1137 #: includes/acf/classes/cwps-acf-contact.php:1781
     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
     1135#: includes/acf/classes/cwps-acf-contact.php:1424
     1136#: includes/acf/classes/cwps-acf-contact.php:1618
     1137#: includes/acf/classes/cwps-acf-contact.php:1787
    11381138#: includes/acf/classes/cwps-acf-user.php:1952
    11391139#: includes/buddypress/cwps-bp-civicrm-contact-field.php:260
     
    11411141msgstr ""
    11421142
    1143 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2012
     1143#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2021
    11441144msgid "Email Actions"
    11451145msgstr ""
    11461146
    1147 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2029
     1147#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2038
    11481148msgid "Add Email action"
    11491149msgstr ""
    11501150
    1151 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2076
     1151#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2085
    11521152msgid "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."
    11531153msgstr ""
    11541154
    1155 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2165
     1155#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2174
    11561156msgid "Website Actions"
    11571157msgstr ""
    11581158
    1159 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2182
     1159#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2191
    11601160msgid "Add Website action"
    11611161msgstr ""
    11621162
    1163 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2223
     1163#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2232
    11641164msgid "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."
    11651165msgstr ""
    11661166
    1167 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2312
     1167#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2321
    11681168msgid "Address Actions"
    11691169msgstr ""
    11701170
    1171 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2329
     1171#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2338
    11721172msgid "Add Address action"
    11731173msgstr ""
    11741174
    1175 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2366
     1175#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2375
    11761176msgid "Include empty Fields"
    11771177msgstr ""
    11781178
    1179 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2369
     1179#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2378
    11801180msgid "Enable this to include empty Fields in the data that is sent to CiviCRM. This will cause the value to be cleared."
    11811181msgstr ""
    11821182
    1183 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2392
    1184 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2437
     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
    11851185#: includes/acf/classes/cwps-acf-address.php:319
    11861186#: includes/buddypress/cwps-bp-civicrm-address.php:579
     
    11881188msgstr ""
    11891189
    1190 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2424
     1190#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2433
    11911191msgid "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."
    11921192msgstr ""
    11931193
    1194 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2622
     1194#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2631
    11951195msgid "Phone Actions"
    11961196msgstr ""
    11971197
    1198 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2639
     1198#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2648
    11991199msgid "Add Phone action"
    12001200msgstr ""
    12011201
    1202 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2704
     1202#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2713
    12031203msgid "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."
    12041204msgstr ""
    12051205
    1206 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2793
     1206#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2802
    12071207msgid "Instant Messenger Actions"
    12081208msgstr ""
    12091209
    1210 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2810
     1210#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2819
    12111211msgid "Add Instant Messenger action"
    12121212msgstr ""
    12131213
    1214 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2821
     1214#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2830
    12151215msgid "Instant Messenger Type"
    12161216msgstr ""
    12171217
    1218 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2875
     1218#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2884
    12191219msgid "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."
    12201220msgstr ""
    12211221
    1222 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2964
     1222#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2973
    12231223msgid "Group Actions"
    12241224msgstr ""
    12251225
    1226 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2981
     1226#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2990
    12271227msgid "Add Group action"
    12281228msgstr ""
    12291229
    1230 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3016
     1230#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3025
    12311231msgid "Add or Remove the Contact"
    12321232msgstr ""
    12331233
    1234 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3023
     1234#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3032
    12351235msgid "Add to Group"
    12361236msgstr ""
    12371237
    1238 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3024
     1238#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3033
    12391239msgid "Remove from Group"
    12401240msgstr ""
    12411241
    1242 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3038
     1242#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3047
    12431243msgid "Enable double opt-in?"
    12441244msgstr ""
    12451245
    1246 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3073
     1246#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3082
    12471247msgid "Always add or remove"
    12481248msgstr ""
    12491249
    1250 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3074
     1250#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3083
    12511251msgid "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."
    12521252msgstr ""
    12531253
    1254 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3163
     1254#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3172
    12551255msgid "Membership Actions"
    12561256msgstr ""
    12571257
    1258 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3180
     1258#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3189
    12591259msgid "Add Membership action"
    12601260msgstr ""
    12611261
    1262 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3191
     1262#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3200
    12631263msgid "Add Free Membership"
    12641264msgstr ""
    12651265
    1266 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3219
     1266#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3228
    12671267msgid "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."
    12681268msgstr ""
    12691269
    1270 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3343
     1270#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3352
    12711271msgid "Note Actions"
    12721272msgstr ""
    12731273
    1274 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3360
     1274#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3369
    12751275msgid "Add Note action"
    12761276msgstr ""
    12771277
    1278 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3380
     1278#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3389
    12791279msgid "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."
    12801280msgstr ""
    12811281
    1282 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3511
     1282#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3520
    12831283msgid "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."
    12841284msgstr ""
    12851285
    1286 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3592
     1286#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3601
    12871287msgid "Tag Actions"
    12881288msgstr ""
    12891289
    1290 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3609
     1290#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3618
    12911291msgid "Add Tag action"
    12921292msgstr ""
    12931293
    1294 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3624
     1294#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3633
    12951295msgid "Add Tag(s) to Contact"
    12961296msgstr ""
    12971297
    1298 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3653
     1298#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3662
    12991299msgid "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."
    13001300msgstr ""
    13011301
    1302 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3742
     1302#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3751
    13031303msgid "Relationship Actions"
    13041304msgstr ""
    13051305
    1306 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3760
     1306#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3769
    13071307msgid "Add Relationship action"
    13081308msgstr ""
    13091309
    1310 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3770
     1310#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3779
    13111311msgid "Related Contact"
    13121312msgstr ""
    13131313
    1314 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3773
     1314#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3782
    13151315msgid "Is this Contact related to another Contact?"
    13161316msgstr ""
    13171317
    1318 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3792
     1318#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3801
    13191319msgid "Not related"
    13201320msgstr ""
    13211321
    1322 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3806
    1323 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3932
     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
    13241324msgid "Relationship Fields"
    13251325msgstr ""
    13261326
    1327 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3828
     1327#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3837
    13281328msgid "Relationship"
    13291329msgstr ""
    13301330
    1331 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3831
     1331#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3840
    13321332msgid "Select the relationship this Contact has with the related Contact"
    13331333msgstr ""
    13341334
    1335 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3863
     1335#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3872
    13361336msgid "Is Current Employee"
    13371337msgstr ""
    13381338
    1339 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3877
    1340 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3900
     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
    13411341msgid "Use an ACF \"True/False\" Field to choose a mapping for this Setting."
    13421342msgstr ""
    13431343
    1344 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3886
     1344#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3895
    13451345msgid "Is Current Employer"
    13461346msgstr ""
    13471347
    13481348#. translators: %s The name of the Form Action
    1349 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:4256
     1349#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:4265
    13501350msgid "Not enough data to save a Contact in \"%s\"."
    13511351msgstr ""
     
    14521452msgstr ""
    14531453
    1454 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:392
     1454#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:402
    14551455msgid "CiviCRM Event action"
    14561456msgstr ""
    14571457
    1458 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:395
     1458#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:405
    14591459#: includes/acf/fields/cwps-acf-field-civicrm-event-group.php:332
    14601460msgid "CiviCRM Event"
    14611461msgstr ""
    14621462
    1463 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:867
     1463#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:877
    14641464msgid "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."
    14651465msgstr ""
    14661466
    1467 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:934
    1468 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1111
     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
    14691469msgid "Event Settings"
    14701470msgstr ""
    14711471
    1472 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:963
     1472#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:973
    14731473#: includes/acf/classes/cwps-acf-event-field.php:879
    14741474msgid "Disabled"
    14751475msgstr ""
    14761476
    1477 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:973
     1477#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:983
    14781478msgid "Select"
    14791479msgstr ""
    14801480
    14811481#. translators: %s: The name of the Field
    1482 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1000
     1482#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1010
    14831483msgid "Use one Field to identify the %s. Defaults to logged-in Contact."
    14841484msgstr ""
    14851485
    1486 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1148
    1487 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1175
     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
    14881488#: includes/acf/classes/cwps-acf-event.php:869
    14891489msgid "Event Fields"
    14901490msgstr ""
    14911491
    1492 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1340
     1492#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1350
    14931493msgid "Event Location"
    14941494msgstr ""
    14951495
    1496 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1362
     1496#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1372
    14971497msgid "Show Location"
    14981498msgstr ""
    14991499
    1500 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1363
     1500#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1373
    15011501msgid "Disable to make the Location available to Event Administrators only."
    15021502msgstr ""
    15031503
    1504 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1378
     1504#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1388
    15051505msgid "Existing Location"
    15061506msgstr ""
    15071507
    1508 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1379
     1508#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1389
    15091509msgid "You cannot map a new Location if you choose an existing one."
    15101510msgstr ""
    15111511
    1512 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1392
     1512#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1402
    15131513msgid "New Location"
    15141514msgstr ""
    15151515
    1516 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1446
     1516#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1456
    15171517msgid "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."
    15181518msgstr ""
    15191519
    1520 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1479
    1521 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1515
     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
    15221522msgid "Address Custom Fields"
    15231523msgstr ""
    15241524
    1525 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1539
     1525#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1549
    15261526msgid "Email Addresses"
    15271527msgstr ""
    15281528
    1529 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1576
     1529#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1586
    15301530msgid "Add Email"
    15311531msgstr ""
    15321532
    1533 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1593
     1533#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1603
    15341534msgid "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."
    15351535msgstr ""
    15361536
    1537 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1607
     1537#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1617
    15381538msgid "Emails"
    15391539msgstr ""
    15401540
    1541 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1629
    1542 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1714
     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
    15431543msgid "Phone Numbers"
    15441544msgstr ""
    15451545
    1546 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1666
     1546#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1676
    15471547msgid "Add Phone"
    15481548msgstr ""
    15491549
    1550 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1700
     1550#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1710
    15511551msgid "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."
    15521552msgstr ""
    15531553
    1554 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1744
     1554#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1754
    15551555#: includes/acf/fields/cwps-acf-field-civicrm-im.php:510
    15561556#: includes/acf/fields/cwps-acf-field-civicrm-phone.php:567
     
    15581558msgstr ""
    15591559
    1560 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1781
    1561 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2214
     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
    15621562msgid "Event Registration"
    15631563msgstr ""
    15641564
    1565 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1803
     1565#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1813
    15661566msgid "Allow Online Registration"
    15671567msgstr ""
    15681568
    1569 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1818
     1569#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1828
    15701570msgid "Online Registration Configuration"
    15711571msgstr ""
    15721572
    1573 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1848
    1574 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1894
     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
    15751575msgid "Enable Components"
    15761576msgstr ""
    15771577
    1578 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1868
     1578#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1878
    15791579msgid "Enable Confirmation Screen"
    15801580msgstr ""
    15811581
    1582 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1881
     1582#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1891
    15831583msgid "Send Confirmation Email"
    15841584msgstr ""
    15851585
    1586 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1965
    1587 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2010
     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
    15881588msgid "Registration Screen"
    15891589msgstr ""
    15901590
    1591 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1990
     1591#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2000
    15921592#: includes/acf/classes/cwps-acf-event.php:937
    15931593msgid "Include Profile (top of page)"
    15941594msgstr ""
    15951595
    1596 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2000
     1596#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2010
    15971597#: includes/acf/classes/cwps-acf-event.php:939
    15981598msgid "Include Profile (bottom of page)"
    15991599msgstr ""
    16001600
    1601 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2032
    1602 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2067
     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
    16031603msgid "Confirmation Screen"
    16041604msgstr ""
    16051605
    1606 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2097
    1607 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2122
     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
    16081608msgid "Thank You Screen"
    16091609msgstr ""
    16101610
    1611 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2144
    1612 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2181
     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
    16131613msgid "Confirmation Email"
    16141614msgstr ""
    16151615
    16161616#. translators: %s The name of the Form Action
    1617 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2391
     1617#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2401
    16181618msgid "An Event Type ID is required to create an Event in \"%s\"."
    16191619msgstr ""
    16201620
    16211621#. translators: %s The name of the Form Action
    1622 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2404
     1622#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2414
    16231623msgid "A title is required to create an Event in \"%s\"."
    16241624msgstr ""
    16251625
    16261626#. translators: %s The name of the Form Action
    1627 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2417
     1627#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2427
    16281628msgid "A start date is required to create an Event in \"%s\"."
    16291629msgstr ""
    16301630
    16311631#. translators: %s The name of the Form Action
    1632 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2985
     1632#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2995
    16331633msgid "A Street Address is required in \"%s\"."
    16341634msgstr ""
    16351635
    16361636#. translators: %s The name of the Form Action
    1637 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3173
     1637#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3183
    16381638msgid "An invalid Email was found in \"%s\"."
    16391639msgstr ""
    16401640
    16411641#. translators: %s The name of the Form Action
    1642 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3340
     1642#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3350
    16431643msgid "A valid Phone Number is required in \"%s\"."
    16441644msgstr ""
    16451645
    16461646#. translators: %s The name of the Form Action
    1647 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3504
     1647#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3514
    16481648msgid "A Profile is required to enable Online Registration in \"%s\"."
    16491649msgstr ""
    16501650
    1651 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3656
     1651#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3666
    16521652msgid "Register Now"
    16531653msgstr ""
    16541654
    16551655#. translators: %s The name of the Form Action
    1656 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3794
     1656#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3804
    16571657msgid "A \"From Name\" is required to send a Confirmation Email in \"%s\"."
    16581658msgstr ""
    16591659
    16601660#. translators: %s The name of the Form Action
    1661 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3807
     1661#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3817
    16621662msgid "A \"From Email\" is required to send a Confirmation Email in \"%s\"."
    16631663msgstr ""
    16641664
    1665 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:288
     1665#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:297
    16661666msgid "CiviCRM Participant action"
    16671667msgstr ""
    16681668
    1669 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:291
     1669#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:300
    16701670msgid "CiviCRM Participant"
    16711671msgstr ""
    16721672
    1673 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:616
     1673#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:625
    16741674msgid "Participant Role"
    16751675msgstr ""
    16761676
    1677 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:656
     1677#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:665
    16781678msgid "Add when full?"
    16791679msgstr ""
    16801680
    1681 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:659
     1681#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:668
    16821682msgid "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."
    16831683msgstr ""
    16841684
    1685 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:679
     1685#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:688
    16861686msgid "Email receipt?"
    16871687msgstr ""
    16881688
    1689 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:702
     1689#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:711
    16901690msgid "Participant Status"
    16911691msgstr ""
    16921692
    1693 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:768
     1693#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:777
    16941694msgid "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."
    16951695msgstr ""
    16961696
    1697 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1010
    1698 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1150
     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
    16991699msgid "Participant References"
    17001700msgstr ""
    17011701
    17021702#. translators: %s: The Field title
    1703 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1037
     1703#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1046
    17041704msgid "If the Participant is not the Submitter, use one Field to identify the %s."
    17051705msgstr ""
    17061706
    1707 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1050
     1707#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1059
    17081708msgid "CiviCRM Participant Action"
    17091709msgstr ""
    17101710
    1711 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1053
     1711#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1062
    17121712msgid "Select a Participant Action in this Form."
    17131713msgstr ""
    17141714
    1715 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1085
     1715#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1094
    17161716msgid "CiviCRM Participant ID"
    17171717msgstr ""
    17181718
    1719 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1088
     1719#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1097
    17201720msgid "Select a CiviCRM Participant ID from the database."
    17211721msgstr ""
    17221722
    1723 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1123
     1723#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1132
    17241724msgid "Custom Participant Reference"
    17251725msgstr ""
    17261726
    1727 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1125
     1727#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1134
    17281728msgid "Define a custom Participant Reference."
    17291729msgstr ""
    17301730
    1731 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1187
    1732 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1311
     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
    17331733msgid "Event References"
    17341734msgstr ""
    17351735
    1736 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1230
     1736#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1239
    17371737msgid "CiviCRM Event ID"
    17381738msgstr ""
    17391739
    1740 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1233
     1740#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1242
    17411741msgid "Select a CiviCRM Event ID from the database."
    17421742msgstr ""
    17431743
    1744 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1262
     1744#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1271
    17451745msgid "Custom Event Reference"
    17461746msgstr ""
    17471747
    1748 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1264
     1748#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1273
    17491749msgid "Define a custom Event Reference."
    17501750msgstr ""
    17511751
    1752 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1283
     1752#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1292
    17531753#: includes/acf/fields/cwps-acf-field-civicrm-event-group.php:372
    17541754msgid "Event Type"
    17551755msgstr ""
    17561756
    1757 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1286
     1757#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1295
    17581758msgid "Choose the Event Type to show its Custom Fields below."
    17591759msgstr ""
    17601760
    1761 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1348
    1762 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1375
     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
    17631763#: includes/acf/classes/cwps-acf-participant.php:1166
    17641764#: includes/acf/classes/cwps-acf-participant.php:1295
     
    17681768
    17691769#. translators: %s The name of the Form Action
    1770 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1812
     1770#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1821
    17711771msgid "An Event ID is required to create a Participant in \"%s\"."
    17721772msgstr ""
    17731773
    17741774#. translators: %s The name of the Form Action
    1775 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1825
     1775#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1834
    17761776msgid "A Participant Role ID is required to create a Participant in \"%s\"."
    17771777msgstr ""
    17781778
    17791779#. translators: %s The name of the Form Action
    1780 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1857
     1780#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1866
    17811781msgid "Could not check if the Event is full in \"%s\"."
    17821782msgstr ""
    17831783
    17841784#. translators: %s The title of the Event
    1785 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1875
     1785#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1884
    17861786msgid "Cannot add Participant because \"%s\" is full."
    17871787msgstr ""
    17881788
    17891789#. translators: %s The name of the Form Action
    1790 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1882
     1790#: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1891
    17911791msgid "Cannot add Participant because the Event in \"%s\" is full."
    17921792msgstr ""
     
    18851885#: includes/acf/classes/cwps-acf-activity.php:969
    18861886#: includes/acf/classes/cwps-acf-case.php:1192
    1887 #: includes/acf/classes/cwps-acf-contact.php:1099
     1887#: includes/acf/classes/cwps-acf-contact.php:1105
    18881888msgid "Name not set"
    18891889msgstr ""
     
    20992099msgstr ""
    21002100
    2101 #: includes/acf/classes/cwps-acf-contact.php:1835
     2101#: includes/acf/classes/cwps-acf-contact.php:1841
    21022102msgid "Contact Types"
    21032103msgstr ""
    21042104
    2105 #: includes/acf/classes/cwps-acf-contact.php:2059
     2105#: includes/acf/classes/cwps-acf-contact.php:2065
    21062106#: includes/acf/classes/cwps-acf-user.php:2322
    21072107#: includes/buddypress/cwps-bp-xprofile.php:216
     
    25122512msgstr ""
    25132513
    2514 #: includes/acf/classes/cwps-acf-post-tax.php:621
     2514#: includes/acf/classes/cwps-acf-post-tax.php:622
    25152515msgid "Could not update term_meta"
    25162516msgstr ""
     
    25342534msgstr ""
    25352535
    2536 #: includes/acf/classes/cwps-acf-relationship.php:1868
     2536#: includes/acf/classes/cwps-acf-relationship.php:1871
    25372537#: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:155
    25382538msgid "CiviCRM Relationship"
    25392539msgstr ""
    25402540
    2541 #: includes/acf/classes/cwps-acf-relationship.php:1871
     2541#: includes/acf/classes/cwps-acf-relationship.php:1874
    25422542msgid "Choose the CiviCRM Relationship that this ACF Field should sync with. (Optional)"
    25432543msgstr ""
  • civicrm-wp-profile-sync/trunk/readme.txt

    r3071446 r3088271  
    22Contributors: needle, cuny-academic-commons, kcristiano, tadpolecc
    33Donate link: https://www.paypal.me/interactivist
    4 Tags: civicrm, user, buddypress, acf, profile, xprofile, sync
     4Tags: civicrm, buddypress, acf, profile, sync
    55Requires at least: 4.9
    66Tested up to: 6.5
    77Requires PHP: 7.1
    8 Stable tag: 0.6.7
     8Stable tag: 0.6.8
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8787== Changelog ==
    8888
     89= 0.6.8 =
     90
     91* Fixes Custom Field sync from CiviCRM to ACF
     92* Improves PHP8.1+ compatibility
     93
    8994= 0.6.7 =
    9095
Note: See TracChangeset for help on using the changeset viewer.