Plugin Directory

Changeset 2738778


Ignore:
Timestamp:
06/07/2022 05:13:33 PM (4 years ago)
Author:
vabtopic
Message:

release 1.1.9

Location:
vab-forms-with-chart
Files:
40 added
8 edited

Legend:

Unmodified
Added
Removed
  • vab-forms-with-chart/trunk/admin/admin.php

    r2736125 r2738778  
    353353            $VABFWC_FORMSA_OPT_MAIL_Copy                = $VABFWC_FORMSA_OPT && ! empty( $VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL_Copy'] ) ? 'checked="checked"' : '';
    354354            $VABFWC_FORMSA_OPT_MAIL                         = $VABFWC_FORMSA_OPT && ! empty( $VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL'] ) ? $VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL'] : '';
     355            $VABFWC_USER_SEND_MAIL                          = $VABFWC_FORMSA_OPT && ! empty( $VABFWC_FORMSA_OPT['VABFWC_USER_SEND_MAIL'] ) ? 'checked="checked"' : '';
     356            $VABFWC_NO_SEND_MAIL                                = $VABFWC_FORMSA_OPT && ! empty( $VABFWC_FORMSA_OPT['VABFWC_NO_SEND_MAIL'] ) ? 'checked="checked"' : '';
    355357            echo '<style type="text/css">
    356358                            .meta_forms label{
     
    509511                                    </td>
    510512                                </tr>
     513                                <tr>
     514                                    <td>
     515                                        <label for="VABFWC_USER_SEND_MAIL">
     516                                            <span class="ch">' . esc_html__( 'Sending an email to a user. You can activate the receipt of a copy of the letter by e-mail for the user who submitted the form.The user`s email will be taken from the «email» form field', 'VABFWC' ) . '</span>
     517                                            <input id="VABFWC_USER_SEND_MAIL" type="checkbox" name="VABFWC_USER_SEND_MAIL" ' . esc_attr( $VABFWC_USER_SEND_MAIL ) . '>
     518                                        </label>
     519                                    </td>
     520                                </tr>
     521                                <tr>
     522                                    <td>
     523                                        <label for="VABFWC_NO_SEND_MAIL">
     524                                            <span class="ch">' . esc_html__( 'Do not send emails', 'VABFWC' ) . '</span>
     525                                            <input id="VABFWC_NO_SEND_MAIL" type="checkbox" name="VABFWC_NO_SEND_MAIL" ' . esc_attr( $VABFWC_NO_SEND_MAIL ) . '>
     526                                        </label>
     527                                    </td>
     528                                </tr>
    511529                                </tbody>
    512530                            </table>';
     
    572590            $VABFWC_FORMSA_OPT_MAIL                         =   filter_input( INPUT_POST, 'VABFWC_FORMSA_OPT_MAIL', FILTER_VALIDATE_EMAIL );
    573591            $VABFWC_FORMSA_OPT_NoDi                         ? $VABFWC_FORM_OPT['VABFWC_FORMSA_OPT_NoDi'] = $VABFWC_FORMSA_OPT_NoDi : false;
     592            $VABFWC_USER_SEND_MAIL                          =   filter_input( INPUT_POST, 'VABFWC_USER_SEND_MAIL', FILTER_VALIDATE_BOOLEAN );
     593            $VABFWC_NO_SEND_MAIL                                =   filter_input( INPUT_POST, 'VABFWC_NO_SEND_MAIL', FILTER_VALIDATE_BOOLEAN );
    574594            if ( $VABFWC_FORMSA_OPT_NoDi == false ) {
    575595                $VABFWC_Class->DirDel();
     
    608628            $VABFWC_FORMSA_OPT_MAIL_Copy                ? $VABFWC_FORM_OPT['VABFWC_FORMSA_OPT_MAIL_Copy']               = $VABFWC_FORMSA_OPT_MAIL_Copy              : true;
    609629            $VABFWC_FORMSA_OPT_MAIL                         ? $VABFWC_FORM_OPT['VABFWC_FORMSA_OPT_MAIL']                            = $VABFWC_FORMSA_OPT_MAIL                       : true;
     630            $VABFWC_USER_SEND_MAIL                          ?   $VABFWC_FORM_OPT['VABFWC_USER_SEND_MAIL']                               = $VABFWC_USER_SEND_MAIL                            : true;
     631            $VABFWC_NO_SEND_MAIL                                ?   $VABFWC_FORM_OPT['VABFWC_NO_SEND_MAIL']                                 = $VABFWC_NO_SEND_MAIL                              : true;
    610632            if ( ! empty( $VABFWC_FORM_OPT ) ) {
    611633                update_post_meta( $post_ID, 'VABFWC_FORM_OPT', $VABFWC_FORM_OPT );
     
    770792                        '</center>' .
    771793                        '<ol>' .
    772                             '<li>' . esc_html__( 'Fixed - notification about undefined variable', 'VABFWC' ) . '</li>' .
    773                             '<li>' . esc_html__( 'Added a submenu where you can read about the current release', 'VABFWC' ) . '</li>' .
    774                             '<li>' . esc_html__( 'Added attributes for shortcode. Now you can add any id and class to a form', 'VABFWC' ) .
    775                                 '<ul>' .
    776                                     '<li>' . esc_html__( 'Example', 'VABFWC' ) . ':' .
    777                                         '<p>' .
    778                                             '<code>' .
    779                                                 '[VABFWC id="2228" form_id="ThisID" form_class="new-class two-new-class"]' .
    780                                             '</code>' .
    781                                         '</p>' .
    782                                     '</li>' .
    783                                 '</ul>' .
    784                             '</li>' .
     794                            '<li>' . esc_html__( 'Added an option that cancels sending emails', 'VABFWC' ) . '</li>' .
     795                            '<li>' . esc_html__( 'Added classes and IDs to the form elements', 'VABFWC' ) . '</li>' .
     796                            '<li>' . esc_html__( 'Added the ability to send a copy of an email to a user', 'VABFWC' ) . '</li>' .
     797                            '<li>' . esc_html__( 'Added Gutenberg blocks for quick and easy output of forms and charts', 'VABFWC' ) . '</li>' .
    785798                        '</ol>' .
    786799                    '</div>';
  • vab-forms-with-chart/trunk/includes/SHORTCODE.php

    r2736738 r2738778  
    7979    );
    8080    $Erchik                             = esc_html__( 'Check entered data', 'VABFWC' );
     81    $VABFWC_USER_SEND_MAIL= '';
    8182    $VABFWC_SizeSum             =   0;
    8283    $F_S_M                              =   ! empty( $VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_SIZE'] ) ? sanitize_text_field( intval( $VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_SIZE'] ) ) : '3';
     
    113114        }
    114115    }
    115     if ( isset( $_POST['submitted'] ) ) {
     116    if ( isset( $_POST['submitted_' . $id] ) ) {
    116117        if ( ! file_exists( $VABFWC_Class->FD ) && ! empty( $VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_NoDi'] ) ) {
    117118            mkdir( $VABFWC_Class->FD, 0755, true );
     
    239240                    if ( isset($_POST[$k]) && $_POST[$k] !== '' && !VABFWC_Chek_url( $_POST[$k] ) && VABFWC_is_email( $_POST[$k] ) ) {
    240241                        $ok = sanitize_text_field( $_POST[$k] );
     242                        $VABFWC_USER_SEND_MAIL = sanitize_text_field( $_POST[$k] );
    241243                    }   else {
    242244                        $hasError = true;
     
    400402            'br'                                =>  array(),
    401403        );
    402         $body = '<html xmlns="http://www.w3.org/1999/xhtml">' .
    403                             '<head>' .
    404                                 '<title>' . $sub . '</title>' .
    405                             '</head>' .
    406                             '<body class="myBody" style="padding:0px;margin:0px;word-break:normal;">' .
    407                                 '<table style="background-color:#014266;max-width:100%;min-width:100%;padding:0;width:100%;" width="100%" cellspacing="0" cellpadding="0" border="0">' .
    408                                 '<tbody>' .
    409                                     '<tr>' .
    410                                         '<td valign="middle" align="center">' .
    411                                             '<table style="border:0;max-width:600px;padding:0;width:100%;" cellspacing="0" cellpadding="0" border="0" align="center">' .
    412                                                 '<tbody>' .
    413                                                     '<tr>' .
    414                                                         $tdIn .
    415                                                         '<td style="padding-bottom:50px;padding-top:30px;" align="center">' .
    416                                                             '<p style="color:#FFF;font-size:20px;font-style:normal;font-weight:100;line-height:24px;margin-bottom:0;margin-top:0;padding-bottom:10px;">' .
    417                                                                 '<strong>' . $Titla . '</strong>' .
    418                                                             '</p>' .
    419                                                             '<table style="border:0;max-width:600px;padding:0;width:100%;" cellspacing="2" border="1" cellpadding="5">' .
    420                                                                 '<tbody>' .
    421                                                                     '<tr style="text-align:center;color:#FFF;">' .
    422                                                                         '<th ' . $sty . ' valign="top">' .
    423                                                                             '<p style="padding:4px;">' . $Qw .
    424                                                                         '</th>' .
    425                                                                         '<th ' . $sty . ' valign="top">' .
    426                                                                             '<p style="padding:4px;">' . $Ans .
    427                                                                         '</th>' .
    428                                                                         '<th ' . $sty . ' valign="top">' .
    429                                                                             '<p style="padding:4px;">' . $Oth .
    430                                                                         '</th>' .
    431                                                                     '</tr>' .
    432                                                                     $ChBody .
    433                                                                 '</tbody>' .
    434                                                             '</table>' .
    435                                                             '<table cellspacing="0" cellpadding="0">' .
    436                                                                 '<tbody>' .
    437                                                                         '<tr style="text-align:center;">' .
    438                                                                             '<td colspan="2" valign="top">' .
    439                                                                                 '<p style="color:#FFF;font-size:14px;"> ' . $IP . ' </p>' .
    440                                                                             '</td>' .
     404        if ( empty($VABFWC_FORMSA_OPT['VABFWC_NO_SEND_MAIL']) ) {
     405            $body = '<html xmlns="http://www.w3.org/1999/xhtml">' .
     406                                '<head>' .
     407                                    '<title>' . $sub . '</title>' .
     408                                '</head>' .
     409                                '<body class="myBody" style="padding:0px;margin:0px;word-break:normal;">' .
     410                                    '<table style="background-color:#014266;max-width:100%;min-width:100%;padding:0;width:100%;" width="100%" cellspacing="0" cellpadding="0" border="0">' .
     411                                    '<tbody>' .
     412                                        '<tr>' .
     413                                            '<td valign="middle" align="center">' .
     414                                                '<table style="border:0;max-width:600px;padding:0;width:100%;" cellspacing="0" cellpadding="0" border="0" align="center">' .
     415                                                    '<tbody>' .
     416                                                        '<tr>' .
     417                                                            $tdIn .
     418                                                            '<td style="padding-bottom:50px;padding-top:30px;" align="center">' .
     419                                                                '<p style="color:#FFF;font-size:20px;font-style:normal;font-weight:100;line-height:24px;margin-bottom:0;margin-top:0;padding-bottom:10px;">' .
     420                                                                    '<strong>' . $Titla . '</strong>' .
     421                                                                '</p>' .
     422                                                                '<table style="border:0;max-width:600px;padding:0;width:100%;" cellspacing="2" border="1" cellpadding="5">' .
     423                                                                    '<tbody>' .
     424                                                                        '<tr style="text-align:center;color:#FFF;">' .
     425                                                                            '<th ' . $sty . ' valign="top">' .
     426                                                                                '<p style="padding:4px;">' . $Qw .
     427                                                                            '</th>' .
     428                                                                            '<th ' . $sty . ' valign="top">' .
     429                                                                                '<p style="padding:4px;">' . $Ans .
     430                                                                            '</th>' .
     431                                                                            '<th ' . $sty . ' valign="top">' .
     432                                                                                '<p style="padding:4px;">' . $Oth .
     433                                                                            '</th>' .
    441434                                                                        '</tr>' .
    442                                                                         '<tr style="text-align:center;">' .
    443                                                                             '<td style="padding:4px;font-size:14px;color:#FFF;" valign="top" align="center">' .
    444                                                                                 $AVT .
    445                                                                             '</td>' .
    446                                                                         '</tr>' .
    447                                                                 '</tbody>' .
    448                                                             '</table>' .
    449                                                         '</td>' .
    450                                                         $tdIn .
    451                                                     '</tr>' .
    452                                                 '</tbody>' .
    453                                             '</table>' .
    454                                         '</td>' .
    455                                     '</tr>' .
    456                                 '</tbody>' .
    457                             '</table>' .
    458                         '</body>' .
    459                     '</html>';
    460         $body                                               =   wp_kses( $body, $body_Arg );
     435                                                                        $ChBody .
     436                                                                    '</tbody>' .
     437                                                                '</table>' .
     438                                                                '<table cellspacing="0" cellpadding="0">' .
     439                                                                    '<tbody>' .
     440                                                                            '<tr style="text-align:center;">' .
     441                                                                                '<td colspan="2" valign="top">' .
     442                                                                                    '<p style="color:#FFF;font-size:14px;"> ' . $IP . ' </p>' .
     443                                                                                '</td>' .
     444                                                                            '</tr>' .
     445                                                                            '<tr style="text-align:center;">' .
     446                                                                                '<td style="padding:4px;font-size:14px;color:#FFF;" valign="top" align="center">' .
     447                                                                                    $AVT .
     448                                                                                '</td>' .
     449                                                                            '</tr>' .
     450                                                                    '</tbody>' .
     451                                                                '</table>' .
     452                                                            '</td>' .
     453                                                            $tdIn .
     454                                                        '</tr>' .
     455                                                    '</tbody>' .
     456                                                '</table>' .
     457                                            '</td>' .
     458                                        '</tr>' .
     459                                    '</tbody>' .
     460                                '</table>' .
     461                            '</body>' .
     462                        '</html>';
     463            $body                                               =   wp_kses( $body, $body_Arg );
     464        }
    461465        $validate_VABFWC                            =   apply_filters( 'VABFWC_validate_filter', false );
    462466        if ( $validate_VABFWC != false ) {
     
    526530                }
    527531            }
    528             $ADMEm    = get_option('admin_email');
    529             $ADMEm    = sanitize_email( $ADMEm );
    530             $emailTo    = $VABFWC_FORMSA_OPT && !empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL']) ? $VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL'] : get_option('admin_email');
    531             $emailTo    = sanitize_email( $emailTo );
    532             $headers    = "From:" . $emailTo . "\r\n";
    533             $headers .= "Reply-To: " . $ADMEm . "\r\n";
    534             if ( $VABFWC_FORMSA_OPT && !empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL']) && !empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL_Copy']) ) {
    535                 $headers .= "Bcc: " . $ADMEm . " <" . $ADMEm . ">\r\n";
    536             }
    537             $headers .= "Content-Type:text/html; charset=\"utf-8\"\r\n";
    538             $headers .= "X-WPVABFWC-Content-Type: text/html\n";
    539             wp_mail( $emailTo, $sub, $body, $headers, $attachment );
     532            if ( empty($VABFWC_FORMSA_OPT['VABFWC_NO_SEND_MAIL']) ) {
     533                $ADMEm    = get_option('admin_email');
     534                $ADMEm    = sanitize_email( $ADMEm );
     535                $emailTo    = $VABFWC_FORMSA_OPT && !empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL']) ? $VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL'] : get_option('admin_email');
     536                $emailTo    = sanitize_email( $emailTo );
     537                $headers    = "From:" . $emailTo . "\r\n";
     538                $headers .= "Reply-To: " . $ADMEm . "\r\n";
     539                if ( $VABFWC_FORMSA_OPT && !empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL']) && !empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_MAIL_Copy']) ) {
     540                    $headers .= "Bcc: " . $ADMEm . " <" . $ADMEm . ">\r\n";
     541                }
     542                if ( !empty($VABFWC_USER_SEND_MAIL) ) {
     543                    $headers .= "Cc: " . $VABFWC_USER_SEND_MAIL . " <" . $VABFWC_USER_SEND_MAIL . ">\r\n";
     544                }               
     545                $headers .= "Content-Type:text/html; charset=\"utf-8\"\r\n";
     546                $headers .= "X-WPVABFWC-Content-Type: text/html\n";
     547                wp_mail( $emailTo, $sub, $body, $headers, $attachment );
     548            }
    540549            if ( file_exists( $VABFWC_TEMP ) ) {
    541550                dirDel( $VABFWC_TEMP );
     
    722731        }
    723732        ECHO wp_kses( $VABFWC->FieldS(), $VABFWC_Prot_Arg ) .
    724                         '<input id="anketaSbros" type="reset" name="profilereset" value="' . esc_attr__( 'Resetting the filled fields', 'VABFWC') . '">',
     733                        '<input id="anketaSbros" type="reset" name="profilereset_' . $id . '" value="' . esc_attr__( 'Resetting the filled fields', 'VABFWC') . '">',
    725734                        '&nbsp;&nbsp;&nbsp;&nbsp;',
    726735                        '<input id="anketaSend" type="submit" name="profilesubmit" value="' . esc_attr__( 'Send', 'VABFWC') . '">',
    727                         '<input type="hidden" name="submitted" id="submitted" value="true" />',
     736                        '<input type="hidden" name="submitted_' . $id . '" id="submitted" value="true" />',
    728737                    '</form>',
    729738                    '</div>';
     
    745754            ECHO    '</form>';
    746755            if  ( !empty($VABFWC_FORMSA) &&
    747                         ( empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_ShowDi']) ||
     756                        ( empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_ShowDi']) &&
    748757                            $sentYN == $SentY ) &&
    749758                        empty($VABFWC_FORMSA_OPT['VABFWC_FORMSA_OPT_HideDi']) &&
  • vab-forms-with-chart/trunk/includes/controller.php

    r2719930 r2738778  
    8282    }
    8383}
     84add_action( 'admin_enqueue_scripts', 'all_vabfwc_enqueue_admin_scripts' );
     85if ( ! function_exists( 'all_vabfwc_enqueue_admin_scripts' ) ) {
     86    function all_vabfwc_enqueue_admin_scripts() {
     87        wp_enqueue_style(
     88            'all-vabfwc-admin-styles',
     89            VABFWC_PLUGIN_URL . '/includes/css/all-vabfwc-admin-styles.css',
     90            array(),
     91            VABFWC_VERSION,
     92            'all'
     93        );
     94    wp_enqueue_script(
     95            'vabfwc-add-gutenberg',
     96            VABFWC_PLUGIN_URL . '/includes/js/admin/vabfwc-add-gutenberg.js',
     97            array(
     98                'wp-blocks',
     99                'wp-i18n',
     100                'wp-element',
     101                'wp-components'
     102            ),
     103            VABFWC_VERSION
     104        );
     105    wp_localize_script('vabfwc-add-gutenberg', 'vabfwc_local',
     106        array(
     107            'selectformname' => esc_html__( 'Form name', 'VABFWC' ),
     108            'emptyformname' => esc_html__( 'is empty', 'VABFWC' ),
     109            'textforid' => esc_html__( 'Specify an ID for the form', 'VABFWC' ),
     110            'textforclass' => esc_html__( 'Specify an class for the form', 'VABFWC' ),
     111            'selectform' => esc_html__( 'Select form', 'VABFWC' ),
     112            'idtoform' => esc_html__( 'Id to a form', 'VABFWC' ),
     113            'classtoform' => esc_html__( 'Сlass to a form', 'VABFWC' ),
     114            'formtag' => esc_html__( 'Tag for the title', 'VABFWC' ),
     115            'formtitle' => esc_html__( 'Title to the chart', 'VABFWC' ),
     116            'chartsshort' => esc_html__( 'Display form charts', 'VABFWC' ),
     117            'textfortitle' => esc_html__( 'Specify an title for the chart', 'VABFWC' ),
     118            'texttagfortitle' => esc_html__( 'Choose a tag for the title', 'VABFWC' ),
     119            'classtotag' => esc_html__( 'Сlass for the tag in title', 'VABFWC' ),
     120            'textclassfortag' => esc_html__( 'Specify an class for the tag', 'VABFWC' ),
     121        )
     122    );
     123    }
     124}
     125add_action( 'admin_footer', 'vabfwc_form_from_gutenberg' );
     126if ( ! function_exists( 'vabfwc_form_from_gutenberg' ) ) {
     127    function  vabfwc_form_from_gutenberg() {
     128    $args = array(
     129            'post_type'      => 'vab_fwc',
     130            'post_status'    => 'publish',
     131            'posts_per_page' => - 1,
     132    );
     133    $query = new WP_Query( $args );
     134    $number = 0 ;
     135    $str_add_vabfwc_form = '';
     136    if ( $query->have_posts() ) {
     137        while ( $query->have_posts() ) {
     138            $query->the_post();
     139            $str_add_vabfwc_form .='<input id="form' . esc_html( $query->post->ID ) . '" type="hidden" name="nameform" data-id="' . esc_html( $query->post->ID ) . '" checked></input><label for="form' . esc_html( $query->post->ID ) . '"><span>' . esc_html( get_the_title() ) . '</span></label>';
     140        }
     141    }
     142    wp_reset_postdata();
     143    echo '<div id="vabfwc_name_form">
     144                ' . wp_specialchars_decode( $str_add_vabfwc_form ) . '
     145             </div>';
     146}}
     147add_filter( 'block_categories_all', 'vabfwc_block_categories', 10, 2);
     148if ( !function_exists( 'vabfwc_block_categories' ) ) {
     149    function vabfwc_block_categories( $categories,$post ) {
     150        return array_merge(
     151            array(
     152                array(
     153                    'slug'  =>  'vabfwc_category',
     154                    'title' =>  esc_html__( 'Forms with chart from VAB', 'VABFWC' ),
     155                    'icon'  =>  'wordpress',
     156                ),
     157            ),
     158            $categories
     159        );
     160    }
     161}
  • vab-forms-with-chart/trunk/languages/VABFWC-ru_RU.po

    r2736125 r2738778  
    22msgstr ""
    33"Project-Id-Version: Forms with chart from VAB\n"
    4 "POT-Creation-Date: 2022-06-02 11:27+0500\n"
    5 "PO-Revision-Date: 2022-06-02 11:36+0500\n"
     4"POT-Creation-Date: 2022-06-07 22:02+0500\n"
     5"PO-Revision-Date: 2022-06-07 22:03+0500\n"
    66"Last-Translator: \n"
    77"Language-Team: VAB Team <m@it-vab.ru>\n"
     
    215215msgstr "Дополнительные опции"
    216216
    217 #: admin/admin.php:379
     217#: admin/admin.php:381
    218218msgid "Write form responses to log files"
    219219msgstr "Записывать ответы формы в лог файлы"
    220220
    221 #: admin/admin.php:387
     221#: admin/admin.php:389
    222222msgid "Don`t write date to log files"
    223223msgstr "Не записывать дату в лог-файлы"
    224224
    225 #: admin/admin.php:395
     225#: admin/admin.php:397
    226226msgid "Don`t write IP address to log files"
    227227msgstr "Не записывать IP-адрес в лог-файлы"
    228228
    229 #: admin/admin.php:403
     229#: admin/admin.php:405
    230230msgid "Don`t write user Agent to log files"
    231231msgstr "Не записывать пользовательский агент в лог-файлы"
    232232
    233 #: admin/admin.php:411
     233#: admin/admin.php:413
    234234msgid "Block access to log files with htaccess"
    235235msgstr "Блокировать доступ к лог файлам с помощью htaccess"
    236236
    237 #: admin/admin.php:419
     237#: admin/admin.php:421
    238238msgid "Don`t show chart"
    239239msgstr "Не показывать диаграмму"
    240240
    241 #: admin/admin.php:427
     241#: admin/admin.php:429
    242242msgid "Always show the charts at the end of the questionnaire"
    243243msgstr "Всегда показывать диаграммы в конце анкеты"
    244244
    245 #: admin/admin.php:435
     245#: admin/admin.php:437
    246246msgid "Show the charts only for the administrators"
    247247msgstr "Показывать диаграммы только для администраторов"
    248248
    249 #: admin/admin.php:443
     249#: admin/admin.php:445
    250250msgid "Hide the total number of completed questionnaires"
    251251msgstr "Скрыть общее число заполнения анкеты"
    252252
    253 #: admin/admin.php:451
     253#: admin/admin.php:453
    254254msgid "Show total answers per question above pie chart"
    255255msgstr "Показывать общее число ответов на вопрос над круговой диаграммой"
    256256
    257 #: admin/admin.php:459
     257#: admin/admin.php:461
    258258msgid "Hide the total selection number of each checkbox"
    259259msgstr "Спрятать общее число выбора каждого чекбокса"
    260260
    261 #: admin/admin.php:467
     261#: admin/admin.php:469
    262262msgid "Add the ability to send a file"
    263263msgstr "Добавить возможность отправить файл"
    264264
    265 #: admin/admin.php:474
     265#: admin/admin.php:476
    266266msgid "Multiple File Upload"
    267267msgstr "Загрузка нескольких файлов"
    268268
    269 #: admin/admin.php:482
     269#: admin/admin.php:484
    270270msgid "Total files size"
    271271msgstr "Общий размер файлов"
    272272
    273 #: admin/admin.php:490
     273#: admin/admin.php:492
    274274msgid "Allowed extensions. Separate by comma"
    275275msgstr "Разрешенные расширения. Разделяйте запятой"
    276276
    277 #: admin/admin.php:498
     277#: admin/admin.php:500
    278278msgid "Send a copy of the form to the admin"
    279279msgstr "Отправлять копию формы админу"
    280280
    281 #: admin/admin.php:498
     281#: admin/admin.php:500
    282282msgid "The field below must be filled"
    283283msgstr "Поле ниже должно быть заполнено"
    284284
    285 #: admin/admin.php:506
     285#: admin/admin.php:508
    286286msgid "Email to send the form to"
    287287msgstr "Почта, на которую отправлять форму"
    288288
    289 #: admin/admin.php:629
     289#: admin/admin.php:516
     290msgid ""
     291"Sending an email to a user. You can activate the receipt of a copy of the "
     292"letter by e-mail for the user who submitted the form.The user`s email will "
     293"be taken from the «email» form field"
     294msgstr ""
     295"Отправка электронной почты пользователю. Вы можете активировать получении "
     296"копии письма по электронной почте для пользователя, отправившего форму. "
     297"Электронная почта пользователя будет взята из поля формы «email»"
     298
     299#: admin/admin.php:524
     300msgid "Do not send emails"
     301msgstr "Не отправлять электронные письма"
     302
     303#: admin/admin.php:651
    290304msgid "Shortcode"
    291305msgstr "Шорткод"
    292306
    293 #: admin/admin.php:666 admin/admin.php:667 admin/admin.php:677
     307#: admin/admin.php:688 admin/admin.php:689 admin/admin.php:699
    294308msgid "About release"
    295309msgstr "О выпуске"
    296310
    297 #: admin/admin.php:682
     311#: admin/admin.php:704
    298312msgid "Plugin Name"
    299313msgstr "Название плагина"
    300314
    301 #: admin/admin.php:690
     315#: admin/admin.php:712
    302316msgid "Description"
    303317msgstr "Описание"
    304318
    305 #: admin/admin.php:693
     319#: admin/admin.php:715
    306320msgid ""
    307321"Simple Plugin for creating forms, inquirer and questionnaires with the "
     
    311325"отображения результатов в виде диаграмм"
    312326
    313 #: admin/admin.php:698
     327#: admin/admin.php:720
    314328msgid "Author"
    315329msgstr "Автор"
    316330
    317331#. Author of the plugin/theme
    318 #: admin/admin.php:701
     332#: admin/admin.php:723
    319333msgid "Vladimir Anatol`evich Brumer"
    320334msgstr "Владимир Анатольевич Брумер"
    321335
    322 #: admin/admin.php:706
     336#: admin/admin.php:728
    323337msgid "Version"
    324338msgstr "Версия"
    325339
    326 #: admin/admin.php:715
     340#: admin/admin.php:737
    327341msgid "Version Wordpress at least"
    328342msgstr "Версия Wordpress не ниже"
    329343
    330 #: admin/admin.php:723
     344#: admin/admin.php:745
    331345msgid "Tested Wordpress up to"
    332346msgstr "Совместим вплоть до"
    333347
    334 #: admin/admin.php:731
     348#: admin/admin.php:753
    335349msgid "Requires PHP"
    336350msgstr "Требуется PHP"
    337351
    338 #: admin/admin.php:739
     352#: admin/admin.php:761
    339353msgid "Plugin URI"
    340354msgstr "URI плагина"
    341355
    342 #: admin/admin.php:749
     356#: admin/admin.php:771
    343357msgid "GitHub"
    344358msgstr "GitHub"
    345359
    346 #: admin/admin.php:759
     360#: admin/admin.php:781
    347361msgid "Donate link"
    348362msgstr "Ссылка для поддержки"
    349363
    350 #: admin/admin.php:769
     364#: admin/admin.php:791
    351365msgid "New in version"
    352366msgstr "Новое в версии"
    353367
    354 #: admin/admin.php:772
    355 msgid "Fixed - notification about undefined variable"
    356 msgstr "Исправлено - уведомление о неопределенной переменной"
    357 
    358 #: admin/admin.php:773
    359 msgid "Added a submenu where you can read about the current release"
    360 msgstr "Добавлено подменю, в котором можно ознакомиться о текущем выпуске"
    361 
    362 #: admin/admin.php:774
    363 msgid ""
    364 "Added attributes for shortcode. Now you can add any id and class to a form"
     368#: admin/admin.php:794
     369msgid "Added an option that cancels sending emails"
     370msgstr "Добавлена опция, которая отменяет отправку писем"
     371
     372#: admin/admin.php:795
     373msgid "Added classes and IDs to the form elements"
     374msgstr "Добавлены классы и идентификаторы к элементам формы"
     375
     376#: admin/admin.php:796
     377msgid "Added the ability to send a copy of an email to a user"
     378msgstr "Добавлена возможность отправки копии электронного письма пользователю"
     379
     380#: admin/admin.php:797
     381msgid "Added Gutenberg blocks for quick and easy output of forms and charts"
    365382msgstr ""
    366 "Добавлены атрибуты для шорткода. Теперь вы можете добавить в форму любой "
    367 "идентификатор и класс"
    368 
    369 #: admin/admin.php:776
    370 msgid "Example"
    371 msgstr "Пример"
     383"Добавлены блоки гутенберга для быстрого и удобного вывода форм и диаграмм"
    372384
    373385#: includes/SHORTCODE.php:80
     
    375387msgstr "Проверьте введенные данные"
    376388
    377 #: includes/SHORTCODE.php:85
     389#: includes/SHORTCODE.php:86
    378390msgid "Uploaded file size bytes/Mb"
    379391msgstr "Размер загруженного файла байт/Mb"
    380392
    381 #: includes/SHORTCODE.php:107
     393#: includes/SHORTCODE.php:108
    382394msgid "Confirm the reset by checking the box"
    383395msgstr "Подтвердите сброс, поставив галочку"
    384396
    385 #: includes/SHORTCODE.php:139
     397#: includes/SHORTCODE.php:140
    386398msgid "Message from the site"
    387399msgstr "Сообщение с сайта"
    388400
    389 #: includes/SHORTCODE.php:143
     401#: includes/SHORTCODE.php:144
    390402msgid "Form"
    391403msgstr "Форма"
    392404
    393 #: includes/SHORTCODE.php:147
     405#: includes/SHORTCODE.php:148
    394406msgid "Questionnaire content"
    395407msgstr "Содержание анкеты"
    396408
    397 #: includes/SHORTCODE.php:148
     409#: includes/SHORTCODE.php:149
    398410msgid "IP address"
    399411msgstr "IP-адрес"
    400412
    401 #: includes/SHORTCODE.php:150
     413#: includes/SHORTCODE.php:151
    402414msgid "The form author Vladimir Anatolyevich Brumer"
    403415msgstr "Автор формы Владимир Анатольевич Брумер"
    404416
    405 #: includes/SHORTCODE.php:159
     417#: includes/SHORTCODE.php:160
    406418msgid "Question"
    407419msgstr "Вопрос"
    408420
    409 #: includes/SHORTCODE.php:160
     421#: includes/SHORTCODE.php:161
    410422msgid "Possible answer"
    411423msgstr "Вариант ответа"
    412424
    413 #: includes/SHORTCODE.php:161
     425#: includes/SHORTCODE.php:162
    414426msgid "Your own answer"
    415427msgstr "Свой вариант ответа"
    416428
    417 #: includes/SHORTCODE.php:343
     429#: includes/SHORTCODE.php:345
    418430msgid "Links not allowed"
    419431msgstr "Ссылки запрещены"
    420432
    421 #: includes/SHORTCODE.php:487
     433#: includes/SHORTCODE.php:491
    422434msgid " One or more files exceed the allowed size "
    423435msgstr " Один или несколько файлов превышают допустимый размер "
    424436
    425 #: includes/SHORTCODE.php:487 includes/SHORTCODE.php:508
     437#: includes/SHORTCODE.php:491 includes/SHORTCODE.php:512
    426438msgid " Мб"
    427439msgstr "Mb"
    428440
    429 #: includes/SHORTCODE.php:492
     441#: includes/SHORTCODE.php:496
    430442msgid " One or more files are not in a valid format"
    431443msgstr " Один или несколько файлов имеют недопустимый формат"
    432444
    433 #: includes/SHORTCODE.php:493
     445#: includes/SHORTCODE.php:497
    434446msgid "File"
    435447msgstr "Файл"
    436448
    437 #: includes/SHORTCODE.php:494
     449#: includes/SHORTCODE.php:498
    438450msgid "have extension"
    439451msgstr "имеет расширение"
    440452
    441 #: includes/SHORTCODE.php:508
     453#: includes/SHORTCODE.php:512
    442454msgid " The total size of files exceeds the allowed size "
    443455msgstr " Общий размер файлов превышает допустимый размер"
    444456
    445 #: includes/SHORTCODE.php:548
     457#: includes/SHORTCODE.php:557
    446458msgid "Data array is empty"
    447459msgstr "Массив с данными пуст"
    448460
    449 #: includes/SHORTCODE.php:550
     461#: includes/SHORTCODE.php:559
    450462msgid "Text input field..."
    451463msgstr "Поле для ввода текста..."
    452464
    453 #: includes/SHORTCODE.php:551
     465#: includes/SHORTCODE.php:560
    454466msgid "Write your answer"
    455467msgstr "Напишите Ваш вариант ответа"
    456468
    457 #: includes/SHORTCODE.php:553
     469#: includes/SHORTCODE.php:562
    458470msgid "Your message was successfully sent"
    459471msgstr "Ваше сообщение успешно отправлено"
    460472
    461 #: includes/SHORTCODE.php:554
     473#: includes/SHORTCODE.php:563
    462474msgid "Message not sent"
    463475msgstr "Сообщение не отправлено"
    464476
    465 #: includes/SHORTCODE.php:564
     477#: includes/SHORTCODE.php:573
    466478msgid "The results are displayed at the end of the questionnaire"
    467479msgstr "Результаты отображаются в конце анкеты"
    468480
    469 #: includes/SHORTCODE.php:565
     481#: includes/SHORTCODE.php:574
    470482msgid ""
    471483"Results will be displayed after filling out and sending the questionnaire"
    472484msgstr "Результаты будут отображены после заполнения и отправки анкеты"
    473485
    474 #: includes/SHORTCODE.php:601
     486#: includes/SHORTCODE.php:610
    475487msgid "URL input field"
    476488msgstr "Поле для ввода URL"
    477489
    478 #: includes/SHORTCODE.php:607
     490#: includes/SHORTCODE.php:616
    479491msgid "Phone input field"
    480492msgstr "Поле для ввода телефона"
    481493
    482 #: includes/SHORTCODE.php:613
     494#: includes/SHORTCODE.php:622
    483495msgid "Email input field"
    484496msgstr "Поле для ввода Email"
    485497
    486 #: includes/SHORTCODE.php:619
     498#: includes/SHORTCODE.php:628
    487499msgid "Input field type «Date»"
    488500msgstr "Тип поля для ввода «Дата»"
    489501
    490 #: includes/SHORTCODE.php:625
     502#: includes/SHORTCODE.php:634
    491503msgid "Input field type «Range»"
    492504msgstr "Тип поля ввода «Слайдер»"
    493505
    494 #: includes/SHORTCODE.php:625
     506#: includes/SHORTCODE.php:634
    495507msgid "Input field type «Number»"
    496508msgstr "Тип поля ввода «Номер»"
    497509
    498 #: includes/SHORTCODE.php:648
     510#: includes/SHORTCODE.php:657
    499511msgid "Input field type «Dropdown list»"
    500512msgstr "Тип поля «Раскрывающийся список»"
    501513
    502 #: includes/SHORTCODE.php:650
     514#: includes/SHORTCODE.php:659
    503515msgid "Choose a variant"
    504516msgstr "Выберите вариант"
    505517
    506 #: includes/SHORTCODE.php:679 includes/SHORTCODE.php:683
    507 #: includes/SHORTCODE.php:684 includes/VABFWC_CLASS/VABFWC_Class_Graphic.php:50
     518#: includes/SHORTCODE.php:688 includes/SHORTCODE.php:692
     519#: includes/SHORTCODE.php:693 includes/VABFWC_CLASS/VABFWC_Class_Graphic.php:50
    508520#: includes/VABFWC_CLASS/VABFWC_Class_Graphic.php:69
    509521#: includes/VABFWC_CLASS/VABFWC_Class_Graphic.php:87
     
    511523msgstr "Другое"
    512524
    513 #: includes/SHORTCODE.php:706
     525#: includes/SHORTCODE.php:715
    514526msgid " Sorry, the message was not sent."
    515527msgstr " Извините, сообщение не было отправлено."
    516528
    517 #: includes/SHORTCODE.php:710 includes/controller.php:14
     529#: includes/SHORTCODE.php:719 includes/controller.php:14
    518530msgid "Select files"
    519531msgstr "Выберите файлы"
    520532
    521 #: includes/SHORTCODE.php:711
     533#: includes/SHORTCODE.php:720
    522534msgid "Valid File Format"
    523535msgstr "Допустимый формат файлов"
    524536
    525 #: includes/SHORTCODE.php:724
     537#: includes/SHORTCODE.php:733
    526538msgid "Resetting the filled fields"
    527539msgstr "Сброс заполненных полей"
    528540
    529 #: includes/SHORTCODE.php:726 includes/VABFWC_CLASS/VABFWC_Class_Adm.php:46
     541#: includes/SHORTCODE.php:735 includes/VABFWC_CLASS/VABFWC_Class_Adm.php:46
    530542msgid "Send"
    531543msgstr "Отправить"
    532544
    533 #: includes/SHORTCODE.php:735
     545#: includes/SHORTCODE.php:744
    534546msgid "Table deleted successfully"
    535547msgstr "Таблица успешно удалена"
     
    576588msgstr "Выбрано файлов"
    577589
     590#: includes/controller.php:107
     591msgid "Form name"
     592msgstr "Название формы"
     593
     594#: includes/controller.php:108
     595msgid "is empty"
     596msgstr "не заполнено"
     597
     598#: includes/controller.php:109
     599msgid "Specify an ID for the form"
     600msgstr "Укажите идентификатор для формы"
     601
     602#: includes/controller.php:110
     603msgid "Specify an class for the form"
     604msgstr "Укажите класс для формы"
     605
     606#: includes/controller.php:111
     607msgid "Select form"
     608msgstr "Выберите форму"
     609
     610#: includes/controller.php:112
     611msgid "Id to a form"
     612msgstr "Идентификатор формы"
     613
     614#: includes/controller.php:113
     615msgid "Сlass to a form"
     616msgstr "Класс формы"
     617
     618#: includes/controller.php:114
     619msgid "Tag for the title"
     620msgstr "Тег для заголовка"
     621
     622#: includes/controller.php:115
     623msgid "Title to the chart"
     624msgstr "Заголовок для диаграммы"
     625
     626#: includes/controller.php:116
     627msgid "Display form charts"
     628msgstr "Отображение диаграмм формы"
     629
     630#: includes/controller.php:117
     631msgid "Specify an title for the chart"
     632msgstr "Укажите заголовок для диаграммы"
     633
     634#: includes/controller.php:118
     635msgid "Choose a tag for the title"
     636msgstr "Выберите тег для заголовка"
     637
     638#: includes/controller.php:119
     639msgid "Сlass for the tag in title"
     640msgstr "Класс для тега в заголовке"
     641
     642#: includes/controller.php:120
     643msgid "Specify an class for the tag"
     644msgstr "Укажите класс для тега"
     645
    578646#. Plugin Name of the plugin/theme
     647#: includes/controller.php:154
    579648msgid "Forms with chart from VAB"
    580649msgstr "Формы с диаграммой от VAB"
     
    596665msgstr "https://it-vab.ru/"
    597666
     667#~ msgid "Added a submenu where you can read about the current release"
     668#~ msgstr "Добавлено подменю, в котором можно ознакомиться о текущем выпуске"
     669
     670#~ msgid ""
     671#~ "Added attributes for shortcode. Now you can add any id and class to a form"
     672#~ msgstr ""
     673#~ "Добавлены атрибуты для шорткода. Теперь вы можете добавить в форму любой "
     674#~ "идентификатор и класс"
     675
     676#~ msgid "Example"
     677#~ msgstr "Пример"
     678
     679#~ msgid "Specify an tag for the title"
     680#~ msgstr "Укажите тег для заголовка"
     681
     682#~ msgid "Form name is empty"
     683#~ msgstr "Имя формы не заполнено"
     684
     685#~ msgid "Fixed - notification about undefined variable"
     686#~ msgstr "Исправлено - уведомление о неопределенной переменной"
     687
    598688#~ msgid "Always show the form at the end of the questionnaire"
    599689#~ msgstr "Всегда показывать форму в конце анкеты"
  • vab-forms-with-chart/trunk/languages/VABFWC.pot

    r2736125 r2738778  
    44"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
    55"Project-Id-Version: Forms with chart from VAB\n"
    6 "POT-Creation-Date: 2022-06-02 11:27+0500\n"
     6"POT-Creation-Date: 2022-06-07 22:02+0500\n"
    77"PO-Revision-Date: 2022-02-22 15:05+0500\n"
    88"Last-Translator: \n"
     
    211211msgstr ""
    212212
    213 #: admin/admin.php:379
     213#: admin/admin.php:381
    214214msgid "Write form responses to log files"
    215215msgstr ""
    216216
    217 #: admin/admin.php:387
     217#: admin/admin.php:389
    218218msgid "Don`t write date to log files"
    219219msgstr ""
    220220
    221 #: admin/admin.php:395
     221#: admin/admin.php:397
    222222msgid "Don`t write IP address to log files"
    223223msgstr ""
    224224
    225 #: admin/admin.php:403
     225#: admin/admin.php:405
    226226msgid "Don`t write user Agent to log files"
    227227msgstr ""
    228228
    229 #: admin/admin.php:411
     229#: admin/admin.php:413
    230230msgid "Block access to log files with htaccess"
    231231msgstr ""
    232232
    233 #: admin/admin.php:419
     233#: admin/admin.php:421
    234234msgid "Don`t show chart"
    235235msgstr ""
    236236
    237 #: admin/admin.php:427
     237#: admin/admin.php:429
    238238msgid "Always show the charts at the end of the questionnaire"
    239239msgstr ""
    240240
    241 #: admin/admin.php:435
     241#: admin/admin.php:437
    242242msgid "Show the charts only for the administrators"
    243243msgstr ""
    244244
    245 #: admin/admin.php:443
     245#: admin/admin.php:445
    246246msgid "Hide the total number of completed questionnaires"
    247247msgstr ""
    248248
    249 #: admin/admin.php:451
     249#: admin/admin.php:453
    250250msgid "Show total answers per question above pie chart"
    251251msgstr ""
    252252
    253 #: admin/admin.php:459
     253#: admin/admin.php:461
    254254msgid "Hide the total selection number of each checkbox"
    255255msgstr ""
    256256
    257 #: admin/admin.php:467
     257#: admin/admin.php:469
    258258msgid "Add the ability to send a file"
    259259msgstr ""
    260260
    261 #: admin/admin.php:474
     261#: admin/admin.php:476
    262262msgid "Multiple File Upload"
    263263msgstr ""
    264264
    265 #: admin/admin.php:482
     265#: admin/admin.php:484
    266266msgid "Total files size"
    267267msgstr ""
    268268
    269 #: admin/admin.php:490
     269#: admin/admin.php:492
    270270msgid "Allowed extensions. Separate by comma"
    271271msgstr ""
    272272
    273 #: admin/admin.php:498
     273#: admin/admin.php:500
    274274msgid "Send a copy of the form to the admin"
    275275msgstr ""
    276276
    277 #: admin/admin.php:498
     277#: admin/admin.php:500
    278278msgid "The field below must be filled"
    279279msgstr ""
    280280
    281 #: admin/admin.php:506
     281#: admin/admin.php:508
    282282msgid "Email to send the form to"
    283283msgstr ""
    284284
    285 #: admin/admin.php:629
     285#: admin/admin.php:516
     286msgid ""
     287"Sending an email to a user. You can activate the receipt of a copy of the "
     288"letter by e-mail for the user who submitted the form.The user`s email will "
     289"be taken from the «email» form field"
     290msgstr ""
     291
     292#: admin/admin.php:524
     293msgid "Do not send emails"
     294msgstr ""
     295
     296#: admin/admin.php:651
    286297msgid "Shortcode"
    287298msgstr ""
    288299
    289 #: admin/admin.php:666 admin/admin.php:667 admin/admin.php:677
     300#: admin/admin.php:688 admin/admin.php:689 admin/admin.php:699
    290301msgid "About release"
    291302msgstr ""
    292303
    293 #: admin/admin.php:682
     304#: admin/admin.php:704
    294305msgid "Plugin Name"
    295306msgstr ""
    296307
    297 #: admin/admin.php:690
     308#: admin/admin.php:712
    298309msgid "Description"
    299310msgstr ""
    300311
    301 #: admin/admin.php:693
     312#: admin/admin.php:715
    302313msgid ""
    303314"Simple Plugin for creating forms, inquirer and questionnaires with the "
     
    305316msgstr ""
    306317
    307 #: admin/admin.php:698
     318#: admin/admin.php:720
    308319msgid "Author"
    309320msgstr ""
    310321
    311322#. Author of the plugin/theme
    312 #: admin/admin.php:701
     323#: admin/admin.php:723
    313324msgid "Vladimir Anatol`evich Brumer"
    314325msgstr ""
    315326
    316 #: admin/admin.php:706
     327#: admin/admin.php:728
    317328msgid "Version"
    318329msgstr ""
    319330
    320 #: admin/admin.php:715
     331#: admin/admin.php:737
    321332msgid "Version Wordpress at least"
    322333msgstr ""
    323334
    324 #: admin/admin.php:723
     335#: admin/admin.php:745
    325336msgid "Tested Wordpress up to"
    326337msgstr ""
    327338
    328 #: admin/admin.php:731
     339#: admin/admin.php:753
    329340msgid "Requires PHP"
    330341msgstr ""
    331342
    332 #: admin/admin.php:739
     343#: admin/admin.php:761
    333344msgid "Plugin URI"
    334345msgstr ""
    335346
    336 #: admin/admin.php:749
     347#: admin/admin.php:771
    337348msgid "GitHub"
    338349msgstr ""
    339350
    340 #: admin/admin.php:759
     351#: admin/admin.php:781
    341352msgid "Donate link"
    342353msgstr ""
    343354
    344 #: admin/admin.php:769
     355#: admin/admin.php:791
    345356msgid "New in version"
    346357msgstr ""
    347358
    348 #: admin/admin.php:772
    349 msgid "Fixed - notification about undefined variable"
    350 msgstr ""
    351 
    352 #: admin/admin.php:773
    353 msgid "Added a submenu where you can read about the current release"
    354 msgstr ""
    355 
    356 #: admin/admin.php:774
    357 msgid ""
    358 "Added attributes for shortcode. Now you can add any id and class to a form"
    359 msgstr ""
    360 
    361 #: admin/admin.php:776
    362 msgid "Example"
     359#: admin/admin.php:794
     360msgid "Added an option that cancels sending emails"
     361msgstr ""
     362
     363#: admin/admin.php:795
     364msgid "Added classes and IDs to the form elements"
     365msgstr ""
     366
     367#: admin/admin.php:796
     368msgid "Added the ability to send a copy of an email to a user"
     369msgstr ""
     370
     371#: admin/admin.php:797
     372msgid "Added Gutenberg blocks for quick and easy output of forms and charts"
    363373msgstr ""
    364374
     
    367377msgstr ""
    368378
    369 #: includes/SHORTCODE.php:85
     379#: includes/SHORTCODE.php:86
    370380msgid "Uploaded file size bytes/Mb"
    371381msgstr ""
    372382
    373 #: includes/SHORTCODE.php:107
     383#: includes/SHORTCODE.php:108
    374384msgid "Confirm the reset by checking the box"
    375385msgstr ""
    376386
    377 #: includes/SHORTCODE.php:139
     387#: includes/SHORTCODE.php:140
    378388msgid "Message from the site"
    379389msgstr ""
    380390
    381 #: includes/SHORTCODE.php:143
     391#: includes/SHORTCODE.php:144
    382392msgid "Form"
    383393msgstr ""
    384394
    385 #: includes/SHORTCODE.php:147
     395#: includes/SHORTCODE.php:148
    386396msgid "Questionnaire content"
    387397msgstr ""
    388398
    389 #: includes/SHORTCODE.php:148
     399#: includes/SHORTCODE.php:149
    390400msgid "IP address"
    391401msgstr ""
    392402
    393 #: includes/SHORTCODE.php:150
     403#: includes/SHORTCODE.php:151
    394404msgid "The form author Vladimir Anatolyevich Brumer"
    395405msgstr ""
    396406
    397 #: includes/SHORTCODE.php:159
     407#: includes/SHORTCODE.php:160
    398408msgid "Question"
    399409msgstr ""
    400410
    401 #: includes/SHORTCODE.php:160
     411#: includes/SHORTCODE.php:161
    402412msgid "Possible answer"
    403413msgstr ""
    404414
    405 #: includes/SHORTCODE.php:161
     415#: includes/SHORTCODE.php:162
    406416msgid "Your own answer"
    407417msgstr ""
    408418
    409 #: includes/SHORTCODE.php:343
     419#: includes/SHORTCODE.php:345
    410420msgid "Links not allowed"
    411421msgstr ""
    412422
    413 #: includes/SHORTCODE.php:487
     423#: includes/SHORTCODE.php:491
    414424msgid " One or more files exceed the allowed size "
    415425msgstr ""
    416426
    417 #: includes/SHORTCODE.php:487 includes/SHORTCODE.php:508
     427#: includes/SHORTCODE.php:491 includes/SHORTCODE.php:512
    418428msgid " Мб"
    419429msgstr ""
    420430
    421 #: includes/SHORTCODE.php:492
     431#: includes/SHORTCODE.php:496
    422432msgid " One or more files are not in a valid format"
    423433msgstr ""
    424434
    425 #: includes/SHORTCODE.php:493
     435#: includes/SHORTCODE.php:497
    426436msgid "File"
    427437msgstr ""
    428438
    429 #: includes/SHORTCODE.php:494
     439#: includes/SHORTCODE.php:498
    430440msgid "have extension"
    431441msgstr ""
    432442
    433 #: includes/SHORTCODE.php:508
     443#: includes/SHORTCODE.php:512
    434444msgid " The total size of files exceeds the allowed size "
    435445msgstr ""
    436446
    437 #: includes/SHORTCODE.php:548
     447#: includes/SHORTCODE.php:557
    438448msgid "Data array is empty"
    439449msgstr ""
    440450
    441 #: includes/SHORTCODE.php:550
     451#: includes/SHORTCODE.php:559
    442452msgid "Text input field..."
    443453msgstr ""
    444454
    445 #: includes/SHORTCODE.php:551
     455#: includes/SHORTCODE.php:560
    446456msgid "Write your answer"
    447457msgstr ""
    448458
    449 #: includes/SHORTCODE.php:553
     459#: includes/SHORTCODE.php:562
    450460msgid "Your message was successfully sent"
    451461msgstr ""
    452462
    453 #: includes/SHORTCODE.php:554
     463#: includes/SHORTCODE.php:563
    454464msgid "Message not sent"
    455465msgstr ""
    456466
    457 #: includes/SHORTCODE.php:564
     467#: includes/SHORTCODE.php:573
    458468msgid "The results are displayed at the end of the questionnaire"
    459469msgstr ""
    460470
    461 #: includes/SHORTCODE.php:565
     471#: includes/SHORTCODE.php:574
    462472msgid ""
    463473"Results will be displayed after filling out and sending the questionnaire"
    464474msgstr ""
    465475
    466 #: includes/SHORTCODE.php:601
     476#: includes/SHORTCODE.php:610
    467477msgid "URL input field"
    468478msgstr ""
    469479
    470 #: includes/SHORTCODE.php:607
     480#: includes/SHORTCODE.php:616
    471481msgid "Phone input field"
    472482msgstr ""
    473483
    474 #: includes/SHORTCODE.php:613
     484#: includes/SHORTCODE.php:622
    475485msgid "Email input field"
    476486msgstr ""
    477487
    478 #: includes/SHORTCODE.php:619
     488#: includes/SHORTCODE.php:628
    479489msgid "Input field type «Date»"
    480490msgstr ""
    481491
    482 #: includes/SHORTCODE.php:625
     492#: includes/SHORTCODE.php:634
    483493msgid "Input field type «Range»"
    484494msgstr ""
    485495
    486 #: includes/SHORTCODE.php:625
     496#: includes/SHORTCODE.php:634
    487497msgid "Input field type «Number»"
    488498msgstr ""
    489499
    490 #: includes/SHORTCODE.php:648
     500#: includes/SHORTCODE.php:657
    491501msgid "Input field type «Dropdown list»"
    492502msgstr ""
    493503
    494 #: includes/SHORTCODE.php:650
     504#: includes/SHORTCODE.php:659
    495505msgid "Choose a variant"
    496506msgstr ""
    497507
    498 #: includes/SHORTCODE.php:679 includes/SHORTCODE.php:683
    499 #: includes/SHORTCODE.php:684
     508#: includes/SHORTCODE.php:688 includes/SHORTCODE.php:692
     509#: includes/SHORTCODE.php:693
    500510#: includes/VABFWC_CLASS/VABFWC_Class_Graphic.php:50
    501511#: includes/VABFWC_CLASS/VABFWC_Class_Graphic.php:69
     
    504514msgstr ""
    505515
    506 #: includes/SHORTCODE.php:706
     516#: includes/SHORTCODE.php:715
    507517msgid " Sorry, the message was not sent."
    508518msgstr ""
    509519
    510 #: includes/SHORTCODE.php:710 includes/controller.php:14
     520#: includes/SHORTCODE.php:719 includes/controller.php:14
    511521msgid "Select files"
    512522msgstr ""
    513523
    514 #: includes/SHORTCODE.php:711
     524#: includes/SHORTCODE.php:720
    515525msgid "Valid File Format"
    516526msgstr ""
    517527
    518 #: includes/SHORTCODE.php:724
     528#: includes/SHORTCODE.php:733
    519529msgid "Resetting the filled fields"
    520530msgstr ""
    521531
    522 #: includes/SHORTCODE.php:726 includes/VABFWC_CLASS/VABFWC_Class_Adm.php:46
     532#: includes/SHORTCODE.php:735 includes/VABFWC_CLASS/VABFWC_Class_Adm.php:46
    523533msgid "Send"
    524534msgstr ""
    525535
    526 #: includes/SHORTCODE.php:735
     536#: includes/SHORTCODE.php:744
    527537msgid "Table deleted successfully"
    528538msgstr ""
     
    569579msgstr ""
    570580
     581#: includes/controller.php:107
     582msgid "Form name"
     583msgstr ""
     584
     585#: includes/controller.php:108
     586msgid "is empty"
     587msgstr ""
     588
     589#: includes/controller.php:109
     590msgid "Specify an ID for the form"
     591msgstr ""
     592
     593#: includes/controller.php:110
     594msgid "Specify an class for the form"
     595msgstr ""
     596
     597#: includes/controller.php:111
     598msgid "Select form"
     599msgstr ""
     600
     601#: includes/controller.php:112
     602msgid "Id to a form"
     603msgstr ""
     604
     605#: includes/controller.php:113
     606msgid "Сlass to a form"
     607msgstr ""
     608
     609#: includes/controller.php:114
     610msgid "Tag for the title"
     611msgstr ""
     612
     613#: includes/controller.php:115
     614msgid "Title to the chart"
     615msgstr ""
     616
     617#: includes/controller.php:116
     618msgid "Display form charts"
     619msgstr ""
     620
     621#: includes/controller.php:117
     622msgid "Specify an title for the chart"
     623msgstr ""
     624
     625#: includes/controller.php:118
     626msgid "Choose a tag for the title"
     627msgstr ""
     628
     629#: includes/controller.php:119
     630msgid "Сlass for the tag in title"
     631msgstr ""
     632
     633#: includes/controller.php:120
     634msgid "Specify an class for the tag"
     635msgstr ""
     636
    571637#. Plugin Name of the plugin/theme
     638#: includes/controller.php:154
    572639msgid "Forms with chart from VAB"
    573640msgstr ""
  • vab-forms-with-chart/trunk/readme.txt

    r2737393 r2738778  
    77Requires PHP: 5.6.20
    88Tested up to: 6.0
    9 Stable tag: 1.1.8
     9Stable tag: 1.1.9
    1010License: GPLv2
    1111License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    226226== Changelog ==
    227227
     228= 1.1.9 =
     229
     230* Added an option that cancels sending emails;
     231* Added classes and IDs to the form elements;
     232* Added the ability to send a copy of an email to a user;
     233* Added Gutenberg blocks for quick and easy output of forms and charts;
     234
    228235= 1.1.8 =
    229236
  • vab-forms-with-chart/trunk/vab-forms-with-chart.php

    r2736125 r2738778  
    77 * Author:                  Vladimir Anatol`evich Brumer
    88 * License:                     GPLv2
    9  * Version:                 1.1.8
     9 * Version:                 1.1.9
    1010 *
    1111 * Text Domain:             VABFWC
     
    1919}
    2020if ( ! defined( 'VABFWC_VERSION' ) ) {
    21     define( 'VABFWC_VERSION', '1.1.8' );
     21    define( 'VABFWC_VERSION', '1.1.9' );
    2222}
    2323if ( ! defined( 'VABFWCGSU' ) ) {
Note: See TracChangeset for help on using the changeset viewer.