From 4a0221638e0c2a754b2d11cb5d45df14033ab43f Mon Sep 17 00:00:00 2001 From: PiotrParysek Date: Wed, 31 May 2017 21:10:55 +0200 Subject: [PATCH] =?UTF-8?q?Usuni=C4=99cie=20problemu=20z=20generacj=C4=85?= =?UTF-8?q?=20przycisku=20w=20pliku=20PDF.=20Poprawienie=20t=C5=82umacze?= =?UTF-8?q?=C5=84.=20Usuni=C4=99cie=20nadmiarowych=20funkcji,=20metod,=20e?= =?UTF-8?q?lement=C3=B3w.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dk-pdf/includes/class-dkpdf-settings.php | 70 +++++----- questions/components/core/form-process.php | 6 +- .../elements/base-elements/splitter.php | 8 +- questions/init.php | 11 +- questions/languages/questions-locale-pl_PL.mo | Bin 16364 -> 16551 bytes questions/languages/questions-locale-pl_PL.po | 125 +++++++++--------- 6 files changed, 117 insertions(+), 103 deletions(-) diff --git a/dk-pdf/includes/class-dkpdf-settings.php b/dk-pdf/includes/class-dkpdf-settings.php index fbdb9d7..58d95ba 100755 --- a/dk-pdf/includes/class-dkpdf-settings.php +++ b/dk-pdf/includes/class-dkpdf-settings.php @@ -48,7 +48,7 @@ class DKPDF_Settings { $page = add_menu_page( 'DK PDF', 'DK PDF', 'manage_options', 'dkpdf' . '_settings', array( $this, 'settings_page' ) ); // 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 add_submenu_page( 'dkpdf' . '_settings', 'Support', 'Support', 'manage_options', 'dkpdf-support', array( $this, 'dkpdf_support_screen' )); @@ -64,15 +64,25 @@ class DKPDF_Settings {

DK PDF Support

+ +

Dokumentcja

+

Wszystkie informacje, które potrzebujesz do uruchomienia oraz zarządznaia pluginem DK PDF

+

Dokuemtacja pluginu!

+ +

Pomoc

+

Masz problem? Nie przejmuj się! Utwórz wątek na stronie forum pomocy DK PDF!

+

Pomoc!

@@ -146,15 +156,15 @@ class DKPDF_Settings { array( 'id' => 'pdfbutton_text', 'label' => __( 'Button text' , 'dkpdf' ), - 'description' => '', + 'description' => ' Tekst jaki będzie wyświetlany na przyciskach', 'type' => 'text', - 'default' => 'PDF Button', + 'default' => 'Generuj PDF',//PDF Button 'placeholder' => '' ), array( 'id' => 'pdfbutton_post_types', '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', 'options' => $post_types_arr, 'default' => array() @@ -162,25 +172,25 @@ class DKPDF_Settings { array( 'id' => 'pdfbutton_action', 'label' => __( 'Action', 'dkpdf' ), - 'description' => '', + 'description' => 'Sposób w którym będzie można pobrać dokument PDF', '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' ), array( 'id' => 'pdfbutton_position', 'label' => __( 'Position', 'dkpdf' ), - 'description' => '', + 'description' => 'Sposób umieszczenia przycisku generowania pliku', 'type' => 'radio', - 'options' => array( 'shortcode' => 'Use shortcode', 'before' => 'Before content', 'after' => 'After content' ), - 'default' => 'before' + 'options' => array( 'shortcode' => 'Wykorzystuj shortcode', 'before' => 'Przed zawartością', 'after' => 'Po zawartości' ), //'shortcode' => 'Use shortcode', 'before' => 'Before content', 'after' => 'After content' + 'default' => 'shortcode'//before ), array( 'id' => 'pdfbutton_align', 'label' => __( 'Align', 'dkpdf' ), - 'description' => '', + 'description' => 'Wyrównanie przycisku', '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' ), ) @@ -189,61 +199,61 @@ class DKPDF_Settings { // pdf setup $settings['dkpdf_setup'] = array( - 'title' => __( 'PDF Setup', 'dkpdfg' ), + 'title' => __( 'Ustawienia DK PDF', 'dkpdfg' ),//PDF Setup 'description' => '', 'fields' => array( array( 'id' => 'page_orientation', - 'label' => __( 'Page orientation', 'dkpdfg' ), - 'description' => '', + 'label' => __( 'Orientacja strony', 'dkpdfg' ),//Page orientation + 'description' => 'Ustawienie domyślnej orintacji strony', 'type' => 'radio', 'options' => array( 'vertical' => 'Vertical', 'horizontal' => 'Horizontal' ), 'default' => 'vertical' ), array( 'id' => 'font_size', - 'label' => __( 'Font size', 'dkpdfg' ), - 'description' => 'In points (pt)', + 'label' => __( 'Rozmiar czcionki', 'dkpdfg' ),//Font size + 'description' => 'Ustawienie rozmiaru czcionki w punktach (pt)', 'type' => 'number', 'default' => '12', 'placeholder' => '12' ), array( 'id' => 'margin_left', - 'label' => __( 'Margin left', 'dkpdfg' ), - 'description' => 'In points (pt)', + 'label' => __( 'Lewy margines', 'dkpdfg' ),//Margin left + 'description' => 'Ustawienie rozmiaru lewego marginesu w punktach (pt)', 'type' => 'number', 'default' => '15', 'placeholder' => '15' ), array( 'id' => 'margin_right', - 'label' => __( 'Margin right', 'dkpdfg' ), - 'description' => 'In points (pt)', + 'label' => __( 'Prawy margines', 'dkpdfg' ),//Margin right + 'description' => 'Ustawienie rozmiaru prawego marginesu w punktach (pt)', 'type' => 'number', 'default' => '15', 'placeholder' => '15' ), array( 'id' => 'margin_top', - 'label' => __( 'Margin top', 'dkpdfg' ), - 'description' => 'In points (pt)', + 'label' => __( 'Górny margines', 'dkpdfg' ),//Margin top + 'description' => 'Ustawienie rozmiaru górnego marginesu w punktach (pt)', 'type' => 'number', 'default' => '50', 'placeholder' => '50' ), array( 'id' => 'margin_bottom', - 'label' => __( 'Margin bottom', 'dkpdfg' ), - 'description' => 'In points (pt)', + 'label' => __( 'Dolny margines', 'dkpdfg' ),//Margin bottom + 'description' => 'Ustawienie rozmiaru dolnego marginesu w punktach (pt)', 'type' => 'number', 'default' => '30', 'placeholder' => '30' ), array( 'id' => 'margin_header', - 'label' => __( 'Margin header', 'dkpdfg' ), - 'description' => 'In points (pt)', + 'label' => __( 'Margines nagłówka', 'dkpdfg' ),//Margin header + 'description' => 'Ustawienie rozmiaru dolnego marginesu w punktach (pt)', 'type' => 'number', 'default' => '15', 'placeholder' => '15' @@ -270,14 +280,14 @@ class DKPDF_Settings { 'label' => __( 'Header show title', 'dkpdf' ), 'description' => '', 'type' => 'checkbox', - 'default' => '' + 'default' => 'true' ), array( 'id' => 'pdf_header_show_pagination', 'label' => __( 'Header show pagination', 'dkpdf' ), 'description' => '', 'type' => 'checkbox', - 'default' => '' + 'default' => 'true' ), array( 'id' => 'pdf_footer_text', @@ -313,9 +323,9 @@ class DKPDF_Settings { array( 'id' => 'pdf_custom_css', 'label' => __( 'PDF Custom CSS' , 'dkpdf' ), - 'description' => __( '', 'dkpdf' ), + 'description' => __( 'Wprowadź odpowiedi kod CSS by zmanipulować wyściowym plikiem PDF', 'dkpdf' ), 'type' => 'textarea_code', - 'default' => '', + 'default' => '.AnkietyGO { display:none; }', 'placeholder' => '' ), array( diff --git a/questions/components/core/form-process.php b/questions/components/core/form-process.php index 4dc8cfc..b68761b 100644 --- a/questions/components/core/form-process.php +++ b/questions/components/core/form-process.php @@ -13,7 +13,7 @@ Copyright 2015 awesome.ug (support@awesome.ug) This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2, as + it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, @@ -197,6 +197,7 @@ class Questions_FormProcess{ return FALSE; endif; + $html .= '
'; if ( 0 < $actual_step ): $html .= ''; $html .= ''; $html .= ''; + $html .= '
'; $html .= ''; @@ -875,4 +877,4 @@ function qu_user_has_participated( $form_id, $user_id = NULL ) { global $Questions_FormProcess; return $Questions_FormProcess->has_participated( $form_id, $user_id ); -} \ No newline at end of file +} diff --git a/questions/components/elements/base-elements/splitter.php b/questions/components/elements/base-elements/splitter.php index 835541e..331ea26 100644 --- a/questions/components/elements/base-elements/splitter.php +++ b/questions/components/elements/base-elements/splitter.php @@ -12,7 +12,7 @@ if ( ! defined( 'ABSPATH' ) ) { exit; } - +/* class Questions_FormElement_Splitter extends Questions_FormElement { public function __construct( $id = NULL ) { @@ -37,8 +37,4 @@ class Questions_FormElement_Splitter extends Questions_FormElement { qu_register_survey_element( 'Questions_FormElement_Splitter' ); - - - - - +*/ diff --git a/questions/init.php b/questions/init.php index 6d7511c..cd645fe 100644 --- a/questions/init.php +++ b/questions/init.php @@ -1,16 +1,17 @@ !!! Attention !!! 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. - * Version: 1.0.0 beta 21 - * Author: awesome.ug - * Author URI: http://www.awesome.ug + * Plugin URI: https://github.com/awsmug + * Description: Stwórz swoją ankietę metodą Drag & Drop - Przeciągnij i Upuść za pomocą pluginu Questions! + * Version: 1.0 + * Author: https://github.com/awsmug + * Author URI: https://github.com/awsmug * Author Email: contact@awesome.ug * License: GPLv2+ * License URI: ./assets/license.txt * Text Domain: questions-locale * Domain Path: /languages + * // Drag & drop your survey/poll with the WordPress Questions plugin. !!! Attention !!! 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' ) ) { diff --git a/questions/languages/questions-locale-pl_PL.mo b/questions/languages/questions-locale-pl_PL.mo index b0b34b79a3bc19df21ae2438b5c7e750a0cb43f5..0df9c7f18eaab2920e45a3bd644fb4584c562076 100644 GIT binary patch delta 2389 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 diff --git a/questions/languages/questions-locale-pl_PL.po b/questions/languages/questions-locale-pl_PL.po index 1a4435d..7a34d6d 100644 --- a/questions/languages/questions-locale-pl_PL.po +++ b/questions/languages/questions-locale-pl_PL.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Questions\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 \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "" "Drogi %username%,\n" "\n" "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" "\n" "Pozdrawiam,\n" @@ -103,8 +103,8 @@ msgid "" msgstr "" "Drogi %username%,\n" "\n" -"Ankieta \"%survey_title%\" Nie została jeszcze zakończona. Proszę wypełnij i " -"zakończ ją. Aby wziąć w niej udział, wejdź:\n" +"Ankieta \"%survey_title%\" nie została jeszcze zakończona.\n" +"Proszę wypełnij i zakończ ją. Aby wziąć w niej udział, wejdź na adres:\n" "%survey_url%\n" "\n" "Pozdrawiam,\n" @@ -116,11 +116,11 @@ msgstr "Dziękuję za uczestnictwo w ankiecie!" #: functions.php:146 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 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 msgid "Questions" @@ -129,7 +129,7 @@ msgstr "Pytania" #. Description of the plugin/theme msgid "Drag & drop your survey/poll with the WordPress Questions plugin." msgstr "" -"Przeciągnij i upuść twoją Ankietę / Głosowanie z pluginem WordPress " +"Przeciągnij i upuść twoją ankietę / Głosowanie z pluginem WordPress " "AnkietyGo+." #: 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/textarea.php:46 msgid "Minimum length" -msgstr "Minimalna długość" +msgstr "" +"Minimalna liczba znaków\n" #: components/elements/base-elements/text.php:47 #: components/elements/base-elements/textarea.php:48 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/textarea.php:52 msgid "Maximum length" -msgstr "Maksymalna długość" +msgstr "Maksymalna liczba znaków " #: components/elements/base-elements/text.php:53 #: 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 msgid "Rows" -msgstr "Rzędy " +msgstr "Liczba wierszy" #: components/elements/base-elements/textarea.php:61 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 msgid "Columns" -msgstr "Kolumny" +msgstr "Liczba kolumn" #: components/elements/base-elements/textarea.php:69 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 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 msgid "Multiple Choice" -msgstr "Wielokrotny wybów" +msgstr "Wielokrotny wybór" #: components/elements/base-elements/multiplechoice.php:23 msgid "" @@ -352,15 +357,15 @@ msgstr "Wszystkie kategorie" #: components/core/component.php:68 msgid "Parent Category" -msgstr "Główna Kategoria" +msgstr "Główna kategoria" #: components/core/component.php:69 msgid "Parent Category:" -msgstr "Główna Kategoria:" +msgstr "Główna kategoria:" #: components/core/component.php:70 msgid "Edit Category" -msgstr "Edytuj Kategorię" +msgstr "Edytuj kategorię" #: components/core/component.php:71 msgid "Update Category" @@ -396,7 +401,7 @@ msgstr "Wyszukaj ankietę" #: components/core/component.php:96 components/core/component.php:97 msgid "No Survey available" -msgstr "Brak dostępnych Ankiet" +msgstr "Brak dostępnych ankiet" #: components/core/export.php:57 msgid "No answers, no exports!" @@ -405,7 +410,7 @@ msgstr "Brak odpowiedzi - brak eksportu!" #: components/core/export.php:59 #, php-format msgid "Export Results" -msgstr "Export Wyników" +msgstr "Export wyników" #: components/core/form-process.php:95 msgid "There are open answers" @@ -426,7 +431,7 @@ msgstr "Poprzedni krok" #: components/core/form-process.php:208 msgid "Finish Survey" -msgstr "Kończ Ankietę" +msgstr "Kończ ankietę" #: components/core/form-process.php:212 msgid "Next Step" @@ -454,7 +459,7 @@ msgstr "To jest właściwy wynik:" #: components/core/responses.php:116 msgid "User ID" -msgstr "Numer Identyfikacyjny Użytkownika" +msgstr "Numer Identyfikacyjny użytkownika" #: components/core/responses.php:147 msgid "Username" @@ -466,17 +471,17 @@ msgstr "Data / Godzina" #: components/core/shortcodes.php:52 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 msgid "Survey not found. Please enter another ID in your shortcode." msgstr "" -"Ankieta nie znaleziona, Proszę wprowadź inny Numer Identyfikacyjny w " -"\"Krótkim kodzie\" " +"Ankieta nie znaleziona. Proszę wprowadź inny Numer Identyfikacyjny w " +"\"shortcode\" " #: components/core/shortcodes.php:66 msgid "Survey Shortcode:" -msgstr "\"Krótki kod\" Ankiety" +msgstr "\"shortcode\" ankiety" #: components/elements/base-elements/description.php:21 #: components/elements/base-elements/dropdown.php:63 @@ -513,7 +518,7 @@ msgid "" "Participiants." msgstr "" "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 msgid "From Name" @@ -522,22 +527,22 @@ msgstr "Od Nazwa Użytkownika" #: components/admin/pages/settings.php:104 msgid "The Name which will be shown on Emails which are send out by Questions." msgstr "" -"Nazwa Użytkownika będzie pokazana w wiadomościach EMail do których będzie " -"wysłane Zapytanie " +"Nazwa Użytkownika będzie pokazana w wiadomościach email do których będzie " +"wysłane zapytanie " #: components/admin/pages/settings.php:106 msgid "e.g. Michael Jackson" -msgstr "na przykład James Bond" +msgstr "na przykład Grzegorz Brzęczyszczykiewicz" #: components/admin/pages/settings.php:110 msgid "From Email" -msgstr "Od adres EMail" +msgstr "Od adres Email" #: components/admin/pages/settings.php:112 msgid "" "The Email will be used for the reply of the emails, send out by questions." 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 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/elements/class-element.php:197 msgid "This is a Questions Survey Element." -msgstr "To jest element pytania Ankiety" +msgstr "To jest element pytania ankiety" #: components/charts/component.php:43 msgid "Charts" @@ -554,7 +559,7 @@ msgstr "Wykresy" #: components/charts/component.php:44 msgid "Showing Charts in Questions." -msgstr "Pokaż wykresy w Pytaniach." +msgstr "Pokaż wykresy w pytaniach." #: components/charts/dimple/chart-creator.php:67 msgid "Answers" @@ -566,7 +571,7 @@ msgstr "Głosowania" #: components/charts/shortcodes.php:56 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 msgid "There are no results to show." @@ -575,7 +580,7 @@ msgstr "Nie ma wyników do wyświetlenia" #: components/charts/shortcodes.php:93 msgid "Please enter a question id in the survey shortcode!" 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 msgid "Results Shortcode:" @@ -591,7 +596,7 @@ msgstr "Skrócony kod" #: components/class-component.php:68 msgid "This is a Questions component." -msgstr "To jest komponent Pytania" +msgstr "To jest komponent pytania" #: components/core/component.php:39 msgid "Core" @@ -599,7 +604,7 @@ msgstr "Rdzeń" #: components/core/component.php:40 msgid "Core functions of the Questions Plugin" -msgstr "Funkcje rdzeniowe Pluginu Ankiet" +msgstr "Funkcje rdzeniowe pluginu Ankiet" #: components/core/component.php:64 msgctxt "taxonomy general name" @@ -617,11 +622,11 @@ msgstr "Przeszukaj kategorie" #: components/admin/form-builder.php:299 msgid "Add Participiants" -msgstr "Dodaj Uczestnika" +msgstr "Dodaj uczestnika" #: components/admin/form-builder.php:302 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 msgid "participiant/s" @@ -633,15 +638,15 @@ msgstr "ID" #: components/admin/form-builder.php:319 msgid "User nicename" -msgstr "Login Uczestnika" +msgstr "Login uczestnika" #: components/admin/form-builder.php:320 msgid "Display name" -msgstr "Wyświetlona Nazwa" +msgstr "Wyświetlona nazwa" #: components/admin/form-builder.php:321 msgid "Email" -msgstr "EMail" +msgstr "Email" #: components/admin/form-builder.php:322 msgid "Status" @@ -678,15 +683,15 @@ msgstr "Nie" #: components/admin/form-builder.php:445 msgid "Dublicate Survey" -msgstr "Z duplikuj Ankietę" +msgstr "Z duplikuj ankietę" #: components/admin/form-builder.php:452 msgid "Delete survey results" -msgstr "Usuń wyniki Ankiety" +msgstr "Usuń wyniki ankiety" #: components/admin/form-builder.php:461 msgid "Invite Participiants" -msgstr "Zaproś Uczesników" +msgstr "Zaproś uczestników" #: components/admin/form-builder.php:464 components/admin/form-builder.php:475 msgid "Cancel" @@ -694,12 +699,12 @@ msgstr "Usuń" #: components/admin/form-builder.php:472 msgid "Reinvite Participiants" -msgstr "Zaproś ponownie Uczesników" +msgstr "Zaproś ponownie uczestników" #: components/admin/form-builder.php:481 msgid "" "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 msgid "just added" @@ -723,7 +728,7 @@ msgstr "Ponowne zaproszenia nie mogły być wysłane!" #: components/admin/form-builder.php:967 msgid "Survey results deleted successfully!" -msgstr "Wyniki Ankiety usunięte!" +msgstr "Wyniki ankiety usunięte!" #: components/admin/form-builder.php:970 msgid "Survey duplicated successfully!" @@ -731,7 +736,7 @@ msgstr "Ankieta zduplikowana!" #: components/admin/form-builder.php:972 components/core/component.php:92 msgid "Edit Survey" -msgstr "Edytuj Ankietę!" +msgstr "Edytuj ankietę!" #: components/admin/form-builder.php:974 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." msgstr "" "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:89 #: components/admin/pages/settings.php:98 msgid "Usable template tags:" -msgstr "Wykorzystywane szablony Tagów" +msgstr "Wykorzystywane szablony tagów" #: components/admin/pages/settings.php:83 msgid "Invitation text Template" -msgstr "Szablon tekstu Zaproszenia" +msgstr "Szablon tekstu zaproszenia" #: components/admin/pages/settings.php:86 msgid "" @@ -901,7 +906,7 @@ msgstr "Administrator" #: components/admin/component.php:47 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 msgid "Attention!" @@ -912,7 +917,7 @@ msgid "" "This will erase all Answers who people given to this survey. Do you really " "want to delete all results of this survey?" 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?" #: components/admin/form-builder.php:95 @@ -929,7 +934,7 @@ msgstr "Opcje" #: components/admin/form-builder.php:126 msgid "Survey Functions" -msgstr "Funkcje Ankiety" +msgstr "Funkcje ankiety" #: components/admin/form-builder.php:133 components/elements/component.php:44 msgid "Elements" @@ -957,15 +962,15 @@ msgstr "Kiedy ankieta ma się zakończyć?" #: components/admin/form-builder.php:235 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 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 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 msgid "No restrictions" @@ -973,4 +978,4 @@ msgstr "Bez restrykcji" #: components/admin/form-builder.php:275 msgid "Add all actual Members" -msgstr "Dodaj wszystkich rzeczywistych Członków" +msgstr "Dodaj wszystkich rzeczywistych członków"