Plugin Directory

Changeset 2064123


Ignore:
Timestamp:
04/06/2019 06:25:34 AM (7 years ago)
Author:
maecompany
Message:

Prepare for release 1.0.7

Location:
advanced-elementor
Files:
6 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • advanced-elementor/trunk/README.txt

    r2063417 r2064123  
    44Requires at least: 4.0
    55Tested up to: 5.1.1
    6 Stable tag: 1.0.6
     6Stable tag: 1.0.7
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    5353
    54541. 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
     552. ACF Form: Elementor Content Settings
     563. ACF Form: Elementor Style Settings
    6357
    6458== Changelog ==
     
    9589* ACF Form: Added setting to adjust submit button width.
    9690* 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  
    1111 * Plugin URI:        https://wordpress.org/plugins/awelementor/
    1212 * Description:       Advanced Widgets for Elementor Page Builder.
    13  * Version:           1.0.6
     13 * Version:           1.0.7
    1414 * Author:            Mae Company
    1515 * Author URI:        https://mae.company/
     
    2727 * Current plugin version.
    2828 */
    29 define( 'AWELEMENTOR_VERSION', '1.0.6' );
     29define( 'AWELEMENTOR_VERSION', '1.0.7' );
    3030
    3131/**
  • advanced-elementor/trunk/includes/widgets/acf-form.php

    r2063417 r2064123  
    77use Elementor\Controls_Manager;
    88use Elementor\Group_Control_Typography;
     9use Elementor\Group_Control_Border;
    910use Elementor\Scheme_Color;
    1011use Elementor\Scheme_Typography;
     
    620621
    621622        $this->add_control('field_description_label', [
    622             'label'     => __( 'Description / Instructions', 'awelementor' ),
     623            'label'     => __( 'Description (Instructions)', 'awelementor' ),
    623624            'type'      => Controls_Manager::HEADING,
    624625            'separator' => 'before',
     
    650651        $this->end_controls_section();
    651652
     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
    652683        $this->start_controls_section('section_input_style', [
    653684            'label' => __('Input', 'awelementor'),
     
    657688//          'label' => __( 'Text', 'awelementor' ),
    658689//      ]);
     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';
    659772        $this->add_control('input_border_radius', [
    660773            'label'         => __( 'Border Radius', 'awelementor' ),
     
    662775            'size_units'    => [ 'px', '%' ],
    663776            '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}};',
    665779            ],
    666780        ]);
     
    672786            'tab'   => Controls_Manager::TAB_STYLE,
    673787        ]);
    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' ),
    676793            'type'      => Controls_Manager::SLIDER,
    677794            'range'     => [
     
    682799            ],
    683800            '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', [
    697833            'type'      => 'awe-border-style',
    698834            'selectors' => [
    699                 '{{WRAPPER}} .acf-fields > .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', [
    703839            'label'     => __( 'Width', 'awelementor' ),
    704840            'type'      => Controls_Manager::SLIDER,
     
    713849            ],
    714850            '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}};',
    716886            ],
    717887        ]);
     
    740910            ],
    741911        ]);
    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',
    762915        ]);
    763916        $this->add_control('submit_button_border_radius', [
     
    786939            ],
    787940        ]);
    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',
    808944        ]);
    809945        $this->add_control('submit_button_border_radius_hover', [
  • advanced-elementor/trunk/languages/awelementor.pot

    r2063417 r2064123  
    44"Project-Id-Version: Advanced Widgets for Elementor\n"
    55"Report-Msgid-Bugs-To: https://mae.company/contact\n"
    6 "POT-Creation-Date: 2019-04-05 14:23+0900\n"
     6"POT-Creation-Date: 2019-04-06 15:24+0900\n"
    77"PO-Revision-Date: 2015-06-11 13:00+1000\n"
    88"Last-Translator: Mae Company <wordpress@mae.company>\n"
     
    5757msgstr ""
    5858
    59 #: includes/controls/awe-width.php:43 includes/widgets/acf-form.php:547
    60 #: includes/widgets/acf-form.php:631
     59#: includes/controls/awe-width.php:43 includes/widgets/acf-form.php:548
     60#: includes/widgets/acf-form.php:632
    6161msgid "Default"
    6262msgstr ""
    6363
    64 #: includes/widgets/acf-form.php:33
     64#: includes/widgets/acf-form.php:34
    6565msgid "ACF Form"
    6666msgstr ""
    6767
    68 #: includes/widgets/acf-form.php:77
     68#: includes/widgets/acf-form.php:78
    6969msgid "Posting"
    7070msgstr ""
    7171
    72 #: includes/widgets/acf-form.php:84 includes/widgets/acf-form.php:197
     72#: includes/widgets/acf-form.php:85 includes/widgets/acf-form.php:198
    7373msgid "New Post"
    7474msgstr ""
    7575
    76 #: includes/widgets/acf-form.php:87 includes/widgets/acf-form.php:126
     76#: includes/widgets/acf-form.php:88 includes/widgets/acf-form.php:127
    7777msgid "No"
    7878msgstr ""
    7979
    80 #: includes/widgets/acf-form.php:88 includes/widgets/acf-form.php:127
     80#: includes/widgets/acf-form.php:89 includes/widgets/acf-form.php:128
    8181msgid "Yes"
    8282msgstr ""
    8383
    84 #: includes/widgets/acf-form.php:94
     84#: includes/widgets/acf-form.php:95
    8585msgid "Post ID"
    8686msgstr ""
    8787
    88 #: includes/widgets/acf-form.php:108
     88#: includes/widgets/acf-form.php:109
    8989msgid "KSES Sanitize"
    90 msgstr ""
    91 
    92 #: includes/widgets/acf-form.php:111 includes/widgets/acf-form.php:146
    93 #: includes/widgets/acf-form.php:310 includes/widgets/acf-form.php:366
    94 #: includes/widgets/acf-form.php:386 includes/widgets/acf-form.php:434
    95 #: includes/widgets/acf-form.php:873 includes/widgets/acf-form.php:908
    96 msgid "Off"
    9790msgstr ""
    9891
     
    10093#: includes/widgets/acf-form.php:311 includes/widgets/acf-form.php:367
    10194#: 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
     96msgid "Off"
     97msgstr ""
     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
    103103msgid "On"
    104104msgstr ""
    105105
    106 #: includes/widgets/acf-form.php:117 includes/widgets/acf-form.php:132
     106#: includes/widgets/acf-form.php:118 includes/widgets/acf-form.php:133
    107107msgid "Updated Message"
    108108msgstr ""
    109109
    110 #: includes/widgets/acf-form.php:123
     110#: includes/widgets/acf-form.php:124
    111111msgid "Enabled"
    112112msgstr ""
    113113
    114 #: includes/widgets/acf-form.php:134 includes/widgets/acf-form.php:135
     114#: includes/widgets/acf-form.php:135 includes/widgets/acf-form.php:136
    115115msgid "Post updated"
    116116msgstr ""
    117117
    118 #: includes/widgets/acf-form.php:143 includes/widgets/acf-form.php:870
    119 #: includes/widgets/acf-form.php:905
     118#: includes/widgets/acf-form.php:144 includes/widgets/acf-form.php:1006
     119#: includes/widgets/acf-form.php:1041
    120120msgid "Custom HTML"
    121121msgstr ""
    122122
    123 #: includes/widgets/acf-form.php:155
     123#: includes/widgets/acf-form.php:156
    124124msgid "Custom Updated Message HTML"
    125125msgstr ""
    126126
    127 #: includes/widgets/acf-form.php:173
     127#: includes/widgets/acf-form.php:174
    128128msgid "Return URL"
    129129msgstr ""
    130130
    131 #: includes/widgets/acf-form.php:183
     131#: includes/widgets/acf-form.php:184
    132132msgid ""
    133133"The URL to be redirected to after the form is submit. Defaults to the "
     
    139139msgstr ""
    140140
    141 #: includes/widgets/acf-form.php:205 includes/widgets/advanced-posts.php:104
     141#: includes/widgets/acf-form.php:206 includes/widgets/advanced-posts.php:104
    142142msgid "Post Type"
    143143msgstr ""
    144144
    145 #: includes/widgets/acf-form.php:210 includes/widgets/advanced-posts.php:111
     145#: includes/widgets/acf-form.php:211 includes/widgets/advanced-posts.php:111
    146146msgid "Post Status"
    147147msgstr ""
    148148
    149 #: includes/widgets/acf-form.php:216
     149#: includes/widgets/acf-form.php:217
    150150msgid "Post Title"
    151151msgstr ""
    152152
    153 #: includes/widgets/acf-form.php:225
     153#: includes/widgets/acf-form.php:226
    154154msgid "Post Slug"
    155155msgstr ""
    156156
    157 #: includes/widgets/acf-form.php:234
     157#: includes/widgets/acf-form.php:235
    158158msgid "Post Content"
    159159msgstr ""
    160160
    161 #: includes/widgets/acf-form.php:242
     161#: includes/widgets/acf-form.php:243
    162162msgid "Post Parent"
    163163msgstr ""
    164164
    165 #: includes/widgets/acf-form.php:251 includes/widgets/table.php:82
     165#: includes/widgets/acf-form.php:252 includes/widgets/table.php:82
    166166msgid "Taxonomies"
    167167msgstr ""
    168168
    169 #: includes/widgets/acf-form.php:257
     169#: includes/widgets/acf-form.php:258
    170170msgid "Taxonomy"
    171171msgstr ""
    172172
    173 #: includes/widgets/acf-form.php:266 includes/widgets/acf-form.php:287
     173#: includes/widgets/acf-form.php:267 includes/widgets/acf-form.php:288
    174174#: includes/widgets/shortcode.php:118
    175175msgid "Value"
    176176msgstr ""
    177177
    178 #: includes/widgets/acf-form.php:276
     178#: includes/widgets/acf-form.php:277
    179179msgid "Custom Fields"
    180180msgstr ""
    181181
    182 #: includes/widgets/acf-form.php:282
     182#: includes/widgets/acf-form.php:283
    183183msgid "Key"
    184184msgstr ""
    185185
    186 #: includes/widgets/acf-form.php:301
     186#: includes/widgets/acf-form.php:302
    187187msgid "Form"
    188188msgstr ""
    189189
    190 #: includes/widgets/acf-form.php:307
     190#: includes/widgets/acf-form.php:308
    191191msgid "Form Tag"
    192192msgstr ""
    193193
    194 #: includes/widgets/acf-form.php:314
     194#: includes/widgets/acf-form.php:315
    195195msgid ""
    196196"Whether or not to create a form element. Useful when a adding to an "
     
    198198msgstr ""
    199199
    200 #: includes/widgets/acf-form.php:322
     200#: includes/widgets/acf-form.php:323
    201201msgid "Form ID"
    202202msgstr ""
    203203
    204 #: includes/widgets/acf-form.php:331
     204#: includes/widgets/acf-form.php:332
    205205msgid ""
    206206"Unique identifier for the form. This will also become the id attribute of "
     
    208208msgstr ""
    209209
    210 #: includes/widgets/acf-form.php:338
     210#: includes/widgets/acf-form.php:339
    211211msgid "Custom Attributes"
    212212msgstr ""
    213213
    214 #: includes/widgets/acf-form.php:341
     214#: includes/widgets/acf-form.php:342
    215215msgid "key|value"
    216216msgstr ""
    217217
    218 #: includes/widgets/acf-form.php:347
     218#: includes/widgets/acf-form.php:348
    219219msgid "Custom HTML attributes for the form element."
    220220msgstr ""
    221221
    222 #: includes/widgets/acf-form.php:362
     222#: includes/widgets/acf-form.php:363
    223223msgid "Extra HTML Before Fields"
    224224msgstr ""
    225225
    226 #: includes/widgets/acf-form.php:372
     226#: includes/widgets/acf-form.php:373
    227227msgid "HTML Before Fields"
    228228msgstr ""
    229229
    230 #: includes/widgets/acf-form.php:383 includes/widgets/acf-form.php:392
     230#: includes/widgets/acf-form.php:384 includes/widgets/acf-form.php:393
    231231msgid "Extra HTML After Fields"
    232232msgstr ""
    233233
    234 #: includes/widgets/acf-form.php:407 includes/widgets/acf-form.php:507
     234#: includes/widgets/acf-form.php:408 includes/widgets/acf-form.php:508
    235235msgid "Field"
    236236msgstr ""
    237237
    238 #: includes/widgets/acf-form.php:413
     238#: includes/widgets/acf-form.php:414
    239239msgid "Title"
    240 msgstr ""
    241 
    242 #: includes/widgets/acf-form.php:416 includes/widgets/acf-form.php:425
    243 #: includes/widgets/acf-form.php:442 includes/widgets/acf-form.php:460
    244 msgid "Hide"
    245240msgstr ""
    246241
    247242#: includes/widgets/acf-form.php:417 includes/widgets/acf-form.php:426
    248243#: includes/widgets/acf-form.php:443 includes/widgets/acf-form.php:461
     244msgid "Hide"
     245msgstr ""
     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
    249249msgid "Show"
    250250msgstr ""
    251251
    252 #: includes/widgets/acf-form.php:422
     252#: includes/widgets/acf-form.php:423
    253253msgid "Content"
    254254msgstr ""
    255255
    256 #: includes/widgets/acf-form.php:431
     256#: includes/widgets/acf-form.php:432
    257257msgid "Honeypot"
    258258msgstr ""
    259259
    260 #: includes/widgets/acf-form.php:439 includes/widgets/acf-form.php:496
    261 #: includes/widgets/acf-form.php:535
     260#: includes/widgets/acf-form.php:440 includes/widgets/acf-form.php:497
     261#: includes/widgets/acf-form.php:536
    262262msgid "Label"
    263263msgstr ""
    264264
    265 #: includes/widgets/acf-form.php:457 includes/widgets/acf-form.php:600
     265#: includes/widgets/acf-form.php:458 includes/widgets/acf-form.php:601
    266266msgid "Required Mark"
    267267msgstr ""
    268268
    269 #: includes/widgets/acf-form.php:479
     269#: includes/widgets/acf-form.php:480
    270270msgid "Uploader"
    271271msgstr ""
    272272
    273 #: includes/widgets/acf-form.php:482
     273#: includes/widgets/acf-form.php:483
    274274msgid "WordPress Uploader"
    275275msgstr ""
    276276
    277 #: includes/widgets/acf-form.php:483
     277#: includes/widgets/acf-form.php:484
    278278msgid "HTML File Input"
    279279msgstr ""
    280280
    281 #: includes/widgets/acf-form.php:491 includes/widgets/acf-form.php:721
    282 #: includes/widgets/acf-form.php:879
     281#: includes/widgets/acf-form.php:492 includes/widgets/acf-form.php:891
     282#: includes/widgets/acf-form.php:1015
    283283msgid "Submit Button"
    284284msgstr ""
    285285
    286 #: includes/widgets/acf-form.php:499 includes/widgets/acf-form.php:500
     286#: includes/widgets/acf-form.php:500 includes/widgets/acf-form.php:501
    287287msgid "Submit"
    288288msgstr ""
    289289
    290 #: includes/widgets/acf-form.php:512 includes/widgets/acf-form.php:860
     290#: includes/widgets/acf-form.php:513 includes/widgets/acf-form.php:996
    291291msgid "Padding"
    292292msgstr ""
    293293
    294 #: includes/widgets/acf-form.php:522
     294#: includes/widgets/acf-form.php:523
    295295msgid "Field Tag"
    296296msgstr ""
    297297
    298 #: includes/widgets/acf-form.php:544 includes/widgets/acf-form.php:628
     298#: includes/widgets/acf-form.php:545 includes/widgets/acf-form.php:629
    299299msgid "Placement"
    300300msgstr ""
    301301
    302 #: includes/widgets/acf-form.php:548
     302#: includes/widgets/acf-form.php:549
    303303msgid "Top aligned"
    304304msgstr ""
    305305
    306 #: includes/widgets/acf-form.php:549
     306#: includes/widgets/acf-form.php:550
    307307msgid "Left aligned"
    308308msgstr ""
    309309
    310 #: includes/widgets/acf-form.php:556 includes/widgets/acf-form.php:829
     310#: includes/widgets/acf-form.php:557 includes/widgets/acf-form.php:965
    311311#: includes/widgets/item-list-base.php:73
    312312msgid "Alignment"
    313313msgstr ""
    314314
    315 #: includes/widgets/acf-form.php:560 includes/widgets/acf-form.php:833
     315#: includes/widgets/acf-form.php:561 includes/widgets/acf-form.php:969
    316316#: includes/widgets/advanced-posts.php:272
    317317#: includes/widgets/item-list-base.php:77
     
    319319msgstr ""
    320320
    321 #: includes/widgets/acf-form.php:564 includes/widgets/acf-form.php:837
     321#: includes/widgets/acf-form.php:565 includes/widgets/acf-form.php:973
    322322#: includes/widgets/advanced-posts.php:276
    323323#: includes/widgets/item-list-base.php:81
     
    325325msgstr ""
    326326
    327 #: includes/widgets/acf-form.php:568 includes/widgets/acf-form.php:841
     327#: includes/widgets/acf-form.php:569 includes/widgets/acf-form.php:977
    328328#: includes/widgets/advanced-posts.php:280
    329329#: includes/widgets/item-list-base.php:85
     
    331331msgstr ""
    332332
    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
    335336msgid "Color"
    336337msgstr ""
    337338
    338 #: includes/widgets/acf-form.php:622
    339 msgid "Description / Instructions"
    340 msgstr ""
    341 
    342 #: includes/widgets/acf-form.php:632
     339#: includes/widgets/acf-form.php:623
     340msgid "Description (Instructions)"
     341msgstr ""
     342
     343#: includes/widgets/acf-form.php:633
    343344msgid "Below labels"
    344345msgstr ""
    345346
    346 #: includes/widgets/acf-form.php:633
     347#: includes/widgets/acf-form.php:634
    347348msgid "Below fields"
    348349msgstr ""
    349350
    350 #: includes/widgets/acf-form.php:653
     351#: includes/widgets/acf-form.php:684
    351352msgid "Input"
    352353msgstr ""
    353354
    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
     356msgid "Text Padding"
     357msgstr ""
     358
     359#: includes/widgets/acf-form.php:722
     360msgid "Text Color"
     361msgstr ""
     362
     363#: includes/widgets/acf-form.php:738 includes/widgets/acf-form.php:905
     364#: includes/widgets/acf-form.php:934
     365msgid "Background Color"
     366msgstr ""
     367
     368#: includes/widgets/acf-form.php:745
     369msgid "Min Height"
     370msgstr ""
     371
     372#: includes/widgets/acf-form.php:762
     373msgid "Border"
     374msgstr ""
     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
    356378msgid "Border Radius"
    357379msgstr ""
    358380
    359 #: includes/widgets/acf-form.php:671
     381#: includes/widgets/acf-form.php:785
    360382msgid "Separator"
    361383msgstr ""
    362384
    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
     386msgid "Horizontal"
     387msgstr ""
     388
     389#: includes/widgets/acf-form.php:839 includes/widgets/acf-form.php:873
     390#: includes/widgets/acf-form.php:957
    368391msgid "Width"
    369392msgstr ""
    370393
    371 #: includes/widgets/acf-form.php:727
     394#: includes/widgets/acf-form.php:855
     395msgid "Vertical"
     396msgstr ""
     397
     398#: includes/widgets/acf-form.php:897
    372399msgid "Normal"
    373400msgstr ""
    374401
    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
     403msgid "Hover"
     404msgstr ""
     405
     406#: includes/widgets/acf-form.php:987 includes/widgets/advanced-posts.php:197
     407msgid "Margin"
     408msgstr ""
     409
     410#: includes/widgets/acf-form.php:1026
     411msgid "HTML used to render the submit button."
     412msgstr ""
     413
     414#: includes/widgets/acf-form.php:1036
     415msgid "Spinner"
     416msgstr ""
     417
     418#: includes/widgets/acf-form.php:1050
     419msgid "HTML"
     420msgstr ""
     421
     422#: includes/widgets/acf-form.php:1309
     423#, php-format
     424msgid "Please install and activate the %sAdvanced Custom Fields%s plugin."
     425msgstr ""
     426
     427#: includes/widgets/advanced-posts.php:35
     428msgid "Advanced Posts"
     429msgstr ""
     430
     431#: includes/widgets/advanced-posts.php:64
     432msgid "Current Query"
     433msgstr ""
     434
     435#: includes/widgets/advanced-posts.php:65
     436msgid "Custom Query"
     437msgstr ""
     438
     439#: includes/widgets/advanced-posts.php:70
     440msgid "ACF"
     441msgstr ""
     442
     443#: includes/widgets/advanced-posts.php:92
     444msgid "Source"
     445msgstr ""
     446
     447#: includes/widgets/advanced-posts.php:97
     448msgid "Type"
     449msgstr ""
     450
     451#: includes/widgets/advanced-posts.php:118
     452msgid "Page Size"
     453msgstr ""
     454
     455#: includes/widgets/advanced-posts.php:128
     456msgid "ACF Field"
     457msgstr ""
     458
     459#: includes/widgets/advanced-posts.php:139
     460msgid "Template"
     461msgstr ""
     462
     463#: includes/widgets/advanced-posts.php:144
     464msgid "Section Template"
     465msgstr ""
     466
     467#: includes/widgets/advanced-posts.php:152
     468msgid "Grid"
     469msgstr ""
     470
     471#: includes/widgets/advanced-posts.php:156 includes/widgets/table.php:74
     472msgid "Columns"
     473msgstr ""
     474
     475#: includes/widgets/advanced-posts.php:167
     476msgid "No Posts Found"
     477msgstr ""
     478
     479#: includes/widgets/advanced-posts.php:171
     480msgid "Display Message"
     481msgstr ""
     482
     483#: includes/widgets/advanced-posts.php:176
     484msgid "Message"
     485msgstr ""
     486
     487#: includes/widgets/advanced-posts.php:178
     488msgid "No results found."
     489msgstr ""
     490
     491#: includes/widgets/advanced-posts.php:179
     492msgid "Write a message to display when no posts are found."
     493msgstr ""
     494
     495#: includes/widgets/advanced-posts.php:192
     496msgid "Post"
     497msgstr ""
     498
     499#: includes/widgets/advanced-posts.php:214
     500msgid "Groove"
     501msgstr ""
     502
    380503#: includes/widgets/advanced-posts.php:223
    381504msgid "Border Color"
    382505msgstr ""
    383506
    384 #: includes/widgets/acf-form.php:756 includes/widgets/acf-form.php:802
    385507#: includes/widgets/advanced-posts.php:231
    386508msgid "Border Width"
    387509msgstr ""
    388510
    389 #: includes/widgets/acf-form.php:773
    390 msgid "Hover"
    391 msgstr ""
    392 
    393 #: includes/widgets/acf-form.php:851 includes/widgets/advanced-posts.php:197
    394 msgid "Margin"
    395 msgstr ""
    396 
    397 #: includes/widgets/acf-form.php:890
    398 msgid "HTML used to render the submit button."
    399 msgstr ""
    400 
    401 #: includes/widgets/acf-form.php:900
    402 msgid "Spinner"
    403 msgstr ""
    404 
    405 #: includes/widgets/acf-form.php:914
    406 msgid "HTML"
    407 msgstr ""
    408 
    409 #: includes/widgets/acf-form.php:1173
    410 #, php-format
    411 msgid "Please install and activate the %sAdvanced Custom Fields%s plugin."
    412 msgstr ""
    413 
    414 #: includes/widgets/advanced-posts.php:35
    415 msgid "Advanced Posts"
    416 msgstr ""
    417 
    418 #: includes/widgets/advanced-posts.php:64
    419 msgid "Current Query"
    420 msgstr ""
    421 
    422 #: includes/widgets/advanced-posts.php:65
    423 msgid "Custom Query"
    424 msgstr ""
    425 
    426 #: includes/widgets/advanced-posts.php:70
    427 msgid "ACF"
    428 msgstr ""
    429 
    430 #: includes/widgets/advanced-posts.php:92
    431 msgid "Source"
    432 msgstr ""
    433 
    434 #: includes/widgets/advanced-posts.php:97
    435 msgid "Type"
    436 msgstr ""
    437 
    438 #: includes/widgets/advanced-posts.php:118
    439 msgid "Page Size"
    440 msgstr ""
    441 
    442 #: includes/widgets/advanced-posts.php:128
    443 msgid "ACF Field"
    444 msgstr ""
    445 
    446 #: includes/widgets/advanced-posts.php:139
    447 msgid "Template"
    448 msgstr ""
    449 
    450 #: includes/widgets/advanced-posts.php:144
    451 msgid "Section Template"
    452 msgstr ""
    453 
    454 #: includes/widgets/advanced-posts.php:152
    455 msgid "Grid"
    456 msgstr ""
    457 
    458 #: includes/widgets/advanced-posts.php:156 includes/widgets/table.php:74
    459 msgid "Columns"
    460 msgstr ""
    461 
    462 #: includes/widgets/advanced-posts.php:167
    463 msgid "No Posts Found"
    464 msgstr ""
    465 
    466 #: includes/widgets/advanced-posts.php:171
    467 msgid "Display Message"
    468 msgstr ""
    469 
    470 #: includes/widgets/advanced-posts.php:176
    471 msgid "Message"
    472 msgstr ""
    473 
    474 #: includes/widgets/advanced-posts.php:178
    475 msgid "No results found."
    476 msgstr ""
    477 
    478 #: includes/widgets/advanced-posts.php:179
    479 msgid "Write a message to display when no posts are found."
    480 msgstr ""
    481 
    482 #: includes/widgets/advanced-posts.php:192
    483 msgid "Post"
    484 msgstr ""
    485 
    486 #: includes/widgets/advanced-posts.php:214
    487 msgid "Groove"
    488 msgstr ""
    489 
    490511#: includes/widgets/advanced-posts.php:263
    491512msgid "Shadow"
Note: See TracChangeset for help on using the changeset viewer.