Changeset 3088271
- Timestamp:
- 05/17/2024 11:42:42 AM (22 months ago)
- Location:
- civicrm-wp-profile-sync/trunk
- Files:
-
- 17 edited
-
civicrm-wp-profile-sync.php (modified) (2 diffs)
-
includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php (modified) (2 diffs)
-
includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php (modified) (1 diff)
-
includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php (modified) (10 diffs)
-
includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php (modified) (1 diff)
-
includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php (modified) (1 diff)
-
includes/acf/classes/cwps-acf-civicrm-campaign.php (modified) (2 diffs)
-
includes/acf/classes/cwps-acf-contact.php (modified) (2 diffs)
-
includes/acf/classes/cwps-acf-custom-field.php (modified) (2 diffs)
-
includes/acf/classes/cwps-acf-event-registration.php (modified) (2 diffs)
-
includes/acf/classes/cwps-acf-post-tax.php (modified) (2 diffs)
-
includes/acf/classes/cwps-acf-relationship.php (modified) (1 diff)
-
includes/buddypress/cwps-bp-civicrm-custom-field.php (modified) (1 diff)
-
includes/civicrm/cwps-civicrm-email.php (modified) (2 diffs)
-
includes/civicrm/cwps-civicrm-website.php (modified) (3 diffs)
-
languages/civicrm-wp-profile-sync.pot (modified) (27 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
civicrm-wp-profile-sync/trunk/civicrm-wp-profile-sync.php
r3071446 r3088271 7 7 * Plugin URI: https://github.com/christianwach/civicrm-wp-profile-sync 8 8 * GitHub Plugin URI: https://github.com/christianwach/civicrm-wp-profile-sync 9 * Version: 0.6. 79 * Version: 0.6.8 10 10 * Author: Christian Wach 11 11 * Author URI: https://haystack.co.uk … … 21 21 22 22 // Set plugin version here. 23 define( 'CIVICRM_WP_PROFILE_SYNC_VERSION', '0.6. 7' );23 define( 'CIVICRM_WP_PROFILE_SYNC_VERSION', '0.6.8' ); 24 24 25 25 // 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 137 137 */ 138 138 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; 139 148 140 149 /** … … 1862 1871 wp_delete_attachment( $attachment_id, true ); 1863 1872 1873 // Declare variable type. 1874 if ( ! is_array( $attachments ) ) { 1875 $attachments = []; 1876 } 1877 1864 1878 // Get the full Attachment data. 1865 1879 $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 128 128 */ 129 129 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; 130 139 131 140 /** -
civicrm-wp-profile-sync/trunk/includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php
r3071446 r3088271 344 344 */ 345 345 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; 346 355 347 356 /** … … 5030 5039 } 5031 5040 5041 // Declare variable type. 5042 if ( ! is_array( $emails ) ) { 5043 $emails = []; 5044 } 5045 5032 5046 // Get the full Email data. 5033 5047 $emails[] = $this->civicrm->email->email_get_by_id( $result['id'] ); … … 5510 5524 } 5511 5525 5526 // Declare variable type. 5527 if ( ! is_array( $relationships ) ) { 5528 $relationships = []; 5529 } 5530 5512 5531 // Get the full Relationship data. 5513 5532 $relationships[] = $this->civicrm->relationship->get_by_id( $result['id'] ); … … 5970 5989 } 5971 5990 5991 // Declare variable type. 5992 if ( ! is_array( $websites ) ) { 5993 $websites = []; 5994 } 5995 5972 5996 // Get the full Website data. 5973 5997 $websites[] = $this->civicrm->website->website_get_by_id( $result['id'] ); … … 6131 6155 } 6132 6156 6157 // Declare variable type. 6158 if ( ! is_array( $addresses ) ) { 6159 $addresses = []; 6160 } 6161 6133 6162 // Get the full Address data. 6134 6163 $addresses[] = $this->plugin->civicrm->address->address_get_by_id( $result['id'] ); … … 6269 6298 } 6270 6299 6300 // Declare variable type. 6301 if ( ! is_array( $phones ) ) { 6302 $phones = []; 6303 } 6304 6271 6305 // Get the full Phone data. 6272 6306 $phones[] = $this->plugin->civicrm->phone->phone_get_by_id( $result['id'] ); … … 6407 6441 if ( false === $result ) { 6408 6442 continue; 6443 } 6444 6445 // Declare variable type. 6446 if ( ! is_array( $ims ) ) { 6447 $ims = []; 6409 6448 } 6410 6449 … … 6710 6749 } 6711 6750 6751 // Declare variable type. 6752 if ( ! is_array( $memberships ) ) { 6753 $memberships = []; 6754 } 6755 6712 6756 // Add the full Membership data. 6713 6757 $memberships[] = $this->civicrm->membership->get_by_id( $result['id'] ); … … 6842 6886 // Add Note "Attachment(s)". 6843 6887 $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 } 6844 6893 6845 6894 // Add the full Note data. … … 6982 7031 wp_delete_attachment( $attachment_id, true ); 6983 7032 7033 // Declare variable type. 7034 if ( ! is_array( $attachments ) ) { 7035 $attachments = []; 7036 } 7037 6984 7038 // Get the full Attachment data. 6985 7039 $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 281 281 */ 282 282 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 283 293 /** 284 294 * Data transient key. -
civicrm-wp-profile-sync/trunk/includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php
r3071446 r3088271 200 200 */ 201 201 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; 202 211 203 212 /** -
civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-civicrm-campaign.php
r3071446 r3088271 237 237 // Build params. 238 238 $params = [ 239 'version' => 3, 239 240 'sequential' => 1, 240 241 'is_active' => 1, … … 247 248 248 249 // Call the CiviCRM API. 249 $result = civicrm_api 3( 'Campaign', 'get', $params );250 $result = civicrm_api( 'Campaign', 'get', $params ); 250 251 251 252 // Return early if something went wrong. 252 if ( ! empty( $result[' error'] )) {253 if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) { 253 254 $e = new \Exception(); 254 255 $trace = $e->getTraceAsString(); -
civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-contact.php
r3071446 r3088271 613 613 614 614 // Format the return as per "getlist". 615 $contact_data = []; 615 616 foreach ( $result['values'] as $value ) { 616 617 $data = [ … … 624 625 } 625 626 $contact_data[] = $data; 627 } 628 629 // Cast as boolean if empty. 630 if ( empty( $contact_data ) ) { 631 $contact_data = false; 626 632 } 627 633 -
civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-custom-field.php
r3071446 r3088271 848 848 $custom_fields = []; 849 849 foreach ( $args['custom_fields'] as $key => $field ) { 850 $custom_fields[ $key ] = $field['custom_field_id'];850 $custom_fields[ $key ] = (int) $field['custom_field_id']; 851 851 } 852 852 … … 855 855 856 856 // 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 ) ) { 858 858 continue; 859 859 } -
civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-event-registration.php
r3071446 r3088271 1179 1179 1180 1180 // Return early if we get an error. 1181 if ( ! empty( $result['is_error'] ) ) {1181 if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) { 1182 1182 return $profile; 1183 1183 } … … 1247 1247 1248 1248 // 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'] ) { 1250 1250 $e = new Exception(); 1251 1251 $trace = $e->getTraceAsString(); -
civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-post-tax.php
r3071446 r3088271 342 342 // Sanity check. 343 343 $filtered = array_unique( $filtered ); 344 $filtered = array_map( 'intval', $filtered ); 344 345 345 346 // Build Groups. … … 1251 1252 $terms_in_post = $this->terms_get_for_post( $post_id ); 1252 1253 $term_ids_in_post = wp_list_pluck( $terms_in_post, 'term_id' ); 1254 $term_ids_in_post = array_map( 'intval', $term_ids_in_post ); 1253 1255 1254 1256 // If the term(s) need to be added. -
civicrm-wp-profile-sync/trunk/includes/acf/classes/cwps-acf-relationship.php
r3071446 r3088271 1157 1157 } 1158 1158 1159 // Make sure values are integers. 1160 $existing = array_map( 'intval', $existing ); 1161 1159 1162 // Assign the correct Target Contact ID. 1160 1163 if ( 'ab' === $relationship_direction ) { 1161 $target_contact_id = $relationship->contact_id_b;1164 $target_contact_id = (int) $relationship->contact_id_b; 1162 1165 } else { 1163 $target_contact_id = $relationship->contact_id_a;1166 $target_contact_id = (int) $relationship->contact_id_a; 1164 1167 } 1165 1168 -
civicrm-wp-profile-sync/trunk/includes/buddypress/cwps-bp-civicrm-custom-field.php
r3071446 r3088271 450 450 451 451 // 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 ) ) { 453 453 continue; 454 454 } -
civicrm-wp-profile-sync/trunk/includes/civicrm/cwps-civicrm-email.php
r3071446 r3088271 383 383 384 384 // 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'] ) { 386 386 $e = new Exception(); 387 387 $trace = $e->getTraceAsString(); … … 482 482 483 483 // Bail if there's an error. 484 if ( ! empty( $result['is_error'] ) ) {484 if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) { 485 485 $e = new Exception(); 486 486 $trace = $e->getTraceAsString(); -
civicrm-wp-profile-sync/trunk/includes/civicrm/cwps-civicrm-website.php
r3071446 r3088271 547 547 548 548 // 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'] ) { 550 550 $e = new Exception(); 551 551 $trace = $e->getTraceAsString(); … … 646 646 647 647 // Bail if there's an error. 648 if ( ! empty( $result['is_error'] ) ) {648 if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) { 649 649 $e = new Exception(); 650 650 $trace = $e->getTraceAsString(); … … 754 754 755 755 // Bail on failure. 756 if ( ! empty( $result['is_error'] ) ) {756 if ( ! empty( $result['is_error'] ) && 1 === (int) $result['is_error'] ) { 757 757 return $website; 758 758 } -
civicrm-wp-profile-sync/trunk/languages/civicrm-wp-profile-sync.pot
r3071446 r3088271 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: CiviCRM Profile Sync 0.6. 7a\n"5 "Project-Id-Version: CiviCRM Profile Sync 0.6.8a\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/civicrm-wp-profile-sync\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-0 4-16T09:26:38+00:00\n"12 "POT-Creation-Date: 2024-05-17T11:40:28+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" … … 60 60 61 61 #: assets/civicrm/custom_php/CRM/Contact/Form/Task/CreateWordPressUsers.php:29 62 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:157 063 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:19 8464 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2 09262 #: 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 65 65 msgid "Email" 66 66 msgstr "" … … 88 88 89 89 #: assets/civicrm/custom_php/CRM/Contact/Form/Task/CreateWordPressUsers.php:133 90 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:38 7591 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 89892 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:13 6693 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 0694 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 7195 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 8490 #: 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 96 96 #: includes/acf/fields/cwps-acf-field-civicrm-yes-no.php:178 97 97 msgid "No" … … 99 99 100 100 #: assets/civicrm/custom_php/CRM/Contact/Form/Task/CreateWordPressUsers.php:135 101 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:38 74102 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 897103 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:13 65104 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 05105 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 70106 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 83101 #: 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 107 107 #: includes/acf/fields/cwps-acf-field-civicrm-yes-no.php:177 108 108 msgid "Yes" … … 159 159 160 160 #: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:49 161 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:204 0162 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:234 0163 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:26 68164 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:28 39161 #: 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 165 165 #: includes/acf/fields/cwps-acf-field-civicrm-address.php:496 166 166 #: includes/acf/shortcodes/cwps-shortcode-address.php:210 … … 173 173 174 174 #: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:63 175 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:265 0176 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:16 78175 #: 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 177 177 msgid "Phone Type" 178 178 msgstr "" … … 180 180 #: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:77 181 181 #: assets/templates/wordpress/metaboxes/metabox-admin-settings-profile.php:61 182 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2 193182 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2202 183 183 msgid "Website Type" 184 184 msgstr "" 185 185 186 186 #: assets/templates/buddypress/metaboxes/metabox-bp-field-content.php:91 187 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:14 73187 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1482 188 188 #: includes/acf/fields/cwps-acf-field-civicrm-contact-existing-new.php:374 189 189 msgid "Contact Type" … … 199 199 #: includes/acf/classes/cwps-acf-activity.php:1228 200 200 #: includes/acf/classes/cwps-acf-case.php:1451 201 #: includes/acf/classes/cwps-acf-contact.php:14 44201 #: includes/acf/classes/cwps-acf-contact.php:1450 202 202 #: includes/acf/classes/cwps-acf-custom-field.php:1119 203 203 #: includes/acf/classes/cwps-acf-multiset.php:1064 … … 313 313 #: assets/templates/wordpress/pages/page-admin-acf-sync.php:18 314 314 #: assets/templates/wordpress/pages/page-admin-settings.php:19 315 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:19 16316 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:19 43315 #: 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 317 317 #: includes/admin/cwps-admin.php:513 318 318 #: includes/admin/cwps-admin.php:827 … … 491 491 #: assets/templates/wordpress/taxonomies/term-edit.php:17 492 492 #: assets/templates/wordpress/taxonomies/term-edit.php:19 493 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:6 24494 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:7 85495 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:82 0496 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:78 0497 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:8 15493 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:633 494 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:794 495 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:829 496 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:789 497 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:824 498 498 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:433 499 499 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:556 500 500 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:591 501 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:9 72502 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 25503 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 60504 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:8 87505 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:9 22506 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:10 62507 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1 097508 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:12 42501 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:982 502 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1035 503 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1070 504 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:896 505 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:931 506 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1071 507 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1106 508 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1251 509 509 #: includes/acf/classes/cwps-acf-event-field.php:885 510 510 #: includes/acf/classes/cwps-acf-event-location.php:1221 … … 541 541 #: includes/acf/classes/cwps-acf-activity.php:1231 542 542 #: includes/acf/classes/cwps-acf-case.php:1454 543 #: includes/acf/classes/cwps-acf-contact.php:14 47543 #: includes/acf/classes/cwps-acf-contact.php:1453 544 544 #: includes/acf/classes/cwps-acf-custom-field.php:1122 545 545 #: includes/acf/classes/cwps-acf-multiset.php:1067 … … 697 697 msgstr "" 698 698 699 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:2 38699 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:247 700 700 msgid "CiviCRM Activity action" 701 701 msgstr "" 702 702 703 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:2 41703 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:250 704 704 msgid "CiviCRM Activity" 705 705 msgstr "" 706 706 707 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:5 22707 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:531 708 708 msgid "Activity Type" 709 709 msgstr "" 710 710 711 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:5 47711 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:556 712 712 msgid "Activity Status" 713 713 msgstr "" 714 714 715 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:5 81716 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:32 32717 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:7 38715 #: 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 718 718 msgid "Campaign" 719 719 msgstr "" 720 720 721 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:6 11721 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:620 722 722 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:420 723 723 #: includes/acf/classes/cwps-acf-case.php:1913 … … 725 725 msgstr "" 726 726 727 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:6 14727 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:623 728 728 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:423 729 729 msgid "Select a Case Action in this Form." 730 730 msgstr "" 731 731 732 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:6 35732 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:644 733 733 msgid "Create Case Activity?" 734 734 msgstr "" 735 735 736 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:6 38736 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:647 737 737 msgid "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." 738 738 msgstr "" 739 739 740 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:6 66741 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:11 56742 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:6 02743 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1 597744 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:20 72745 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:22 19746 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:242 0747 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:270 0748 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:28 71749 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:307 0750 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:32 15751 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:33 76752 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:35 07753 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:36 49740 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:675 741 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1165 742 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:611 743 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1606 744 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2081 745 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2228 746 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2429 747 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2709 748 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2880 749 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3079 750 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3224 751 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3385 752 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3516 753 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3658 754 754 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:445 755 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:8 63756 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:14 43757 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1 590758 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1 696759 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:7 64755 #: 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 760 760 msgid "Conditional On" 761 761 msgstr "" 762 762 763 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:6 68764 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:11 59765 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:6 04766 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1 599767 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:20 75768 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:22 22769 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:24 23770 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:27 03771 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:28 74772 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:32 18773 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:33 79774 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:351 0775 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:36 52776 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:8 65777 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:14 45778 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1 592779 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1 699780 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:7 66763 #: 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 781 781 msgid "Always add" 782 782 msgstr "" 783 783 784 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:67 0784 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:679 785 785 msgid "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." 786 786 msgstr "" 787 787 788 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:7 33789 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:8 71790 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:7 28791 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:8 66792 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:8 35793 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:9 73788 #: 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 794 794 msgid "Contact References" 795 795 msgstr "" 796 796 797 797 #. translators: %s: The name of the Field 798 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:76 0799 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:7 55798 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:769 799 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:764 800 800 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:531 801 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:8 62802 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:12 17801 #: 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 803 803 msgid "Use one Field to identify the %s." 804 804 msgstr "" 805 805 806 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:7 73807 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:7 68806 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:782 807 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:777 808 808 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:544 809 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 13810 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:8 75809 #: 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 811 811 msgid "CiviCRM Contact Action" 812 812 msgstr "" 813 813 814 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:7 76815 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:7 71814 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:785 815 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:780 816 816 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:547 817 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 16818 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:8 78817 #: 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 819 819 msgid "Select a Contact Action in this Form." 820 820 msgstr "" 821 821 822 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:8 08823 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:8 03822 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:817 823 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:812 824 824 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:579 825 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 48826 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:91 0825 #: 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 827 827 msgid "CiviCRM Contact ID" 828 828 msgstr "" 829 829 830 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:8 11831 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:8 06830 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:820 831 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:815 832 832 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:582 833 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 51834 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:9 13833 #: 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 835 835 msgid "Select a CiviCRM Contact ID from the database." 836 836 msgstr "" 837 837 838 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:8 44839 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:8 39838 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:853 839 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:848 840 840 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:615 841 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 84842 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:9 46841 #: 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 843 843 msgid "Custom Contact Reference" 844 844 msgstr "" 845 845 846 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:8 46847 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:8 41846 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:855 847 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:850 848 848 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-email.php:617 849 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 86850 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:9 48849 #: 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 851 851 msgid "Define a custom Contact Reference." 852 852 msgstr "" 853 853 854 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:9 08855 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:9 35854 #: 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 856 856 #: includes/acf/classes/cwps-acf-activity.php:1202 857 857 #: includes/acf/classes/cwps-acf-activity.php:1331 … … 860 860 msgstr "" 861 861 862 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:9 72863 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:10 56864 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:9 67865 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:10 51866 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:18 44867 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:19 47868 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:25 21869 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:25 57870 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:39 88871 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:4 092872 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:12 12873 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:13 03874 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:14 12875 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:15 74862 #: 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 876 876 msgid "Custom Fields" 877 877 msgstr "" 878 878 879 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1 093880 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:34 44879 #: 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 881 881 msgid "Attachment(s)" 882 882 msgstr "" 883 883 884 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:11 13885 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:34 64884 #: 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 886 886 msgid "Attachment Actions" 887 887 msgstr "" 888 888 889 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:113 0890 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:34 81889 #: 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 891 891 msgid "Add Attachment action" 892 892 msgstr "" 893 893 894 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:11 41895 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 492894 #: 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 896 896 #: includes/acf/fields/cwps-acf-field-civicrm-attachment.php:609 897 897 msgid "File" 898 898 msgstr "" 899 899 900 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:116 0900 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1169 901 901 msgid "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." 902 902 msgstr "" 903 903 904 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:11 76905 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:35 27904 #: 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 906 906 msgid "Attachment" 907 907 msgstr "" 908 908 909 909 #. translators: %s The name of the Form Action 910 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:135 0910 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-activity.php:1359 911 911 msgid "An Activity Type ID is required to create an Activity in \"%s\"." 912 912 msgstr "" … … 963 963 msgstr "" 964 964 965 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:2 46965 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:255 966 966 msgid "CiviCRM Case action" 967 967 msgstr "" 968 968 969 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:2 49969 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:258 970 970 msgid "CiviCRM Case" 971 971 msgstr "" 972 972 973 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:3 44973 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:353 974 974 msgid "Case Manager" 975 975 msgstr "" 976 976 977 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:5 28977 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:537 978 978 msgid "Case Type" 979 979 msgstr "" 980 980 981 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:5 53981 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:562 982 982 msgid "Case Status" 983 983 msgstr "" 984 984 985 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:5 78985 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:587 986 986 msgid "Activity Medium" 987 987 msgstr "" 988 988 989 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:6 06989 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:615 990 990 msgid "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." 991 991 msgstr "" 992 992 993 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:6 11993 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:620 994 994 msgid "Skip creating the Case?" 995 995 msgstr "" 996 996 997 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:6 14997 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:623 998 998 msgid "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." 999 999 msgstr "" 1000 1000 1001 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:6 341001 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:643 1002 1002 msgid "Message" 1003 1003 msgstr "" 1004 1004 1005 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:6 371005 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:646 1006 1006 msgid "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." 1007 1007 msgstr "" 1008 1008 1009 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:9 031010 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:93 01009 #: 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 1011 1011 #: includes/acf/classes/cwps-acf-case.php:1425 1012 1012 #: includes/acf/classes/cwps-acf-case.php:1554 … … 1016 1016 1017 1017 #. translators: %s The name of the Form Action 1018 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:12 211018 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-case.php:1230 1019 1019 msgid "A Case Type ID is required to create a Case in \"%s\"." 1020 1020 msgstr "" 1021 1021 1022 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 781022 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:387 1023 1023 msgid "CiviCRM Contact action" 1024 1024 msgstr "" 1025 1025 1026 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 811026 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:390 1027 1027 #: includes/acf/fields/cwps-acf-field-civicrm-contact-existing-new.php:334 1028 1028 msgid "CiviCRM Contact" 1029 1029 msgstr "" 1030 1030 1031 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:6 891031 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:698 1032 1032 #: includes/acf/classes/cwps-acf-user.php:2112 1033 1033 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:515 … … 1035 1035 msgstr "" 1036 1036 1037 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:145 01037 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1459 1038 1038 msgid "Submitter" 1039 1039 msgstr "" 1040 1040 1041 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:14 531041 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1462 1042 1042 msgid "Is this Action for the Contact who is submitting the Form?" 1043 1043 msgstr "" 1044 1044 1045 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1 4981045 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1507 1046 1046 msgid "Contact Sub Type" 1047 1047 msgstr "" 1048 1048 1049 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 261049 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1535 1050 1050 msgid "Dedupe Rule" 1051 1051 msgstr "" 1052 1052 1053 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:154 01053 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1549 1054 1054 msgid "CiviCRM Default" 1055 1055 msgstr "" 1056 1056 1057 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 511057 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1560 1058 1058 msgid "Contact Entities" 1059 1059 msgstr "" 1060 1060 1061 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 711062 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:21 371063 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:22 391061 #: 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 1064 1064 #: includes/buddypress/cwps-bp-xprofile.php:219 1065 1065 msgid "Website" 1066 1066 msgstr "" 1067 1067 1068 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 721069 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:22 841070 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:24 711071 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:14 171072 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:14 541068 #: 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 1073 1073 #: includes/buddypress/cwps-bp-xprofile.php:217 1074 1074 msgid "Address" 1075 1075 msgstr "" 1076 1076 1077 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 731078 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2 5941079 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:272 01077 #: 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 1080 1080 #: includes/buddypress/cwps-bp-xprofile.php:218 1081 1081 msgid "Phone" 1082 1082 msgstr "" 1083 1083 1084 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 741085 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:27 651086 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2 8911084 #: 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 1087 1087 #: includes/acf/fields/cwps-acf-field-civicrm-im.php:478 1088 1088 msgid "Instant Messenger" 1089 1089 msgstr "" 1090 1090 1091 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 751092 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:33 151093 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 3991091 #: 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 1094 1094 #: includes/acf/classes/cwps-acf-civicrm-note.php:372 1095 1095 msgid "Note" 1096 1096 msgstr "" 1097 1097 1098 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 761099 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:35 641100 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:36 691098 #: 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 1101 1101 msgid "Tag" 1102 1102 msgstr "" 1103 1103 1104 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 771105 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:29 361106 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php: 29921107 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:309 01104 #: 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 1108 1108 msgid "Group" 1109 1109 msgstr "" 1110 1110 1111 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:15 831112 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:31 351113 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:327 01111 #: 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 1114 1114 msgid "Free Membership" 1115 1115 msgstr "" 1116 1116 1117 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:16 011117 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1610 1118 1118 msgid "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." 1119 1119 msgstr "" 1120 1120 1121 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:16 271121 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1636 1122 1122 msgid "Auto-fill with data from CiviCRM" 1123 1123 msgstr "" 1124 1124 1125 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:16 521125 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1661 1126 1126 msgid "Update auto-filled Contact" 1127 1127 msgstr "" 1128 1128 1129 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:16 551129 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:1664 1130 1130 msgid "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." 1131 1131 msgstr "" 1132 1132 1133 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:176 01134 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:18 071135 #: includes/acf/classes/cwps-acf-contact.php:14 181136 #: includes/acf/classes/cwps-acf-contact.php:161 21137 #: includes/acf/classes/cwps-acf-contact.php:178 11133 #: 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 1138 1138 #: includes/acf/classes/cwps-acf-user.php:1952 1139 1139 #: includes/buddypress/cwps-bp-civicrm-contact-field.php:260 … … 1141 1141 msgstr "" 1142 1142 1143 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:20 121143 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2021 1144 1144 msgid "Email Actions" 1145 1145 msgstr "" 1146 1146 1147 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:20 291147 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2038 1148 1148 msgid "Add Email action" 1149 1149 msgstr "" 1150 1150 1151 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:20 761151 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2085 1152 1152 msgid "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." 1153 1153 msgstr "" 1154 1154 1155 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:21 651155 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2174 1156 1156 msgid "Website Actions" 1157 1157 msgstr "" 1158 1158 1159 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:21 821159 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2191 1160 1160 msgid "Add Website action" 1161 1161 msgstr "" 1162 1162 1163 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:22 231163 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2232 1164 1164 msgid "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." 1165 1165 msgstr "" 1166 1166 1167 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:23 121167 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2321 1168 1168 msgid "Address Actions" 1169 1169 msgstr "" 1170 1170 1171 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:23 291171 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2338 1172 1172 msgid "Add Address action" 1173 1173 msgstr "" 1174 1174 1175 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:23 661175 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2375 1176 1176 msgid "Include empty Fields" 1177 1177 msgstr "" 1178 1178 1179 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:23 691179 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2378 1180 1180 msgid "Enable this to include empty Fields in the data that is sent to CiviCRM. This will cause the value to be cleared." 1181 1181 msgstr "" 1182 1182 1183 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2 3921184 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:24 371183 #: 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 1185 1185 #: includes/acf/classes/cwps-acf-address.php:319 1186 1186 #: includes/buddypress/cwps-bp-civicrm-address.php:579 … … 1188 1188 msgstr "" 1189 1189 1190 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:24 241190 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2433 1191 1191 msgid "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." 1192 1192 msgstr "" 1193 1193 1194 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:26 221194 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2631 1195 1195 msgid "Phone Actions" 1196 1196 msgstr "" 1197 1197 1198 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:26 391198 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2648 1199 1199 msgid "Add Phone action" 1200 1200 msgstr "" 1201 1201 1202 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:27 041202 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2713 1203 1203 msgid "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." 1204 1204 msgstr "" 1205 1205 1206 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2 7931206 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2802 1207 1207 msgid "Instant Messenger Actions" 1208 1208 msgstr "" 1209 1209 1210 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:281 01210 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2819 1211 1211 msgid "Add Instant Messenger action" 1212 1212 msgstr "" 1213 1213 1214 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:28 211214 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2830 1215 1215 msgid "Instant Messenger Type" 1216 1216 msgstr "" 1217 1217 1218 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:28 751218 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2884 1219 1219 msgid "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." 1220 1220 msgstr "" 1221 1221 1222 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:29 641222 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2973 1223 1223 msgid "Group Actions" 1224 1224 msgstr "" 1225 1225 1226 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:29 811226 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:2990 1227 1227 msgid "Add Group action" 1228 1228 msgstr "" 1229 1229 1230 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:30 161230 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3025 1231 1231 msgid "Add or Remove the Contact" 1232 1232 msgstr "" 1233 1233 1234 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:30 231234 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3032 1235 1235 msgid "Add to Group" 1236 1236 msgstr "" 1237 1237 1238 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:30 241238 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3033 1239 1239 msgid "Remove from Group" 1240 1240 msgstr "" 1241 1241 1242 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:30 381242 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3047 1243 1243 msgid "Enable double opt-in?" 1244 1244 msgstr "" 1245 1245 1246 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:30 731246 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3082 1247 1247 msgid "Always add or remove" 1248 1248 msgstr "" 1249 1249 1250 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:30 741250 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3083 1251 1251 msgid "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." 1252 1252 msgstr "" 1253 1253 1254 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:31 631254 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3172 1255 1255 msgid "Membership Actions" 1256 1256 msgstr "" 1257 1257 1258 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:318 01258 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3189 1259 1259 msgid "Add Membership action" 1260 1260 msgstr "" 1261 1261 1262 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 1911262 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3200 1263 1263 msgid "Add Free Membership" 1264 1264 msgstr "" 1265 1265 1266 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:32 191266 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3228 1267 1267 msgid "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." 1268 1268 msgstr "" 1269 1269 1270 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:33 431270 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3352 1271 1271 msgid "Note Actions" 1272 1272 msgstr "" 1273 1273 1274 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:336 01274 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3369 1275 1275 msgid "Add Note action" 1276 1276 msgstr "" 1277 1277 1278 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:338 01278 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3389 1279 1279 msgid "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." 1280 1280 msgstr "" 1281 1281 1282 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:35 111282 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3520 1283 1283 msgid "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." 1284 1284 msgstr "" 1285 1285 1286 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 5921286 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3601 1287 1287 msgid "Tag Actions" 1288 1288 msgstr "" 1289 1289 1290 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:36 091290 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3618 1291 1291 msgid "Add Tag action" 1292 1292 msgstr "" 1293 1293 1294 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:36 241294 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3633 1295 1295 msgid "Add Tag(s) to Contact" 1296 1296 msgstr "" 1297 1297 1298 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:36 531298 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3662 1299 1299 msgid "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." 1300 1300 msgstr "" 1301 1301 1302 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:37 421302 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3751 1303 1303 msgid "Relationship Actions" 1304 1304 msgstr "" 1305 1305 1306 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:376 01306 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3769 1307 1307 msgid "Add Relationship action" 1308 1308 msgstr "" 1309 1309 1310 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:377 01310 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3779 1311 1311 msgid "Related Contact" 1312 1312 msgstr "" 1313 1313 1314 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:37 731314 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3782 1315 1315 msgid "Is this Contact related to another Contact?" 1316 1316 msgstr "" 1317 1317 1318 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3 7921318 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3801 1319 1319 msgid "Not related" 1320 1320 msgstr "" 1321 1321 1322 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:38 061323 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:39 321322 #: 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 1324 1324 msgid "Relationship Fields" 1325 1325 msgstr "" 1326 1326 1327 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:38 281327 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3837 1328 1328 msgid "Relationship" 1329 1329 msgstr "" 1330 1330 1331 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:38 311331 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3840 1332 1332 msgid "Select the relationship this Contact has with the related Contact" 1333 1333 msgstr "" 1334 1334 1335 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:38 631335 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3872 1336 1336 msgid "Is Current Employee" 1337 1337 msgstr "" 1338 1338 1339 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:38 771340 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:390 01339 #: 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 1341 1341 msgid "Use an ACF \"True/False\" Field to choose a mapping for this Setting." 1342 1342 msgstr "" 1343 1343 1344 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:38 861344 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:3895 1345 1345 msgid "Is Current Employer" 1346 1346 msgstr "" 1347 1347 1348 1348 #. translators: %s The name of the Form Action 1349 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:42 561349 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-contact.php:4265 1350 1350 msgid "Not enough data to save a Contact in \"%s\"." 1351 1351 msgstr "" … … 1452 1452 msgstr "" 1453 1453 1454 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php: 3921454 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:402 1455 1455 msgid "CiviCRM Event action" 1456 1456 msgstr "" 1457 1457 1458 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php: 3951458 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:405 1459 1459 #: includes/acf/fields/cwps-acf-field-civicrm-event-group.php:332 1460 1460 msgid "CiviCRM Event" 1461 1461 msgstr "" 1462 1462 1463 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:8 671463 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:877 1464 1464 msgid "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." 1465 1465 msgstr "" 1466 1466 1467 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:9 341468 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:11 111467 #: 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 1469 1469 msgid "Event Settings" 1470 1470 msgstr "" 1471 1471 1472 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:9 631472 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:973 1473 1473 #: includes/acf/classes/cwps-acf-event-field.php:879 1474 1474 msgid "Disabled" 1475 1475 msgstr "" 1476 1476 1477 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:9 731477 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:983 1478 1478 msgid "Select" 1479 1479 msgstr "" 1480 1480 1481 1481 #. translators: %s: The name of the Field 1482 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:10 001482 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1010 1483 1483 msgid "Use one Field to identify the %s. Defaults to logged-in Contact." 1484 1484 msgstr "" 1485 1485 1486 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:11 481487 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:11 751486 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1158 1487 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1185 1488 1488 #: includes/acf/classes/cwps-acf-event.php:869 1489 1489 msgid "Event Fields" 1490 1490 msgstr "" 1491 1491 1492 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:13 401492 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1350 1493 1493 msgid "Event Location" 1494 1494 msgstr "" 1495 1495 1496 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:13 621496 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1372 1497 1497 msgid "Show Location" 1498 1498 msgstr "" 1499 1499 1500 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:13 631500 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1373 1501 1501 msgid "Disable to make the Location available to Event Administrators only." 1502 1502 msgstr "" 1503 1503 1504 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:13 781504 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1388 1505 1505 msgid "Existing Location" 1506 1506 msgstr "" 1507 1507 1508 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:13 791508 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1389 1509 1509 msgid "You cannot map a new Location if you choose an existing one." 1510 1510 msgstr "" 1511 1511 1512 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1 3921512 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1402 1513 1513 msgid "New Location" 1514 1514 msgstr "" 1515 1515 1516 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:14 461516 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1456 1517 1517 msgid "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." 1518 1518 msgstr "" 1519 1519 1520 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:14 791521 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:15 151520 #: 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 1522 1522 msgid "Address Custom Fields" 1523 1523 msgstr "" 1524 1524 1525 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:15 391525 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1549 1526 1526 msgid "Email Addresses" 1527 1527 msgstr "" 1528 1528 1529 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:15 761529 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1586 1530 1530 msgid "Add Email" 1531 1531 msgstr "" 1532 1532 1533 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1 5931533 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1603 1534 1534 msgid "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." 1535 1535 msgstr "" 1536 1536 1537 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:16 071537 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1617 1538 1538 msgid "Emails" 1539 1539 msgstr "" 1540 1540 1541 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:16 291542 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:17 141541 #: 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 1543 1543 msgid "Phone Numbers" 1544 1544 msgstr "" 1545 1545 1546 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:16 661546 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1676 1547 1547 msgid "Add Phone" 1548 1548 msgstr "" 1549 1549 1550 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:17 001550 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1710 1551 1551 msgid "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." 1552 1552 msgstr "" 1553 1553 1554 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:17 441554 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1754 1555 1555 #: includes/acf/fields/cwps-acf-field-civicrm-im.php:510 1556 1556 #: includes/acf/fields/cwps-acf-field-civicrm-phone.php:567 … … 1558 1558 msgstr "" 1559 1559 1560 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:17 811561 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:22 141560 #: 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 1562 1562 msgid "Event Registration" 1563 1563 msgstr "" 1564 1564 1565 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 031565 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1813 1566 1566 msgid "Allow Online Registration" 1567 1567 msgstr "" 1568 1568 1569 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 181569 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1828 1570 1570 msgid "Online Registration Configuration" 1571 1571 msgstr "" 1572 1572 1573 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 481574 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1 8941573 #: 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 1575 1575 msgid "Enable Components" 1576 1576 msgstr "" 1577 1577 1578 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 681578 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1878 1579 1579 msgid "Enable Confirmation Screen" 1580 1580 msgstr "" 1581 1581 1582 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:18 811582 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:1891 1583 1583 msgid "Send Confirmation Email" 1584 1584 msgstr "" 1585 1585 1586 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:19 651587 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:20 101586 #: 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 1588 1588 msgid "Registration Screen" 1589 1589 msgstr "" 1590 1590 1591 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php: 19901591 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2000 1592 1592 #: includes/acf/classes/cwps-acf-event.php:937 1593 1593 msgid "Include Profile (top of page)" 1594 1594 msgstr "" 1595 1595 1596 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:20 001596 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2010 1597 1597 #: includes/acf/classes/cwps-acf-event.php:939 1598 1598 msgid "Include Profile (bottom of page)" 1599 1599 msgstr "" 1600 1600 1601 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:20 321602 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:20 671601 #: 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 1603 1603 msgid "Confirmation Screen" 1604 1604 msgstr "" 1605 1605 1606 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2 0971607 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:21 221606 #: 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 1608 1608 msgid "Thank You Screen" 1609 1609 msgstr "" 1610 1610 1611 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:21 441612 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:21 811611 #: 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 1613 1613 msgid "Confirmation Email" 1614 1614 msgstr "" 1615 1615 1616 1616 #. translators: %s The name of the Form Action 1617 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2 3911617 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2401 1618 1618 msgid "An Event Type ID is required to create an Event in \"%s\"." 1619 1619 msgstr "" 1620 1620 1621 1621 #. translators: %s The name of the Form Action 1622 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:24 041622 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2414 1623 1623 msgid "A title is required to create an Event in \"%s\"." 1624 1624 msgstr "" 1625 1625 1626 1626 #. translators: %s The name of the Form Action 1627 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:24 171627 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2427 1628 1628 msgid "A start date is required to create an Event in \"%s\"." 1629 1629 msgstr "" 1630 1630 1631 1631 #. translators: %s The name of the Form Action 1632 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:29 851632 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:2995 1633 1633 msgid "A Street Address is required in \"%s\"." 1634 1634 msgstr "" 1635 1635 1636 1636 #. translators: %s The name of the Form Action 1637 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:31 731637 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3183 1638 1638 msgid "An invalid Email was found in \"%s\"." 1639 1639 msgstr "" 1640 1640 1641 1641 #. translators: %s The name of the Form Action 1642 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:33 401642 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3350 1643 1643 msgid "A valid Phone Number is required in \"%s\"." 1644 1644 msgstr "" 1645 1645 1646 1646 #. translators: %s The name of the Form Action 1647 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:35 041647 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3514 1648 1648 msgid "A Profile is required to enable Online Registration in \"%s\"." 1649 1649 msgstr "" 1650 1650 1651 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:36 561651 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3666 1652 1652 msgid "Register Now" 1653 1653 msgstr "" 1654 1654 1655 1655 #. translators: %s The name of the Form Action 1656 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3 7941656 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3804 1657 1657 msgid "A \"From Name\" is required to send a Confirmation Email in \"%s\"." 1658 1658 msgstr "" 1659 1659 1660 1660 #. translators: %s The name of the Form Action 1661 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:38 071661 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-event.php:3817 1662 1662 msgid "A \"From Email\" is required to send a Confirmation Email in \"%s\"." 1663 1663 msgstr "" 1664 1664 1665 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:2 881665 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:297 1666 1666 msgid "CiviCRM Participant action" 1667 1667 msgstr "" 1668 1668 1669 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php: 2911669 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:300 1670 1670 msgid "CiviCRM Participant" 1671 1671 msgstr "" 1672 1672 1673 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:6 161673 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:625 1674 1674 msgid "Participant Role" 1675 1675 msgstr "" 1676 1676 1677 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:6 561677 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:665 1678 1678 msgid "Add when full?" 1679 1679 msgstr "" 1680 1680 1681 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:6 591681 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:668 1682 1682 msgid "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." 1683 1683 msgstr "" 1684 1684 1685 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:6 791685 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:688 1686 1686 msgid "Email receipt?" 1687 1687 msgstr "" 1688 1688 1689 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:7 021689 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:711 1690 1690 msgid "Participant Status" 1691 1691 msgstr "" 1692 1692 1693 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:7 681693 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:777 1694 1694 msgid "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." 1695 1695 msgstr "" 1696 1696 1697 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:101 01698 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:115 01697 #: 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 1699 1699 msgid "Participant References" 1700 1700 msgstr "" 1701 1701 1702 1702 #. translators: %s: The Field title 1703 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:10 371703 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1046 1704 1704 msgid "If the Participant is not the Submitter, use one Field to identify the %s." 1705 1705 msgstr "" 1706 1706 1707 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:105 01707 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1059 1708 1708 msgid "CiviCRM Participant Action" 1709 1709 msgstr "" 1710 1710 1711 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:10 531711 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1062 1712 1712 msgid "Select a Participant Action in this Form." 1713 1713 msgstr "" 1714 1714 1715 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:10 851715 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1094 1716 1716 msgid "CiviCRM Participant ID" 1717 1717 msgstr "" 1718 1718 1719 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:10 881719 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1097 1720 1720 msgid "Select a CiviCRM Participant ID from the database." 1721 1721 msgstr "" 1722 1722 1723 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:11 231723 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1132 1724 1724 msgid "Custom Participant Reference" 1725 1725 msgstr "" 1726 1726 1727 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:11 251727 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1134 1728 1728 msgid "Define a custom Participant Reference." 1729 1729 msgstr "" 1730 1730 1731 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:11 871732 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:13 111731 #: 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 1733 1733 msgid "Event References" 1734 1734 msgstr "" 1735 1735 1736 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:123 01736 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1239 1737 1737 msgid "CiviCRM Event ID" 1738 1738 msgstr "" 1739 1739 1740 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:12 331740 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1242 1741 1741 msgid "Select a CiviCRM Event ID from the database." 1742 1742 msgstr "" 1743 1743 1744 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:12 621744 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1271 1745 1745 msgid "Custom Event Reference" 1746 1746 msgstr "" 1747 1747 1748 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:12 641748 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1273 1749 1749 msgid "Define a custom Event Reference." 1750 1750 msgstr "" 1751 1751 1752 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:12 831752 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1292 1753 1753 #: includes/acf/fields/cwps-acf-field-civicrm-event-group.php:372 1754 1754 msgid "Event Type" 1755 1755 msgstr "" 1756 1756 1757 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:12 861757 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1295 1758 1758 msgid "Choose the Event Type to show its Custom Fields below." 1759 1759 msgstr "" 1760 1760 1761 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:13 481762 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:13 751761 #: 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 1763 1763 #: includes/acf/classes/cwps-acf-participant.php:1166 1764 1764 #: includes/acf/classes/cwps-acf-participant.php:1295 … … 1768 1768 1769 1769 #. translators: %s The name of the Form Action 1770 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:18 121770 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1821 1771 1771 msgid "An Event ID is required to create a Participant in \"%s\"." 1772 1772 msgstr "" 1773 1773 1774 1774 #. translators: %s The name of the Form Action 1775 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:18 251775 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1834 1776 1776 msgid "A Participant Role ID is required to create a Participant in \"%s\"." 1777 1777 msgstr "" 1778 1778 1779 1779 #. translators: %s The name of the Form Action 1780 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:18 571780 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1866 1781 1781 msgid "Could not check if the Event is full in \"%s\"." 1782 1782 msgstr "" 1783 1783 1784 1784 #. translators: %s The title of the Event 1785 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:18 751785 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1884 1786 1786 msgid "Cannot add Participant because \"%s\" is full." 1787 1787 msgstr "" 1788 1788 1789 1789 #. translators: %s The name of the Form Action 1790 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:18 821790 #: includes/acf/acfe/form-actions/cwps-acf-acfe-form-action-participant.php:1891 1791 1791 msgid "Cannot add Participant because the Event in \"%s\" is full." 1792 1792 msgstr "" … … 1885 1885 #: includes/acf/classes/cwps-acf-activity.php:969 1886 1886 #: includes/acf/classes/cwps-acf-case.php:1192 1887 #: includes/acf/classes/cwps-acf-contact.php:1 0991887 #: includes/acf/classes/cwps-acf-contact.php:1105 1888 1888 msgid "Name not set" 1889 1889 msgstr "" … … 2099 2099 msgstr "" 2100 2100 2101 #: includes/acf/classes/cwps-acf-contact.php:18 352101 #: includes/acf/classes/cwps-acf-contact.php:1841 2102 2102 msgid "Contact Types" 2103 2103 msgstr "" 2104 2104 2105 #: includes/acf/classes/cwps-acf-contact.php:20 592105 #: includes/acf/classes/cwps-acf-contact.php:2065 2106 2106 #: includes/acf/classes/cwps-acf-user.php:2322 2107 2107 #: includes/buddypress/cwps-bp-xprofile.php:216 … … 2512 2512 msgstr "" 2513 2513 2514 #: includes/acf/classes/cwps-acf-post-tax.php:62 12514 #: includes/acf/classes/cwps-acf-post-tax.php:622 2515 2515 msgid "Could not update term_meta" 2516 2516 msgstr "" … … 2534 2534 msgstr "" 2535 2535 2536 #: includes/acf/classes/cwps-acf-relationship.php:18 682536 #: includes/acf/classes/cwps-acf-relationship.php:1871 2537 2537 #: includes/acf/fields/cwps-acf-field-civicrm-relationship.php:155 2538 2538 msgid "CiviCRM Relationship" 2539 2539 msgstr "" 2540 2540 2541 #: includes/acf/classes/cwps-acf-relationship.php:187 12541 #: includes/acf/classes/cwps-acf-relationship.php:1874 2542 2542 msgid "Choose the CiviCRM Relationship that this ACF Field should sync with. (Optional)" 2543 2543 msgstr "" -
civicrm-wp-profile-sync/trunk/readme.txt
r3071446 r3088271 2 2 Contributors: needle, cuny-academic-commons, kcristiano, tadpolecc 3 3 Donate link: https://www.paypal.me/interactivist 4 Tags: civicrm, user, buddypress, acf, profile, xprofile, sync4 Tags: civicrm, buddypress, acf, profile, sync 5 5 Requires at least: 4.9 6 6 Tested up to: 6.5 7 7 Requires PHP: 7.1 8 Stable tag: 0.6. 78 Stable tag: 0.6.8 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 = 0.6.8 = 90 91 * Fixes Custom Field sync from CiviCRM to ACF 92 * Improves PHP8.1+ compatibility 93 89 94 = 0.6.7 = 90 95
Note: See TracChangeset
for help on using the changeset viewer.