Usunięcie problemu z generacją przycisku w pliku PDF. Poprawienie tłumaczeń. Usunięcie nadmiarowych funkcji, metod, elementów.

This commit is contained in:
PiotrParysek 2017-05-31 21:10:55 +02:00
parent a232b1549f
commit 4a0221638e
6 changed files with 117 additions and 103 deletions

View File

@ -48,7 +48,7 @@ class DKPDF_Settings {
$page = add_menu_page( 'DK PDF', 'DK PDF', 'manage_options', 'dkpdf' . '_settings', array( $this, 'settings_page' ) ); $page = add_menu_page( 'DK PDF', 'DK PDF', 'manage_options', 'dkpdf' . '_settings', array( $this, 'settings_page' ) );
// Addons submenu // Addons submenu
add_submenu_page( 'dkpdf' . '_settings', 'Addons', 'Addons', 'manage_options', 'dkpdf-addons', array( $this, 'dkpdf_addons_screen' )); //add_submenu_page( 'dkpdf' . '_settings', 'Addons', 'Addons', 'manage_options', 'dkpdf-addons', array( $this, 'dkpdf_addons_screen' ));
// support // support
add_submenu_page( 'dkpdf' . '_settings', 'Support', 'Support', 'manage_options', 'dkpdf-support', array( $this, 'dkpdf_support_screen' )); add_submenu_page( 'dkpdf' . '_settings', 'Support', 'Support', 'manage_options', 'dkpdf-support', array( $this, 'dkpdf_support_screen' ));
@ -64,15 +64,25 @@ class DKPDF_Settings {
<h2 style="float:left;width:100%;">DK PDF Support</h2> <h2 style="float:left;width:100%;">DK PDF Support</h2>
<div class="dkpdf-item"> <div class="dkpdf-item">
<!--
<h3>Documentation</h3> <h3>Documentation</h3>
<p>Everything you need to know for getting DK PDF up and running.</p> <p>Everything you need to know for getting DK PDF up and running.</p>
<p><a href="http://wp.dinamiko.com/demos/dkpdf/documentation/" target="_blank">Go to Documentation</a></p> <p><a href="http://wp.dinamiko.com/demos/dkpdf/documentation/" target="_blank">Go to Documentation</a></p>
-->
<h3>Dokumentcja</h3>
<p>Wszystkie informacje, które potrzebujesz do uruchomienia oraz zarządznaia pluginem DK PDF</p>
<p><a href="http://wp.dinamiko.com/demos/dkpdf/documentation/" target="_blank">Dokuemtacja pluginu!</a></p>
</div> </div>
<div class="dkpdf-item"> <div class="dkpdf-item">
<!--
<h3>Support</h3> <h3>Support</h3>
<p>Having trouble? don't worry, create a ticket in the support forum.</p> <p>Having trouble? don't worry, create a ticket in the support forum.</p>
<p><a href="https://wordpress.org/support/plugin/dk-pdf" target="_blank">Go to Support</a></p> <p><a href="https://wordpress.org/support/plugin/dk-pdf" target="_blank">Go to Support</a></p>
-->
<h3>Pomoc</h3>
<p>Masz problem? Nie przejmuj się! Utwórz wątek na stronie forum pomocy DK PDF!</p>
<p><a href="https://wordpress.org/support/plugin/dk-pdf" target="_blank">Pomoc!</a></p>
</div> </div>
</div> </div>
@ -146,15 +156,15 @@ class DKPDF_Settings {
array( array(
'id' => 'pdfbutton_text', 'id' => 'pdfbutton_text',
'label' => __( 'Button text' , 'dkpdf' ), 'label' => __( 'Button text' , 'dkpdf' ),
'description' => '', 'description' => ' Tekst jaki będzie wyświetlany na przyciskach',
'type' => 'text', 'type' => 'text',
'default' => 'PDF Button', 'default' => 'Generuj PDF',//PDF Button
'placeholder' => '' 'placeholder' => ''
), ),
array( array(
'id' => 'pdfbutton_post_types', 'id' => 'pdfbutton_post_types',
'label' => __( 'Post types to apply:', 'dkpdf' ), 'label' => __( 'Post types to apply:', 'dkpdf' ),
'description' => '', 'description' => 'Domyślne wprowadzenie typów treści, w których będą umieszczone przyciski',
'type' => 'checkbox_multi', 'type' => 'checkbox_multi',
'options' => $post_types_arr, 'options' => $post_types_arr,
'default' => array() 'default' => array()
@ -162,25 +172,25 @@ class DKPDF_Settings {
array( array(
'id' => 'pdfbutton_action', 'id' => 'pdfbutton_action',
'label' => __( 'Action', 'dkpdf' ), 'label' => __( 'Action', 'dkpdf' ),
'description' => '', 'description' => 'Sposób w którym będzie można pobrać dokument PDF',
'type' => 'radio', 'type' => 'radio',
'options' => array( 'open' => 'Open PDF in new Window', 'download' => 'Download PDF directly' ), 'options' => array( 'open' => 'Otwórz plik PDF w nowym oknie', 'download' => 'Bezpośrenio pobierz plik PDF' ),//'open' => 'Open PDF in new Window', 'download' => 'Download PDF directly'
'default' => 'open' 'default' => 'open'
), ),
array( array(
'id' => 'pdfbutton_position', 'id' => 'pdfbutton_position',
'label' => __( 'Position', 'dkpdf' ), 'label' => __( 'Position', 'dkpdf' ),
'description' => '', 'description' => 'Sposób umieszczenia przycisku generowania pliku',
'type' => 'radio', 'type' => 'radio',
'options' => array( 'shortcode' => 'Use shortcode', 'before' => 'Before content', 'after' => 'After content' ), 'options' => array( 'shortcode' => 'Wykorzystuj shortcode', 'before' => 'Przed zawartością', 'after' => 'Po zawartości' ), //'shortcode' => 'Use shortcode', 'before' => 'Before content', 'after' => 'After content'
'default' => 'before' 'default' => 'shortcode'//before
), ),
array( array(
'id' => 'pdfbutton_align', 'id' => 'pdfbutton_align',
'label' => __( 'Align', 'dkpdf' ), 'label' => __( 'Align', 'dkpdf' ),
'description' => '', 'description' => 'Wyrównanie przycisku',
'type' => 'radio', 'type' => 'radio',
'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right' ), 'options' => array( 'left' => 'Lewo', 'center' => 'Środek', 'right' => 'Prawo' ),//'left' => 'Left', 'center' => 'Center', 'right' => 'Right'
'default' => 'right' 'default' => 'right'
), ),
) )
@ -189,61 +199,61 @@ class DKPDF_Settings {
// pdf setup // pdf setup
$settings['dkpdf_setup'] = array( $settings['dkpdf_setup'] = array(
'title' => __( 'PDF Setup', 'dkpdfg' ), 'title' => __( 'Ustawienia DK PDF', 'dkpdfg' ),//PDF Setup
'description' => '', 'description' => '',
'fields' => array( 'fields' => array(
array( array(
'id' => 'page_orientation', 'id' => 'page_orientation',
'label' => __( 'Page orientation', 'dkpdfg' ), 'label' => __( 'Orientacja strony', 'dkpdfg' ),//Page orientation
'description' => '', 'description' => 'Ustawienie domyślnej orintacji strony',
'type' => 'radio', 'type' => 'radio',
'options' => array( 'vertical' => 'Vertical', 'horizontal' => 'Horizontal' ), 'options' => array( 'vertical' => 'Vertical', 'horizontal' => 'Horizontal' ),
'default' => 'vertical' 'default' => 'vertical'
), ),
array( array(
'id' => 'font_size', 'id' => 'font_size',
'label' => __( 'Font size', 'dkpdfg' ), 'label' => __( 'Rozmiar czcionki', 'dkpdfg' ),//Font size
'description' => 'In points (pt)', 'description' => 'Ustawienie rozmiaru czcionki w punktach (pt)',
'type' => 'number', 'type' => 'number',
'default' => '12', 'default' => '12',
'placeholder' => '12' 'placeholder' => '12'
), ),
array( array(
'id' => 'margin_left', 'id' => 'margin_left',
'label' => __( 'Margin left', 'dkpdfg' ), 'label' => __( 'Lewy margines', 'dkpdfg' ),//Margin left
'description' => 'In points (pt)', 'description' => 'Ustawienie rozmiaru lewego marginesu w punktach (pt)',
'type' => 'number', 'type' => 'number',
'default' => '15', 'default' => '15',
'placeholder' => '15' 'placeholder' => '15'
), ),
array( array(
'id' => 'margin_right', 'id' => 'margin_right',
'label' => __( 'Margin right', 'dkpdfg' ), 'label' => __( 'Prawy margines', 'dkpdfg' ),//Margin right
'description' => 'In points (pt)', 'description' => 'Ustawienie rozmiaru prawego marginesu w punktach (pt)',
'type' => 'number', 'type' => 'number',
'default' => '15', 'default' => '15',
'placeholder' => '15' 'placeholder' => '15'
), ),
array( array(
'id' => 'margin_top', 'id' => 'margin_top',
'label' => __( 'Margin top', 'dkpdfg' ), 'label' => __( 'Górny margines', 'dkpdfg' ),//Margin top
'description' => 'In points (pt)', 'description' => 'Ustawienie rozmiaru górnego marginesu w punktach (pt)',
'type' => 'number', 'type' => 'number',
'default' => '50', 'default' => '50',
'placeholder' => '50' 'placeholder' => '50'
), ),
array( array(
'id' => 'margin_bottom', 'id' => 'margin_bottom',
'label' => __( 'Margin bottom', 'dkpdfg' ), 'label' => __( 'Dolny margines', 'dkpdfg' ),//Margin bottom
'description' => 'In points (pt)', 'description' => 'Ustawienie rozmiaru dolnego marginesu w punktach (pt)',
'type' => 'number', 'type' => 'number',
'default' => '30', 'default' => '30',
'placeholder' => '30' 'placeholder' => '30'
), ),
array( array(
'id' => 'margin_header', 'id' => 'margin_header',
'label' => __( 'Margin header', 'dkpdfg' ), 'label' => __( 'Margines nagłówka', 'dkpdfg' ),//Margin header
'description' => 'In points (pt)', 'description' => 'Ustawienie rozmiaru dolnego marginesu w punktach (pt)',
'type' => 'number', 'type' => 'number',
'default' => '15', 'default' => '15',
'placeholder' => '15' 'placeholder' => '15'
@ -270,14 +280,14 @@ class DKPDF_Settings {
'label' => __( 'Header show title', 'dkpdf' ), 'label' => __( 'Header show title', 'dkpdf' ),
'description' => '', 'description' => '',
'type' => 'checkbox', 'type' => 'checkbox',
'default' => '' 'default' => 'true'
), ),
array( array(
'id' => 'pdf_header_show_pagination', 'id' => 'pdf_header_show_pagination',
'label' => __( 'Header show pagination', 'dkpdf' ), 'label' => __( 'Header show pagination', 'dkpdf' ),
'description' => '', 'description' => '',
'type' => 'checkbox', 'type' => 'checkbox',
'default' => '' 'default' => 'true'
), ),
array( array(
'id' => 'pdf_footer_text', 'id' => 'pdf_footer_text',
@ -313,9 +323,9 @@ class DKPDF_Settings {
array( array(
'id' => 'pdf_custom_css', 'id' => 'pdf_custom_css',
'label' => __( 'PDF Custom CSS' , 'dkpdf' ), 'label' => __( 'PDF Custom CSS' , 'dkpdf' ),
'description' => __( '', 'dkpdf' ), 'description' => __( 'Wprowadź odpowiedi kod CSS by zmanipulować wyściowym plikiem PDF', 'dkpdf' ),
'type' => 'textarea_code', 'type' => 'textarea_code',
'default' => '', 'default' => '.AnkietyGO { display:none; }',
'placeholder' => '' 'placeholder' => ''
), ),
array( array(

View File

@ -197,6 +197,7 @@ class Questions_FormProcess{
return FALSE; return FALSE;
endif; endif;
$html .= '<div class="AnkietyGO">';
if ( 0 < $actual_step ): if ( 0 < $actual_step ):
$html .= '<input type="submit" name="questions_submission_back" value="' . __( $html .= '<input type="submit" name="questions_submission_back" value="' . __(
'Previous Step', 'questions-locale' 'Previous Step', 'questions-locale'
@ -216,6 +217,7 @@ class Questions_FormProcess{
$html .= '<input type="hidden" name="questions_next_step" value="' . $next_step . '" />'; $html .= '<input type="hidden" name="questions_next_step" value="' . $next_step . '" />';
$html .= '<input type="hidden" name="questions_actual_step" value="' . $actual_step . '" />'; $html .= '<input type="hidden" name="questions_actual_step" value="' . $actual_step . '" />';
$html .= '<input type="hidden" name="questions_id" value="' . $form_id . '" />'; $html .= '<input type="hidden" name="questions_id" value="' . $form_id . '" />';
$html .= '</div>';
$html .= '</form>'; $html .= '</form>';

View File

@ -12,7 +12,7 @@
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
exit; exit;
} }
/*
class Questions_FormElement_Splitter extends Questions_FormElement { class Questions_FormElement_Splitter extends Questions_FormElement {
public function __construct( $id = NULL ) { public function __construct( $id = NULL ) {
@ -37,8 +37,4 @@ class Questions_FormElement_Splitter extends Questions_FormElement {
qu_register_survey_element( 'Questions_FormElement_Splitter' ); qu_register_survey_element( 'Questions_FormElement_Splitter' );
*/

View File

@ -1,16 +1,17 @@
<?php <?php
/** /**
* Plugin Name: Questions * Plugin Name: Questions
* Plugin URI: http://www.awesome.ug * Plugin URI: https://github.com/awsmug
* Description: Drag & drop your survey/poll with the WordPress Questions plugin. <strong>!!! Attention !!!</strong> Questions will not be developed further as "Questions". Questions will change from a pure Survey Plugin to a Formbuilder. But no worry, this will not downgrade any functions and you will not loose any of your Surveys. Further informations are coming the next weeks. * Description: Stwórz swoją ankietę metodą Drag & Drop - Przeciągnij i Upuść za pomocą pluginu Questions!
* Version: 1.0.0 beta 21 * Version: 1.0
* Author: awesome.ug * Author: https://github.com/awsmug
* Author URI: http://www.awesome.ug * Author URI: https://github.com/awsmug
* Author Email: contact@awesome.ug * Author Email: contact@awesome.ug
* License: GPLv2+ * License: GPLv2+
* License URI: ./assets/license.txt * License URI: ./assets/license.txt
* Text Domain: questions-locale * Text Domain: questions-locale
* Domain Path: /languages * Domain Path: /languages
* // Drag & drop your survey/poll with the WordPress Questions plugin. <strong>!!! Attention !!!</strong> Questions will not be developed further as "Questions". Questions will change from a pure Survey Plugin to a Formbuilder. But no worry, this will not downgrade any functions and you will not loose any of your Surveys. Further informations are coming the next weeks.
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {

View File

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Questions\n" "Project-Id-Version: Questions\n"
"POT-Creation-Date: 2015-07-15 10:05+0100\n" "POT-Creation-Date: 2015-07-15 10:05+0100\n"
"PO-Revision-Date: 2017-05-22 16:57+0000\n" "PO-Revision-Date: 2017-05-31 16:56+0000\n"
"Last-Translator: admin <parys15@gmail.com>\n" "Last-Translator: admin <parys15@gmail.com>\n"
"Language-Team: Polish\n" "Language-Team: Polish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -82,7 +82,7 @@ msgstr ""
"Drogi %username%,\n" "Drogi %username%,\n"
"\n" "\n"
"Zostałeś zaproszony do udziału w ankiecie \"%survey_title%\". Aby wziąć w " "Zostałeś zaproszony do udziału w ankiecie \"%survey_title%\". Aby wziąć w "
"niej udział, wejdź:\n" "niej udział, wejdź na adres:\n"
"%survey_url%\n" "%survey_url%\n"
"\n" "\n"
"Pozdrawiam,\n" "Pozdrawiam,\n"
@ -103,8 +103,8 @@ msgid ""
msgstr "" msgstr ""
"Drogi %username%,\n" "Drogi %username%,\n"
"\n" "\n"
"Ankieta \"%survey_title%\" Nie została jeszcze zakończona. Proszę wypełnij i " "Ankieta \"%survey_title%\" nie została jeszcze zakończona.\n"
"zakończ ją. Aby wziąć w niej udział, wejdź:\n" "Proszę wypełnij i zakończ ją. Aby wziąć w niej udział, wejdź na adres:\n"
"%survey_url%\n" "%survey_url%\n"
"\n" "\n"
"Pozdrawiam,\n" "Pozdrawiam,\n"
@ -116,11 +116,11 @@ msgstr "Dziękuję za uczestnictwo w ankiecie!"
#: functions.php:146 #: functions.php:146
msgid "You are invited to answer a survey" msgid "You are invited to answer a survey"
msgstr "Zostałeś zaproszony do udziału w Ankiecie." msgstr "Zostałeś zaproszony do udziału w ankiecie."
#: functions.php:154 #: functions.php:154
msgid "Don´t forget to answer the Survey" msgid "Don´t forget to answer the Survey"
msgstr "Nie zapomnij o udziale w Ankiecie " msgstr "Nie zapomnij o udziale w ankiecie "
#. Plugin Name of the plugin/theme #. Plugin Name of the plugin/theme
msgid "Questions" msgid "Questions"
@ -129,7 +129,7 @@ msgstr "Pytania"
#. Description of the plugin/theme #. Description of the plugin/theme
msgid "Drag & drop your survey/poll with the WordPress Questions plugin." msgid "Drag & drop your survey/poll with the WordPress Questions plugin."
msgstr "" msgstr ""
"Przeciągnij i upuść twoją Ankietę / Głosowanie z pluginem WordPress " "Przeciągnij i upuść twoją ankietę / Głosowanie z pluginem WordPress "
"AnkietyGo+." "AnkietyGo+."
#: components/elements/base-elements/separator.php:47 #: components/elements/base-elements/separator.php:47
@ -159,17 +159,18 @@ msgstr "Dodaje pytanie, które może być odpowiedziane w polu tekstowym"
#: components/elements/base-elements/text.php:45 #: components/elements/base-elements/text.php:45
#: components/elements/base-elements/textarea.php:46 #: components/elements/base-elements/textarea.php:46
msgid "Minimum length" msgid "Minimum length"
msgstr "Minimalna długość" msgstr ""
"Minimalna liczba znaków\n"
#: components/elements/base-elements/text.php:47 #: components/elements/base-elements/text.php:47
#: components/elements/base-elements/textarea.php:48 #: components/elements/base-elements/textarea.php:48
msgid "The minimum number of chars which can be typed in." msgid "The minimum number of chars which can be typed in."
msgstr "Minimalna liczba znaków która może być wprowadzona" msgstr "Minimalna liczba znaków jaka może być wprowadzona "
#: components/elements/base-elements/text.php:51 #: components/elements/base-elements/text.php:51
#: components/elements/base-elements/textarea.php:52 #: components/elements/base-elements/textarea.php:52
msgid "Maximum length" msgid "Maximum length"
msgstr "Maksymalna długość" msgstr "Maksymalna liczba znaków "
#: components/elements/base-elements/text.php:53 #: components/elements/base-elements/text.php:53
#: components/elements/base-elements/textarea.php:54 #: components/elements/base-elements/textarea.php:54
@ -240,19 +241,23 @@ msgstr "Dodaj pytanie, które może być odpowiedziane w polu tekstowym"
#: components/elements/base-elements/textarea.php:58 #: components/elements/base-elements/textarea.php:58
msgid "Rows" msgid "Rows"
msgstr "Rzędy " msgstr "Liczba wierszy"
#: components/elements/base-elements/textarea.php:61 #: components/elements/base-elements/textarea.php:61
msgid "Number of rows for typing in (can be overwritten by CSS)." msgid "Number of rows for typing in (can be overwritten by CSS)."
msgstr "Liczba rzędów do wprowadzenia (może być nadpisane przez CSS)." msgstr ""
"Liczba \"wierszy edytora\" w których będzie można wprowadzić tekst (wartość "
"może być nadpisana przez odpowiednie ustawienie CSS)."
#: components/elements/base-elements/textarea.php:66 #: components/elements/base-elements/textarea.php:66
msgid "Columns" msgid "Columns"
msgstr "Kolumny" msgstr "Liczba kolumn"
#: components/elements/base-elements/textarea.php:69 #: components/elements/base-elements/textarea.php:69
msgid "Number of columns for typing in (can be overwritten by CSS)." msgid "Number of columns for typing in (can be overwritten by CSS)."
msgstr "Liczba kolumn do wprowadzenia (może być nadpisane przez CSS)." msgstr ""
"Liczba \"kolumn edytora\" w których będzie można wprowadzić tekst (wartość "
"może być nadpisana przez odpowiednie ustawienie CSS)."
#: components/elements/class-element.php:380 #: components/elements/class-element.php:380
msgid "You don´t entered any answers. Please add some to display answers here." msgid "You don´t entered any answers. Please add some to display answers here."
@ -288,7 +293,7 @@ msgstr "Proszę wybierz wartość."
#: components/elements/base-elements/multiplechoice.php:21 #: components/elements/base-elements/multiplechoice.php:21
msgid "Multiple Choice" msgid "Multiple Choice"
msgstr "Wielokrotny wybów" msgstr "Wielokrotny wybór"
#: components/elements/base-elements/multiplechoice.php:23 #: components/elements/base-elements/multiplechoice.php:23
msgid "" msgid ""
@ -352,15 +357,15 @@ msgstr "Wszystkie kategorie"
#: components/core/component.php:68 #: components/core/component.php:68
msgid "Parent Category" msgid "Parent Category"
msgstr "Główna Kategoria" msgstr "Główna kategoria"
#: components/core/component.php:69 #: components/core/component.php:69
msgid "Parent Category:" msgid "Parent Category:"
msgstr "Główna Kategoria:" msgstr "Główna kategoria:"
#: components/core/component.php:70 #: components/core/component.php:70
msgid "Edit Category" msgid "Edit Category"
msgstr "Edytuj Kategorię" msgstr "Edytuj kategorię"
#: components/core/component.php:71 #: components/core/component.php:71
msgid "Update Category" msgid "Update Category"
@ -396,7 +401,7 @@ msgstr "Wyszukaj ankietę"
#: components/core/component.php:96 components/core/component.php:97 #: components/core/component.php:96 components/core/component.php:97
msgid "No Survey available" msgid "No Survey available"
msgstr "Brak dostępnych Ankiet" msgstr "Brak dostępnych ankiet"
#: components/core/export.php:57 #: components/core/export.php:57
msgid "No answers, no exports!" msgid "No answers, no exports!"
@ -405,7 +410,7 @@ msgstr "Brak odpowiedzi - brak eksportu!"
#: components/core/export.php:59 #: components/core/export.php:59
#, php-format #, php-format
msgid "<a href=\"%s\">Export Results</a>" msgid "<a href=\"%s\">Export Results</a>"
msgstr "<a href=\"%s\">Export Wyników</a>" msgstr "<a href=\"%s\">Export wyników</a>"
#: components/core/form-process.php:95 #: components/core/form-process.php:95
msgid "There are open answers" msgid "There are open answers"
@ -426,7 +431,7 @@ msgstr "Poprzedni krok"
#: components/core/form-process.php:208 #: components/core/form-process.php:208
msgid "Finish Survey" msgid "Finish Survey"
msgstr "Kończ Ankietę" msgstr "Kończ ankietę"
#: components/core/form-process.php:212 #: components/core/form-process.php:212
msgid "Next Step" msgid "Next Step"
@ -454,7 +459,7 @@ msgstr "To jest właściwy wynik:"
#: components/core/responses.php:116 #: components/core/responses.php:116
msgid "User ID" msgid "User ID"
msgstr "Numer Identyfikacyjny Użytkownika" msgstr "Numer Identyfikacyjny użytkownika"
#: components/core/responses.php:147 #: components/core/responses.php:147
msgid "Username" msgid "Username"
@ -466,17 +471,17 @@ msgstr "Data / Godzina"
#: components/core/shortcodes.php:52 #: components/core/shortcodes.php:52
msgid "Please enter an id in the survey shortcode!" msgid "Please enter an id in the survey shortcode!"
msgstr "Proszę wprowadź Numer Identyfikacyjny ankiety w \"Krótkmi kod\"" msgstr "Proszę wprowadź Numer Identyfikacyjny ankiety w \"shortcode\""
#: components/core/shortcodes.php:57 #: components/core/shortcodes.php:57
msgid "Survey not found. Please enter another ID in your shortcode." msgid "Survey not found. Please enter another ID in your shortcode."
msgstr "" msgstr ""
"Ankieta nie znaleziona, Proszę wprowadź inny Numer Identyfikacyjny w " "Ankieta nie znaleziona. Proszę wprowadź inny Numer Identyfikacyjny w "
"\"Krótkim kodzie\" " "\"shortcode\" "
#: components/core/shortcodes.php:66 #: components/core/shortcodes.php:66
msgid "Survey Shortcode:" msgid "Survey Shortcode:"
msgstr "\"Krótki kod\" Ankiety" msgstr "\"shortcode\" ankiety"
#: components/elements/base-elements/description.php:21 #: components/elements/base-elements/description.php:21
#: components/elements/base-elements/dropdown.php:63 #: components/elements/base-elements/dropdown.php:63
@ -513,7 +518,7 @@ msgid ""
"Participiants." "Participiants."
msgstr "" msgstr ""
"Ten tekst będzie użyty jako szablon jeśli chcesz wysłać ponownie zaproszenia " "Ten tekst będzie użyty jako szablon jeśli chcesz wysłać ponownie zaproszenia "
"do Uczesników." "do uczesników."
#: components/admin/pages/settings.php:102 #: components/admin/pages/settings.php:102
msgid "From Name" msgid "From Name"
@ -522,22 +527,22 @@ msgstr "Od Nazwa Użytkownika"
#: components/admin/pages/settings.php:104 #: components/admin/pages/settings.php:104
msgid "The Name which will be shown on Emails which are send out by Questions." msgid "The Name which will be shown on Emails which are send out by Questions."
msgstr "" msgstr ""
"Nazwa Użytkownika będzie pokazana w wiadomościach EMail do których będzie " "Nazwa Użytkownika będzie pokazana w wiadomościach email do których będzie "
"wysłane Zapytanie " "wysłane zapytanie "
#: components/admin/pages/settings.php:106 #: components/admin/pages/settings.php:106
msgid "e.g. Michael Jackson" msgid "e.g. Michael Jackson"
msgstr "na przykład James Bond" msgstr "na przykład Grzegorz Brzęczyszczykiewicz"
#: components/admin/pages/settings.php:110 #: components/admin/pages/settings.php:110
msgid "From Email" msgid "From Email"
msgstr "Od adres EMail" msgstr "Od adres Email"
#: components/admin/pages/settings.php:112 #: components/admin/pages/settings.php:112
msgid "" msgid ""
"The Email will be used for the reply of the emails, send out by questions." "The Email will be used for the reply of the emails, send out by questions."
msgstr "" msgstr ""
"Wiadomość EMail będzie użyta do odpowiedzi na EMaile wysłane przez zapytania" "Wiadomość Email będzie użyta do odpowiedzi na Emaile wysłane przez zapytania"
#: components/admin/pages/settings.php:114 #: components/admin/pages/settings.php:114
msgid "e.g. myname@mydomain.com" msgid "e.g. myname@mydomain.com"
@ -546,7 +551,7 @@ msgstr "na przykład nazwa@domena.pl"
#: components/charts/class-chart-creator.php:101 #: components/charts/class-chart-creator.php:101
#: components/elements/class-element.php:197 #: components/elements/class-element.php:197
msgid "This is a Questions Survey Element." msgid "This is a Questions Survey Element."
msgstr "To jest element pytania Ankiety" msgstr "To jest element pytania ankiety"
#: components/charts/component.php:43 #: components/charts/component.php:43
msgid "Charts" msgid "Charts"
@ -554,7 +559,7 @@ msgstr "Wykresy"
#: components/charts/component.php:44 #: components/charts/component.php:44
msgid "Showing Charts in Questions." msgid "Showing Charts in Questions."
msgstr "Pokaż wykresy w Pytaniach." msgstr "Pokaż wykresy w pytaniach."
#: components/charts/dimple/chart-creator.php:67 #: components/charts/dimple/chart-creator.php:67
msgid "Answers" msgid "Answers"
@ -566,7 +571,7 @@ msgstr "Głosowania"
#: components/charts/shortcodes.php:56 #: components/charts/shortcodes.php:56
msgid "Please enter a survey id in the survey shortcode!" msgid "Please enter a survey id in the survey shortcode!"
msgstr "Proszę wprowadź Numer Identyfikacyjny Ankiety w \"krótkim kodzie\" " msgstr "Proszę wprowadź Numer Identyfikacyjny ankiety w \"krótkim kodzie\" "
#: components/charts/shortcodes.php:75 #: components/charts/shortcodes.php:75
msgid "There are no results to show." msgid "There are no results to show."
@ -575,7 +580,7 @@ msgstr "Nie ma wyników do wyświetlenia"
#: components/charts/shortcodes.php:93 #: components/charts/shortcodes.php:93
msgid "Please enter a question id in the survey shortcode!" msgid "Please enter a question id in the survey shortcode!"
msgstr "" msgstr ""
"Proszę wprowadź Numer Identyfikacyjny pytania do krótkiego kodu Ankiety." "Proszę wprowadź Numer Identyfikacyjny pytania do krótkiego kodu ankiety."
#: components/charts/shortcodes.php:118 #: components/charts/shortcodes.php:118
msgid "Results Shortcode:" msgid "Results Shortcode:"
@ -591,7 +596,7 @@ msgstr "Skrócony kod"
#: components/class-component.php:68 #: components/class-component.php:68
msgid "This is a Questions component." msgid "This is a Questions component."
msgstr "To jest komponent Pytania" msgstr "To jest komponent pytania"
#: components/core/component.php:39 #: components/core/component.php:39
msgid "Core" msgid "Core"
@ -599,7 +604,7 @@ msgstr "Rdzeń"
#: components/core/component.php:40 #: components/core/component.php:40
msgid "Core functions of the Questions Plugin" msgid "Core functions of the Questions Plugin"
msgstr "Funkcje rdzeniowe Pluginu Ankiet" msgstr "Funkcje rdzeniowe pluginu Ankiet"
#: components/core/component.php:64 #: components/core/component.php:64
msgctxt "taxonomy general name" msgctxt "taxonomy general name"
@ -617,11 +622,11 @@ msgstr "Przeszukaj kategorie"
#: components/admin/form-builder.php:299 #: components/admin/form-builder.php:299
msgid "Add Participiants" msgid "Add Participiants"
msgstr "Dodaj Uczestnika" msgstr "Dodaj uczestnika"
#: components/admin/form-builder.php:302 #: components/admin/form-builder.php:302
msgid "Remove all Participiants" msgid "Remove all Participiants"
msgstr "Usuń wszystkich Uczestników" msgstr "Usuń wszystkich uczestników"
#: components/admin/form-builder.php:311 components/admin/form-builder.php:973 #: components/admin/form-builder.php:311 components/admin/form-builder.php:973
msgid "participiant/s" msgid "participiant/s"
@ -633,15 +638,15 @@ msgstr "ID"
#: components/admin/form-builder.php:319 #: components/admin/form-builder.php:319
msgid "User nicename" msgid "User nicename"
msgstr "Login Uczestnika" msgstr "Login uczestnika"
#: components/admin/form-builder.php:320 #: components/admin/form-builder.php:320
msgid "Display name" msgid "Display name"
msgstr "Wyświetlona Nazwa" msgstr "Wyświetlona nazwa"
#: components/admin/form-builder.php:321 #: components/admin/form-builder.php:321
msgid "Email" msgid "Email"
msgstr "EMail" msgstr "Email"
#: components/admin/form-builder.php:322 #: components/admin/form-builder.php:322
msgid "Status" msgid "Status"
@ -678,15 +683,15 @@ msgstr "Nie"
#: components/admin/form-builder.php:445 #: components/admin/form-builder.php:445
msgid "Dublicate Survey" msgid "Dublicate Survey"
msgstr "Z duplikuj Ankietę" msgstr "Z duplikuj ankietę"
#: components/admin/form-builder.php:452 #: components/admin/form-builder.php:452
msgid "Delete survey results" msgid "Delete survey results"
msgstr "Usuń wyniki Ankiety" msgstr "Usuń wyniki ankiety"
#: components/admin/form-builder.php:461 #: components/admin/form-builder.php:461
msgid "Invite Participiants" msgid "Invite Participiants"
msgstr "Zaproś Uczesników" msgstr "Zaproś uczestników"
#: components/admin/form-builder.php:464 components/admin/form-builder.php:475 #: components/admin/form-builder.php:464 components/admin/form-builder.php:475
msgid "Cancel" msgid "Cancel"
@ -694,12 +699,12 @@ msgstr "Usuń"
#: components/admin/form-builder.php:472 #: components/admin/form-builder.php:472
msgid "Reinvite Participiants" msgid "Reinvite Participiants"
msgstr "Zaproś ponownie Uczesników" msgstr "Zaproś ponownie uczestników"
#: components/admin/form-builder.php:481 #: components/admin/form-builder.php:481
msgid "" msgid ""
"You can invite Participiants to this survey after the survey is published." "You can invite Participiants to this survey after the survey is published."
msgstr "Możesz zaprosić Uczestników do tej ankiety po opublikowaniu ankiety." msgstr "Możesz zaprosić uczestników do tej ankiety po jej opublikowaniu."
#: components/admin/form-builder.php:957 #: components/admin/form-builder.php:957
msgid "just added" msgid "just added"
@ -723,7 +728,7 @@ msgstr "Ponowne zaproszenia nie mogły być wysłane!"
#: components/admin/form-builder.php:967 #: components/admin/form-builder.php:967
msgid "Survey results deleted successfully!" msgid "Survey results deleted successfully!"
msgstr "Wyniki Ankiety usunięte!" msgstr "Wyniki ankiety usunięte!"
#: components/admin/form-builder.php:970 #: components/admin/form-builder.php:970
msgid "Survey duplicated successfully!" msgid "Survey duplicated successfully!"
@ -731,7 +736,7 @@ msgstr "Ankieta zduplikowana!"
#: components/admin/form-builder.php:972 components/core/component.php:92 #: components/admin/form-builder.php:972 components/core/component.php:92
msgid "Edit Survey" msgid "Edit Survey"
msgstr "Edytuj Ankietę!" msgstr "Edytuj ankietę!"
#: components/admin/form-builder.php:974 #: components/admin/form-builder.php:974
msgid "You are under 50 form fields away from reaching PHP max_num_fields!" msgid "You are under 50 form fields away from reaching PHP max_num_fields!"
@ -871,17 +876,17 @@ msgstr "Dziękuję za udział"
msgid "This text will be used on thanking members after participating survey." msgid "This text will be used on thanking members after participating survey."
msgstr "" msgstr ""
"Ten tekst będzie wykorzystany do podziękowania uczestnikom w udziale w " "Ten tekst będzie wykorzystany do podziękowania uczestnikom w udziale w "
"Ankiecie" "ankiecie"
#: components/admin/pages/settings.php:78 #: components/admin/pages/settings.php:78
#: components/admin/pages/settings.php:89 #: components/admin/pages/settings.php:89
#: components/admin/pages/settings.php:98 #: components/admin/pages/settings.php:98
msgid "Usable template tags:" msgid "Usable template tags:"
msgstr "Wykorzystywane szablony Tagów" msgstr "Wykorzystywane szablony tagów"
#: components/admin/pages/settings.php:83 #: components/admin/pages/settings.php:83
msgid "Invitation text Template" msgid "Invitation text Template"
msgstr "Szablon tekstu Zaproszenia" msgstr "Szablon tekstu zaproszenia"
#: components/admin/pages/settings.php:86 #: components/admin/pages/settings.php:86
msgid "" msgid ""
@ -901,7 +906,7 @@ msgstr "Administrator"
#: components/admin/component.php:47 #: components/admin/component.php:47
msgid "Setting up Questions in WordPress Admin." msgid "Setting up Questions in WordPress Admin."
msgstr "Ustawienie pluginu Questions dla Administratora WordPress " msgstr "Ustawienie pluginu Questions dla administratora WordPress "
#: components/admin/form-builder.php:91 #: components/admin/form-builder.php:91
msgid "Attention!" msgid "Attention!"
@ -912,7 +917,7 @@ msgid ""
"This will erase all Answers who people given to this survey. Do you really " "This will erase all Answers who people given to this survey. Do you really "
"want to delete all results of this survey?" "want to delete all results of this survey?"
msgstr "" msgstr ""
"Ta operacja usunie Wszystkie udzielone Odpowiedzi uczestników ankiety. Czy " "Ta operacja usunie wszystkie udzielone odpowiedzi uczestników ankiety. Czy "
"na pewno, chcesz usunąć wszystkie wyniki ankiety?" "na pewno, chcesz usunąć wszystkie wyniki ankiety?"
#: components/admin/form-builder.php:95 #: components/admin/form-builder.php:95
@ -929,7 +934,7 @@ msgstr "Opcje"
#: components/admin/form-builder.php:126 #: components/admin/form-builder.php:126
msgid "Survey Functions" msgid "Survey Functions"
msgstr "Funkcje Ankiety" msgstr "Funkcje ankiety"
#: components/admin/form-builder.php:133 components/elements/component.php:44 #: components/admin/form-builder.php:133 components/elements/component.php:44
msgid "Elements" msgid "Elements"
@ -957,15 +962,15 @@ msgstr "Kiedy ankieta ma się zakończyć?"
#: components/admin/form-builder.php:235 #: components/admin/form-builder.php:235
msgid "All visitors of the site can participate" msgid "All visitors of the site can participate"
msgstr "Wszyscy Uczestnicy mogą wziąć udział w ankiecie" msgstr "Wszyscy uczestnicy mogą wziąć udział w ankiecie"
#: components/admin/form-builder.php:239 #: components/admin/form-builder.php:239
msgid "All members of the site can participate" msgid "All members of the site can participate"
msgstr "Wszyscy Członkowie mogą wziąć udział w ankiecie" msgstr "Wszyscy członkowie mogą wziąć udział w ankiecie"
#: components/admin/form-builder.php:243 #: components/admin/form-builder.php:243
msgid "Only selected members can participate" msgid "Only selected members can participate"
msgstr "Tylko wybrani Członkowie mogą wziąć udział w ankiecie." msgstr "Tylko wybrani członkowie mogą wziąć udział w ankiecie."
#: components/admin/form-builder.php:247 #: components/admin/form-builder.php:247
msgid "No restrictions" msgid "No restrictions"
@ -973,4 +978,4 @@ msgstr "Bez restrykcji"
#: components/admin/form-builder.php:275 #: components/admin/form-builder.php:275
msgid "Add all actual Members" msgid "Add all actual Members"
msgstr "Dodaj wszystkich rzeczywistych Członków" msgstr "Dodaj wszystkich rzeczywistych członków"