Changeset 2064123
- Timestamp:
- 04/06/2019 06:25:34 AM (7 years ago)
- Location:
- advanced-elementor
- Files:
-
- 6 deleted
- 6 edited
-
assets/screenshot-2.png (modified) (previous)
-
assets/screenshot-3.png (modified) (previous)
-
assets/screenshot-4.png (deleted)
-
assets/screenshot-5.png (deleted)
-
assets/screenshot-6.png (deleted)
-
assets/screenshot-7.png (deleted)
-
assets/screenshot-8.png (deleted)
-
assets/screenshot-9.png (deleted)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/functions.php (modified) (2 diffs)
-
trunk/includes/widgets/acf-form.php (modified) (10 diffs)
-
trunk/languages/awelementor.pot (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
advanced-elementor/trunk/README.txt
r2063417 r2064123 4 4 Requires at least: 4.0 5 5 Tested up to: 5.1.1 6 Stable tag: 1.0. 66 Stable tag: 1.0.7 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 53 53 54 54 1. Advanced Elementor Widgets in Elementor Page Builder 55 2. ACF Form: Elementor Posting Content Settings 56 3. ACF Form: Elementor Form Content Settings 57 4. ACF Form: Elementor Field Content Settings 58 5. ACF Form: Elementor Field Style Settings 59 6. ACF Form: Elementor Input Style Settings 60 7. ACF Form: Elementor Separator Style Settings 61 8. ACF Form: Elementor Submit Button Style Settings 62 9. ACF Form: Elementor Spinner Style Settings 55 2. ACF Form: Elementor Content Settings 56 3. ACF Form: Elementor Style Settings 63 57 64 58 == Changelog == … … 95 89 * ACF Form: Added setting to adjust submit button width. 96 90 * ACF Form: Added settings to adjust submit button background color, border style, border color, border radius and typography in normal and hover mode. 91 92 = 1.0.7 = 93 * ACF Form: Added a lot more input field style settings. 94 * ACF Form: Added ability to separately configure vertical and horizontal inner borders. 95 * ACF Form: Removed confusing and unstable "Gap" separator slider setting. -
advanced-elementor/trunk/functions.php
r2063417 r2064123 11 11 * Plugin URI: https://wordpress.org/plugins/awelementor/ 12 12 * Description: Advanced Widgets for Elementor Page Builder. 13 * Version: 1.0. 613 * Version: 1.0.7 14 14 * Author: Mae Company 15 15 * Author URI: https://mae.company/ … … 27 27 * Current plugin version. 28 28 */ 29 define( 'AWELEMENTOR_VERSION', '1.0. 6' );29 define( 'AWELEMENTOR_VERSION', '1.0.7' ); 30 30 31 31 /** -
advanced-elementor/trunk/includes/widgets/acf-form.php
r2063417 r2064123 7 7 use Elementor\Controls_Manager; 8 8 use Elementor\Group_Control_Typography; 9 use Elementor\Group_Control_Border; 9 10 use Elementor\Scheme_Color; 10 11 use Elementor\Scheme_Typography; … … 620 621 621 622 $this->add_control('field_description_label', [ 622 'label' => __( 'Description / Instructions', 'awelementor' ),623 'label' => __( 'Description (Instructions)', 'awelementor' ), 623 624 'type' => Controls_Manager::HEADING, 624 625 'separator' => 'before', … … 650 651 $this->end_controls_section(); 651 652 653 $in_input_selectors = [ 654 '{{WRAPPER}} .acf-field input[type="text"]', 655 '{{WRAPPER}} .acf-field input[type="password"]', 656 '{{WRAPPER}} .acf-field input[type="number"]', 657 '{{WRAPPER}} .acf-field input[type="search"]:not(.select2-search__field)', 658 '{{WRAPPER}} .acf-field input[type="email"]', 659 '{{WRAPPER}} .acf-field input[type="url"]', 660 '{{WRAPPER}} .acf-field select', 661 // extra 662 '{{WRAPPER}} .acf-field .select2 > .selection > .select2-selection', 663 //'{{WRAPPER}} .acf-field .select2 .select2-selection__rendered ui-sortable', // does not work 664 '{{WRAPPER}} .acf-field textarea', 665 ]; 666 667 $border_input_selectors = [ 668 '{{WRAPPER}} .acf-field input[type="text"]', 669 '{{WRAPPER}} .acf-field input[type="password"]', 670 '{{WRAPPER}} .acf-field input[type="number"]', 671 '{{WRAPPER}} .acf-field input[type="search"]:not(.select2-search__field)', 672 '{{WRAPPER}} .acf-field input[type="email"]', 673 '{{WRAPPER}} .acf-field input[type="url"]', 674 '{{WRAPPER}} .acf-field select', 675 676 // WP Editor TextArea 677 '{{WRAPPER}} .wp-editor-container', 678 // Select2 679 '{{WRAPPER}} .select2-container--default .select2-selection--multiple', 680 ]; 681 //$input_selector = implode(',', $input_selectors); 682 652 683 $this->start_controls_section('section_input_style', [ 653 684 'label' => __('Input', 'awelementor'), … … 657 688 // 'label' => __( 'Text', 'awelementor' ), 658 689 // ]); 690 $this->add_responsive_control('input_padding', [ 691 'label' => __( 'Text Padding', 'awelementor' ), 692 'type' => Controls_Manager::DIMENSIONS, 693 'size_units' => [ 'px', '%' ], 694 'selectors' => [ 695 implode(',', [ 696 '{{WRAPPER}} .acf-field input[type="text"]', 697 '{{WRAPPER}} .acf-field input[type="password"]', 698 '{{WRAPPER}} .acf-field input[type="number"]', 699 '{{WRAPPER}} .acf-field input[type="search"]:not(.select2-search__field)', 700 '{{WRAPPER}} .acf-field input[type="email"]', 701 '{{WRAPPER}} .acf-field input[type="url"]', 702 '{{WRAPPER}} .acf-field textarea', 703 '{{WRAPPER}} .acf-field .select2-selection__rendered', 704 ]) => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 705 ], 706 ]); 707 $this->add_group_control(Group_Control_Typography::get_type(), [ 708 'name' => 'input_typography', 709 'scheme' => Scheme_Typography::TYPOGRAPHY_1, 710 'selector' => implode(',', [ 711 '{{WRAPPER}} .acf-field input[type="text"]', 712 '{{WRAPPER}} .acf-field input[type="password"]', 713 '{{WRAPPER}} .acf-field input[type="number"]', 714 '{{WRAPPER}} .acf-field input[type="search"]', 715 '{{WRAPPER}} .acf-field input[type="email"]', 716 '{{WRAPPER}} .acf-field input[type="url"]', 717 '{{WRAPPER}} .acf-field select', 718 '{{WRAPPER}} .acf-field textarea', 719 ]), 720 ]); 721 $this->add_control('input_text_color', [ 722 'label' => __( 'Text Color', 'awelementor' ), 723 'type' => Controls_Manager::COLOR, 724 'selectors' => [ 725 implode(',', [ 726 '{{WRAPPER}} .acf-field input[type="text"]', 727 '{{WRAPPER}} .acf-field input[type="password"]', 728 '{{WRAPPER}} .acf-field input[type="number"]', 729 '{{WRAPPER}} .acf-field input[type="search"]', 730 '{{WRAPPER}} .acf-field input[type="email"]', 731 '{{WRAPPER}} .acf-field input[type="url"]', 732 '{{WRAPPER}} .acf-field select', 733 '{{WRAPPER}} .acf-field textarea', 734 ]) => 'color: {{COLOR}};', 735 ], 736 ]); 737 $this->add_control('input_background_color', [ 738 'label' => __( 'Background Color', 'awelementor' ), 739 'type' => Controls_Manager::COLOR, 740 'selectors' => [ 741 implode(',', $in_input_selectors) => 'background-color: {{VALUE}};', 742 ], 743 ]); 744 $this->add_control('input_min_height', [ 745 'label' => __( 'Min Height', 'awelementor' ), 746 'type' => Controls_Manager::SLIDER, 747 'default' => [ 748 'size' => 47, 749 ], 750 'range' => [ 751 'px' => [ 752 'min' => 1, 753 'max' => 100, 754 ], 755 ], 756 'selectors' => [ 757 implode(',', $in_input_selectors) => 'min-height: {{SIZE}}{{UNIT}};', 758 ], 759 ]); 760 761 $this->add_control('input_border_heading', [ 762 'label' => __( 'Border', 'awelementor' ), 763 'type' => Controls_Manager::HEADING, 764 'separator' => 'before', 765 ]); 766 $this->add_group_control(Group_Control_Border::get_type(), [ 767 'name' => 'input_border', 768 'selector' => implode(',', $border_input_selectors), 769 // Focused: '.select2-container--default.select2-container--focus .select2-selection--multiple' 770 ]); 771 //$input_selector = '{{WRAPPER}} .acf-field input[type="text"], {{WRAPPER}} .acf-field input[type="password"], {{WRAPPER}} .acf-field input[type="number"], {{WRAPPER}} .acf-field input[type="search"], {{WRAPPER}} .acf-field input[type="email"], {{WRAPPER}} .acf-field input[type="url"], {{WRAPPER}} .acf-field textarea, {{WRAPPER}} .acf-field select'; 659 772 $this->add_control('input_border_radius', [ 660 773 'label' => __( 'Border Radius', 'awelementor' ), … … 662 775 'size_units' => [ 'px', '%' ], 663 776 'selectors' => [ 664 '{{WRAPPER}} .acf-field input[type="text"], {{WRAPPER}} .acf-field input[type="password"], {{WRAPPER}} .acf-field input[type="number"], {{WRAPPER}} .acf-field input[type="search"], {{WRAPPER}} .acf-field input[type="email"], {{WRAPPER}} .acf-field input[type="url"], {{WRAPPER}} .acf-field textarea, {{WRAPPER}} .acf-field select' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 777 implode(',', $border_input_selectors) => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 778 '{{WRAPPER}} .acf-field textarea.wp-editor-area' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 665 779 ], 666 780 ]); … … 672 786 'tab' => Controls_Manager::TAB_STYLE, 673 787 ]); 674 $this->add_responsive_control('field_separator_gap', [ 675 'label' => __( 'Gap', 'awelementor' ), 788 /* 789 // We will not do gaps because they introduce all kinds of complexity. 790 // The desired functionality can be better achieved using padding/margins. 791 $this->add_responsive_control('field_separator_gap_horizontal', [ 792 'label' => __( 'Horizontal Gap', 'awelementor' ), 676 793 'type' => Controls_Manager::SLIDER, 677 794 'range' => [ … … 682 799 ], 683 800 'selectors' => [ 684 '{{WRAPPER}} .acf-form > .acf-fields > .acf-field:not(:first-child)' => 'padding-top: {{SIZE}}{{UNIT}}; padding-bottom: {{SIZE}}{{UNIT}};', 685 ], 686 'separator' => 'after', 687 ]); 688 $this->add_control('field_separator_color', [ 689 'label' => __( 'Color', 'awelementor' ), 690 'type' => Controls_Manager::COLOR, 691 'selectors' => [ 692 '{{WRAPPER}} .acf-fields > .acf-field' => 'border-top-color: {{COLOR}};', 693 ], 694 ] 695 ); 696 $this->add_control('field_separator_style', [ 801 // This is the only way to do it for all fields without messing up the alignments in any way 802 '{{WRAPPER}} .acf-form > .acf-fields > .acf-field:not(:last-child)' => 'padding-bottom: {{SIZE}}{{UNIT}};', 803 ], 804 ]); 805 $this->add_responsive_control('field_separator_gap_vertical', [ 806 'label' => __( 'Vertical Gap', 'awelementor' ), 807 'type' => Controls_Manager::SLIDER, 808 'range' => [ 809 'px' => [ 810 'min' => 0, 811 'max' => 500, 812 ], 813 ], 814 'selectors' => [ 815 '{{WRAPPER}} .acf-form > .acf-fields > .acf-field[data-width] + .acf-field[data-width]:not([data-width]:last-child)' => 'padding-right: {{SIZE}}{{UNIT}};', 816 ], 817 ]); 818 */ 819 820 // ACF-drawn inner borders 821 $this->add_control('field_separator_heading_h', [ 822 'label' => __( 'Horizontal', 'awelementor' ), 823 'type' => Controls_Manager::HEADING, 824 ]); 825 $this->add_control('field_separator_color_h', [ 826 'label' => __( 'Color', 'awelementor' ), 827 'type' => Controls_Manager::COLOR, 828 'selectors' => [ 829 '{{WRAPPER}} .acf-field:not(:first-child)' => 'border-top-color: {{COLOR}};', 830 ], 831 ]); 832 $this->add_control('field_separator_style_h', [ 697 833 'type' => 'awe-border-style', 698 834 'selectors' => [ 699 '{{WRAPPER}} .acf-field s > .acf-field:not(:first-child)' => 'border-top-style: {{VALUE}};',700 ], 701 ]); 702 $this->add_control('field_separator_width ', [835 '{{WRAPPER}} .acf-field:not(:first-child)' => 'border-top-style: {{VALUE}};', 836 ], 837 ]); 838 $this->add_control('field_separator_width_h', [ 703 839 'label' => __( 'Width', 'awelementor' ), 704 840 'type' => Controls_Manager::SLIDER, … … 713 849 ], 714 850 'selectors' => [ 715 '{{WRAPPER}} .acf-fields > .acf-field:not(:first-child)' => 'border-top-width: {{SIZE}}{{UNIT}};', 851 '{{WRAPPER}} .acf-field:not(:first-child)' => 'border-top-width: {{SIZE}}{{UNIT}};', 852 ], 853 ]); 854 $this->add_control('field_separator_heading_v', [ 855 'label' => __( 'Vertical', 'awelementor' ), 856 'type' => Controls_Manager::HEADING, 857 'separator' => 'before', 858 ]); 859 $this->add_control('field_separator_color_v', [ 860 'label' => __('Color', 'awelementor'), 861 'type' => Controls_Manager::COLOR, 862 'selectors' => [ 863 '{{WRAPPER}} .acf-field[data-width] + .acf-field[data-width]' => 'border-left-color: {{COLOR}};', 864 ], 865 ]); 866 $this->add_control('field_separator_style_v', [ 867 'type' => 'awe-border-style', 868 'selectors' => [ 869 '{{WRAPPER}} .acf-field[data-width] + .acf-field[data-width]' => 'border-left-style: {{VALUE}};', 870 ], 871 ]); 872 $this->add_control('field_separator_width_v', [ 873 'label' => __('Width', 'awelementor'), 874 'type' => Controls_Manager::SLIDER, 875 'default' => [ 876 'size' => 1, 877 ], 878 'range' => [ 879 'px' => [ 880 'min' => 0, 881 'max' => 100, 882 ], 883 ], 884 'selectors' => [ 885 '{{WRAPPER}} .acf-field[data-width] + .acf-field[data-width]' => 'border-left-width: {{SIZE}}{{UNIT}};', 716 886 ], 717 887 ]); … … 740 910 ], 741 911 ]); 742 $this->add_control('submit_button_border_style', [ 743 'type' => 'awe-border-style', 744 'selectors' => [ 745 '{{WRAPPER}} .acf-form-submit > .acf-button' => 'border-style: {{VALUE}};', 746 ], 747 ]); 748 $this->add_control('submit_button_border_color', [ 749 'label' => __( 'Border Color', 'awelementor' ), 750 'type' => Controls_Manager::COLOR, 751 'selectors' => [ 752 '{{WRAPPER}} .acf-form-submit > .acf-button' => 'border-color: {{VALUE}};', 753 ], 754 ]); 755 $this->add_control('submit_button_border_width', [ 756 'label' => __( 'Border Width', 'awelementor' ), 757 'type' => Controls_Manager::DIMENSIONS, 758 'size_units' => [ 'px' ], 759 'selectors' => [ 760 '{{WRAPPER}} .acf-form-submit > .acf-button' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 761 ], 912 $this->add_group_control(Group_Control_Border::get_type(), [ 913 'name' => 'submit_button_border', 914 'selector' => '{{WRAPPER}} .acf-form-submit > .acf-button', 762 915 ]); 763 916 $this->add_control('submit_button_border_radius', [ … … 786 939 ], 787 940 ]); 788 $this->add_control('submit_button_border_style_hover', [ 789 'type' => 'awe-border-style', 790 'selectors' => [ 791 '{{WRAPPER}} .acf-form-submit > .acf-button:hover' => 'border-style: {{VALUE}};', 792 ], 793 ]); 794 $this->add_control('submit_button_border_color_hover', [ 795 'label' => __( 'Border Color', 'awelementor' ), 796 'type' => Controls_Manager::COLOR, 797 'selectors' => [ 798 '{{WRAPPER}} .acf-form-submit > .acf-button:hover' => 'border-color: {{VALUE}};', 799 ], 800 ]); 801 $this->add_control('submit_button_border_width_hover', [ 802 'label' => __( 'Border Width', 'awelementor' ), 803 'type' => Controls_Manager::DIMENSIONS, 804 'size_units' => [ 'px' ], 805 'selectors' => [ 806 '{{WRAPPER}} .acf-form-submit > .acf-button:hover' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 807 ], 941 $this->add_group_control(Group_Control_Border::get_type(), [ 942 'name' => 'submit_button_border_hover', 943 'selector' => '{{WRAPPER}} .acf-form-submit > .acf-button:hover', 808 944 ]); 809 945 $this->add_control('submit_button_border_radius_hover', [ -
advanced-elementor/trunk/languages/awelementor.pot
r2063417 r2064123 4 4 "Project-Id-Version: Advanced Widgets for Elementor\n" 5 5 "Report-Msgid-Bugs-To: https://mae.company/contact\n" 6 "POT-Creation-Date: 2019-04-0 5 14:23+0900\n"6 "POT-Creation-Date: 2019-04-06 15:24+0900\n" 7 7 "PO-Revision-Date: 2015-06-11 13:00+1000\n" 8 8 "Last-Translator: Mae Company <wordpress@mae.company>\n" … … 57 57 msgstr "" 58 58 59 #: includes/controls/awe-width.php:43 includes/widgets/acf-form.php:54 760 #: includes/widgets/acf-form.php:63 159 #: includes/controls/awe-width.php:43 includes/widgets/acf-form.php:548 60 #: includes/widgets/acf-form.php:632 61 61 msgid "Default" 62 62 msgstr "" 63 63 64 #: includes/widgets/acf-form.php:3 364 #: includes/widgets/acf-form.php:34 65 65 msgid "ACF Form" 66 66 msgstr "" 67 67 68 #: includes/widgets/acf-form.php:7 768 #: includes/widgets/acf-form.php:78 69 69 msgid "Posting" 70 70 msgstr "" 71 71 72 #: includes/widgets/acf-form.php:8 4 includes/widgets/acf-form.php:19772 #: includes/widgets/acf-form.php:85 includes/widgets/acf-form.php:198 73 73 msgid "New Post" 74 74 msgstr "" 75 75 76 #: includes/widgets/acf-form.php:8 7 includes/widgets/acf-form.php:12676 #: includes/widgets/acf-form.php:88 includes/widgets/acf-form.php:127 77 77 msgid "No" 78 78 msgstr "" 79 79 80 #: includes/widgets/acf-form.php:8 8 includes/widgets/acf-form.php:12780 #: includes/widgets/acf-form.php:89 includes/widgets/acf-form.php:128 81 81 msgid "Yes" 82 82 msgstr "" 83 83 84 #: includes/widgets/acf-form.php:9 484 #: includes/widgets/acf-form.php:95 85 85 msgid "Post ID" 86 86 msgstr "" 87 87 88 #: includes/widgets/acf-form.php:10 888 #: includes/widgets/acf-form.php:109 89 89 msgid "KSES Sanitize" 90 msgstr ""91 92 #: includes/widgets/acf-form.php:111 includes/widgets/acf-form.php:14693 #: includes/widgets/acf-form.php:310 includes/widgets/acf-form.php:36694 #: includes/widgets/acf-form.php:386 includes/widgets/acf-form.php:43495 #: includes/widgets/acf-form.php:873 includes/widgets/acf-form.php:90896 msgid "Off"97 90 msgstr "" 98 91 … … 100 93 #: includes/widgets/acf-form.php:311 includes/widgets/acf-form.php:367 101 94 #: includes/widgets/acf-form.php:387 includes/widgets/acf-form.php:435 102 #: includes/widgets/acf-form.php:874 includes/widgets/acf-form.php:909 95 #: includes/widgets/acf-form.php:1009 includes/widgets/acf-form.php:1044 96 msgid "Off" 97 msgstr "" 98 99 #: includes/widgets/acf-form.php:113 includes/widgets/acf-form.php:148 100 #: includes/widgets/acf-form.php:312 includes/widgets/acf-form.php:368 101 #: includes/widgets/acf-form.php:388 includes/widgets/acf-form.php:436 102 #: includes/widgets/acf-form.php:1010 includes/widgets/acf-form.php:1045 103 103 msgid "On" 104 104 msgstr "" 105 105 106 #: includes/widgets/acf-form.php:11 7 includes/widgets/acf-form.php:132106 #: includes/widgets/acf-form.php:118 includes/widgets/acf-form.php:133 107 107 msgid "Updated Message" 108 108 msgstr "" 109 109 110 #: includes/widgets/acf-form.php:12 3110 #: includes/widgets/acf-form.php:124 111 111 msgid "Enabled" 112 112 msgstr "" 113 113 114 #: includes/widgets/acf-form.php:13 4 includes/widgets/acf-form.php:135114 #: includes/widgets/acf-form.php:135 includes/widgets/acf-form.php:136 115 115 msgid "Post updated" 116 116 msgstr "" 117 117 118 #: includes/widgets/acf-form.php:14 3 includes/widgets/acf-form.php:870119 #: includes/widgets/acf-form.php: 905118 #: includes/widgets/acf-form.php:144 includes/widgets/acf-form.php:1006 119 #: includes/widgets/acf-form.php:1041 120 120 msgid "Custom HTML" 121 121 msgstr "" 122 122 123 #: includes/widgets/acf-form.php:15 5123 #: includes/widgets/acf-form.php:156 124 124 msgid "Custom Updated Message HTML" 125 125 msgstr "" 126 126 127 #: includes/widgets/acf-form.php:17 3127 #: includes/widgets/acf-form.php:174 128 128 msgid "Return URL" 129 129 msgstr "" 130 130 131 #: includes/widgets/acf-form.php:18 3131 #: includes/widgets/acf-form.php:184 132 132 msgid "" 133 133 "The URL to be redirected to after the form is submit. Defaults to the " … … 139 139 msgstr "" 140 140 141 #: includes/widgets/acf-form.php:20 5includes/widgets/advanced-posts.php:104141 #: includes/widgets/acf-form.php:206 includes/widgets/advanced-posts.php:104 142 142 msgid "Post Type" 143 143 msgstr "" 144 144 145 #: includes/widgets/acf-form.php:21 0includes/widgets/advanced-posts.php:111145 #: includes/widgets/acf-form.php:211 includes/widgets/advanced-posts.php:111 146 146 msgid "Post Status" 147 147 msgstr "" 148 148 149 #: includes/widgets/acf-form.php:21 6149 #: includes/widgets/acf-form.php:217 150 150 msgid "Post Title" 151 151 msgstr "" 152 152 153 #: includes/widgets/acf-form.php:22 5153 #: includes/widgets/acf-form.php:226 154 154 msgid "Post Slug" 155 155 msgstr "" 156 156 157 #: includes/widgets/acf-form.php:23 4157 #: includes/widgets/acf-form.php:235 158 158 msgid "Post Content" 159 159 msgstr "" 160 160 161 #: includes/widgets/acf-form.php:24 2161 #: includes/widgets/acf-form.php:243 162 162 msgid "Post Parent" 163 163 msgstr "" 164 164 165 #: includes/widgets/acf-form.php:25 1includes/widgets/table.php:82165 #: includes/widgets/acf-form.php:252 includes/widgets/table.php:82 166 166 msgid "Taxonomies" 167 167 msgstr "" 168 168 169 #: includes/widgets/acf-form.php:25 7169 #: includes/widgets/acf-form.php:258 170 170 msgid "Taxonomy" 171 171 msgstr "" 172 172 173 #: includes/widgets/acf-form.php:26 6 includes/widgets/acf-form.php:287173 #: includes/widgets/acf-form.php:267 includes/widgets/acf-form.php:288 174 174 #: includes/widgets/shortcode.php:118 175 175 msgid "Value" 176 176 msgstr "" 177 177 178 #: includes/widgets/acf-form.php:27 6178 #: includes/widgets/acf-form.php:277 179 179 msgid "Custom Fields" 180 180 msgstr "" 181 181 182 #: includes/widgets/acf-form.php:28 2182 #: includes/widgets/acf-form.php:283 183 183 msgid "Key" 184 184 msgstr "" 185 185 186 #: includes/widgets/acf-form.php:30 1186 #: includes/widgets/acf-form.php:302 187 187 msgid "Form" 188 188 msgstr "" 189 189 190 #: includes/widgets/acf-form.php:30 7190 #: includes/widgets/acf-form.php:308 191 191 msgid "Form Tag" 192 192 msgstr "" 193 193 194 #: includes/widgets/acf-form.php:31 4194 #: includes/widgets/acf-form.php:315 195 195 msgid "" 196 196 "Whether or not to create a form element. Useful when a adding to an " … … 198 198 msgstr "" 199 199 200 #: includes/widgets/acf-form.php:32 2200 #: includes/widgets/acf-form.php:323 201 201 msgid "Form ID" 202 202 msgstr "" 203 203 204 #: includes/widgets/acf-form.php:33 1204 #: includes/widgets/acf-form.php:332 205 205 msgid "" 206 206 "Unique identifier for the form. This will also become the id attribute of " … … 208 208 msgstr "" 209 209 210 #: includes/widgets/acf-form.php:33 8210 #: includes/widgets/acf-form.php:339 211 211 msgid "Custom Attributes" 212 212 msgstr "" 213 213 214 #: includes/widgets/acf-form.php:34 1214 #: includes/widgets/acf-form.php:342 215 215 msgid "key|value" 216 216 msgstr "" 217 217 218 #: includes/widgets/acf-form.php:34 7218 #: includes/widgets/acf-form.php:348 219 219 msgid "Custom HTML attributes for the form element." 220 220 msgstr "" 221 221 222 #: includes/widgets/acf-form.php:36 2222 #: includes/widgets/acf-form.php:363 223 223 msgid "Extra HTML Before Fields" 224 224 msgstr "" 225 225 226 #: includes/widgets/acf-form.php:37 2226 #: includes/widgets/acf-form.php:373 227 227 msgid "HTML Before Fields" 228 228 msgstr "" 229 229 230 #: includes/widgets/acf-form.php:38 3 includes/widgets/acf-form.php:392230 #: includes/widgets/acf-form.php:384 includes/widgets/acf-form.php:393 231 231 msgid "Extra HTML After Fields" 232 232 msgstr "" 233 233 234 #: includes/widgets/acf-form.php:40 7 includes/widgets/acf-form.php:507234 #: includes/widgets/acf-form.php:408 includes/widgets/acf-form.php:508 235 235 msgid "Field" 236 236 msgstr "" 237 237 238 #: includes/widgets/acf-form.php:41 3238 #: includes/widgets/acf-form.php:414 239 239 msgid "Title" 240 msgstr ""241 242 #: includes/widgets/acf-form.php:416 includes/widgets/acf-form.php:425243 #: includes/widgets/acf-form.php:442 includes/widgets/acf-form.php:460244 msgid "Hide"245 240 msgstr "" 246 241 247 242 #: includes/widgets/acf-form.php:417 includes/widgets/acf-form.php:426 248 243 #: includes/widgets/acf-form.php:443 includes/widgets/acf-form.php:461 244 msgid "Hide" 245 msgstr "" 246 247 #: includes/widgets/acf-form.php:418 includes/widgets/acf-form.php:427 248 #: includes/widgets/acf-form.php:444 includes/widgets/acf-form.php:462 249 249 msgid "Show" 250 250 msgstr "" 251 251 252 #: includes/widgets/acf-form.php:42 2252 #: includes/widgets/acf-form.php:423 253 253 msgid "Content" 254 254 msgstr "" 255 255 256 #: includes/widgets/acf-form.php:43 1256 #: includes/widgets/acf-form.php:432 257 257 msgid "Honeypot" 258 258 msgstr "" 259 259 260 #: includes/widgets/acf-form.php:4 39 includes/widgets/acf-form.php:496261 #: includes/widgets/acf-form.php:53 5260 #: includes/widgets/acf-form.php:440 includes/widgets/acf-form.php:497 261 #: includes/widgets/acf-form.php:536 262 262 msgid "Label" 263 263 msgstr "" 264 264 265 #: includes/widgets/acf-form.php:45 7 includes/widgets/acf-form.php:600265 #: includes/widgets/acf-form.php:458 includes/widgets/acf-form.php:601 266 266 msgid "Required Mark" 267 267 msgstr "" 268 268 269 #: includes/widgets/acf-form.php:4 79269 #: includes/widgets/acf-form.php:480 270 270 msgid "Uploader" 271 271 msgstr "" 272 272 273 #: includes/widgets/acf-form.php:48 2273 #: includes/widgets/acf-form.php:483 274 274 msgid "WordPress Uploader" 275 275 msgstr "" 276 276 277 #: includes/widgets/acf-form.php:48 3277 #: includes/widgets/acf-form.php:484 278 278 msgid "HTML File Input" 279 279 msgstr "" 280 280 281 #: includes/widgets/acf-form.php:49 1 includes/widgets/acf-form.php:721282 #: includes/widgets/acf-form.php: 879281 #: includes/widgets/acf-form.php:492 includes/widgets/acf-form.php:891 282 #: includes/widgets/acf-form.php:1015 283 283 msgid "Submit Button" 284 284 msgstr "" 285 285 286 #: includes/widgets/acf-form.php: 499 includes/widgets/acf-form.php:500286 #: includes/widgets/acf-form.php:500 includes/widgets/acf-form.php:501 287 287 msgid "Submit" 288 288 msgstr "" 289 289 290 #: includes/widgets/acf-form.php:51 2 includes/widgets/acf-form.php:860290 #: includes/widgets/acf-form.php:513 includes/widgets/acf-form.php:996 291 291 msgid "Padding" 292 292 msgstr "" 293 293 294 #: includes/widgets/acf-form.php:52 2294 #: includes/widgets/acf-form.php:523 295 295 msgid "Field Tag" 296 296 msgstr "" 297 297 298 #: includes/widgets/acf-form.php:54 4 includes/widgets/acf-form.php:628298 #: includes/widgets/acf-form.php:545 includes/widgets/acf-form.php:629 299 299 msgid "Placement" 300 300 msgstr "" 301 301 302 #: includes/widgets/acf-form.php:54 8302 #: includes/widgets/acf-form.php:549 303 303 msgid "Top aligned" 304 304 msgstr "" 305 305 306 #: includes/widgets/acf-form.php:5 49306 #: includes/widgets/acf-form.php:550 307 307 msgid "Left aligned" 308 308 msgstr "" 309 309 310 #: includes/widgets/acf-form.php:55 6 includes/widgets/acf-form.php:829310 #: includes/widgets/acf-form.php:557 includes/widgets/acf-form.php:965 311 311 #: includes/widgets/item-list-base.php:73 312 312 msgid "Alignment" 313 313 msgstr "" 314 314 315 #: includes/widgets/acf-form.php:56 0 includes/widgets/acf-form.php:833315 #: includes/widgets/acf-form.php:561 includes/widgets/acf-form.php:969 316 316 #: includes/widgets/advanced-posts.php:272 317 317 #: includes/widgets/item-list-base.php:77 … … 319 319 msgstr "" 320 320 321 #: includes/widgets/acf-form.php:56 4 includes/widgets/acf-form.php:837321 #: includes/widgets/acf-form.php:565 includes/widgets/acf-form.php:973 322 322 #: includes/widgets/advanced-posts.php:276 323 323 #: includes/widgets/item-list-base.php:81 … … 325 325 msgstr "" 326 326 327 #: includes/widgets/acf-form.php:56 8 includes/widgets/acf-form.php:841327 #: includes/widgets/acf-form.php:569 includes/widgets/acf-form.php:977 328 328 #: includes/widgets/advanced-posts.php:280 329 329 #: includes/widgets/item-list-base.php:85 … … 331 331 msgstr "" 332 332 333 #: includes/widgets/acf-form.php:580 includes/widgets/acf-form.php:609 334 #: includes/widgets/acf-form.php:637 includes/widgets/acf-form.php:689 333 #: includes/widgets/acf-form.php:581 includes/widgets/acf-form.php:610 334 #: includes/widgets/acf-form.php:638 includes/widgets/acf-form.php:826 335 #: includes/widgets/acf-form.php:860 335 336 msgid "Color" 336 337 msgstr "" 337 338 338 #: includes/widgets/acf-form.php:62 2339 msgid "Description / Instructions"340 msgstr "" 341 342 #: includes/widgets/acf-form.php:63 2339 #: includes/widgets/acf-form.php:623 340 msgid "Description (Instructions)" 341 msgstr "" 342 343 #: includes/widgets/acf-form.php:633 343 344 msgid "Below labels" 344 345 msgstr "" 345 346 346 #: includes/widgets/acf-form.php:63 3347 #: includes/widgets/acf-form.php:634 347 348 msgid "Below fields" 348 349 msgstr "" 349 350 350 #: includes/widgets/acf-form.php:6 53351 #: includes/widgets/acf-form.php:684 351 352 msgid "Input" 352 353 msgstr "" 353 354 354 #: includes/widgets/acf-form.php:660 includes/widgets/acf-form.php:764 355 #: includes/widgets/acf-form.php:810 includes/widgets/advanced-posts.php:246 355 #: includes/widgets/acf-form.php:691 356 msgid "Text Padding" 357 msgstr "" 358 359 #: includes/widgets/acf-form.php:722 360 msgid "Text Color" 361 msgstr "" 362 363 #: includes/widgets/acf-form.php:738 includes/widgets/acf-form.php:905 364 #: includes/widgets/acf-form.php:934 365 msgid "Background Color" 366 msgstr "" 367 368 #: includes/widgets/acf-form.php:745 369 msgid "Min Height" 370 msgstr "" 371 372 #: includes/widgets/acf-form.php:762 373 msgid "Border" 374 msgstr "" 375 376 #: includes/widgets/acf-form.php:773 includes/widgets/acf-form.php:917 377 #: includes/widgets/acf-form.php:946 includes/widgets/advanced-posts.php:246 356 378 msgid "Border Radius" 357 379 msgstr "" 358 380 359 #: includes/widgets/acf-form.php: 671381 #: includes/widgets/acf-form.php:785 360 382 msgid "Separator" 361 383 msgstr "" 362 384 363 #: includes/widgets/acf-form.php:675 364 msgid "Gap" 365 msgstr "" 366 367 #: includes/widgets/acf-form.php:703 includes/widgets/acf-form.php:821 385 #: includes/widgets/acf-form.php:822 386 msgid "Horizontal" 387 msgstr "" 388 389 #: includes/widgets/acf-form.php:839 includes/widgets/acf-form.php:873 390 #: includes/widgets/acf-form.php:957 368 391 msgid "Width" 369 392 msgstr "" 370 393 371 #: includes/widgets/acf-form.php:727 394 #: includes/widgets/acf-form.php:855 395 msgid "Vertical" 396 msgstr "" 397 398 #: includes/widgets/acf-form.php:897 372 399 msgid "Normal" 373 400 msgstr "" 374 401 375 #: includes/widgets/acf-form.php:735 includes/widgets/acf-form.php:781 376 msgid "Background Color" 377 msgstr "" 378 379 #: includes/widgets/acf-form.php:749 includes/widgets/acf-form.php:795 402 #: includes/widgets/acf-form.php:926 403 msgid "Hover" 404 msgstr "" 405 406 #: includes/widgets/acf-form.php:987 includes/widgets/advanced-posts.php:197 407 msgid "Margin" 408 msgstr "" 409 410 #: includes/widgets/acf-form.php:1026 411 msgid "HTML used to render the submit button." 412 msgstr "" 413 414 #: includes/widgets/acf-form.php:1036 415 msgid "Spinner" 416 msgstr "" 417 418 #: includes/widgets/acf-form.php:1050 419 msgid "HTML" 420 msgstr "" 421 422 #: includes/widgets/acf-form.php:1309 423 #, php-format 424 msgid "Please install and activate the %sAdvanced Custom Fields%s plugin." 425 msgstr "" 426 427 #: includes/widgets/advanced-posts.php:35 428 msgid "Advanced Posts" 429 msgstr "" 430 431 #: includes/widgets/advanced-posts.php:64 432 msgid "Current Query" 433 msgstr "" 434 435 #: includes/widgets/advanced-posts.php:65 436 msgid "Custom Query" 437 msgstr "" 438 439 #: includes/widgets/advanced-posts.php:70 440 msgid "ACF" 441 msgstr "" 442 443 #: includes/widgets/advanced-posts.php:92 444 msgid "Source" 445 msgstr "" 446 447 #: includes/widgets/advanced-posts.php:97 448 msgid "Type" 449 msgstr "" 450 451 #: includes/widgets/advanced-posts.php:118 452 msgid "Page Size" 453 msgstr "" 454 455 #: includes/widgets/advanced-posts.php:128 456 msgid "ACF Field" 457 msgstr "" 458 459 #: includes/widgets/advanced-posts.php:139 460 msgid "Template" 461 msgstr "" 462 463 #: includes/widgets/advanced-posts.php:144 464 msgid "Section Template" 465 msgstr "" 466 467 #: includes/widgets/advanced-posts.php:152 468 msgid "Grid" 469 msgstr "" 470 471 #: includes/widgets/advanced-posts.php:156 includes/widgets/table.php:74 472 msgid "Columns" 473 msgstr "" 474 475 #: includes/widgets/advanced-posts.php:167 476 msgid "No Posts Found" 477 msgstr "" 478 479 #: includes/widgets/advanced-posts.php:171 480 msgid "Display Message" 481 msgstr "" 482 483 #: includes/widgets/advanced-posts.php:176 484 msgid "Message" 485 msgstr "" 486 487 #: includes/widgets/advanced-posts.php:178 488 msgid "No results found." 489 msgstr "" 490 491 #: includes/widgets/advanced-posts.php:179 492 msgid "Write a message to display when no posts are found." 493 msgstr "" 494 495 #: includes/widgets/advanced-posts.php:192 496 msgid "Post" 497 msgstr "" 498 499 #: includes/widgets/advanced-posts.php:214 500 msgid "Groove" 501 msgstr "" 502 380 503 #: includes/widgets/advanced-posts.php:223 381 504 msgid "Border Color" 382 505 msgstr "" 383 506 384 #: includes/widgets/acf-form.php:756 includes/widgets/acf-form.php:802385 507 #: includes/widgets/advanced-posts.php:231 386 508 msgid "Border Width" 387 509 msgstr "" 388 510 389 #: includes/widgets/acf-form.php:773390 msgid "Hover"391 msgstr ""392 393 #: includes/widgets/acf-form.php:851 includes/widgets/advanced-posts.php:197394 msgid "Margin"395 msgstr ""396 397 #: includes/widgets/acf-form.php:890398 msgid "HTML used to render the submit button."399 msgstr ""400 401 #: includes/widgets/acf-form.php:900402 msgid "Spinner"403 msgstr ""404 405 #: includes/widgets/acf-form.php:914406 msgid "HTML"407 msgstr ""408 409 #: includes/widgets/acf-form.php:1173410 #, php-format411 msgid "Please install and activate the %sAdvanced Custom Fields%s plugin."412 msgstr ""413 414 #: includes/widgets/advanced-posts.php:35415 msgid "Advanced Posts"416 msgstr ""417 418 #: includes/widgets/advanced-posts.php:64419 msgid "Current Query"420 msgstr ""421 422 #: includes/widgets/advanced-posts.php:65423 msgid "Custom Query"424 msgstr ""425 426 #: includes/widgets/advanced-posts.php:70427 msgid "ACF"428 msgstr ""429 430 #: includes/widgets/advanced-posts.php:92431 msgid "Source"432 msgstr ""433 434 #: includes/widgets/advanced-posts.php:97435 msgid "Type"436 msgstr ""437 438 #: includes/widgets/advanced-posts.php:118439 msgid "Page Size"440 msgstr ""441 442 #: includes/widgets/advanced-posts.php:128443 msgid "ACF Field"444 msgstr ""445 446 #: includes/widgets/advanced-posts.php:139447 msgid "Template"448 msgstr ""449 450 #: includes/widgets/advanced-posts.php:144451 msgid "Section Template"452 msgstr ""453 454 #: includes/widgets/advanced-posts.php:152455 msgid "Grid"456 msgstr ""457 458 #: includes/widgets/advanced-posts.php:156 includes/widgets/table.php:74459 msgid "Columns"460 msgstr ""461 462 #: includes/widgets/advanced-posts.php:167463 msgid "No Posts Found"464 msgstr ""465 466 #: includes/widgets/advanced-posts.php:171467 msgid "Display Message"468 msgstr ""469 470 #: includes/widgets/advanced-posts.php:176471 msgid "Message"472 msgstr ""473 474 #: includes/widgets/advanced-posts.php:178475 msgid "No results found."476 msgstr ""477 478 #: includes/widgets/advanced-posts.php:179479 msgid "Write a message to display when no posts are found."480 msgstr ""481 482 #: includes/widgets/advanced-posts.php:192483 msgid "Post"484 msgstr ""485 486 #: includes/widgets/advanced-posts.php:214487 msgid "Groove"488 msgstr ""489 490 511 #: includes/widgets/advanced-posts.php:263 491 512 msgid "Shadow"
Note: See TracChangeset
for help on using the changeset viewer.